From 3c3c2daf26eb4c215e3de26120e5be593ebb3620 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 3 May 2024 11:37:20 +1200 Subject: [PATCH 01/78] Fix UI interaction priority (#27631) --- .../UserInterface/ActivatableUISystem.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Content.Shared/UserInterface/ActivatableUISystem.cs b/Content.Shared/UserInterface/ActivatableUISystem.cs index 5d408012bd0..3ac8835dd02 100644 --- a/Content.Shared/UserInterface/ActivatableUISystem.cs +++ b/Content.Shared/UserInterface/ActivatableUISystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Shared.Containers; @@ -27,6 +28,7 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnHandDeselected); @@ -99,6 +101,9 @@ private bool ShouldAddVerb(EntityUid uid, ActivatableUIComponent component, G if (!args.CanAccess) return false; + if (!component.RequiredItems?.IsValid(args.Using ?? default, EntityManager) ?? false) + return false; + if (component.RequireHands) { if (args.Hands == null) @@ -117,6 +122,20 @@ private bool ShouldAddVerb(EntityUid uid, ActivatableUIComponent component, G return args.CanInteract || component.AllowSpectator && HasComp(args.User); } + private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + if (component.VerbOnly) + return; + + if (component.RequiredItems != null) + return; + + args.Handled = InteractUI(args.User, uid, component); + } + private void OnActivate(EntityUid uid, ActivatableUIComponent component, ActivateInWorldEvent args) { if (args.Handled) From f76a471e5a22480f975ec1448a2fdea3c6476271 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 2 May 2024 23:38:26 +0000 Subject: [PATCH 02/78] 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 718882f0860..bf44ff83b28 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Remove executions pending code rewrite. - type: Remove - id: 6017 - time: '2024-02-25T11:36:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25555 - author: Krunk changes: - message: Candy bowls function properly again! @@ -3860,3 +3853,11 @@ id: 6516 time: '2024-05-02T17:09:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27628 +- author: ElectroJr + changes: + - message: Fixed various interactions not prioritizing opening a UI. No more trying + to eat mission critical faxes. + type: Fix + id: 6517 + time: '2024-05-02T23:37:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27631 From 71dbb955ce7cff52c004f60fbb87cc14f30c86fb Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 2 May 2024 17:03:52 -0700 Subject: [PATCH 03/78] Increase Blast Grenade Recipe Cost and Add Research Requirement (#27580) * Adjust blast grenade recipe * Move blast grenades into tier 2 research * Move blast grenades to dynamic recipes for secfab and autolathe --------- Co-authored-by: Plykiya --- .../Entities/Structures/Machines/lathe.yml | 12 +++--------- Resources/Prototypes/Recipes/Lathes/security.yml | 8 ++++---- Resources/Prototypes/Research/arsenal.yml | 1 + 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index b58544b02b1..e4ae1c42e8b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -165,7 +165,6 @@ emagStaticRecipes: - BoxLethalshot - BoxShotgunFlare - - GrenadeBlast - MagazineBoxLightRifle - MagazineBoxMagnum - MagazineBoxPistol @@ -187,6 +186,7 @@ - BoxBeanbag - BoxShotgunIncendiary - BoxShotgunUranium + - GrenadeBlast - GrenadeEMP - GrenadeFlash - MagazineBoxLightRifleIncendiary @@ -711,6 +711,7 @@ - BoxShotgunUranium - ExplosivePayload - FlashPayload + - GrenadeBlast - GrenadeEMP - GrenadeFlash - HoloprojectorSecurity @@ -731,6 +732,7 @@ - MagazineRifleUranium - MagazineShotgunBeanbag - MagazineShotgunIncendiary + - PortableRecharger - PowerCageHigh - PowerCageMedium - PowerCageSmall @@ -753,14 +755,6 @@ - WeaponLaserCannon - WeaponLaserCarbine - WeaponXrayCannon - - PowerCageSmall - - PowerCageMedium - - PowerCageHigh - - ShuttleGunSvalinnMachineGunCircuitboard - - ShuttleGunPerforatorCircuitboard - - ShuttleGunFriendshipCircuitboard - - ShuttleGunDusterCircuitboard - - PortableRecharger - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 2ab8e18372e..1efbd3b42dc 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -678,9 +678,9 @@ result: GrenadeBlast completetime: 3 materials: - Steel: 150 - Plastic: 100 - Gold: 50 + Steel: 450 + Plastic: 300 + Gold: 150 - type: latheRecipe id: GrenadeFlash @@ -700,4 +700,4 @@ Uranium: 2000 Plastic: 1000 Plasma: 500 - Glass: 500 \ No newline at end of file + Glass: 500 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 6c0e94e9e5e..97b0c1e82b1 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -156,6 +156,7 @@ - PowerCageMedium - MagazineGrenadeEmpty - GrenadeFlash + - GrenadeBlast - ShuttleGunSvalinnMachineGunCircuitboard - ShuttleGunPerforatorCircuitboard - ShuttleGunFriendshipCircuitboard From 291ecf9643a5308fd5f8b9172e1710862da683f8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 00:04:58 +0000 Subject: [PATCH 04/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bf44ff83b28..6a22e712469 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Krunk - changes: - - message: Candy bowls function properly again! - type: Fix - id: 6018 - time: '2024-02-25T13:08:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25514 - author: Whisper changes: - message: Added juice that makes you Weh! Juice a lizard plushie today! @@ -3861,3 +3854,13 @@ id: 6517 time: '2024-05-02T23:37:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27631 +- author: Plykiya + changes: + - message: Blast grenades have had their manufacturing cost tripled. + type: Tweak + - message: Blast grenades are now part of the Basic Shuttle Armament research and + can be printed at the secfab. + type: Tweak + id: 6518 + time: '2024-05-03T00:03:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27580 From f348e6aa306a3542b1ed75b021c45228250aca3c Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 3 May 2024 12:10:15 +1200 Subject: [PATCH 05/78] Add EntityWhitelistSystem (#27632) * Add EntityWhitelistSystem * Sandbox fix * update test --- .../Tests/Utility/EntityWhitelistTest.cs | 27 +++--- Content.Shared/Tag/TagSystem.cs | 27 +++--- Content.Shared/Whitelist/EntityWhitelist.cs | 68 ++------------- .../Whitelist/EntityWhitelistSystem.cs | 84 +++++++++++++++++++ 4 files changed, 117 insertions(+), 89 deletions(-) create mode 100644 Content.Shared/Whitelist/EntityWhitelistSystem.cs diff --git a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs index 6b47ec4d8eb..19b25816fa3 100644 --- a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs +++ b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs @@ -64,7 +64,8 @@ public async Task Test() var testMap = await pair.CreateTestMap(); var mapCoordinates = testMap.MapCoords; - var sEntities = server.ResolveDependency(); + var sEntities = server.EntMan; + var sys = server.System(); await server.WaitAssertion(() => { @@ -80,22 +81,14 @@ await server.WaitAssertion(() => Components = new[] { $"{ValidComponent}" }, Tags = new() { "WhitelistTestValidTag" } }; - whitelistInst.UpdateRegistrations(); - Assert.That(whitelistInst, Is.Not.Null); Assert.Multiple(() => { - Assert.That(whitelistInst.Components, Is.Not.Null); - Assert.That(whitelistInst.Tags, Is.Not.Null); - }); - - Assert.Multiple(() => - { - Assert.That(whitelistInst.IsValid(validComponent), Is.True); - Assert.That(whitelistInst.IsValid(WhitelistTestValidTag), Is.True); + Assert.That(sys.IsValid(whitelistInst, validComponent), Is.True); + Assert.That(sys.IsValid(whitelistInst, WhitelistTestValidTag), Is.True); - Assert.That(whitelistInst.IsValid(invalidComponent), Is.False); - Assert.That(whitelistInst.IsValid(WhitelistTestInvalidTag), Is.False); + Assert.That(sys.IsValid(whitelistInst, invalidComponent), Is.False); + Assert.That(sys.IsValid(whitelistInst, WhitelistTestInvalidTag), Is.False); }); // Test from serialized @@ -111,11 +104,11 @@ await server.WaitAssertion(() => Assert.Multiple(() => { - Assert.That(whitelistSer.IsValid(validComponent), Is.True); - Assert.That(whitelistSer.IsValid(WhitelistTestValidTag), Is.True); + Assert.That(sys.IsValid(whitelistSer, validComponent), Is.True); + Assert.That(sys.IsValid(whitelistSer, WhitelistTestValidTag), Is.True); - Assert.That(whitelistSer.IsValid(invalidComponent), Is.False); - Assert.That(whitelistSer.IsValid(WhitelistTestInvalidTag), Is.False); + Assert.That(sys.IsValid(whitelistSer, invalidComponent), Is.False); + Assert.That(sys.IsValid(whitelistSer, WhitelistTestInvalidTag), Is.False); }); }); await pair.CleanReturnAsync(); diff --git a/Content.Shared/Tag/TagSystem.cs b/Content.Shared/Tag/TagSystem.cs index fdb7de1f757..7bcb887a410 100644 --- a/Content.Shared/Tag/TagSystem.cs +++ b/Content.Shared/Tag/TagSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Linq; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -185,6 +186,7 @@ public bool HasTag(EntityUid entity, string id) /// /// Checks if a tag has been added to an entity. /// + [Obsolete] public bool HasTag(EntityUid entity, string id, EntityQuery tagQuery) { return tagQuery.TryGetComponent(entity, out var component) && @@ -243,7 +245,7 @@ public bool HasAllTags(EntityUid entity, IEnumerable ids) /// public bool HasAllTags(EntityUid entity, List> ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAllTags(component, ids); } @@ -521,16 +523,18 @@ public bool HasAllTags(TagComponent component, IEnumerable ids) /// public bool HasAllTags(TagComponent component, List> ids) { - var stringIds = new List(); - foreach (var tag in ids) + foreach (var id in ids) { - stringIds.Add(tag.Id); + AssertValidTag(id); + + if (!component.Tags.Contains(id)) + return false; + } - return HasAllTags(component, stringIds); + return true; } - /// /// Checks if any of the given tags have been added. /// @@ -552,7 +556,6 @@ public bool HasAnyTag(TagComponent component, params string[] ids) return false; } - /// /// Checks if any of the given tags have been added. /// @@ -619,13 +622,15 @@ public bool HasAnyTag(TagComponent component, IEnumerable ids) /// public bool HasAnyTag(TagComponent comp, List> ids) { - var stringIds = new List(); - foreach (var tag in ids) + foreach (var id in ids) { - stringIds.Add(tag.Id); + AssertValidTag(id); + + if (comp.Tags.Contains(id)) + return true; } - return HasAnyTag(comp, stringIds); + return false; } /// diff --git a/Content.Shared/Whitelist/EntityWhitelist.cs b/Content.Shared/Whitelist/EntityWhitelist.cs index 7fa6ce7f824..895759be958 100644 --- a/Content.Shared/Whitelist/EntityWhitelist.cs +++ b/Content.Shared/Whitelist/EntityWhitelist.cs @@ -38,8 +38,8 @@ public sealed partial class EntityWhitelist [DataField] public List>? Sizes; - [NonSerialized] - private List? _registrations; + [NonSerialized, Access(typeof(EntityWhitelistSystem))] + public List? Registrations; /// /// Tags that are allowed in the whitelist. @@ -55,67 +55,13 @@ public sealed partial class EntityWhitelist [DataField] public bool RequireAll; - public void UpdateRegistrations() + [Obsolete("Use WhitelistSystem")] + public bool IsValid(EntityUid uid, IEntityManager? man = null) { + var sys = man?.System() ?? + IoCManager.Resolve().GetEntitySystem(); - if (Components == null) - return; + return sys.IsValid(this, uid); - var compFact = IoCManager.Resolve(); - _registrations = new List(); - foreach (var name in Components) - { - var availability = compFact.GetComponentAvailability(name); - if (compFact.TryGetRegistration(name, out var registration) - && availability == ComponentAvailability.Available) - { - _registrations.Add(registration); - } - else if (availability == ComponentAvailability.Unknown) - { - Logger.Warning($"Unknown component name {name} passed to EntityWhitelist!"); - } - } - } - - /// - /// Returns whether a given entity fits the whitelist. - /// - public bool IsValid(EntityUid uid, IEntityManager? entityManager = null) - { - if (Components != null && _registrations == null) - UpdateRegistrations(); - - IoCManager.Resolve(ref entityManager); - if (_registrations != null) - { - foreach (var reg in _registrations) - { - if (entityManager.HasComponent(uid, reg.Type)) - { - if (!RequireAll) - return true; - } - else if (RequireAll) - return false; - } - } - - if (Sizes != null && entityManager.TryGetComponent(uid, out ItemComponent? itemComp)) - { - if (Sizes.Contains(itemComp.Size)) - return true; - } - - if (Tags != null && entityManager.TryGetComponent(uid, out TagComponent? tags)) - { - var tagSystem = entityManager.System(); - return RequireAll ? tagSystem.HasAllTags(tags, Tags) : tagSystem.HasAnyTag(tags, Tags); - } - - if (RequireAll) - return true; - - return false; } } diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs new file mode 100644 index 00000000000..d73646b7e99 --- /dev/null +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -0,0 +1,84 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Item; +using Content.Shared.Tag; + +namespace Content.Shared.Whitelist; + +public sealed class EntityWhitelistSystem : EntitySystem +{ + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly TagSystem _tag = default!; + + private EntityQuery _itemQuery; + + public override void Initialize() + { + base.Initialize(); + _itemQuery = GetEntityQuery(); + } + + /// + public bool IsValid(EntityWhitelist list, [NotNullWhen(true)] EntityUid? uid) + { + return uid != null && IsValid(list, uid.Value); + } + + /// + /// Checks whether a given entity satisfies a whitelist. + /// + public bool IsValid(EntityWhitelist list, EntityUid uid) + { + if (list.Components != null) + EnsureRegistrations(list); + + if (list.Registrations != null) + { + foreach (var reg in list.Registrations) + { + if (HasComp(uid, reg.Type)) + { + if (!list.RequireAll) + return true; + } + else if (list.RequireAll) + return false; + } + } + + if (list.Sizes != null && _itemQuery.TryComp(uid, out var itemComp)) + { + if (list.Sizes.Contains(itemComp.Size)) + return true; + } + + if (list.Tags != null) + { + return list.RequireAll + ? _tag.HasAllTags(uid, list.Tags) + : _tag.HasAnyTag(uid, list.Tags); + } + + return list.RequireAll; + } + + private void EnsureRegistrations(EntityWhitelist list) + { + if (list.Components == null) + return; + + list.Registrations = new List(); + foreach (var name in list.Components) + { + var availability = _factory.GetComponentAvailability(name); + if (_factory.TryGetRegistration(name, out var registration) + && availability == ComponentAvailability.Available) + { + list.Registrations.Add(registration); + } + else if (availability == ComponentAvailability.Unknown) + { + Log.Warning($"Unknown component name {name} passed to EntityWhitelist!"); + } + } + } +} From c69bf2f2aa23d57179dce1f6af9f7c73903d47e2 Mon Sep 17 00:00:00 2001 From: "Mr. 27" <45323883+Dutch-VanDerLinde@users.noreply.github.com> Date: Thu, 2 May 2024 20:13:35 -0400 Subject: [PATCH 06/78] Add syndicate sleeper agents random event (#27501) * Intercept rule (#10) * add * b * add this back lol * fix test fails (alert levels dont have prototypes) * tweaks --- Content.Server/AlertLevel/AlertLevelSystem.cs | 10 +++++++ .../AlertLevelInterceptionRuleComponent.cs | 15 +++++++++++ .../Events/AlertLevelInterceptionRule.cs | 23 ++++++++++++++++ .../Audio/Announcements/attributions.yml | 5 ++++ Resources/Audio/Announcements/intercept.ogg | Bin 0 -> 239180 bytes .../en-US/station-events/events/intercept.ftl | 1 + Resources/Prototypes/GameRules/events.yml | 25 ++++++++++++++++++ 7 files changed, 79 insertions(+) create mode 100644 Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs create mode 100644 Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs create mode 100644 Resources/Audio/Announcements/intercept.ogg create mode 100644 Resources/Locale/en-US/station-events/events/intercept.ftl diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 848170ba9dc..0b49d7e4bfa 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -96,6 +96,16 @@ private void OnPrototypeReload(PrototypesReloadedEventArgs args) RaiseLocalEvent(new AlertLevelPrototypeReloadedEvent()); } + public string GetLevel(EntityUid station, AlertLevelComponent? alert = null) + { + if (!Resolve(station, ref alert)) + { + return string.Empty; + } + + return alert.CurrentLevel; + } + public float GetAlertLevelDelay(EntityUid station, AlertLevelComponent? alert = null) { if (!Resolve(station, ref alert)) diff --git a/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs b/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs new file mode 100644 index 00000000000..6907aa61760 --- /dev/null +++ b/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs @@ -0,0 +1,15 @@ +using Content.Server.StationEvents.Events; +using Content.Server.AlertLevel; +using Robust.Shared.Prototypes; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(AlertLevelInterceptionRule))] +public sealed partial class AlertLevelInterceptionRuleComponent : Component +{ + /// + /// Alert level to set the station to when the event starts. + /// + [DataField] + public string AlertLevel = "blue"; +} diff --git a/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs new file mode 100644 index 00000000000..a78a542d3b3 --- /dev/null +++ b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs @@ -0,0 +1,23 @@ +using Content.Server.GameTicking.Components; +using Content.Server.StationEvents.Components; +using Content.Server.AlertLevel; + +namespace Content.Server.StationEvents.Events; + +public sealed class AlertLevelInterceptionRule : StationEventSystem +{ + [Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!; + + protected override void Started(EntityUid uid, AlertLevelInterceptionRuleComponent component, GameRuleComponent gameRule, + GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + if (!TryGetRandomStation(out var chosenStation)) + return; + if (_alertLevelSystem.GetLevel(chosenStation.Value) != "green") + return; + + _alertLevelSystem.SetLevel(chosenStation.Value, component.AlertLevel, true, true, true); + } +} \ No newline at end of file diff --git a/Resources/Audio/Announcements/attributions.yml b/Resources/Audio/Announcements/attributions.yml index 7bc8886f931..593095a6601 100644 --- a/Resources/Audio/Announcements/attributions.yml +++ b/Resources/Audio/Announcements/attributions.yml @@ -42,3 +42,8 @@ license: "CC-BY-SA-3.0" copyright: "Paradise, volume and pitch changed, merged with redalert.ogg" source: "https://github.com/ParadiseSS13/Paradise/blob/07b26ee6b4a11a0607986d322ee007020569feae/sound/effects/siren.ogg" + +- files: ["intercept.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/95731342b97167d7883ff091d389f79c36442ee6/sound/ai/default/intercept.ogg" diff --git a/Resources/Audio/Announcements/intercept.ogg b/Resources/Audio/Announcements/intercept.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3569a07d40193a029771de4f017dbe7b53cc4d9f GIT binary patch literal 239180 zcmce;cUV)+_b<9b@6rhf3P=}_(7}c@sX~CzYv`d@D;Qb`p;r-5sR2TfUZoR21f&HJ zQ9znB6%a*HIUC>a`#ZmL?(>{;?>~2*J;ThNvS)qPS~F`(FmiV{1;~K^xDMNYB1h3W z@GR?|=a(wcs|3+FMMyECZ%bnJQfT@tz9d;~IC;zK6CI6=-KCpnL zr@x1^QJ_1&weOU!QX~+@YdL zf%z()x0Flysd4Zn724iI5ocd~1K!JbOk9|T(TWlz6j0L{+8 zO7jBgB+Bw5>12oaqYPv>i_>qZZk81#scwlijH}a2HB9Omz)0rK)g4rJ4}!*2HuC-x z(Eg=^AMA@d6}JnsI?ZYGSaE!IAlTGDWbp%NkWAoaD!Xni`>R^s(Fq}=eMvZ*!i1cb zshJ@HbRl*Yp{}!`A+w=jR@pH&En!wIF*b8CcHd*1pqT$WM`4TKPoKY}^Fx6A3o2PF z;)Q}dg&$N3$)hoqWPr;lB>c2#g5qgKx_CEKwP$XVM@5s*t2)V7bqs%tfNZ2V?G2Fc znS=j-JZ@H5uK)K(&0|OcPy?|X4B#CM5YjRc8Vr=A{)_Ms0PS z+zi%ynPD*c)!@v(OgLpb0I0!ui2=MXK{QOHrUDf#g09X68P0-GoFejnb`gK&1tdh^ ziCY#5O(U1$^cNO1*etYwMuXv>FM$QH1*`ly<2eVTDoi}hu&&j3 z&U#rZI~a@0$Q5mDHT$Q%|AT7;AE!seAtk9@wvn#ZN2g+V-s%ClHka{l=A~XH1l66{x|q5 z%Ku1laT-oySgd|T_LbymP}w)8x?R)9tib>SrC3q{l;Xt3^`}AADmq>zjWgC4OEOIK z#7q9sD3GcAE-5#txc@2%COdFgycE=m|IWBCLa$l)CjQ&=dXE>*DhxgovQnmUR}p3i zi%=h{MQ`F#o$?{g>tdpwdMD)yWKG0&FlZ>Xtg~KMej?a{|~0 zQ+Z#e3hCDg8BR)$?#mk;$WO3o!Q~B2IqW7lLZ&!fO%?5?6kMkeuB1@cH%+cK&0$te z|52EK)Mjxu?U$ z=6K*rvvH+Z+y*vDEH2A4E{D)s=sjG$-S&Td{!4Ri1`2@>s5x4JLjO&3x?#K;pf=S> z8Xo*Z*nfN+(q?390i)y2rBWR(n@N z69i(fLZ7IA6ruu$JqiF0093kyx#vI^vEF)+GmdD)? z7tWwj*C{W~(AAM@oRJk12L~+Sk_L0@;o{;M6R*b^)7D;908m3t4SM>5zjU1gfT$Fc zQ)59(M|=Pplq6Wp?wp`X#^8FH$OM%Qu@XJlKz2}u320f2sOXhv zB*4~r!2$8q&;Un8(Bu#SfU<4~z~8N%I!db@NylhK3lx(9%DjUh&Ql&CSy0mN*dk7OY)-9OuR--^i)KJOJ;J!xucBr^r{pxWvL1>GOWGE;+WO-s)%!W zYy#04*73C}qR!&tjZo*HTLUI0DA>Syo@sR>r}HRifZ2LU4Or6yY99UoaJj}QBs#sY zwi{#@8E_W>QcOSqq0R>4C8wqtKI0VkY*RfDcM#7~5O>&m-e1ElXzZ``rn2$ZgaaqR z(a-eYl#rbY_*pGQQ7Em%DUHnFkOA$>2m*-`&ZH9<;152f0zm^p6AkuL z3N-v^1TsKEC%_^!r(ggybOO#`ce=>9~P>Maf2Du|71iP>uvs5 z2H5vWl@0#?uv%Tb3g=&G_#1%p_P;ei7)22{ zqghWsbXx9j#y=nW+YRvJ1t32`y+i{SB&7Op$yHw=yU8wVpcaFvqyQ$t@kpZ*RAvxz zFkm$KH&)fCE&k8DzZvEKRpf8-|NlV$6oP-L|Nj_+%u$|YLQk-1vzoYboAU&$&_V@M z{tApI1k`R&V4%UwdZ32U34olxr7lrL4Om_|m6}u0 zg*r3Tor*X(6e1HEIp3Ue02F)JjCB;Kf1q?%ku04niBL8@9S}X_2sSN25t)B0W;MYhA3O-iv`Y1))loStg7JJ1I-U~t3{7ckWm^tg5xX` zGixz`?j_S0^k-pC(H|0%5#wbW(=BBL)R+b3GzF0`9fL9|9BvbE42Tdo56H?ZPD)GX zzXG^|17;(bBblT5IjN1+$e3=mEXOHbS*8;G$eyVRE@nYT1Ka^^3q>^6!);wz^~yCh zbxmy@J%d}uCT8Fy2s&oq8UUnm@C)WVR!L$?K9jKD<}~7; z19VLP7x%BdvNQDJoesiZ`I`xY-Hig8h5O$Y7oSvdJ^XRz(ud}gH}8*rdcXSKe4F&( z&-JdxZ7!qg-44$g8|SYNzsWodPdoo`ZSf@N=;yJ@08IJYgQJ88{)hF=341Yzw9j^L zd;cEBe>%AC-5!_tbMw=KKO?0^SJv=>_?Iu=1YA?>615TI&mLInC)~b2Ts?oO`t7LF z;^o~>alTX$Z@s#*JsKP3a`h%NN&796rlkwN-|KxkYCg*9a1HpR>AQp~l)m0YaMsoGT@MeGYyGkBY_Hk0ee;(y_M6Xh zWaCj2_3R5?JsXF(ZRc8^Y(813?J9AEuZq4lE>Q9L$IPgqmpsKmuao+>#w60d$edrS z&3Jy-+Uy|nUgX}}Y5~KB6V&7iN4Z=w>+v}6rHwakwphC_Ee@)Z>n1v{ZkY}5eqo!w z+^_BE@GG=cb6EW-nkg*d<%v#i`1XRb?dnz=vEA&`R`!H*V!zyX;h&WZcZfkw(rTsv zYxLW?@LhRM8v00ooB3)j^5`?ZDLBFVPJF-9^`%VPm3Ls?i@2bYAB(DXvnlQ8?|YU$ z6>jsa{&wlAw)|K^&!=b_(N7)i`2}UPonYhJ%q*-P7pH+uY8aTOQUV+X+`gJDKd1 z^;|@}Q)Oz8iA_idvCeImry>{{IyKRQ5>!kL7IRffw$uWEX=e41MAfBiERjxjeZCt* ztZ|ZZpbH_n!5I5}#VC4jkQ#7vbYib<`?7zYT$sHGJtWoNFdOpE=BTF0%}OUV$Yi1JdxXjJN}onI#OAg zc;)KXe(Z;art*DW9WX!lfgpS2clKdb^X!+`mP>hZ{!g;*rwqId-3@=d%p`n7cqwWD z?|U0wG1^$?pH#8|{1L;m`TuC)fb`IEzf6`==Kr#Q&g!Me55t4Ct|7S(b?&k2Q&2OXql+H?lZTcbt)sOGQ z@3H$pm$R|k>o?TT)RLP_FQXVLfB$NGzyA1>5uoBRH)3Jas&ThOwcO{tLmTXjoY>JD zvZCwh$hbAZ+uoS^;itK_&M}Ez@IS()OfY#PF6hJ64;~c6+G^jes3ws$=b#5Vw_Y24 zbK7_TUuX52EwB)%zv>`jg?U)n%{T*@+mU$&m z>T6g>8>e@pv7#I0z(UP%R%^4RhfSTu`RDVw)x2}sX)jDJ-6cKUEVx6#`8zo@mQe+> zRQL=ye?Q}H^~EtM^Kb5~R8>8D>IygYUv+LSybSmV@rOrDz~BDB=+px7{vW~&<&$X0 zAlD`-V)FWboedVKL98BRkEd3UwelRyU%#};Ht&Rtkk1>)J2-)+js=@mAvV`ulfqXV z2VW?B56?e--ug0XcdgdG0S@mfX#S}gP{1{h|G6Mbclg?@L{^uZyMO$PvBupt#~-p$ zh6s*L2|3;ujf2VFi&RPhW6w;96NHK!cSb}dhPAME43#BYQ(D9m+D~Gg);5fv>oa~( zCH*QjbrKo`Rb(^u48Z|UHdx*6m{MJg784bT`D#1yqTK=G+ZpkY=NIjePiLQO$0ZJt zcE%rWlrc0$SGzo{-+s$o{qv4{c0$x{QFz5r0ZDWZhui z^rQ`{jh|P(y(?oc z|F}3aHE8!Tas7$jrJ%8-m`c|~&J8L4m2)h^bIL7(Pbk02jbGYFCwJMh_mAh1rztcm zS6V34d(%|*B3PPQPDqSD!_t0uD;ZoY)QJgTG-u1&=QId2y_Eqck?v0Up@ItHNn)m$ zNlZrq+`0~ySfjicLe0WH{agV;{e@m2TP^m%x(jpr?s<4C5$?uv)$$4RMSLQ;X^9=p zq?F{W2Y8nIoK z^V%f*LIudt!_Vku#M_8lo9=B}-T(4o8ddLP^PZjRSRCWY(>U#V{Sm7qfUkPsT0N&v zU~acUa=O~tWa%ZCC|V%RJu}pgZ`if%uL6!slQT~epS|rFF}Zj}aAwZ`%7E#J-xZf?UNMn-)L)QceZCUp z(<3gj!1cQQ1b-k+o6uKF2%t==JT_iZb0e|fdI=?tWCDIagWU1(4?T9bQG z(W(~fq&j!mYzM{RjG!+icvXI2;2@8e`=RudEWas06?z0q)t$h3+X_U=^;)m z>Y`BeLH*FbE3TauPfPA{Jpg^i_>QLiwdT4nf+2XuNfj!}iaG)&iZ5AT+57tY&g7$S zkNiG*lJ}38Q9gQQAE+nn@OY2HakpU9ChCzigIg8Hj%SAKte$zfegafN@l_7TF}%SW z!2z$V)_51M)z?}q<`ZDs$TKr6ILy;bu=F;Mhd1voRpysD8FllIRp+2SnPdh|ko{Jw zJ@d4eq@Q&jl~>mv%bJzkhd%Q1+phQfsqj04-rV77@jiYL-nJL~ESXZo{dRB3&RGP9 zOH{0*T-ANLyty3YJJkBa;tA8iIXB{@@E>gTAB11J_x*#J(!mFJOD?0t2i~W>ZNgvw z^T+&cpyn$X!~2V!JG)tvNudhwOgwFzGiEX~=gkVf^jfQ^BRKlXJ!>y`y~^^T6lJ)~ zyGC_}S1tH@m3Q!XO%}(QALe)04MRr_?}d8~g;_tlnapGLU76=t5?7zVTHC~&Usq*l zdHX@hj}0cT?$s%YYj*SXX^%=7c2QM7VyT;E%lxJnGiGq~e!$3rqo{V%*|P%27nBN| zFBzRZd!t?Y<}42j{R3hS{6PZsk%4oOa` zbWKv*1BMu4{fm3&-;Qg_EO#InZXQ2+=!`C-5qs1JzMq+P^$=*Ipe}-hOwpn|R_AlsUQI{R*X-a>CDRIP2M<3}$vkQIO?;iC~F*0`u%|7?Xdry0(28XMnL2_(o zV@S|Z)i$DHrFqW+&eBkg(YsR3nzxb(Lqs+c=6@=p9?xL7uRY<}J-u44pX2RazOxC0tv$sBK5*t)#iN@{Al1bWVr$=J5g&15ViPT(}NTJvmUr;yM z*7=xy%=Vf>=F>`cK^k{MxPOpq=*vBSm-)DwZvSKc=+D++%*hhtiRj(4mj~|ORGdaE zYjG46>-Rnr4f1jCuqakJ&NRBlw&7mZIcxU;ZX`oP?nU`xdR$lQ&GNbr%KOetfLqJa z;2UY1qT{^=C+>46m(39}8uRwhBtesEr#8zHN&Y#ga&1!KhwM)Ttg`abSq`+VHA~17 z!}I0kM|Y48G-5zhNA$8k?@PwO#=7^$p1CStt_C>!Tnc(R!++o3E6n7bC!?cS)LXOH zbIufD#bouG2jDY=hUOg>{TJ!80nW zJ$mhJ_|Xwe``6*0{!9It_!pU8#U#5r`3)(Ueyl*Kf)po=Pe!-0gi{ki?5YXutd@4N zsu02rOvGVqKImm)309VD(3GFlPrgRT@Ch9Cgijcebb6zcU+pgVy1712Ut)Wu?|J5( zVgv*O{J(>S%_Wbr|!PnyqVydrD}W#=SHbBVf8efjmn_iRh3zK`XZU zY^jm_#Z=_uLRakF#`r5USsX9=I3Ns{q4UG3-EQ8bG2R`0vv46L~d#yjDaHx-6+ zQ(Yivq8r~GfWg*kDE(@O!snVNLfZ<=H4>ly%&w0OD$)HZ4s)3fCO9j#A3X^eyOEVM zHa5MuX}2FLeZ9hX9^1bK3;nGF_#FKH)!S!hS8$SV`eTfOZe%+8>PLe=J;-9b4M+46 z*PWW3s9xz#&7RJ1bVB1?<%fBnqxdA*6U(13!p^xi)?z)aee~M5)Wi>54q*r~eWIX1 zRPl;csjG$0XK80{-R_!iLh(2z_R0_7@^^nIaO~<>D>jkYUbANRx9=gDhPshT^U-G9 zj43m`-YZ!5@w&vK#HT){^Ahzh-Pl{pE=tF9+_B%gv~sBZ$ydVXCgWwIO5**3*+I_9 zqwARkhF^bZG^+q+6CXt{FNAh9pgOfQ&QUS^q;H(y_>L%}K~*S5s%)X=E?vMw6~hM~ z2)@a4<+Hu7)X>d#Iqd9i49-&}ADJ_NqREo+!JsS~#8vPa;9`z|jK4}1NX6of3_Y2` zNhO?NEhLq_4`fdJWW;zUDoo2vz=1KyTjy43M_ZP|>;hqX@kM5?Ylw?JsrC9%n$d## z^NhoAdv6Ot%>c^8-}kilxthjSxfo_v*_Lk-x(2@dxsiL1Nx}z-=YKuA?yD|U=Xv}UPk8$C&Np-K8jLunBxXK<)hEM(R+D#Hf=YW+ zVTS6=6lbmV10H@dYnwy&Ql;&K1BZF%16Pmietg#BPulXbeI=vcpIn&B8+`OUYW8=z zti3wdFiDJq(2DU=+!n8Vx1ywW`*pgGx$X5Ys|m*;Zxi;oHncl?CK4PPi6EvMlKfB7C?QCh1tdq1`k!2aO!_X4_9aP2zfwHI&*b{y6eG~n* z;XTrai09pq9LoH&wzdzT$N5I&oVvBs+{yd*Yp>S4cklhao!w_EzBX`X_FkvGn2Wr` z_>)*EH<#)6zS6Dros*ao>!&;E!*zGV3l_qDT`yAp_W8%3Eeah#{^tmr{z5o)`9$?z z>3gC6O=~mfSg(WxiB#7eayx;(3r<|uA>O;Zmvfe*k{Ckc7YV8if6S+}g+?aLrNrS2 z^&6T2zHnBuOq&^`crwwp;)c^tdbN#Ca(;d>n!V?~uk8!IK7b@-z2RQ`xTa+4#s01? z$Wk)R_+7S|=C8IC@~&CL??om=5jv#D9wH85L@e7YNp9&D-<&CeUDg z^@w9(uV3_R+pYMm?~8}gT*=k(o-M!aht>CvJXX%%dX38ZaCTj6k$_=$^E1$J(r-M3 z$(X?y&ML_FPe^cT8r0_A+C{0d!6>GjF5A{W#ZjXpYJLSIlK*_TKc&q#UEOodv%f1= zjE{Kq{FS>^e0lK;GMo+TmcM0o{(xB^OIU~=8LJh)TsGD!^MdG^M~=F2ag;aXj5#|G zvXAkoi-cAW_UPS|+o(8#a z3npLxeNWTx!`3$yzio@K^Meip-5IY#p5RJ573=9_&G@*ryCM@9Lhj2RqxNh$4wam} z*qW+PVK7a@lhi~;Hp;y{#C(}k4#qRP5V~#ynh>6Iisn}wnsURB7Mf&-7e6I`JuaTq zWID=~$TuPT@<}1%(sRO^#j9B_7ntvQ%t$uZ(|h;$WGclvf4YB4I*z%jY(8Ybaz;$z z12_LH0R5G}_E)7!s=qWS*L&4*(P+R%mCy z%&|kj03L@r^pSA{Ck+|HAkE51flx?~(erfJNW#O!xwNp)eYA!s^fcWycWP!8ML{oY4> z`4axnHt5m$v(InDA0IxL2PHDB#yw~EtUEqTEu&|LN4jf_I|!HK^v=$zkHM62z&Xp92(g*W#7Mc=1en%ew5DFPgQ;# zcOH~=I|hhRO>Yzc$MaPW2e4Qe_*apV{M!2pVXSR8^1=C`ag1*(F>pwZ2jnlxo10lF_;G zuzTs4Ym8d<%J{zf=!QKR6-%i45BMdat-?7Wt0{b|WqtFN>hr72U(-aIR`wP};~MV# zI;ML{W3X`%=DcQ+u=Fx$=o)=~GT$A?mSCY?fo6&AQMZm6A+5%Ta${ZD$6eaK903MH z8OL{}l+qsY^afA}nae%!*EQo-N~RcKX#l!~;$ShG(`cF7-O4%!O}x+x@1Iy2Wb(Jf z*)R-c-5yDE77VvCA6)R4tXHw%A_D}^4v8W6J$&eH#*z%Dl zV+5>5)Okc)URi2M@5e?DkXg9)c8?x~18&RN@bhXCWdb^M6=lnW>=wG2GSd(VNSRpb z)mG>B&hXi)CrQ75{%n70*!((8VItcF7y_che~R#wI*@hb>0Dt8)-ouRQG%X5nDPs{ zGWWqMfWLg|;!JnTe6jt2k0k0iad`g2JPq?p3ohrxafS!&bdE>rY{T}FmiHD*zD+4` z&ALuf^F!V@llORy90o8>H6Z+VS0cW&&i;w@$u`eyftdgL<#oR+*mO2*fy~lqEY{yA z;GSEJ-)B^s=CxnUlr$H9#aNi8-p~|_ba?Q?7Q)`Z-CnSIJh$?*?C4${A)gNG*$8gN zxyFS&@zG+`UzYTQuHTDdlt6F(Ou(w$9Egm}rb4ODh6KkxfJv1R<&7Jx&!2eZxQ?P= zW(@USx#UQxDkKa4nVVLcCH)hH`R1nM81EQhny&0!4H7m2Kg+ojs=#Mh;h8fB-VwWK zX-1NPQpY>VNfr`9D~g?xQGhCrM8dXKFzxD2lf6qfP7z?@5bC%N?=(WaaZ1Qt^@o`@L z8LjNW8SfOgQ0Mye!+P7EfntTCflQdAC@xJ6J?ol%@s+Wz>Tj6D3HWNnlGGyW})Leyj`=^P`a{|C{ ztrII?-6OahVHTXl?A_*)LVk{ZZGyEWOQMV4H>b2vFa0&mFf~i8;DdN!?u|R^_Z-Pt z`N{dushLpCb;rMC*N&OT*fp4cD=xKv^UhSb`rQc(aP$922Hh6$dtje2pf%$1rI*bo zrb$+X&)S_=wxdIeFf>64r7<@eqO(k061JjQC*PqgJgsuU);Mi&KnieEXH?f)5D z745_6Pqm79H~Eb|(udUZnQD5k@Qc#7pr`&8v<+P+6;Z)*jrulCR&=x>$43%mamx8X zA;Nj(5psgmEJ1&9dret7RW_zVq}r;hx(uuONL|msy%uX-1*K92clNQA5a%ZaUhnzv z^9;G~wi-r0$IVT9+s)FZ;?P71q_Qc}F13g%+x4t!Dc091OMF(XvPp5qa=Ot5Ctc)f zYGA|!ARE!js$ys-B+VSG#_^#{C6Y%(5Fe>UY^b$1lVP4RZi~o9HCy@+A`58jaJ*WT zOd^7Xcr0IqKxiYBK)`sGO(2L3mQtbQz&Nc-!M4G+%sX!xe2#fPGrPhpE(Zl*os`UO zT#S)%vf*nOii+lGo8C4zXQ}^15Kzqm)HoqI3XJ+c6e4-zoj3|^&;#8WMP)>3`8QEP z^c&zo9vXqboF3^G=ATx~**DqBeUq1W)SbnOZq+9RAU_~amFEsu6O!jBSzmcsDI5@OOGf9!d?A?vnnMj`N?uPhc6NCm%~PzyU^!uAcIF(Lyk z(rA|&=tSe|Z}s=*-;ncuwQTIpd@e^5+O76ug59%MDw^ZrJ8lnSH_BrBmiqbJN_hD7 z*P_%#H_ldD_3wv9NeE$^rBbO;eZc?bym5y%%PJw@faB>e*-n$= zc+~T6#;%=&-^pdX{bGS%-ceooEbB=61V}q_Yy}iBgk5(2BN0XD7-#DKa(6alF^p@a z^LqR9^?|UWw_d;6$?24TiG8kcaoV$ zAyt3%$w~6N=L?USn#jku3Qz3&R*wHv=#vZq>o#=D^>Dol*@(V|JaB7xZ}shU0?ATA zjnULxU!|-}1!pZ4+GoPU!oi`?BUx0)Uqb4QC*bISvQhm9{p|2Y93^~WM#IsPlA)q@ zfLUgVR8wfz^R5hUiZQ3ixW|N{YnY+xVCLvU!7Dto1q(Ts^D#J2u|gD_ibcVI!EDq- z7=wFPST@qpRKWFnaEI_oAgGPM6OBbO#S;CKPls2U~pDD0_fjfeIphs7SSQr@{e+RXL& zx%DlD8Mlu6@wLrdi{e8md?HUjYz|jdZ}gvIS`lUUwKLyaHB>94Y_7)XZ+?vgFHoOR z{8MB2Uj6)A@>@iD89vV3R#rE%Yvk&t%j~TNEBq6;s+R&TPVI|RoIgBFiqlDujWt0@V-Ho}`q83QP_c)8GB>v0*y@Xf=<-ENW0Xd6S%C?g- z$)2w#ArIMxA~G<#p9s$@sqnA2xZN^lA+ymX|m50;&6N#x}9qbRm-Gon19#@wZKP>>GGoW{`rld4HSBS~) zX4T>u!?D-M$+Ig%6$B(c$hLn=bq{V~3H59Ni0rL1K? z)p6^YsIJueR{k2dOG$UglIz;zFF9rx)h53j>CcDx1+mzMW*Zip%AvZlsEB;UDR~mo+Hi_pk`9ggC~H6tFys=AwX}LD$SYCv zTSXY`9M%bG4Zo~Ktf_@Y5(tDOQ;ytsBAlYH?nM?d(Qr;N=VC{Z)z(S4aujIHN=S$h z)(njmo`A+^#ROuPv(LqRLNJXE40lR#&A^X5-PGP75k> zp?oc-Ij>eaThx#xwuB-+>kMThUufgKd)TgOfc)HKbBs`+u=BqAh35I~KOL^y+c4?t zmv?Y%o{1Y_3Gie|GX_&eB|V>nk zqf09%hm<#0ehYImbJj^3eUxpYvCEVUg52*no{(eb%;YzuJ*H|AvJ^54MMAb&r=dBI ztC28jCx4L=!Jcu)FYehHvdfRh%Q$btq^jXFJW!QP(Lgs(%YZ_UPK!aG$KIwaBiYES zB9+F&hxrFLpz3uJvWpeO&S5NrWXlKrvPOkDnGY%Qmso}lJHJTSt7?)f(DQzl#5~%iNE7V6?t34etBC32Lg+wjF%0_2@g|*X`@O zGAAAUUCL9w_Z`-zu62CI*kwx_-JiYxBld1NJ2%B7-V|;ScJof?bIx;g1;>d8w=Q=h z)_-b@2WRgaxx<+6cS(pj@odMHfAGl3MuCUEIhZ*gXiO7{h%&Wdo%4~v6Wu%-2i|xn zcUKK2YH%YY*FB>7DEM+hhIheq}HJSiZ#HEG>6} z`aS1^n=4R--(QE$oWCvge8tst-{M@7#ld#_1@de_Xe%kEW2Ri>*YTd>v(=x^vhwFV z?>+hcP}<&gL}_cKUU6-IpFyD?E>wvUZYZV@4ZZph!Pxj_hr)GQP!M^EZpH|HsI%I1 zLCf@P(@SYy3TFRzb!k%+L<`vRM59dQ9|qIQgP}L93#`lC`tDs@lWbq0Ua2>^bep(P z)9e+o+a>83LG8?da1d3y7<~Mx&6UAHU`oE@+PF9G{0zrejkt23hk~D!)iMtpcsjaf ze_zrLvi~H%;{cuoy)bNqO)~E}I|uVA-v3kGWA@;UQwCqvg zF3GwQui+EW-OxBNVItxfi+%8trG$fA>H2&wcyCH1Q%2?Y4*X=*ou=!45N_Xy(I74G zY;m~%#?QU(-2$SuU2MU^JLQ(kAqgaoR9d3*o;rAKqZzsQMjvy0S zZ*uEy{?_1O5!)mOX>Fk1tLXgTOlp6#g1;7C*zr4B+9|eT{ntv@$$_p_*Q;Hh(Y5ki zA9GU8TWvt$NwHR0yl0e{RgZocT)`Dc+&j#m}341KAr>u9x#o!sV{qnBjJ{V_qOvdMW#x zuQMLsSM?VbcpdeHCXrfA$wdG8&d1)i_*dHCk@ndK`v(fp=)?$0n+jW;-=V8@b3f;+ zY&=oSIf1iE6$za&;S?>)n8#tU$~jbXyEA}6X%dP+s{X*wq*%*ShMu%bCnWO~K8aD{aZb+6D|tR{mel~IQ&7VGYbfeWW#1RYsA z{hA@1-*p3pPo5qn2}|-0myoRz8JtQzZ$z#MRI(PHIWQP%*hzYS{JlQ4;w-5F;T;l` z&UviSuUhBoyrd8g^^JuQLHQRKXFB_66sh2%}ELDmwo&HJ{N&=F3XWt`xiL0}y( zYUJ?2Z7IdiDIu@2{lY80FP_M*?@s4_a`L+(AToHV-ZwwE@vF)eP3C>LB*n6^DuWnoYPcV(?~+OYpr9Xr5P_V&Q4&#) zfQETp3a^Xt+ai+^oZfgnus(S)tyom|eH}H`fcgG|CGf{p$a__+FSc@&Z*`de*hENS z(Ge}aoWcUkBksm%-N5jno6E|q`f8pI&w(6GdMZu4bkaWkixR68uE*9biD$liI<;vR z!0FrW$V;n&L}mG>sQGGZkI6N&POT?<5AQt{5S*ho?<>UdHqJ>{I;a2Uxp4mIYzvdb z7CRgsZ)zIil@rNGg%Xeb@K$!9HUpjneZngI1BxcfS7LBTEP;glsij4fahjW-pPMiC z3NJpN`)7Y8wl!fPV?{p$u!%=71M!|Ws*hsjhz>F`)_RG*osxt65)L==w*(o)MHKCU2iDzX5X!-Ov@W4L9I>)2QX zlp%OEt1zSB#yakhA5S1sARxd^xLPH?%remz#(48A&dy+Jot?5t0eO=dFm8`(W;#p9^@QoXA@ zqso`0iNIa_&x^N*X!??=iilO$x?={DyHIsI9Je|GXC$tTa26!u-J5Hsb|3Aqsp*d8 zh@Ok&bx2yWyGGtI#m~nWJjN&Yc4e1GSZjvn%BsiS9Tda4l3KF0CF@T;$5Oht20gDA zr9Sg3?n9ccd=z=)C-^vsFWA*85{>>IDAW5@EJR2DWm7bTf(!45kfqBHk!@dAX5_A! z7myUB14ROds0!YQ7g8aXQ!lQ_4xCRPFXYW%Q>?WXoc(ma%hzaxCAG=vtY73ux^GlG zR8ctWIcBUTR2yM=nlww%mSi{L$<@iu$!OYJ@e5L{B(QDXl6VQBMRT2DxT-~YA(CO7mAP?P zruzcaoYI+{=BTHzKjnh)k;&cGmuYveZYpW;WU7ZK)28LK8uZ2~P}>(FAwtnKUzaXA z=j~O#Py;%8shX=`5w!h|Eq0F+0>n5TE?-m5ydIbOoo1L$Lvv1$FE~f;_S>ysI$bj% zp<+iYmVsW|yu?u0B|23tG76?&mX(sw_x+CeTer7w4Fi6h7@5|p*nV5#z25v|?_QW) z`&;MS!Id{*O{4d|jW*bwT-*5VR3d(|`C`jaS#)q}`QF=_pVd#FP4Tj#UGKF?aBD^m zv7zbxm9B|Z-xs!_0yE5pd&-T5Ae}v!;(^x#+XaA@SB){aY69qb>QKl^N_=CRn}@ zW+D<|EK@Zg%h*TJXnDNR?ll-(jkI$XGcjh<9I)h|G&59y?}%j0qv$MmFerhW?3$N- zjSBj!4!g$0ypfIwjp^QA=|a4dHM-Zlxa|H}4vwJh)_6Uxo|?i!WR^AMc(b6}bd8Nc zykoN^Bge%#24Z0(!6_U1&bQvO5-FkBJux0WB>-jVtKpHrYDtxqJB8zlVFrZHhkkLH{M@IZB#a1U7pkmalN8TXbL}b(2({ry@LxXn7sF`L@MW`FYGbxEf#r&rA6H=Ym(?Imx72i#UHhZT z2Efk}?aW&tI;d=d7FzA5W#ML(HBq9rd0E^FqtbMqq?L%!=`hxkS9e|JmP=u1F%!pL z2w;*R1SBm$DBKrx1M>u!Y5fgURwyO7uBZgM6p%=^6c>RMX$%96jN!K_xjNPuCLrHT z6)j(E&CZ=-z&U_bP6;gKCD&0blhdVoas#C)nBU77NgqtpucHE@%e+-=Y$|IBkqKq? zEj2_Y$O!5xrr&Cm@#o>V@Hmr-feb1y!52}GE~G0$p(8lZ!v>Ktkx5lW7|TRuCV59r zWBg^V%D9tU>D&OSep;6Z@A6bdJ=Q+KJWoa}bqXMskBsEW=P=Mrzrzs98xoFl@<-FJ zd8j(x3toFt^1c6;eYT9>_#^DqvBLAO3BJjsWT(BeWO0aVZ}d7G1}azS|GAo=HUxGR zbf>!q;6DQZc<=F{*udR_+n~<^eIn?6K_8A;srPdE9s5W3OlIBL>oqrz&L48B>a>y- z-r)^+_nd^pN?32##Y1~_Qt_m=pGl}PxSn17NYL4rlXya04mAQ`&>*&`u@@Bsh(6Rs z(n&5P!1XZi(A>CkM%r$Ug!6n(q9ZH9JHcydIj1sM>nqD$C5L`oTx?7rw9I5V*KG?R zYq54cDCl+yIb9jy=CMh9aqSEq1wrHzt5wUy%W?>US+`$KwGnXE2>Y+KIjHkfgo=2t z2gy!X{g%D4j;zpN77%K*vV!C} zHCZ7ridc%`yH@)d=itj*@oxFLQ5C6}9^V{5j2kgBY+Ww!m@grkH^=n1KCZS^5ssH_ zixpa$0A5%8vZu&AaLN1HU?lBcUl)=^oiU*JMI~0XRR$$D7-OqJrULx(y=UC(Qcv1% z)p;O#t>#bmmn342zp0F0pt!OWXE`A8N3v4zjJ=j}rZk;#Zf$+ zzwS5!v>8j>E2Wc)((X4RDSu4fI!t-ksI)nMxvB+cz(*zy!x$89*s|V&jL12?OcZi4 zxLwDM715P1)fh!z5IV3OUlBp13Xwa3yCO~Ki{#?e+q~`U^=INL(Y*PySf%hPnD;H_ zWv^^Y+Qb0xx3|jFA9Owf?2q7&*0X`=bbeSAoluNKtz)Vqzw!zO;1v?s(2JnJF$qy~ zj?=~%NPq`&7hP1fv>aK@plCHkyqHcLrJ5Lb-c%ko|E^<*K@AE*L7bIXvL!1qgd`i7 z2$WV>x^}a&stNd^!#GwFN#m!2p(Yyyy`miPC{Rf*wl=nnH$>AO(^K56+cojSb-0G{Qm|6% zrK2G|wnl%U9xAlDfR6}2d1okn;M%>GKRH+f^^P2 z{6l>|G;3u2&O8^bAmf~puPhUw2X94WW1#pR9u1cB8jN$61o2_W#C~ghJ`DluITsLI zBQa+H(?7WrjgV1#uiD@VuE9)V0uV`^lExd zU{}CcC}^D0_$%MO%Zue+vgJMzq!kWy#fp2mEac7&Aq|6u8?qndpG|G$k8 zDMt)Oh;)pQ(WTNkkO3Pbg;7!p5{ktD86%}zq#4_Qky1*Blypi9D50W)V*d92et!2k z*SYU=_Sf$Fyv}u9&+GYoylQ4C-ob!EjnG$bt9l6`QE!29=CO1ZgW$342)hX0zO3j( zx*+-|hJdZ40>BW*+x(Rq-_|f}b>rV^$(#lpfc%a=<6T1cL;Ty zug%vZj88719Gn-s0%9?4NJ|aB&6Yn$>b+Ht$0~pdvwG*-t{4 zcoU<$FL8F5LjbFzzo$bsBY>Y04*Cl#_-@<)dU$^?IO#97-{E`-Y*$egnwC9iu*rn! z)LAg7QOkcGEPn0d3R6R_od&9nKhX>prqM8Y1oMHY#nW~+5VKxD`2Bm6tF_VW!|s^;i# z12OZ^G-i8e%^#TB+W^Kv~aLw6n$l3XGiT}IZiY}i*&T9B>WYE`VerdP6RdoKo zX#2h%QS$MPGH0u1*5?OjOM~_>ke?%c(1aNTj4=2H=}tZ-F}pb$0yp??0JjMxVzhim zHIeEa@AZt0l`^W7ttys69MLiuku|NJ0nKuISe`XA;#d#*0p*>wWH>|8m-YlugUwn~ zZk<~KfuE4CMOr8V^z{R9^*~|5#Y7T6!HvVk!L{fqkTI{ZZpR*(#%aWm=r||m!M_#2 zze9}BVMVAaQrwxWNn4#Z7;|$z?+?@R6~-1>)9}RKr%m*UnDTFJ4%i`YxVgEtwvrkv z+|uBX(EQEMX^x6>Q=cOdvpyEL73cC8SRz;!i~aRvhnN7wIh8}ua(w|v7!Al!q*wJ& zi=Gg5O3gbLO~5WwK%^1jaCs9;23-r*08!k_Oc1d`Hdj=Q0giyk%D;zks#UG?sEoBl zyVL3!8ZHZPQ$D;Z!nE_>#MsdCP$6PdMs&+~=fl!Q-L*?ecj^2!EyPjkIs)CC+ExB7 zOEu5y?z~{wo8I!$NlkAqBwXZ;T-ST&aVP$@nrzXxS)@aHl&2i~TD>=Ckn6Lo>kOU8OHD!D zZ!jjFcD37o=b^0GuOldvJRi#472n)=mfyfJjW#b8I%jSA3}SX?LeHVPTigjX@^;%s zfz7IuqE1#AtkF^mA=x&NY&)0Frd{W&_#93$JH*=o%vpst8cZ-!gfr%#rD4uWc3 z1mh}pTU-!mMm=PRDLo!AZ8-5n$h1_R*TIM!sFUhYChZiP%~v+EqX74T$==X55$ zp1EOswdYPKYqz-=ruaN3vN}MKbvU@Ryjt#Cv7-{mY6y|1%NY+~Wm1zJ01nbYqsOr>dQ+e%V4%hV&YXKb z)Y~PsKiz4W=9I% zMXplQLK+8c>Ft(IPKZZY#_j~l!!8gc5QaSqw*!~ur=dlOQo_BNARvkXTo&qUpxaN+ z(F2Pi&;Z_x$ER(5b)L2=`2u3X=W#zs ze>N)iMP5Wk@})e`aa^3q`c9OvjilyH%mDCk80NV#3y`~$xsCPZW&KI5yw_YBnes1u zW+iWIKga4^ZkJMc6k8q>oUrM0!i7|_NGfFi34UY8oq~wxiy6{;JDtwRHKw^%UwcOb z#I3ahN$LOLJ#-1}p34Ao%_fBCcWkVz6nWKd=KlD&*2fxoZLDl4K9E0+Zn}gEmSl}Q z^Z=PI33K;GF>efm2_H{=A||>ULLr3__QBqJc9rLN?2aULG~$DQrWuJPajvrd>g!I+ zaze5^?f9wPCCc*e=Vf}#Jpu8Uu*!#*Rjx9C1x;#^YMJ^H;eP-&XNp4r0)Q#7+tav^ z3Csk}^VHY5H6oQu7p?Eb?Rdvhwm+E;U~6v0#7*f_@uBbbwgo4qf8z#98;B5#dvUms zVhLupOcg#H)7wn7w{UT{1{4(T(7kKu7FA3HC7SY7x3_zKY`pL2tWYm4A|y+lWt0C& zFO>;-d?)B;(qh@Y!Zbm^`SK5w^{n&aS+Wzt!oWrR28d%SSXQpvP^9lw7SL*WEPJH0 za63RP^y88JshRuVnQ;vP=p;qb)yImtnBj0|Z5L1H{W{$>F$RFmU7FSbg^m9^>YtU z+UZcN&~8#l;Uxpbe3b8UfQCpgp}L%TVGrG-UP;jOK~CF|^-RteS{=6wndrX1uPtU~ z>V|Z&6EFW3P8m_N&@s1jc@kOo?|DA2W^SwW((%Ao%}*^YSOwoQLKi8R%Yvv3Hch&B zXDbQF8B*B!ru$eCpvUCddftpG(yR1c*0s0y6P@dnAbjj;YB8ujLW2q{5Eda%=wEPu zpAUpWRgQYF?TK5J)yihoc0hb3WM8P3^F9CG4*`gab0rjFdOmX16zKwKXR%S`tlc8I&7CZhG?UD>u*`jn6i+s;*D**K^dD~v$ zrf;mYyt(41L|*jnClA4gZ4*-EaQ&u*dHth>`CV9U|1 zKDZsd?y;IEZ%TN07YN`6w4MVDzg*ijxE%1_e&TEXunlA7^Ll<546TT`;l29vfz#2W z{<1%}{u-}i36<8vPm@8&;a&reTxMG8mrZh#C&d3N{u=R1(G?+GXiLRhPBGd7)60Zx z`E>csy;y3n;K)FzrP^;3u@H50sy=SP?;-P3m5NY$b|@ZWHx#}U?O zfrOI7uyt%NtFw{I=bA|TjHM(fjL3j6GOWDA=%vca!9mS>kZAsd$qA)e^20e@P}Rupiz? z{W-97d?rvG2BxX;r5$gVwXnNb19;^Q*|^{6Y%Ubwlc3hlr4@{5Al`0M z&9{r=w2iKoD{PD=Ys)=HdI;ah54?i_>WyB%!1Ve<_JdO0ysrBldb?y%Nh7S+Ntu~q zqf=#ifgLRN!+Ea-_trA)IkcExl@KE`OSb6E;Ko0-k&}1Uf6X|nL~GJnlsh1u?u$Z9 zpCj?MU#!$$d$VNl?v;xz5T8yvyUsDiI;Rn`p*g|)1&?o*UHAQVe757@>~d(6711#9 z;)DCQml^H9W*2_{XuuWxp7$%38kOobL% zy?HV|R~`g%kel&lF2}R4sQg%&dI7&DsbLa4WYn{{aRgkRY|Pg~*9>SCri%E`e7N7P zk-dJc+0FYtzuNHZayBow6}eDKDKhQ*hM$fCae-*P=}j7?u&-ChK6;)I27);44ykDW zvudZ(uMz~Tfo1CF;b$IvDqnU5ULGhgbXct4DO-4XJimClx<3Eo>w?2qq20R3<%Xrl zC&vM7wsTaLSKyr~bRT#BycHLHpY@BUV1pVSAJy5UW>Q#8B!w?|v~=KfDE- za(dc(O>Nn;uk}Lrrd3OT6|@>y{mX? zxpvdT!6e={mpG>&%INnGXGB4FiQzFv-3d=h+=8(^+$;wLqJFzi*lY(Fg*JErU=8aq zh~}-hXG?_>&G9uWPhMIiYdf3#IZH2iuy@3W+00lJp2lBG`9&_e?dFrJOH0Kj%8+g# zFSOP>wf;#1IPAWA2zpv;a;IRo=+B)?oKBvX5TF+VghnV)BdhyEZI^#?H8P?dzHahu zDT3_rfO0Xwif4vO!qU#03GS#HPg{tki;ju|^P;7vGbR`~^}L^PBvs4D>BxbU&f*2AxN*y)@ckcBup?4Vs}B$BVFi$ zx6i}{n_o>M_}!6TwYYPXc#t-%tP4=IGwxylr>( z^zQYpt7^m$wlCHSehHU*L|aIH1h2cJ>sSv}O9TStB!)=zMM_0yHt4ruNfGb0>YgOg!8 zm%49@e*O+p&tzEQ6#HivfsWy=NPXM!xHH>mW_0fdn6BX^6sYoX_sY^&oAmJZ*K6%2 zF1#f|zz&5W$K&A7rTgPy8OvD8k5l)zUFhFV#J?q?!=*>>owH_XXwj_UWi@!c{HDF@W4v#GI7NYV<)frUbmqo^Is`y$mG3DM{+O3oZjW|IGF}dKq}Z z_Ogrn8~K?x+d;5z)Bfk~p+}(0`E?O9;w!b-fzogfkEveKaA7=ucr$^kK%xe%XNlsb z>Jo^gaVQI{MUnSKxd9)91Oo>tEPPU)9vG-}O@DDl8IN(NO+A;W@{ps{1}DY=cVV62 zp79VyNDpt3O$8_@jGt{&cD1ASN{)%z@5goJn#VaFuqaNh!FtWkr{7CM8=r6g{LQNK zWg0R2-Tfv@+x^?=3)-~2SuWpF-S_)NgD-==e-?9cIyrah&DQj=_JuJe#m3Q2P==gO zOB(F=$HTle^y~z|@FVG)x#70R+1i8zuSevtQh@O1J;(Mf+ejaNaqoK{HuV8?H+?MamZ)Q7B;!2MRCekbF{h)d_r&`j&9vd#eUHE%JW zdiadM=~80nDim^zX|Oz*zYjRsFmZf&&I1#7N-jE(Dz02y8YObe%nrQ}zL_ajF%D6+ zc9F01pKZz|7^1qZ0?^1}5aX>+K3sR(pVF;sTm5oflqy|h{T@5KwN6jZA~2uit1WqR zFYd)x@Sn~4Y6Y!#6{pvnAG<)ma;aX39(iPCy1CD#arcCmv1Oj6NGs8G`|RQk{qI*B zEMNZd{TkvDZn&)GHG!GY9~at^G`fGKVzu4H{u}nMEv30Re&>_LValVE9UluBvGzb(S>Lk69>J5re(M6|HUiFYbF%~7*%K&`z<(=Lbka4BJE5kwI z65Qqi{NgQ!h=`mrp9?x$?HQ3;gUvzp5?lFpE;%x?o8AY;k+QEI`KdkqbGq;qVLqTs z!HR|lN#_Jv_rX%|b1*b{j#?lR-s7!agH9y6%rcoL@=Kx-iR0`W9G}DXiErjLR_&aL z*7r+o9J%g_SYm70WeTeF(YfOF&EN)`+eUrwV&fexf-);_KGziGGt$g4{;Z*O%BuSB z$@8HtJs|h4bHna0@2a%3P0>KH{H`9w zl=iSwIBFgn4}Pc3P$0Kurrf@+8e++UrKkC+p6H^X#5zwHE-tN>yq+?pBbAvHRww-jjHNY$AL>1y*w`C9h*!B zqGG27cP>|^dM#rZW~mw)L`-3>m8Fy#2mIs;9j<#p`}olr;-}<@4%e+N`A@2oqq)V{ z8NjAJ6G(8=w*g=2Zqv zK8M(rkLnwFgSDvxR0&oxSHTCjT3bPcHcz8mv~Rv&PbHeR5lbTHk6|A_5dHhM`p<62 zq4d3c`=3`pyx)!Kp*dYTS9GS@ zuRjjC-D4YdYx#iy+S}6-A^$_<`o`X(jHh1@$>5ZVyLIk!@^5?XqR%6>(sv%;h0lHq zRN`+Zu221W%f9eJsub_LoC$$bNps%y?#dL-4V;VO9PnJh`Fr$9=l&SpgEg4!JF!1M z9*5%x9=`pE&BA6l7W9~K{az7&wDj2POt4e-GNnVjopOx-VDtP z3a$G)8Lhr}#xipIqmK*M<+$^#Bb*Wozm@%wPTcM7!jjj-4-}ogg>AmMu-zLF+sxmx z{^tFiatEW#%IM_*W3(&}a;6qNgGS7%U0mQILnUE6C{(ZC@@(SnS; zzmiW+dFvwASb@oiS1?{WBI)kJg z-W#cW7&M)DU>==`j5#AVs6_w4LGRDtqk^*=K~ zYs8ly)tAN|{w<|`-QHFh`*LnaByTT5&DrZ8^}@8$$8wQCVnQ_xpG!+-GC%(F_vT}U z8~8ZTa6{7W1#_pG$G7}Zs`qs42EbXp-XR5pgc@i9eDmyY}UNtMYcYXS1f5jUCSMqu+Rt1N+5x=X8l-1ym+KYw(y zOim3{CPVVWSn7)?u_!e(v<4;H5u^*pFW;DLY%Nv!Lwbfs_4~yUh_N06*kzz!jJzK+ ze(^BD_MDTuFw+H`BX>O^njZ_{LLd#Pi?4`;r|v`&tQ6;4?8X#5mn!35FP-3vnXC2F z0@jPbNIV9tGr@A<&G7>yEBaM z@2`TIx~exOtn9h3oz2%}6`LItT+ojE+vnBkv$1tvRzrt-sh^c>2GhzGyLjoR>O7OP zQk-B)*J=^R+Vua_k#3q5@W1Onb>zQh8TcA!dai#nG+i%d)(kmi_Xk#G+Bd;P~Z zm4aVutr*U~Cm~w;15^%qMkWryCnh3saT~8aOZo8}P`cqbWxs?v{@{;6Dp7G_6%L?T zNgqy?^}Ubb!~4?9HBa~Cnhu+Za(^v4B0z>NflKrt3*Jr)ba46}``9E8&8Q5uufu`z z#=L|z3_?ekq~ke6=tQkpql(*g-*rE#W<8%ewE`)WG$&W-)2ri78A zt1>0`BR@PO(VvkUjiN_>)h(q;UK9r6fH+h4{&%}sV}FiR*T;i1*gpLIaWg0Ic%ApduM&mG zV8=+;g?0In+PS+Ok>7@{XHBT7F{f_6FI<#X1_2OZAs*o3ReHdAgf63yu~>-Qs1@Q8 z?@H>=>6??@50sOu7GgBZy99(6;?k}-AqT(jy#l;rysTB=nh)bFkFOSH*r+Z<+3_+g z)>QIm4@|1=REaVPZ^;r$UR@~?VP?khonB?eRg;(p<HeZt6v*N_dV%@8Yz!6ex&t zu>eG5Lnh`*<8s~WE?Ai!`MTxX%84Yw z{14}!Ciar703VOE7OoYx0Kx~Lsri33r7OQ1@FGL(VSz&w|N3Y5?fe$m?O_-c}d$y!Q4rwiSjG*V4ko~ETnW_3oWSvqzd97nA zmA9TOk!>DJ&{uMODhhomS60v5$}D+Z=YmlX^K<$qpROqY@2@IleNj@_a&=2eUHPtf z#J`5-_~LP~f>m2vUnHzQZUGKKrFcXT_FdV0UnNokDEylS%Z*v4zE#nJi;g`R|>5PN@k_G+M>Ku zpO~>oqz?!OJdrP+nge4L+Fi_GOc&@8Jfr(wydQdR(W|X)Mt#`8A^NefEd3A+9$USs zH0P_ixF1^S6s~#YCN$VhqZ$^pOwfn#-wI;}#lYR0R)DkvJOCi*hUePhy~i7si7St? zZ#YH&YRwHwYXt}yZ};Zjx^xTImgwzcZl2PLqEyV#>At=FQ0;plc{XzWH--Vcddji! zL@cq6UqRPj#Jm6X`pd!UToQ}BTmdW>jf8{AjzBv@4wTCCH|l6aup-3|g(A;MzvY$_ ztt^oc&D5$cD3u;IP)XW6?*}nZq{h@wTcBYxR4l=AJmV9On#+sI1NK}Tj^EEnzS6gz zjzl6bJuLwMuzZ-SJnsB!2Q?mdFZCJvj3>m$H*_AoKLP7v(4HvFi+RBV3}vugb?3;R ztzMwg9g4kNCy8z*%arz#x;&3etL;_27O;b z&Cf#}uLmZy%y~OfN{JYW&_bDHejDPrT&%Jv6rEVcAkV5-%sz8rxOTK+Dr}Vz+-GQ+ z7@sfdt$xTeqc{K)#!=AwhW0Ew1BOUBDArtSs`=yO{uti98A@E9wdTl7NM`3MSqE2) z8ZM(N1DA%~0coDn=V@Of`Qv@PMsBoz;<-5N0yU zvU)!0zWn!+o#VYeW--`b#?Rx(EFl_f1_(YQug0DV_Jx;uJp4R_?lgU76#UU_)<=>>iUi^4mv`k%Ud zVi$eOuC9OUDP<+b6vy9Cy*}Igs2cg{@&}E3N4=AYU;n-DhsuWJJk}8A8oePU^ol6- z#qK@oX@uFZQuH(#i{hft8;1%<4URzK>w;!540;S>`&lzyycw@SJk&X9aV)>^^(5sC zL5!$yqW*>hIM^zQV2q^?JqKCJ-+YjoE8)~L2_GKS;T>sW7Url{2@SxQQlC`Fd6xv& zKVdLVPQaOI71~X(MI67f!HXfL4OZ`2Yp~R_>Nd~$5-i1t^fP+=2&Fu`SR3Qea&P!e z`m9RvC}A^7CS);BgPR%Qk;ZSF-dBZfpfp-W_-gM4BHn#D=}wK`3r7mJ*_|JTg%r5VX5Lz);G;D1)yNDGu5W2ErNU&I zDV)iFcEO)vvgDyIYJ-;Crsn# zv=Ana=0D!lwgBEVMkEs0O?5yHDbgxXw=8tYOIkMWn|{@`$hUv|LfcCBTZN_L;S}g6 zFn1|$S55#~;?*$+-LsaQnO3K_^_vNM!m?u%ziyuVt=L}bEZPw%D7Do(j(@l-J9P;t z(v3wse{2(JlBYYhtZJUnKFYJ_P^y#2xc3Q{n&2QtDX?FxAel2zEBME5R2N z^xqB%AbgkS*tMD&ZLDzL>3)B}@AQc)2w5eTmnUR3zupL*vG1=04GI;*`(NEuKji)P z=fR_7_>UJoKIQ+8`{h<+`sM5#s?M=A(+Or9h$SiZDwUF_X5|tm!dWJ$!ro^e|Gih3 zj5?>Z^IB2@pJ;r%YK1SIMphthVuqViYd$uDXWlZ!465XkGRu=3Dhjo3ak$yg_qH5` zYMD8h5#d>K;vWF?Uu@nsaK$uK%(82(m__>}jxh3Qp0}Lgkz~^ErS!%Jo@3E*c!$=4 zTkz^XeviAPdCGr!KHj;i4T}usOQlaI>rpKakFx{Kg0haZ7@#$63$_g zh#KcnWU-!!FI6MYfoGH?c{&*E4DI@{yfaOF;fH8sn6>H<);g?cZEHFBVybncXUmZoaZzDIUS;sJcb(ubbf(B2 z>b>Ce(%^{djTjGi>!k!bNNZg;v)F@9VSv&uF0Ja_J|TgdTbDD|*h363k~;u3H;gnB z|Ml9*p(5^RsMp>;MkLJ3Mbn=DYZ0?tn@OLeGhxMn$1EF~7!oqJ&8Uc3 z=XcgG{x09=n3P@-;m_a>igz{7UUwMgdt|@lRDO+CLV6;Ykilu7bckTao<&~Th(_h; z$BsD4RD&0{RiAmHUr*$Tw=^KKCRF6hKy_vqswcOM5!{sNGe$N#CV>*&zYi5tRYSd& zUXdV4yppcRXleGU}US3+<-Bd=agSO zMt3!}=d1w7ys4;bj`hM*Dnn-xR|;w_g#7zgdHV5OyN^%Z#lvw~RQ{$-`r)Hav;>3t zbwCkbEbhvTNB@iya5qTw?$ZO)Kl%JY41+HY+Xg3;cCs8%)@3yNUbUm&HESSBPa&d| zgJF+SX~lzErHcB&)SePGG#sf;Y*J_gz5rb4HhtEpcv&o9o~{7CQs)ai=}Q z<*_shSUw&A&Bb{k=u~H$9FPz=tqEtnBZc6|+8o~3--MYXRl1>&OL_la@%X>4BmYx8 zXn86CU-9NWT5KkoCUa=h28K3bX(Q+LQ8?W!$uFTA2ZpoH7{=8$Cb&WR>=4}Kd3P$} zy_C%mw~?J8Mk<@Zj4^8!Yx8Z!!O}->Haec+kf)wtIi$JeCHr4s{#swGW#@pv{2Y(az)U5FWoti|9vS>o6c+$_W{|@EHPDB3!g~=yV8-g3g z6#tZ*gr1lX($%|$C(one;u7~aZC=Q|tL&x3C7SmTjNg0=iW~`@dN-zKA;GS5*Qv#o z!BwZOKI7i;Rao$8sviHvhcaRBBNrsM;leIyjA3`f1&zV{+pk)Mb@6Vj@d;h4t$-Ax z*geElVbr!A2lPN;bSQzd%+t>Go(NRV&GtQy31qlr&XW`Y_?pBZ1`z&KVpTP&5*_4k zz2I80Vk}hrS(iT6qvWHv+1V#5Z&Ab$rrrkrOmT65S;+2Oa#Sju9fq=Rpr$MC&`+gm z-KzCIM;Ekvn^RD(BvZcDfuI8mfW_)7qqEGt(4ur9x{Vv0LI}03Oo#3AG^l0|@j?4} z1D_J72A5kFlg~aUIY?kz#5euT5LcBQgzP<)MHaKg?z#UU>%ulOTQ|8UsuvSu;SJDE z^C;nj!Hu2TbP36KF}`_Yr5!~qsn*DwE{lQOU5Q;qzp$^C1rL=g{(7UMUmu;3?GL4$ zQ(M}~-t9kqakQw7dwz9yrLT_tVykbg>ZfkojMoq80L=U66eIzzRbNkQ9JJtyjH$cF zenD@rpb>EST>zjq^3gs{mtLCIkTRrG=PTNO&hg64Yc8q69(!T{X_#2=zdg5MVcfs> zxjY>0!}sYV{n?D*<9+Op_J}0}W9ARcQ~6u|H>oVAbEk3@_v zoUR$9Mn=i=s2a^uJs_&oycW1Tx(|z*0lCrEtxRr6Bcr2{T(ucRc@WXJo*7h(A8+D! z<7zxv`Cyb_#L>+h&CklHLFBI#US!Z^(1yX7mjlD$bERr@0g_CHN@^%unlehW+v9`* z<&bVzX)fTDA3$fw%3jR~@Ka}9(A8zqH3W1zKEq@>Nz=+qspMnm{Y6A!8TmkCYF4eV z_Ic&w{G57*`45oQ;4Yi?_?Cx^k?1xfV+Q1p!==9+gm5jKZro#5o~xgw;AY_60)vKe4^BS2i=)#vx_Jn4%k0L6@%`=f{(U#;3H-S9Thci@xVC@7sP zM#6^>D`w!)X==sDXoaj+f%abnQ9TrzxhYJs<)+)*qvQ1X*UK93oIB4B4JquGyOKvs zqm1U_ENm1u#Z zEVS5@-nXf&(5A#(6%Q1X;d6On%vr!GzLFj#$xjK49$Svms|PHqv?XHsV(v|Y^qPZ$ z))UBjeD814(?5Ds17JdPI`MYA=VUwEoE~Xk+#9cUy=GG%=a=n!vk^g7F;8lVGmRJU zW@^U+*)$T+LUEb3`1kX|SHm2?p`cDBNQSp@Grs$LbMJlbLW%%~xYoVWNt=91&1>i% zNoyRaiSf2yaMCdHv7KVHKq`lN|5rQX zR~qYPZd{!imr(X(l8Pvf@`)8SpsVOb50v8}3pbZJCk;f%y0(TYQc_FK>BSt{#lsb#dt9 zccGsp%&97g`BVyU3FJbd>{ui>9HQu~h-jK!L=AHS6>D;BN(mYnx8hMKY7(j!pIJ$D zL}YTZQvEXLrz5Eg@&mmZ}07PFdE_zGd zXax#wI>J&Y&}=$BJ^Tj_MnFA-E?9>>?uo_!;ra-BxY<}<9b`I;h5y=a^@Uq}Rvgxv z)Q-n*AWt-p5?ek9uGi<+=>@bYoqK@ip4jSn6Y_7##w6)ruGkWs!UY2EZCX4y8O@kj zQ2J?+e3uyU;P%H~8i{i6KEfx!pob#5vwjeWcv-^)V&I4G*0H&$byV>K&R#l^^!+ba zT|#8<5*p;(|B`R4w0G{_FO2vzd1Oa?K%IeD9e$Wpv!*i8TYo@EYA`Vyd0iX7(Dh>5 z=d5tPVgnuU{hCnY{YUO_tDmP`vk=OoN^nxhjH8c)hC;xTkG&2(0Ts+)VU|Q?2PVEq zNASYG*-8NK!=tkXXS;N=ZbyL30M2PXE^VNM)5krgLm7WAlgJTUPa`E(3VtSnCO+KsX znxZ}S3#0%=sa#k>J}B6e)8I-vDHEMH;z(beSq-al!NDcepV{3EFi3E_hcgr*;?t6; zBj+u8I{gcWKw+LMy#Rwp`?~S6GZi>JfI8Qa-FeM(37}MBQH;n)fZ#cx7bqIofpMlz zRsdoQ8Zb()uxg%u{R&Mpw?`-+ojxWrmqv1c52Wp2>xQJaKUclA6U-K*?`Uj5GqEriC z7tN&e4t zyybGKvF}zf=fh?dq526wK1E>U{6mds=)A=M9UlxGh3fkMr+4^AN=vm+$Oi=){sBzMdp7C>CJgK)9n2X@_%)-!(jesdfaGKu5f%KcOa zfYE3^!M$F(aycs)Weu-Elk@%Z0odHiIX?(%v*XaM{K~mo2}}vT%_Nyht!3KpGK{$w z$ykzKRP?y65dF*brnoBsYzVTCprPGDV@BKuC%sTH5j-<`fYPsoG-tK-8jwpUHSL(T zABx5xY^Q=OA>qoOy`6xvxKa>qe2N>SE8{QkMS_|3$4L@;?amR=AE^-< zT$5{=4@HxI^>dBKp`^syLBgGEonMb`jZ0lubxWt9QLk`Zyp2E({C(imkd@>W&yd0R zM)T{Ob&6TGfrTlyAM9ExlI*wNaX;bXWpy#%)s0VTSKcu#M=0%uj#pbrXoO~zgFs~h z=|M8mv%d{(_`J5XWli<<=+M`*zzOpcqz3o2bIjQk1*t;;cf*Rc0#bWMK^~qJ zfjdHZYp{hTLEprzxoo)-jc1iY*YUmUYx;$gR?1%mbCgd!PJ($+oLSQkFLK__Pi6YR zd-siR+RnLyCMmC)j#;dqilxk~-9)aofe8^sW||U+Y0l5+*}cxfIKeTATl=t2NBY4g zDDWWSsdrY1v^glI8TlYvcPJ-9qs#^{PJgTs7b)1WAFJ^ad6&Ny)$pWpmYNecb>>a+q)@` z%s%+(Y}z6}y9(3Hala;bhQ$lG{WUH^cS7?ft~sg4`zjoNzVTL{k`pbBkEVoh<4Q{r z@l3bkal?fNhz~ZROg78XN6ykgih3tua!ep>D{VCvCKsp*5#j*K>zzA)BYb5DAdOD| z?81&ljRXZ*6LbA?)%2|OfQE-IeD*kfHh_5|$(Q7-M}so+^UPeWppiJ}y8ULeIs2vn zX{!FtQL3Vie-n)C5g15c6F)Nn)9(jCQ|pZfv5rTCaX%=!kLnnRF`_Ke*L&n+FE%^Q zO6IE3P@5=-Dg&GX@{&vP@kR=uJS!djmXkaig$ z6-xsq!X?wPZdMowvo{9DEIwuff}3GzR&vFOd>=kKpPh$B>;PQUrPVxHb`dz-v|pN# z!0$L%4N>f|rsl- zX{lA$a9IBJhUT^>iqv}#V}OEw-$=@8SjjtqpH{ZHzs`M%0dJL^DFqKf(??w*AHY(WTacNdp;RqP_ zb@aQ1n#BNG&Fu?C0^?@shNA(M>bEFiAFZLPB>~Y|ftBUcQT_(!T|$0x)B6|&BweZJ zpGqmG*L{6qeTI;Am7)*4`spVNze)Y|51g?b--ZYG?((_I-n}kU{dGL3jV^`yYkwA> zF8eh9^#Up4)D3!N;!NMf=D|bD0V_`1mwe~5RbG1{ui_J2qWqvr%U0Dkn|j9YK6*aD z$yABD_;09L1RNW5S z8-APpa+tT!9w1VwiJENl;cQq$LK86d#PkUb+TXc`WPyPci&ZZOYs<*695coVp~~DW z^Q&t#@4@MdTQ@aP(w`UZFTq;rV$Pj9DQI@4NWQoxYaSQe6z=xxzQQa%=CxPx?}C&9}8(wF@h!vKv?d|Ko6Uga4D*{wFB>cM$b8<9on=91a3)-1-0a$FzG< zxa?-WT9O9VtK4*@hG;SW*?p9SyX_o6`nOV)G=nSpuE6aiZ4imc?hyk)n0SZYaKP}1 zka0`w*9ex+x6lisq%w`3TfuMSZCQ#NNTq7jQa5HnRycANWRw4*OM9LjMj*I@a>Wwd zUqJUaxUFf^>WBVnU*+y8Mny(IDWD~+68e6>bSEsiR=E59{>V=}6BSzvXB{A6jHJ8T z{RnfJ^%@0>3;-@*_vG|MB>_dncv0{#n}GOyHCrG`HQ2g2!DzWuiH9cWlXxJM3CR?U zJT3T}giWwyrTy^%m5bCwx4vK+c_4n38{UtNjxVv2i=K-H3=-TK`j8CG!fJ`RrEaQ+ zrTFR*H=4Y)l`aYw}9eVab zO>5wwDW9++;~12~JWMW&4!#kK1A^|jLV^E&?}-S~oz-~hiu#DyAM-NlWf%QxwC^#f zxcte08*3C=VE*3iJv|_l{WeD<%S1k=Vl=K>)89Z^EWyT3YsTusp2O=B?RdAs;E#7d z^rUG3AQKv#y2wFIGDDiMpBaF4?8~bs)*CkWK}^E*Lup)l4rKKUq$iH);@gHqw+fgT zmz7xqh!#Jslt2r=D+Z0TYn(*$L%&CxaYS=CRnkqKPwasl<8f_V+EED=mz0p#p+&0lqY#m4v?Oml})F?qBf+BXzDq30^l*X*RYtxt& zo7SGSSIla)s9n`6Rc$@_{h#MK{x7Z$<+*^ZcB&Po8GemNt**W^?#g z_I``*9&f(^V#v4$a2(8$=_ImqfzjV33t5 z>4zh{84Ur;_Okc0OA80cn!tk~mnlTyp|1Qve~w;=ngEK<_+D1}XE)L0Ah22bO zFqs-xZ!3F%4X$LD3Wh*3dmfmF{ODOQp>D@b1S;7X>}H0%gsCIy_n8blXql#Z&IHf7|}@m^VT6k@UWkSf`; zlOh1>S7dX7KgjqlvG{mAo2CBj??3(Ahe2CU?`5q~Wyt_8!3Kq}fPr@#Cd-*67VeXq zj{F?@N?gr+aNk>VsF{ebDR-aQX%9+h9$y{j-8vDT96vM;n(;5Q*>X;mjy9o6s1ntq z|0sg$Hcf>!wp9NNc)`2%t1Z~ne5?*!w6qu2eqrsJFP?sbVVj&#EsYO+esy@FFfT&0 z&7lY1#8ha&#q@n3!cOvwn=^mT!JqNrHN|)IIH3kv%m7{}WHLe^fWpSY&E;n=J+tE4 z;j|)6#;CSQ?44d~G56xqC+A@t-5+MI)-uH#sCHqj=O!Xq+dpO*oVYe;YUwx1OjNcE zjl*(WAJ)tK&PQ_36$^q#4GA!ktfq1%J`z*1)4`0a1U>i$co}G5I z*KNzarZS4Dlz&tr5x_~Sie~2S_kYX0oTcbxYpAh|?58+bshW((eJ|pF%FjzsAM1wHMQOw+6Zxg^@QRz&;xK4bhz_P?60D!qJ!pi7srjwGiaLfdS zFtXo=joMt!d``k22DB2GJMtKGJ8IeCg6R?QsG*k+yX{43GD%8PO8ZEA24u6X9Jro< zM|rl_PJ)PzaZU;*dFXnmn~HRt9u=_!+qk#$YX9d0)eF6s)B}PQ5l(0zyuT!vK^d;^ zgR1AEiK)aoW@E&qu~p)c*;Q-U;rcB3+BnQ$)1*KDu&fl8t+|St1=xd$vp26E#KMQn z^VaH@225M)%TUSe{q-mtNI!dgkT+x zUP|OLZ?4GV3gv|Wa3tSMT7Wjd3Bb&)BnvR#BKwze7mTc=5?md7&Qt}>Tqeo9O|9ngK`Zse-q%=;p>mw5zJY8#6R<^;qfsF7P>nQ1<PjbwN;n&Q!qYz>8-} z-k-GpX=p^hiXo%?hrYU+o)dFkE`B#*;f5r@YQK$obBRR~@PMtuLNtWU+=YjSYP_ie zq`Jgzj%Y5bAVi@%&^|Hh7`T#@gpZG_d&5I>OBf?{sDDACJQ7Hy0|>jD2eIx7=`V2z*uhq@G@fx0n?RoNXoPhQ68;85psuF2 zv?6lt>+2za&0LOnUXyrxQ(cA{JV~l0I`O6lZ^^zgFo7lB3BxjC@{AY@#}w@)RK*#R z>p>E9WlC?6kx8Fa`N-WoBtTM8;!9|=5U5B>_rFuXh@KmkMdkfaec!a-*%?McgLHme z>Q&TXvC^M%B-yMdLTX8uXVNd~vkV#S-o&V~S2SCNNTm&xusd)Dz}9&p1Ssnkqc^E& zMxbe$hWn@-U-gQH%9@O3<2@=!UoI_;+Sla%9H+-4wO0ApGN7vBW#+VFdcIaKnI@-| z+$JQx3dhbrekEQW87Z!nAwi#k?ie@!59WoG$V$H5yDQO=x+lzO6)Thwap=k)kEE!$ z_}P_W_RRu<7@dt}%T2bUm&@NQPu|g-DWmWwycNu8id3e2yktcCSvWV|Q6Qz!ir00G zPu%up2~%d8|If0$*ph@J%l+L%rnuHf8@C+l64q}l6q2H?@{O3jS>DWq+!sH^7F!}6 zjxIcG%)_4l>NK&=?ovRez5h4nV8ZdF`!HmkSByHYq4csF^x;rdgz4F~s*4jxsd?rO z7t2t=Mn6z6Di!P{tKrH66JfZIez*VfSX`=n0R+-OXp@YmQ4EgB9VJr zR?(p8T(AC=5I>@S>X1mxk(sI7Frod_r!T~qfK30Anlje2{g4zZZVwJLV>$~o2?d&{ zD1?Tlb+6>*g}8^q1G*!me{k$~azNCFe#XomY*zfML59m#(v!8IKXR;*44-G}-FWnW zv|DpUP|Ah^2Ab-aI?ml&QqF3sihPSDzA0)+Hx!HU*K@fC65^`x3rfMs3ZFBJELzwp z2y{hzLIp-w^W$s|++UZl$9t;KaPrJp=utxo%|GOQIj^bBfE$!#NoGe&yv7SndlnJZ{(i%?Q;>}`E3PI%DC_Ym)ivX>lYeVWnswrZMCxfNR^-W9D zqr?{)B*@M$Fs@0RyQ&Jr*wPQTYC<4@+IS0;-m{`Azzr~eFsP&i0CfQ5lMkhUBCpY@ z$LGV9hEG!sk7}ltTdG=W^0~q)`p&8z#Ly_!BHpnqKdYmlaXHO>8PrjmO=0MY5%CYu zKr%1MG9}UUIP+`6l`~#tW{C)djOk~H^Jaf_+|>+@w$z9y=Tn`daKTQ@Tx3m;z04A6 zkUAP$u<^OZQx{P(h5fD(>P%}?_hlO`ovAU`crw~}aPB7MpY#wX%FjA!fSUaE$ab7q zdi$-{zMCKIv56R};kIu`s&#pO>Nj1l<1^EV#dr4FUy?!zXAH}Bcs578`>QKYc$gDz z3Vt#r;b5+MvHSuL2}je1HL1T}pM5S@DZ73ZYK;+WyZOKjRWIK*Ze%&-n8JlwW<$jY zBz{O-P}dT<=X1*R))Sc~^=*=wRJ&JV;$qLaKX}v5oU3bVBQkOQW76O5I)vJ_Z!!^g z=&$<x<~zU7G>$nsuf+v{~8Gf-O$?=rvnLO-@#iy z78ZYYn-CkL^x@JDsPyfoc{+m=%m33`T>szl2>HMOa1(ty&lXRvhoq9ne+eh)WL9N%R&nHHxRO0gd5?C^5Saj`w};h28JK>1allh(>?O4yvKg zc1V&9EzQNJHU>YVK>yLe&?hIlFxp+v@rA-TPs1DAI|lP!%c~6K;vQ7CaP*6)1<0+J zTPOU?PzSR17#-bB@(!2^gjOYVN={H6Y(_o!R$f)GoUTCLwLVyOZx3~3h>C_^HFbCJ z96NT!%|Oa->t=-P?uR}?z*J#?yQ+)Y2nPv#6`*?3fr)LD%f`liPY1wGtt7=^x2QKR z@5nKlz2NLv^7-q7R;Q8%{0=BP9%V9zgR{+9Rbw3bF!qgwe$p@EMzQB#cxOWA?VRgE z&dAE^?I(-(@31U3&%bIHG!&OY?iZotWZCuLHFSSlZ{N`zPik*sK{ zgeE-`nKlLjpLL?@6Vk*b=WvXS_(Q^PzdSr#M|Kd6}gfwUp-!x=c2D?2XZ4pa zE{8)_teEmx4uWi4fc&X?R1YD4BrV_TPd`_i(a)03eztLCJBPOSJ1s`t7(}^s8796r@ z=Wn>al!tjMx2Rg!9D3{cdrNB`b?;v(o!In8w(>fES})kIvY^?M(qSEpxmKPf1>o?` zyBQ@@tkK1%Tl8;0;$s3QA<^m7982wW+Ss~rd!r}#!LdS(Pkx#NWMQ2UG?&K)n?4n; zb-mcYu6QT2O}Mh$((XVLUXQ1<+49=<^ffe?W{T*OG>-qu^(m98Lg*JZ4_I=AVsFR! zhMVWIjX-f(_q3CgB*n0TR0>NvxIT&Stuk3K(j4rQUc;f9P7f@Vi_d$4_H}Sj?SDT4 zCeZQhceQ_4lu>#8exW-Ur`{d9@V0v7LGd5Ap8K>OH@SIksOE_EOl+*$dBV;NH^NTe zc-859n*+Oo=5k)tKpv5OeCab5-%`{V%@}EE>u@2}bGEOgHd+;QsA=ZeAMLgH!Mx!R zcJnio8#ATVGZl7iSj6X2OcjU%ck{DQC;+x{$z^TH+-xHWur$%B`Q|9b58djJJ~A~p zKrm|qr^_Y12AGN2C@Bm-I_rFoO`Ew)?r%#Vb_G1ZxT9 z^!A6`U38SAv_pr4bZiA8N1asXB~d!?!7WcBbMRf8FLWf%6Z8ez5IKllVT_mHAZBBw zVoc5RRLOWUIgWi*mbs9D`X#wuY|9`=%%EbuRCTmk44|PReQ+O|8x(S29y=;uUChDx zvtj~72wr6*)(}!QVPa(!z!9wb-_jbFpA-|yyv=a3;?T8GSM`(6 z9{!s3+umw_d2IhQ>jM<~m(DmAHnQLnWz;AMvORsaMPB%{J(Sfcr~&NE+0cb*_DK`1 z=r2xW{+g_x>(5FWSPyl5cZ`pbg~ zk>FPlvk|+lI39=uC+?Vm_16WygcyndZDOsTvNlGL9)6lQX7jVFEZB;tNca>bz8>QH^b*|ajTUs9on$PD9;9tr)(+calUb8qeb?4m0 z59!65ad~88kN#6@EA#T~+!|HR+2=bMe)rQ?Z@YlK)ck_sQO8H6s;QI2 zudpb+*xv{jsHiJj#E;bL5;UqJ!v2KEuUC#j*+d^a&CTE9?7Zf?L)tXBrYB_6+t496 zwyStOuB3mJ?B;FgvQExP9mxD{lWyQaolaMbdN8?Hpb=1Xj=;$7G0>g~^+1`<-OTKM z%U!X3wYYkE+q=foC;W+M+SBi!J8LSaO}bLXO1V@)q~TTi$Wm z;2*tjrV4)j?ggu8b4;dX{qt!OJwh{VihR451S+NkSS^8`j2I7o zQ-zS$Zw_4L(&tAO4##MB}+2vB$mK$=^h(@|qZFobr7mV2*Ax+Ox&5;?nKO4g@ADqW8h|>JL z0->1;EJ$TF=GWIqs%6Ln2*!AFO=1YKPCE7I{E5D0o;e#5T7RW?Ic`Z-+n`37m^>7jUWTYz8UE-!$HDpc1rOU1jB|a+keomZ@*@`wgqo|UFy~mrH+u3?3 zIsheDXdF6b`a(&XE0?CLr(D64PM}OZ$$8?~sPW-Cxai*lH4SyJ+QO&|`{m8hV@~bb zf?)cgbmR5W427h{tFB^{IJo~dzZeLV=#*m=sk0ID3Oy+$ZzxvBzRf~$3nmGfUsRA-1H#S?)A*-a zNn*ddy%pk*YX#08-W`a#`rz^1yVPMz$>o2GG-z)MkKLL&ykHb{t7&Wzm)GcuYcO*6 zn>_Mv&)&YSVKEXqjNes#MO}X(xc|P>LOWPuNb+h|?;rkYBDZ?`LLVxG=l(bat+CEL z>UjVHl^S#(6)tJG1d;p~S+CeDVe+E*STp`Y0x5V6@ZSE!M4gi14m2$&K2lsDO38o@ z{Lt|xslIPjOEqty`eOvz<^5{wYo+RZ%ab=_tJKs!r|-SjmOq}@Z+xS(XMctG#G`$ zDlc5RRaeJ_%w~BY2B_e&*6s_ZG`9+46<_ zS;#TzChoe%S#TCgtNA7rm?0+9jT~m7N2XX1(I!$jk`9RsbL6#3ltJkYDh^a(sTEjr zR$+y6HrmKQaNY!!tO2-&!y5xv1kPjY%bbsbuDdtu%ixJ!iZsWezNY&_k2 z$9fGMDD`Q43`3=fj(gl>l4{PZ994pu-LX>7N~PS$zshZq{1|4qqzTm~2)tQ6`kkD! z_jjYm=1*kwN0uXPtG>@jJ?+mc`jS#~`E3s2W;Res{Q>QqYA81(K0OkoRk>-$SWlmn zGHJ1&Ad!}AZWyd?j8ebPDlRp~Hl8i!d*xiqNCkLZcBVX0VqI>-E=IOEO;YVEly;M@ zUrt!83^d+2ux@7tP-{*7%*;A#^$ONN(Z;!Q2ck_-WEew=l*?PwOb5LCt0|fq4q>`> zOR?}fg>~EZviBm&=Ehpi^X$_bb*AAAX|Jt!Ub@0PacHrB7sV$9K{{mO5dalzSz*BC z6-g4u(fX*Ng|K{+F7|?fGlQ}arfMV30?x$Q195iuSa?K2#;3CRM?<=VWFF?DRCzo0 z+bAiQRHc`Ch?4tTQVjV%gDJ)SK&uL3N4ABEgK0t2(s#9wnidth*Ei>rQ$_q;G?t0R zsp6U9HWN1()=4YHjSbN>qrm&)CDq!bhMGHKq#H1xhK%<)0c|diTw_p_vjW(XQhf zp+a$=_o2^+Gm|IZxmyAyPg~U3eOVaTKLtK|$C4=S4EdilE4$Kfp`ITuPxhvLZWXxZ z3VnZll*gs+y^8u+eOb|6Xxn-J&wDO@lMQD9L2UZ3YBC$V=`?=SgDi-S^n_wcICPk& zK66&|N=7L488Ax5gzha$3^{TpI9=yq`O_u8V#wU-d<>Y~o#|vfC3D zk`+$nru`PxgNkL1iq0%7{aChA*;)atSMF%NZB1qqNH%T-JZIAk6QHe+YfP}=%IMoe zg@WTVA(lJ>#!@12p6RUdAW8HJEM9IU6(p!{uTOY}Gzd~ALFcgqSFj~Bi>^`of_N>m z5~jyUYg8s@^{P(-T48F%Ow6sjai6yjYd)G_AuK^oVl^?)rIFGvE{U|PCeuCuXx+PmE$AVAHk6#VZu;)8Z@ z@3HYV&pz!ZO$0NUPdN}>eO+KIQ>%RNpvG4HY zgR7C?diAgy9Mz1}ay)!LHyUnPX9kXta>YBqhZLV zt0*1Qic2V4K106!*J`PdPni<-ZJ_qmXYEgNyuU{r2u{<`kwwyN3@IyZ+WBCK03Bj?LSTY)9Ls| zq($VH^_qv)nG5ZbJ)#EURY}NbXL)S+={wKVP?gymOG7Es<@Ae|b8qu|qLNXdaT=CU zUA8AlOy4IyQtQ7IduB_@px!Z`oPH5S6y`1bvHOkm;I{)La!NlxgDV+iAi3Qw*RGDeo8d9QC0gqt;p`e@ zAFhd1j}U69JM9_JWCjGDKFj`b+x@5O`13>0Hw<0UulDl%F6Mp|`1#)ISN(v$DDi!| zzhCj#?#JDymCZwke-Lk!lSI#^B)r;hnY`$2)#Q9T?-RYY8)i|{o*VzLIJUdHGDRP? z*!IR1VxO@xh+$=_uF7?^pE6%i&6BWa@RnR)f3tfiKvM0w6WN!SwDU1yGWkzy-yc5l zzxZ36d{HtxD*u$mJF5$gw;EPBHufh)jqj39Lu!sHVyQYTj$Mh8w1>Qzt;ny&8K{wt z(UR2@eEXGa&HzZ$M2k(=^W1@Zr;k&A{{A>V)WeD^Z~WtMu0alCy_$0i zy5ln%IZkx107cqE%#bo7RdqFc3B zmMRQw{G#BOXnfAMTXM;9Q!Oj}>DtNkiso^EbLKSY57;l3#b)oyithN6^1~1fHHIlK zyFG;!9*>+oXW^Btr6ssz{H4<`f*m`cj5NX~mh|LPu%FU7Rj%=eZ}&dl`aWinsfKBm zI1NS()yuK>V^`3`=DCI37%nCzCISgt4ZTfQF_Bw5xwTZ&fHyTwp{di&x*{E4+%(uo zGAfA*mt{<8mZ{9!wrdUm$m(yF4a$;y@2-w41#&SW_CJ5e>5ZE0W5+K(R} zTqi@HxCw80X9oKRJ@)>dxYVZIQt+{isVX0FwvuZHC&9yiN=;`h)EVMl*n4J0KMw5wV1ny^S-iO@1k^a~FTj%aO(E+naVn~vccj?o$Fz!P(5|y%$#+~$k{KE~Q{0(t zPddj}=R6b_&kV*WC{;dXmKe=WdO>b z(R7G;IQmyh{%vOicbius|L?5N_kl&br?s>mHrTVTmr=Knz;V+gxvN|WkN#y^kVK4# za;AcC&bgETllz%J$^6DNCyXG*vWnf?L_~+GkM#3&sU_mzlkddvrz=lU&!r6(Gn|iu zns?ek9HqvPq4%QJUUgpboc{f-OS}C`@n=P9*3>qpjfTnJDZuR;XY2Xr5vRsJzMsZF z#&3B3mbQFK7}^+e{Sk3S4e)(R37-Ajm=tg?@S_iZ?FSv#!FZWf<+!LV{C>E#`=0y8 z2iv}SIas}OT9}QbEap|14U37Abjjxk1bn8euz9ECNXN?DHti3)?D_}Tr!USSo!cmA z!KAmBq~?U$U%p4}2Q z_1w>E@%8Qx*-rRH%jIb%OW|5gmyE+D4<`|Q$Eb#5l&Ff5ZczpldkxqLnXH+NVMBt@ ze}UZOc`$Z7k0}N4F~X*IkMCct`=hcUl$QP|Z8_kw>Omm!`PXCAy(=^2Bqgz}nr@rE zD-NF}d|_4YqdwU+>MAPmtse;cI*-QhI&GPfuy@LFN;zMMVJ&L`sEccayte?Uz4uW& zt`%i%t4}xE-7)2Ju2L$tFL>^6%{-1Ga3JCbWx4hA1jJ#-5f&q1Cbn=yyg)DlXJs%a z%j3<#pp3x_a6Cq3V^Lsu^Wj}dnP`w~^3a*df@PWo(*WPrgO$|)!mA5%(|Gh<(|nxK z*FoRtQx-ArF*Zdkt9=QovLwf>fd_YwclKROHUDNf#VYw_`%^D z=K@OZb6Ze2<5^%wQ^Rp-yNv0;Z=~@M`i^LsaLxyP24t`OvKX<-fKxW zqy$n%K0Rx0*>grjP4=mc`lZx{b|`RMflL<~>{>m3jpqHvau4o4_>;;+B0=~^DKon7 zixk@R;;gH&@||#(bC6$vd5Yn+jgb9N#3i-Q3psR<5RKpc$Ff0buMFG!SfXB}YkF`T z^xBg*Ik>#6*I(+xe(M^P0ezSumhW%g98-@M;>r55IDTEB54~kZ&02^06W%5mjv#%$ z6mi6Z)?atsoNC>6_;=}SVoF3aM$k4BJn1+xQreWcVM8M2*+X>UT(0)}wItWIDpYNf z@PZY4k8Euf2JSPScUxRYuUHX-O1k*=^yj~s?thDxa_qPL0e}=alFBYaKRBbxS69#V z@V6#50lzo0ZfyW97sPNyF(JFx{XX9?VDEqJ5HBbaL+%%rl-xzs?#&DOvB1Gf| zx9|jka$Y$rb_AOq98OesoFy*t)?iE}B`WlO0>+_8OVjwGiV1c|jYJU^V@(uG;K!HH z#MP7_n>4*lddLOiSzzS^`YJ$fVaMm{OCrvYk^>-HLl*HtD+uW_&ib|h;c|O&jAmfm zg8^%@fmjvLM-C5(+cnl^bTpWtZ2uqQu;;=W@57e#>|EJM*^EbpKu&cZU{! z;%omMtLVi2&c=^D|r(NQwfz%r#6r)@Vpt z^qsp!U|TZ*TDZZk%3`WTyQPu`Gc)*l>RQfU;iu=!yv(V$n{KfIDAYBLTAOrDQR-Nk zCSWqpD8!>Fy2@Hg(>>0&m-V*B<|#txd?sO;`FQ}(+>S%*U{=$(jurJm%gN|Dn5Zb;SNirB)l$>n_Z=prxdj57ta$0J6FdPnW+ z!{)a|9UV1&q1G-r+U-}|K#t9?k@2+@Z>s=+DxN&${+$v$KOap@5*|IuViKe*H{O7& zvSBUZuY=cZQ3JjSb2CZb%hFn~kfWX(FqbyL{=|erSuCY!P%h#RSW7vo@oRNOD7|_{ z{DeqMC2~##kCNhuFOsKv7f` z8UU!-OJ-4r1S}uY$s6%uOjq79!)3s)8#)`at}t-K(W2WH^BHKo%Hy&Yr&uAu6KQ6QBTBXUOtt1$r1d( z^OjP@ugS7|*yDj8i~lN%9vIm~9Rn9_hwda-`<*$m4I{Mk9Ekxh3OQo9;QcVZa z*Ij+|YV*Mpf*3+(`S~4+!C7V_N4W+Njabb>v(m*~wdX%$DAQd8zcs$fTh(KpHIwll zRaxR10GeyBz0_OCeV&B?!~m-IeS-axOO1-dv}EpEPOD$(KH1RxwNJiifsLlvroE>S zMaj+sz!hCea3m!w!43elINDe0rIRSU4Ru1wWOI1FgR#>-0;+D5`^O|4_eWh1fO1qw z{=+I(o%Z)jWtI>ER2V4(8k6JX0L6))k_WP<_s|Y8bpbw+8u4TmF>;TPPlq#prCqOm zXG2^`SSKI|V(V5s7Ci?=dCtf}s)6ovK%5I@svQ;M1zq(#^BR&I61VCtfqbPQm2>+? zm3V!+zPV=aT;97PWMsn2z-UmuBPD<}@R_DzOj@OWWLoh$0G!!SB`1}_*Pv5rB9(fF z)whGT+O1w~JH41a@p(toWLQ$AHy7=QjkX(!;O&HP)Rsp^45NP8Id58IdFN@&%O*}N za47_-IU!g9G|VMp;x<#KPr3;#%n4w}fO1C$0G=N}mCR57u{!vd0MpczrJG4v1f4K9 zG^%C3z)rG&@X_s7cSy}Yv+MA)DvRM@`H{}bppdyUgN+vJ4No_j zVfifR@i*krr&u->**o3AdRhoV=RZ#h@)LQ&r|Wmufg-vQX$;(%>fjWMDejX4nm>8+ z?6;)322nP^!Ot+%ph{z2)x_tdioY_zo~KI*OL0BjYgGHTVHI9&&VmUbL=-^P8l?CbZ1OZ$LK- zkpLhOBYiwC&${yt?wejF-RCpz@^|0_xYj17_Vd1tdQJGShZt~OBs|`U`r6Zrw>^)x z=*TI-eY)h_at5|ekI}DYNq5E$Q93qIIjMGg|FS0n4*meC_YVS--#=H>FNRuC%qf*C z+--d-R2lOchX)cgyq+5-`mIQ6Ob2R{;Af9BHqv>r7!LhS2sn+QCC9 zYpnP~Kftas8VU@{Lw0hyEG6 zTSix|%*s3~XFR&cvc(oK8QD{rGRc}WC}tr5bYw`NSwyG}Ztk zjPZxw3mc&{fJBo0Ap!f!Qw#L5%G1rEfL)&4Z)v4$e=)#w{Nm<_pu(c=vNa~@QKP8p zd)%GN&9T+SoO@iE^wKi0&!q)2Xh`KOcZ7fV-%4_MG8fAOV75yCLm=lYXLA7OSl~ph z5iA%(QAB8y|3i%_!Bx`2^<+%|{jZGK({Iazf@I{XS(>bX_-yjmses8DK{RgXQSydR zeYNYqmcN8c=D*!qJ3<>&X1U9Frh7B$c-Z&t`7MqZbgwyF*0oYS zez1vZ5>571BB@|38Q+LzyrnSE_UyJeS(}Rds%_m-vqluiH%pX6GC!g5I@1XO+SS-UNfGZvQ4+ z9Sh^1*8zJV=sS_L@yUi5rGmx@TAEy~DWLW`YcV+-(C}y^QoHRh0i|9lr^ z|CS2w%;%OfeN0da3}5;{RWewAxt({QIq(g=QKIQ1T~|;4=$cFp8xA)B22Dj=^PL+t zZ2igj;C%eY5lPYF`yQp;RK>n2B zy9kLp0@{}Elu20b>={h2X ziu{0N*%l-3*-YVH>1q2RGVXnAYdyC?``dK9Ci=Qs5Jf6%RaQv@$_jmV-|8#f4a2zu zuBn0&uJUV&1f8zVjD5+4p3HSuNk6?T3TvlyFPbL#+yoRgq_qT^$Uy)fUi}z-4P!3= zyx+Au)fi*2rD_A_^F1jzAF=thdlbf6Pa8&aZM&@s=uxF55GnNfAyZ{!?0O@a{-Ark8)u^!a^U7GJCaQGI zNCoYZNbW--AUvl%eD`#QZ!VMe9DcW#Ll-`2&Bnw_#6f6eN!rpF@}HWLsU=G<<|c>$ zh`X;({aG$fNB?Lgcj9ZfAX)>Y)D=y5TXetDL)0mCV zMW*YBdBKS*hhK6B6$i;u2$5;+b<}=;`+iG!WNjr=p{>tPw{)LC$ z0?7{PpDg;SWGeAy#FwjzMS58apdCa&mVuXsR^5VqfN!C$^1JGTrkkEwsV}s-aDeOP zPS05LlQAp!j-hdogDa=fueUxdk!LTj*%-}Q(^+b33rpXA#~;B@nlCZ=a{M_(q{VCW zqVLaMXV)JoLS0S>r`nd$3~SCOs+XXgz%jDzhrA)gi=}P^D(2|3h)}r%+7DF~1GAj4sKqGNG;dxScb;lau+~MMXG0pQ31h zk=k5-2{b?f0xEla-Lzxix6z(Baim=PjIY&CJ$YYDb%nz%l+pA$+W%^Ql*ky!7Ah-f zZO%AYA!esqJktb>^KrU5YxE50^<2f$m`nAJI&=Ztnn=52Hy>c`XcHip5>IeRBiN1X zfqF*XRiLAlnWg(#>7#1X_`&m0hR=aRI4Vj{D-G?o-UV^j$1Xk#SdR>-b`d@MG>XCh z4~l?eDZc8L{jq_;tdXJv^y6IKR*HAzB_Ym%SL<@P=659Qj!(A;V;6Bm{@WZ`YjGwF!P`Zhje-`kE zM@I_V5c;7{hNF6!5y0G^1X$3@@@eLS^)@Ayb(?F+$&Xv?x&69`@9xE8AS~Kc2iRsb zXG-daflX>b0y@;i-~~4`=2xhdPjwiKW~PA zCxv|l!nCXI)4c6Ax;U_v!jz*j!-jnv$BCe@phzx@nh>w)8#d$@?WL%i+l?(Rvamp) zdUNl}Ka0}IvNwW@F&0-?l*-y918Lr}esADm?-6^S(>EUWD#C|0Hb#!lucJe>SI!_t zglK1qG`h_VWXhJK12mcg-cdD)p#?X$RH;)QWXpj4nX~|lT(0%`TlA(B06xHz$#wwX zi1pTcCY|xK9Nr2+$!gOtx6ZmWwmx0`emRUGu2@+T8bds*n;sc)Ox=%QHl;(mnWGnr z6gX^S;{wP{^9F%lJFrXZ55k0H&m*_EnHHzpLL3wcs|K5(6p^6w~I zjNN9+^f0p|dmg^~Z&1wI1di<>AS?jkSy2nGt#~x42Q%*FwDU~g zJN(nklKhyfz;StZa4v4bzVY7`VuE^R-73o*6b|DtsfJ?XoXB7se69!i3yjnpZaph@oS3=CMFxwpiSn zFIOa7Fp`?t$3A!Bz|I=n92MtTBuhSg5y_5?U^eqPW;TG)Ewy&~P#ZS4eiyTcbc`av zK_LzslUXq{;BsFvLyh4%;x#$vf?UT001mKhF4_Y@!O8&U?u9+FsR{rf{!hUKtTAJ1 zx*HXv=&`nUw|SfI&4aQx4SZephkkvZ^yun29Trtpa_XknA0-gZ+YDd_spg~e`uk}y z!zFD;x%lUt96(hm_|*lj*fYn}m%k`kQQ~xP1z=@C8C zZ>Y4BS*PFQE2%(kjzs`Qp@Hk-qD-t%_dU8f`pu*cP=&`Vk^h0ip1G~1(*7gfO+b5+ zf*_zK_C!5O?-`?Gnm8a(1QM$7K*D|a6Rr#Ak?$3x$N|o z9RwQDyLa2lVpFcHJ^`lBLbWbIe*$WmRc1OgH@VIs!Op{yYhqbG+mK_30)0(k&F7}} zgflvN-cFX92YqTWN|NZv?^$PJOAtvIQwv&I5om`R{$68B4NY!{gU{p)Ega_j#DcuoS&gz{CU)5uS4FH&J^WG5~CCaU2 zt$P0tQQsNV)b~YuLl;8t2uPO>p@X2I1f)qz=r!~z9TA1lLoWi-M0!c+RY9cpA{_)N z7CMMX6%<~6^WK~Phdr4&ACkG5yU*TdoxRp7j^Ev-U1j2f8jeymRFWD~s}Q77>H4n=jy6$%64GU zak=>Au0>Z=cJ-x#-`Z=a1gx!9ptz#kT$LlMjm589)AmJ%$(N-iQ&nu~@Pnawb( zJjQ}VU|WnI3?rEyFITh1%Pps?b$^j9I126+uDTniqGh9C;xJ+OMzP_iEy${l{PRr> zybCpKXvOmClH=8tm4aidJ%z{2(SYZzsi#m?BaNwKkRlgubOdqL&}vs@!XC^-Uz ztuobR?fvY=)?yz7Cu=VzSYYXcsGzc~eg6iwHJoBB;@tPj~jQxo>Afg(2&N@`9DFYPDbhJ0X9s=Htw@v(EU(KjV2Z zVZKBXfa1-TURpFFR9fLh?E9-p?1Noi>96j@sq2ccn%v3j_|@_gHd%ebo?wCB!skoxb&&-KeulWn({7HmRQ zsi?PGg?&n@s?fhO(eVf3tj!cMGCKm|2(gN7IA0q-)4Z0Q?0lIVYZfL`ajCo2;99FY zDG%seZHdvE{L%b+Sn754!-jFo{oB`N(ADf$bAu72qf$a+JF@(3QK_-qWr|@>a*+(Z z`x2z4EWW|cWY*lY+D)O`kSij_8AOaCBR!zp8U(%J)^yJt(C&0z_PtJjVuz-mf4omT zD=7VS>(k*!xEcRNdZMny%v0ywk}dj2%eiYHdkuc~o3C1yt6OVrk2e2JlV4wL^66$> zzWm&AjD8ESZhfiP5j~~n6Z!oxa^>~YJD?(s`b2QM_sk$ zMaAMmcr*pMXL6o;NSnO>bWcY1;++REBG4sTR|piq6v`ZyS#wW`6gT%eW<9O9;`BKz zWgn|p+x#*!gH&DrODSz$>^~Pg#hNCdEZ;{J^p<>M4O`xt6Q+S#zSSS^g(8{ zn?|ey3KZYw;0Z-p^+;uhq{w-KJZ8+Orjc)_qd|bXMh2f-_Xb^47&qIt^qi+Q>ttB| z-C$e(dMmp_%W7ZaRNmh8wtL@yT?|_p=RAcDc_}} zm2}MP&>7iDQ6To87380J>UL0^!$ab7DG_0d;CThT>wi=E;d)wVTm*Y0B$d6E6 zN(;n)HCEfHvS*)#wVQvafVX=o`F4DrV%V+Q0ABwi`Olmdsr!7~PUV+T-aFWPi;q{+ zV;^PAyqX@!7`##awoX~K>c=Z>#{7clshF|J^v%oswSo!7G|6}W`VKE1-q>JS<-h!X z(YMw{`1!Q~($t^@A{^s7YTUrYZ~!;*1ShZ%I5uE+=Pc>5?mn%bd%bdtW#}OS_LBPB ziQO&aRH#QnfzO_|kcqN?vR)KO*%j=;bZDII4wxYBoQYQ7ch_!F`=&2EVD~~i7RC6> z(=wu`|NS5AbNUHotB!_Y&)y^vs}I=LNlI+<1o@{4eLx|m|AX)J_o{KHlC z_pc1(j`Kl`04Z*m#QLLr@rTeIA2GG{4q3>%QflhA%Y|I-LeRbtAugjS0=`J<+W zX#@8+wG}m6d!u{twHOXQoRU)^9uxLM{M>#OXL+3GzW|PGg+w?+LoHlGr|4i>owh6Q zMDlhfObU|NNC?cLd`zk75q)rJD@0zToi=fgzR{c^vUcB{RTrVAt6?Br&82C+T2G23 zr1H^k@bGe9N@kn&A28z|$D7*wJSX57Z;;tb)hDGJ@2ZIY5D zsOIZadvLo{CLq?81IY|urE&S?*Lak# z-Ss=ix~#;6OksGjk0Ne3)pxzU{i3DnSdS zF^xBo^$87e4Yn@{d4w_{>bnCuyp$>86H0pkM`_J~15&hNjVrX}0Ybmepd3!|4&`jmDwIoXX;^o?g6g6C#l0ZlZ{~MfIy?c=jklICBDMZ36ff^ zvvSNEsdv=*#>`Yk+z2T{K}=vq5G$``5yC8j_Y}M>OeT;D`0Of>i(QXQA#x!2+iKRc4SVXzs1$?R z*g8=i zYi#uc8D1adi~MBgCu~}R^H+kTN!>p)hp07Zy!{^P7U(Pz)=zYEexmyNz!zz*%H92y zZO{13Q0Le(=AoWV|9&SvP#9+PPn*Z<@F8F`*GQhFMn%No^(9me$rVvKoDdPuoaAXxn2=OZS5oT^#8SzE>79{jpyf-$<-)Rc%1LxgS*Y{<1$Cg?E+6DqkO00RUd zuBHzcF1Ksz>)|^8s6(d%>KDgdRA60a5y>xcmkIzi_Uz`j2TcF(KbZyVu`3}bL9Q5E zj6`gzJcDwLG=Le4=fJ}XB~%NenS25Lsv9mh@C~03vgsWe3JsOjrK1L^9x`;KG1E$P zxZ0XFV6*vvmz3oeIPl#=s4%X8O$WRu`ji@<7T&-Q*kZy}U-vsb#=t<}6LC8OB{>d! z^X_Hw`%2Zr>~`KUa1%uLdf$ zA30loFR9rPMojH|ed%q0gc7t4877LY26`@{jC--X!qkQ+HR!VsJQ^4AY?gU*xH?pkN0O*EOqRzQ0QfV&?JD5_6mSXnie|wTjGYE02Q$0KL8u)FW?!M9kf|Rm+!pG{C;f>C zI*E-Ar;7{(L4U~)arH$Fm`hUK*~pa0K!HuU+*Fi<@JPHWu%D3K^QHoeQJEb0wpfFx zZh#d)!_Ds=mpzfN4z_6o#3=ais_%^XNRwAh-_WYn6*>rTT6ed9tQn>qj$~YY@mTH~ z2f0|M09!ZDJ~<@;WyJr*L;%nKVIu#Te}qWOozfw35XduJIN>4$7q{dEb>FiK)ngt2 zXs5KGf7iaOkFdwVn*CoW%H+%5n>Ip#O3g2WOdE&q?+Plu5ty(0r!n|}C4{pp!r~QZ z){o(RwMNDw_4(5DkGPcA&cod9FDtxtR9b{N;CVGz(w*O$2YtgM+WmEQoOn5scO&79L%$7YUr@JCT~qstHFK+3`zz zT8VVjsvL7(CRk{5-_K?ua7!LuApIPC5NXhXHeDnw4(!7)P~}yXV@%-(B{8OK9+=81 zOt}?Y7ct<4jJH$Rtz?oh(7^|$kiBjugh00&R0E`36DY0gksF((ru_=6rUM57*qYrC zP8vwHF&NOFC;GueWH&EWGl)~ne+j^Kr4O@lLituM2_#U9^tl1PNWSj&RuHfO0{ZJS zFS;{7;Pf|JvHxDwaH%B6u0@sx5fOS?fkmD40RVkGo6{})6g#n z6V9N5oqh2~wY5dr_83P=mt>UeaHVMh;OlSRw#~z_Y%iU1)b;oTlJukymw9M$ zp05akz=Sig;w`S%-XE0ngilG;R9p->IPBFZoa}}rk}J-|?gsY;t3XRtYANaAU}GAp z3PFdQ5t~0egbEf%Jz>7%_Y@O_kX|Z1N3DFCPByu|OPPA|UTZ;=V<#-^>kge!gY;Tv z56CFv->S<|$w8-;4cLg$8R^mfpJXG`>E$FgBB+?0$EkSWBZ*p6s-Vd~`kABoc@ByA zl4?KmZ52`CY(d%TQ&ccmg)MV8H&wcj_#l%6u!Z7{;C1iiIe82#<6V za@3Lt7vj;-6!{u((ACp%5zbCp;yU)ACa6;-D@i5%wbMLAqfn0I#u01>HV3v@nw;cV z{eO<0KUd6!ojFT1Pd?K>Hk13I z7!~Kb3l=7x;=gj~=hpj?TG$2pda^L#lEyTVlqdy2<6l3oY#sXc?_Jk^sNhd*O6|w? zbe#3EztvkORllgSG4NCGzK}n+auO7uW0Aj~c{@LZ+Y%qjaGhT)Mz+Ofd?qfhlP31E zc~41lF2$xH`x9CcbP;Mc%hhidB9T+e7b0>PPe98I6l@Fa)dap3eL4+nc|n4*+EV0- zT}f)YUx*CdbWuBApFUA7+Pdv%1J)aJ_-ZPl{HNRdlq7{nl18`z)~6<3J{FqqHF1IwKqXAM+MN+! z;E`%4s{ykkKEM_KwX)JxS|1@oZOUNO;{R_+Wb?XawaVW0O!n6!w>RovzAn)Cckk}T zA#_y9J9H6Z6f;Z0G32TZl_)zxQ1z02gT)+@Ei;g=p>nm7RaXrs8ln3D39GSvm8`&o zyGBscMNFf=D7RIuN*xm6RmQbE$aW9}y^)8OY1TL%7J7E$uI7-$0LH#gyxvNCDg`G1 z9FL)9%9aY0Q66Zv#}LlJd11duc#QM1%d2{E8zstB6VFx{{2w;UG;_`^RD9dMWqCiK z;jB1)c8k~Zi=62&s|;qo@p)~V0&$XmMi$Jxi)YhEI`EBwXdF`7#W3lTlejgfj{ZAh zkG{|GC0-IW{V%d>H=S#jOh57SV}qfJpun*pmZhGBgmiqLP*6z(?x*;n;p#EBeUHs2 zWRxt0GuyviC$)X}z8>n>BVWv^%rMAra}+hV+5h=#rspj!RaWExH8u4;5xh4JD3ZiC zcShvv4r0PgV`k$<%^Ut~Pa~CnE~ob6V-%no({gRUYu~Z|)XYM;zHV<1N$2H%6Th*? z|AtpXi?Uz7yWx}C`wri&{lxw6YB^pk%3s&w?C41|FnIDj90UXxtZ|y{k!s+Bva0MQ z^;~~m`CC;!;%ZaDk*Ie33{oOOGdeXnO*`CF0^pKRT&lnGWJbk5o+YyA2}igvu4vXn z7qYe5=$Q<<^;`0ig$s!&x*Jq?3*S}gfVb%-% zB(~ru@erbm1E=dQTH1@qc}K#9`_UbZ-%KVC`&zIZa_6KGWj};_%<(`)=wY_cLG)~@ z?Ca{8L+2N!|B7^ni(u41pi7CAPO^ZZZGlS~nt%nr>zV4beO%r0;`Pney(gramAkVZ zY=1q&$PT+(KZmTGM|Ijgjd+kHc5ezP>}A`=Wb}MTfu7J}<#f`7arr4x`j(BWuKmE-*|v$>6{A zLPO*p76V+h^66+d_uUTmLQ@eL@i~3*!Mztx%n;OlQaT{|J}*;ps%nznl8AzroW`os zQiSmFqn8$SHi@jlI(dD$zqx=y0Et|#%&oMWX+LlVaqPYDs+xHxC>Uw5Y$hO3;V&Q! zCgk^_HxiDvlNAr}s5GS(k`anA*Udwyc}C3R6*}p*y&SfF!K!>EJ+ydOVjPd)BK9Ck$0Gc7~L=Lpn8nrm}urzSE_EDk04jyL; zEKocGz^(RaOH2&Me_Adxzg4N58(ufk1-^?Ap$)iT&b>~aneteXaHHL@dGsKs1#!SY z(OWd`JJSAu`i4ufF!Q(&qZD#>{myOjY?o@XvxEJY_pP3Z$d_V*`WNa_SBup7Bd6*i zzv@|{zj24*$|QjDApyl^zcq*l5yOT^uIZprj$iAp=;m*c(zg0`Wz7yeBU#K zKNR2kiqnwx&r_3MME|f&%#g!_q90Xg-s4d|Xjn`E!&XU+s*6I+@`EBo+=B4Ge6*Iq z8WT`dcatQV*ux0>^j{=z5+*(_DO2R+q-UyxMi+AQhB54=SqhyQ-MKw$sj#ptK8?j1 z-l|w>F@2qaKie=aGDMtCSxO{xAPnt>N$CenhIJwe?bYO{K!t`SMi7fPJo4qX1b{8{ z8`CULy5TMtf0oK?w&h6CSMUgRQ=`Y#LWH$>!p zH*I@Eaj54@%Cjg*XhoKFKUh!aw%gp^FQW6LZtFuOvB+QJekBQM#=n!}6XVi;nM_Ue z`iP7|gGPb!_ise={v9=V9VCr~blf=7 zXP3%k3NbBp9nc5!W7920ZC!o2qi+j7Uta&pR4rVP%x_@zVg0=#_otiUM7AwRQlroI z*-OTf8dxC#1t`0lpfywSs}Pnn7G&B-zt3I4M9q3!vUF1BS>HVK8ni-0i^=o?ki!Dv&SS}Si{UyJgU>WB?tRN}C5wnWqiph377%NU`wt7)-Uc+R)%c<^> z?#j(qiN^G(%nLi;UUzEi9dmze+wUILt+#{^{J>dlrzATHw@_ zAheT?F~bs4mk~NY^5rf6yUW5hVjA|hHb2SQ*0~Kqs=f96a^lS>^yU}2k$00>m)bWf zanh1XgY0=G`fN_W3LTN$$Ah$yvnGd0wnfgLpUAWDvXsyWH6?=Yh(A-1%avc;J+>*E zs<_)Kk{HMDbG|V$={dye*nGMAcYBMSafQs|*G5Ibev;AxySX3bFN@Bq+&`;7&pccz z4P2$KCRtqD+{ed07ku1z7$q~ic;}MwivJZvZQU>`O*5lh+f3jeO&zfi>27{ll6^L6 zx!h=yz|M~2Dye}Y3@c2mIM&y=oEjRy^&0$#Ja35UPMtXs#nZ17nbuD4&LIyX zRFWpfb&eBPMLBZigDz&58w4Mg2Nz52hr6o{L*4`yoa(ul7#}U+>OX$>@R% zeF zw<{KfAyqIObG7{bZz;`!c;VLA)*DeV?vY4gin?{WM`w(%pqx>3&}!pKvWNtet$VI9 z7NPq}ceZ(X+1%3;#{-0tPtVY|Rm-`>J%@L_3=YYmX=@b=gn9~-6JNGm&S@|hzxxI@ z@4B$G9=we>?afcxF6I$S7*0oXJyWavO6b<#r5>*%VyPbO{M;>pFsBLh6t>oT#zf+J;7< zsVk4Al}0x$KGaHS$sMcH)pR=Wr$#~wV?#ES74Rq|@u!PoU+=Txs$qYVMtQWjW`ywR zr!%#dy6?d&iZbmfSI09N=gy(OBdHl~h*%fq62MwF(@$^RerpbWX^imh_(*#D(c4|T zckRrvdg!qS){PCKF?V|Gxyp0T-!G#G!DNttpoidyA;r=8i;T`R2~|$+&js8C#I}~t ziSFSe^swE~+H~?oDRWb9V}Iq3n>$aOXs2tAP8g}1t`7|DnGJsoAFjhxU0q36r}X=y zzYq0VmkUKd-8SFxeO^vboB!!ZgOTqnH6tC*dzPf$@zSP=}Je$lC%P+7u zI?u|<4FCEtBw@d8+JK26V&J$&%1UWr$9fhSkwgA) zI{V6;6+r==@A}EYfmIQ9=A1y46XW6=xqmuA-2V(N=ho!*t*ILy?q=m6zdk*9ove7U zEF~n6m8tmns@(a*tU3FxkIR=W$&cHoOTv2$QB`>g^&(HN?X;F6J8*9eutLcchW^APYc<--r2H@b8@GmY;NLb20Q_qb3*LB6@*rW@dy9x6WME>1|UI;jxPMDi$$HnpV#c8)7H~w$W8a!M3 z76g?VY@pcyTpdGS{WRN@4#0B6&;wLzxV8Njl!W2R>p{kZ@VAt1EfTq|Evf@`Ni~Nn z=$hq$+LD!Uh{6qbXpHMOMr9~{6r;EXBWhZm7{GnsC7Z#6YPXgTb}(&&z9$F|H~^8wv*=B)ko<{}KU&Dri?vIt}!ln&A1SY>B` z`;Vx|1WAjL@rf-ya8+;u{k|KnfpMop5ivCs7aFU=4qFBuF7>$Kn0#q1!Blb8j(|x>vjp;V=Ez ztggy4D=0(BhOqM&W~q5%pA7PUe4OG}qEy<7`jp1kTSb^H>&R5;+iRakP1+_DFa2pF#J28 zNM1aPb$MRzaF6TRH!)yUAlZ+ z1Md`@e@$&k)7Js=7T|4dUFs;q~%Kv(1pgr=c~m=otI-GjB3hK(XLryp!)_Jj|qg9_O%7w!4`d zqniG*x+~?n8qeJ8n^8hBS@60r zn>kC5cMsL>wXq;qCC$FssK7!M*dXblLO;i$y1)aRVcYNcD`3O^h`T_0>Pn=Mp%#n! zh@)7Ri^L<82XKzZWBgMKC6wLNtj5%8uxO2HhFM#TO{hoL>GaXeS;LAX9iXGG{WXh% zP#Ua70M|)C$HmFTM|))>`51&yg!M>W*=(fb*n^fT7AB0b5g^1+&r*pq=*12+%f-|C zP+5?<$zdu{6KQP42XA9E zv8IuVxe=c>p+eIyO&e(qgr1i1fA4wj7Y?x!P8rwuN~}Zx;N216ve6hsHV7v=9uqJm zC0%A$3TaXos&hB6kmFPuBMm_}40Vr(sqi$$8OR(DeC)_?+rEAKj_fnpLc}_ZY`s^a zVjOmVeXF@sTDOSKsZyc0jUl{~`sZau9m$SIB40b=g;nK@QA{cU zG=jPC6_}h#IbGG5E!U9^CBSyfMHP*o|0K%DwZN5U(Emx#Am1d&a2Dd*_z_E>*^xn~ zrh)brAS4b*QstaAxb}5t5lUqGzM-k^oX>~gAhjeQdeSp~DkL%aMlBPAV*>OD3GFf? z(k)dYw{XyF!vbq)FK#nFxND)(12A8NcjgPxwLKsDMG`@P zw)(K(^CM;1S7CHMV4Ow*5Q4BX-dTVb*%B}`DcNr1UQm_7es<||R;WR)Y|CTwSsJt@Wtlr(@BJdn;{n48>fpzu*OT{7hLs&n5C_6d#w^6i&i9 zzr(lmJfL{AIKNcC_lxfal=1FDg5@eg4?|e71l{z*5Jro`%T=H!b>8G zzt?h*qUrWrtV$CF3yH?0=IPq<4eg2*#*iq^dQYHmkj8{zRw~gyfnV1tch~;qJ5RCV z@@^MbEqtVi0T?38QEn%lMlZWAqfm_|0o>^8O@YEhSC%q@)5_<2ap030-Pd$}-}}9d z!SrJ(CgcNBIs) z9b!!B$QTmrvRW%SWB@XznB+=1j_B}~xlyJ)OOqtFS)>6yVpayV8sj;?=aM0-lK^4} z$q+#-7pW0PTVBH(AB_zwM-;_z8Iiuw@vk7 zYT@+YX?5%%g)~s)P-H9o;EJYKC)VkYZ-HI5zR22Py z0UM6QM%^vWipxqUhoS#&ymi+3$F=*Ts}z$j)>3R98q8<%fmZs5KP-J+z8#gw*98Ho zr;)xc4qB6R*>GAVok5~o9+mh4)a&`t0v3S9$=|zkrQy}@8+6-`a3yi!E1GYTeI+r9 zEHu$n_%l}Q2OETFlUCwwJ;e2+3Wt6wR_g62ei9((JC-uL+wtMW)LZU_345;s&v??LT(*0!X6 zRt|TaHVz8cI=^JJB=>!6&O+Lmc)XUQ-=9(@a#v|VIGUJ?hJPCl*Oe<5l+A z014W<^KIDJz+cPkr?>=vHi98Wx`^~ukuPK}L5EtHfhmf#KbU95c!hRvmWhFi9sPrc zg2OWNG~$HDLcpP#5GDS%u9%2vv%a@bpSh!-3A0(HbmwyS7!xiJmG5`aLBmkkD25ly zI#z!z-PqOBOfXwK&CrMH4u1bGa_NO0Y79|?5eoU3%{O+E+I>T_b=(UPQi`l#-e@~> zJf5Z&Y7x{8U935fCe9UL-|!GNfr4<<+`CPB4|Mh$Ii6uM6bmRnlJ640prhoel!F)Z zw^za6jk zfXOvHXFawIQVOe)wIuauY#f;L?1uM{JI}FP)%TY&q=8Lk$e8vJm-~YKyf_>@SL(>SGT;O{z~v{VsCax_ zE-^c%GM6HvsfgFMA&cK_cE)g-irVwR^jT8qVL}lX1AT%Os;ZllA~p6Q?n*;DhcBKK zD8ADqBmENBR|EQ3C><5Fl%dC|nE-{`OZ1nWm~qR^jSpH-IQILvkP>! z{_v#pek~Abxwd`#*eN; zK)Tcrxc3s9B^V5B|5mTrCJuf1Vafrz8jhdQ2l=?>O!OgOORmbOdjO}0pMF9;r1A?* z%7YE?eo_04aI*#iuVKzT_nm zDMAe6QK7ah;{u)r zhP{mRXiaGA6$SZ=yWYaFsv|sFgEw?O?6Pu&cn=pXd@0G8HhDut444<&S9yc5Z36c& z?n!I#jlfP2Jaa*eUE^y?ogQ8#eyh1GIc-7)@UT$#=*AvTV1}L%H`WHdG_eNlOrO#8j$jrlB5h0@EsYnsEG&eDp;^jdI;#Cr2Y7r5{9I#R=m~KH;4bh@ z66t2k!c;8LRD6h06G-5RVKL_-aRxPKpij95_>-^^$a$KMsoYX-835?3t(?f7PciSO zQeN))h&wM*&GMntWpOr+LHMs&-q`@L8*HV21geydv)gH^}0XxV;;HCFh@Gay&AkF zblA=o*MH0H$=K4XElkK>4-ND0`*k|`1rxFT-6t()N}}L(E=NVX!J{|l_Ib1#HHXPH zTtR8}xg_cY@GxcGimRZ4ce0Jm#sM(5h7#2D`46j=xk^q0+HYDpkBZk4rd0vk(KjvF zjGxsvDCKRDCkpWczGK#k{X^cI1KDX&`1#?F-+qTI2FJTbKDCZm?f2NFQkK^U*f&D( zH{n5EjYHlcsJ01}G7Po;4F^1n3ZC04{cdgrM+h*}*P8_43 z+~JfKWCQRv6J+IH9Phz=H_Fy13Z&EDRYoro8+hAKc1u;e1YG&BC|D^R_4o3)FwDYN z$3t5AKKO^?g^KIv{;Fhtz&Ts{_)y`E^nGW^A?uD+ODfkWmHPlo;s?U&{52fHkiv}~ zB(Be7wo)%PWF`7A7a{s!!IqSuGXFgT2LQG2p-rYT#+M!$P?2th7RK0;Zj|z1dB>SI zq=*tWu6*bOVhkiDO3@7aO_Y+J!g3Tu9BNaf^kbM&U&_XM_n&P&QrQU(4MW_M4aA1h zelp?|Pc7u?OpZVO7B8ho+OXG|ub<^? zI{pSiWjWXc-~ZVpi+=P%iPNF88#fY5rzilT8$O5e45RT;*<7htf9o#6{pGg!*!gzB zF?d7n)MOz>5e~0vtb3r=tiD4}|u9)AzaAoGo=2NZ!o&@2b&(WYkPP zA^798NxM4Y)5|9d?H`4_91oU==MzLSj|=WgRNdD@x8HXFpsa*TQPG`p$J>-=DyAc4 zkFop+WtypC)>@9KuM00Bs{lEpb08GG36>BYyB$9qO^rG#E0cU;=_IYV}( z>@2ED2&`oMe;~x9fx>6+S~|iCu2Q5%$;p3=lB8;v{A@}H=YLAtomW0M>J&g1>v!}s z@vn>~nF1g2>kV-E{*l=G!6!Bl*V6c=s%rK#%52nwCnRWSH;LUZ=5f`4sKPt= zVuw6qtwY1!u<)M7J}UTXKiID zwog11sKyAMefw$zltL@}4EDLG*~;{X-uiI(=QDW%@b|Ac!ZT02_M%>uQ|3>_G;dI7 zTV9QO*P+jy&;iYNwE-UuUOG7L8y#yKCKntr41cy$y^0OO^)|$xANQ~);9*R4jtZW{ z3os}Tyi@0MNR?fG>y2Z5M^sK!8^Nld956f(MB5FGH}aZg2U-Qc7RpK{q$NYabg-^^ z2Z0cbn?i1RwItYRvB-S^*v=nv5=arnVssDed{xBh;Oh0C8$MUSYgtu}tU8yXL-vT>j`uKZe>N#d+R)5z2)=7i#0F)^9Hsrch ztnZK$*EIAZ?H>PEd6?#J^GbIMy4L9K**ib9k%Hn6vz=idf3$WLCB+x0%`ln$VA}E# z>R6Di!_9xG_H6J%%)FKM%wOugk|djHbw^pW+T zX=wm&B!8TX|6Tq)y83wt-+aSqLJDzoM&@tOOCxB|awo<4#!(vI>{2j2mS=jtih_8a zGtxrjI`Peudg&vl*4GL9auQT3!couD6^*2a!X>{Gp!@OlSqLzX-kZ>dbArkS_6UV3 z`GP@g>;jz8kKq}l{SNpDJZFk%0=~E@9{e^rZ@+F^e{L>G@qoy9vUm6{9mN4zb&is2McLGjAm`gx_mS9fsg5I#qKVqS{;@iU0y_dC#ohAKR!7@wefK?4k=BD zFBV`okB*W&^Crw=UhoSg_hN0ncTP-Eepex%duf9S70$c`96MT+i=b*>4J zZ^;(_>4U5M+Jt7W4Rd^Oj zA#%IULY*Lo!RK#nh+769@EPaX^%!`@3^XGN69$}EkbxaW)ZFAyI03hl6^Ma-^H%GJ&CbO<&-MOqP&nJ$MCl2cGix zN!ug018FHKDFT{}{voe+>3BHb1O12L#_+tB?9w_B8=vi6t&1ijwK9WUHah(f8s^yW z2B|Dgj8hX>VJjg zQ8MhQN^wUfsivkIsj>zWAjv$~>hlg}*ceZOQ?#Rf4#fk{ky@eZbnbxOv7~TerB05j zr~Z^`_7Y4aWrIoIs0VNsz7tLY0ZVjI(dmO~jS>@;Fotq(Kv$N9jxU_i1UEv%1QA6G zfCwnq6GG~W_)TO4PO>04~M%mg?0e6nRMhXw(Mk+T7A;5M-BoMiSKi3TkQi&aVw6>(DIA9I`z;cBg zzx#Ax<8hM1zK?n47eL>hy$OFw>A}Vm@>^Of4)tSL$&qy;O`=a~_yf|lL41iPu6eDb z-jdZLA1O&b;jhg|gsw0jIF0F_J~t1k$k+>bnf6{_G}R~5{*0_1>3*WFtu3k_E9PjH z_>;EqEpF@_45X&XvJ+S5*su1T7QLUTKlyVLN*i{*VtFrDJN#V-Ve>WY;|+9h@NCO4V>tPlGS+Xr$Urg-t}q$KysX`}Lihs!84G`tLgsgZcAY~ zKjkkmPoDqA<(gq=kYh`CH?W?Bt9(9Y0ICDgNr3eW8mk)^4L}L7woOaWY7B$8Cz6EQ z7y{4G5#jeF#bJ&>{j4U9!8NX2WV7DwR__apwRLPj;_@Pj4%)9-O%2Ujj@(s1#GwCc z(tzQQtrW7lP4d4Iy^Q`+ihTh|^yEB@nlL^n;rGeA%4k+sR(C9U{@|}xv%s*+sUp+n z_`lK12ahh&`9|HFV|21g)XP-RukYCCWHG5GwK|8$SI{T=bH10goP~Y3?M(ewmOf*KQmpE*+aoGO)}8!QmexTz;~I~tdYP7|}x z(SYnKYU+Y=%ODhY>McUpMxQCY=bH9-Ir-6U(&k0c(KEIY+;~k-x>&GGfpv?wb-acn z*p^?SoCGoba`!GJ(=YHB69L&-n$iAt&|Hu$?vWo`Wpk^;N$zYQ*!#Vk z_z780yv=@Tov2Y%-JO1YZ$mEL!8qSi_q}y`@%!i3evZLVaX3}jo9^#>V zL{VfEtWZCZ;%#v@%vPoxPRb9Jszq7tUrL@Cv)bL$Qb#;pcz@v=9tY5`q*uzP+n;Yw zf+v^CE*wDD*Ca9YcB08I6Sly(oLJPE|DD5Bng$6li+jf&hi^lk2>L~O{6IP&8$n-I zYzzLvk5*q3O~y>EHjNNk$v_x#15+-Z2du1DF(C|BwZu+uOgmkBFRt*O}Sn|5<$=o@1h0=AXV_c_V87tTvb z&=eHo#XUWb(NA5pOhl;5fhIRWR3)cTqT@41-|dG_DDrght7LB%sXD`o8a@YDRiNWp zWLij#h5d!m^UX}gvs4Dt^G%7B;krGf#vO$HNJ(9?n0Ib1OXOo{JElN=I9Q`1aQ0h2 zK|ZRo(CxF81IimJSpl6*k@q#|;!W91u0F z$wtyPyo)ZM_66?=9GL=8(m8Ma`+NYfv_o~OoP&>k_Zqu`u-!95cc(Nc-4fC* zEj4rwB`J-9z<@MJ2-4jQA&r1ELyCxWBi-E~-1&X?-u0ce_CK@MnYH#_XP>j*=Y0Yu z1L$S>l!3eO)D%>ZYYpU`n+mKwgr$*}9*F()#=zz<`(FYx%STe8L zMAs8}U65vVmM-KrfC;d|htNZ0(Z%tQ2NZIvZ2NZK{Ix#V|0grR)u@Z4LvQt-S4g7}%OM8*QVpM`{A^)PUgI1tqT zJh-A35qaV?4JO2ha=!lg`_vMo%G?TBh--dP1c_1T29$egJPXi*lU~dgk*JV9|C(1} zErgEXDdl+05^PCK=^|OpU;6l2E*ea!@>i4rK5wjK#+1+C@h6eoPa|`kF13xNINcmX z7b44s!hoE8aILC*V2gA9$G0mg(<*VoP*$FW`hpZ7x14M^bgVAr8H}IQb>)!r#Ie`>- z!0MmN+syUz+~pa}sG3&qYI;U!9(;uFH-ZDdpULg&N8>It09$H;aq(xVWol8Tn#2VV zYWEQm)kYRTKcE4po}^mR>FOW_Gn0EARJsYIGJ*?v94Z9JYAa|vDtLCK=td43BN_B3 zKu9ky{Tg6h53dxv3_BbXYMez~0FRFD5jYHq)&M!r;!gDFTNCjs%G#*wD&TVFX-+zd zMMG#vYf#Fpj-k!vRs)XwXo}wc2@bU&pDsJ0zBOgzDIR@!F2{M0ampRpCua^G_80IY8e{lGFA&eRfR LDzqzPu!rxWc@0P9kYv2Mw%`q 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

r*0Ts>jdb2ngPeXw#^aWf#!tg+*b?#9xfEf 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

F`R>u#b*o$hZxZHBCx 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 Date: Fri, 3 May 2024 00:14:41 +0000 Subject: [PATCH 07/78] 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 6a22e712469..c11bae29837 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Whisper - changes: - - message: Added juice that makes you Weh! Juice a lizard plushie today! - type: Add - id: 6019 - time: '2024-02-25T13:54:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25132 - author: wafehling changes: - message: Secret mode has become more secret, with the 4th option Survival added @@ -3864,3 +3857,11 @@ id: 6518 time: '2024-05-03T00:03:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27580 +- author: Vasilis, Dutch-VanDerLinde + changes: + - message: A new event has been added, syndicate sleeper agents, which raises the + alert level and selects 1-2 players to be traitors rarely throughout the round. + type: Add + id: 6519 + time: '2024-05-03T00:13:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27501 From f64dd5f45f8ebc08d791ac34e9482c6c3d85a51b Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 3 May 2024 03:24:21 +0200 Subject: [PATCH 08/78] Space Ninjas auto-toggle internals after spawning (#25083) * fix engine version * actually fix engine version * Automatically activated breathing masks * weh * who needed that component anyway * check if internals are already running * Update Content.Server/Atmos/Components/BreathToolComponent.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Update Content.Server/Body/Systems/InternalsSystem.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * prediction * record struct event * remove delayed activation, instead ensure that masks spawn last * leftover * engine version * re-implement --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth --- .../Station/StationSpawningSystem.cs | 5 +-- .../Atmos/Components/BreathToolComponent.cs | 3 +- .../Body/Systems/InternalsSystem.cs | 17 +++++++- .../Station/Systems/StationSpawningSystem.cs | 8 +++- .../Inventory/InventorySystem.Slots.cs | 1 - .../Roles/StartingGearEquippedEvent.cs | 10 +++++ .../Station/SharedStationSpawningSystem.cs | 41 ++++++++++++++----- 7 files changed, 65 insertions(+), 20 deletions(-) create mode 100644 Content.Shared/Roles/StartingGearEquippedEvent.cs diff --git a/Content.Client/Station/StationSpawningSystem.cs b/Content.Client/Station/StationSpawningSystem.cs index 65da518d229..71dce5a78f3 100644 --- a/Content.Client/Station/StationSpawningSystem.cs +++ b/Content.Client/Station/StationSpawningSystem.cs @@ -2,7 +2,4 @@ namespace Content.Client.Station; -public sealed class StationSpawningSystem : SharedStationSpawningSystem -{ - -} +public sealed class StationSpawningSystem : SharedStationSpawningSystem; diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs index f3688ef7ffc..ae17a5d872f 100644 --- a/Content.Server/Atmos/Components/BreathToolComponent.cs +++ b/Content.Server/Atmos/Components/BreathToolComponent.cs @@ -12,9 +12,10 @@ public sealed partial class BreathToolComponent : Component ///

/// Tool is functional only in allowed slots /// - [DataField("allowedSlots")] + [DataField] public SlotFlags AllowedSlots = SlotFlags.MASK | SlotFlags.HEAD; public bool IsFunctional; + public EntityUid? ConnectedInternalsEntity; } } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 972967fb15a..8afd1c767f6 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Internals; using Content.Shared.Inventory; +using Content.Shared.Roles; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Utility; @@ -23,17 +24,29 @@ public sealed class InternalsSystem : EntitySystem [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - public const SlotFlags InventorySlots = SlotFlags.POCKET | SlotFlags.BELT; + private EntityQuery _internalsQuery; public override void Initialize() { base.Initialize(); + _internalsQuery = GetEntityQuery(); + SubscribeLocalEvent(OnInhaleLocation); SubscribeLocalEvent(OnInternalsStartup); SubscribeLocalEvent(OnInternalsShutdown); SubscribeLocalEvent>(OnGetInteractionVerbs); SubscribeLocalEvent(OnDoAfter); + + SubscribeLocalEvent(OnStartingGear); + } + + private void OnStartingGear(ref StartingGearEquippedEvent ev) + { + if (!_internalsQuery.TryComp(ev.Entity, out var internals) || internals.BreathToolEntity == null) + return; + + ToggleInternals(ev.Entity, ev.Entity, force: false, internals); } private void OnGetInteractionVerbs( @@ -217,7 +230,7 @@ private short GetSeverity(InternalsComponent component) if (component.BreathToolEntity is null || !AreInternalsWorking(component)) return 2; - // If pressure in the tank is below low pressure threshhold, flash warning on internals UI + // If pressure in the tank is below low pressure threshold, flash warning on internals UI if (TryComp(component.GasTankEntity, out var gasTank) && gasTank.IsLowPressure) { diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index f8bd2979052..6826dedf831 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -59,6 +59,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem /// public override void Initialize() { + base.Initialize(); Subs.CVar(_configurationManager, CCVars.ICRandomCharacters, e => _randomizeCharacters = e, true); _spawnerCallbacks = new Dictionary>() @@ -181,7 +182,7 @@ public EntityUid SpawnPlayerMob( if (prototype?.StartingGear != null) { var startingGear = _prototypeManager.Index(prototype.StartingGear); - EquipStartingGear(entity.Value, startingGear); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); } // Run loadouts after so stuff like storage loadouts can get @@ -217,11 +218,14 @@ public EntityUid SpawnPlayerMob( } // Handle any extra data here. - EquipStartingGear(entity.Value, startingGear); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); } } } + var gearEquippedEv = new StartingGearEquippedEvent(entity.Value); + RaiseLocalEvent(entity.Value, ref gearEquippedEv, true); + if (profile != null) { if (prototype != null) diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 1da44155b95..e0f2a695576 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -151,7 +151,6 @@ public bool TryGetSlots(EntityUid uid, [NotNullWhen(true)] out SlotDefinition[]? slotDefinitions = null; return false; } - slotDefinitions = inv.Slots; return true; } diff --git a/Content.Shared/Roles/StartingGearEquippedEvent.cs b/Content.Shared/Roles/StartingGearEquippedEvent.cs new file mode 100644 index 00000000000..41b6caccff6 --- /dev/null +++ b/Content.Shared/Roles/StartingGearEquippedEvent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Roles; + +/// +/// Raised directed on an entity when a new starting gear prototype has been equipped. +/// +[ByRefEvent] +public record struct StartingGearEquippedEvent(EntityUid Entity) +{ + public readonly EntityUid Entity = Entity; +} diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 363fb3f91e6..8a063938ee3 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -17,12 +17,24 @@ public abstract class SharedStationSpawningSystem : EntitySystem [Dependency] private readonly SharedStorageSystem _storage = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + private EntityQuery _handsQuery; + private EntityQuery _inventoryQuery; + private EntityQuery _storageQuery; + private EntityQuery _xformQuery; + + public override void Initialize() + { + base.Initialize(); + _handsQuery = GetEntityQuery(); + _inventoryQuery = GetEntityQuery(); + _storageQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + } + /// - /// Equips starting gear onto the given entity. + /// /// - /// Entity to load out. - /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, ProtoId? startingGear) + public void EquipStartingGear(EntityUid entity, ProtoId? startingGear, bool raiseEvent = true) { PrototypeManager.TryIndex(startingGear, out var gearProto); EquipStartingGear(entity, gearProto); @@ -33,11 +45,14 @@ public void EquipStartingGear(EntityUid entity, ProtoId? ///
/// Entity to load out. /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear) + /// Should we raise the event for equipped. Set to false if you will call this manually + public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear, bool raiseEvent = true) { if (startingGear == null) return; + var xform = _xformQuery.GetComponent(entity); + if (InventorySystem.TryGetSlots(entity, out var slotDefinitions)) { foreach (var slot in slotDefinitions) @@ -45,16 +60,16 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG var equipmentStr = startingGear.GetGear(slot.Name); if (!string.IsNullOrEmpty(equipmentStr)) { - var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, EntityManager.GetComponent(entity).Coordinates); + var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, xform.Coordinates); InventorySystem.TryEquip(entity, equipmentEntity, slot.Name, silent: true, force:true); } } } - if (TryComp(entity, out HandsComponent? handsComponent)) + if (_handsQuery.TryComp(entity, out var handsComponent)) { var inhand = startingGear.Inhand; - var coords = EntityManager.GetComponent(entity).Coordinates; + var coords = xform.Coordinates; foreach (var prototype in inhand) { var inhandEntity = EntityManager.SpawnEntity(prototype, coords); @@ -70,7 +85,7 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG { var coords = _xformSystem.GetMapCoordinates(entity); var ents = new ValueList(); - TryComp(entity, out InventoryComponent? inventoryComp); + _inventoryQuery.TryComp(entity, out var inventoryComp); foreach (var (slot, entProtos) in startingGear.Storage) { @@ -84,7 +99,7 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG if (inventoryComp != null && InventorySystem.TryGetSlotEntity(entity, slot, out var slotEnt, inventoryComponent: inventoryComp) && - TryComp(slotEnt, out StorageComponent? storage)) + _storageQuery.TryComp(slotEnt, out var storage)) { foreach (var ent in ents) { @@ -93,5 +108,11 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG } } } + + if (raiseEvent) + { + var ev = new StartingGearEquippedEvent(entity); + RaiseLocalEvent(entity, ref ev, true); + } } } From 4ede46003abf4c0593de00f802550df2b3642055 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 01:25:27 +0000 Subject: [PATCH 09/78] 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 c11bae29837..d50d3c59927 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: wafehling - changes: - - message: Secret mode has become more secret, with the 4th option Survival added - to the rotation. - type: Tweak - id: 6020 - time: '2024-02-25T21:15:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25568 - author: Tayrtahn changes: - message: Added a live preview display to reagent dispensers. @@ -3865,3 +3857,10 @@ id: 6519 time: '2024-05-03T00:13:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27501 +- author: Errant + changes: + - message: Space Ninjas now automatically turn their internals on when they spawn. + type: Tweak + id: 6520 + time: '2024-05-03T01:24:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25083 From a28296433b03c041e4374e88bdef7347a85f895f Mon Sep 17 00:00:00 2001 From: Lamrr <96937466+Lamrr@users.noreply.github.com> Date: Fri, 3 May 2024 12:12:34 +1000 Subject: [PATCH 10/78] Fixes the grammar for the captain's supervisor (#27638) Fixes the grammar on the captain's supervisor --- Resources/Locale/en-US/job/job-supervisors.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index 442852daa17..d92065a40b1 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,4 +1,4 @@ -job-supervisors-centcom = CentCom official +job-supervisors-centcom = Central Command job-supervisors-captain = the captain job-supervisors-hop = the head of personnel job-supervisors-hos = the head of security From a8bf2689a4696e841ce607c7061ac73faceeeefb Mon Sep 17 00:00:00 2001 From: Hanz <41141796+Hanzdegloker@users.noreply.github.com> Date: Fri, 3 May 2024 02:57:37 -0400 Subject: [PATCH 11/78] Red bool update (#27597) * the meat and potatoes yuh yuh yuh * what the hell is a copyright? am I right? --- .../Locale/en-US/flavors/flavor-profiles.ftl | 6 + .../meta/consumable/drink/alcohol.ftl | 18 ++ .../Catalog/ReagentDispensers/beverage.yml | 1 + .../VendingMachines/Inventories/boozeomat.yml | 1 + .../VendingMachines/Inventories/discount.yml | 1 + .../Random/Food_Drinks/drinks_glass.yml | 6 + .../Objects/Consumable/Drinks/drinks.yml | 96 +++++++++++ Resources/Prototypes/Flavors/flavors.yml | 30 ++++ .../Reagents/Consumable/Drink/alcohol.yml | 162 ++++++++++++++++++ .../Reagents/Consumable/Drink/soda.yml | 2 +- .../Prototypes/Recipes/Reactions/drinks.yml | 64 +++++++ .../Drinks/budgetinsulsdrink.rsi/fill-1.png | Bin 0 -> 282 bytes .../Drinks/budgetinsulsdrink.rsi/fill-2.png | Bin 0 -> 298 bytes .../Drinks/budgetinsulsdrink.rsi/fill-3.png | Bin 0 -> 313 bytes .../Drinks/budgetinsulsdrink.rsi/icon.png | Bin 0 -> 313 bytes .../budgetinsulsdrink.rsi/icon_empty.png | Bin 0 -> 220 bytes .../Drinks/budgetinsulsdrink.rsi/meta.json | 28 +++ .../Drinks/energy_drink.rsi/icon.png | Bin 504 -> 450 bytes .../Drinks/energy_drink.rsi/icon_open.png | Bin 488 -> 440 bytes .../Drinks/rubberneck.rsi/fill-1.png | Bin 0 -> 277 bytes .../Drinks/rubberneck.rsi/fill-2.png | Bin 0 -> 278 bytes .../Drinks/rubberneck.rsi/fill-3.png | Bin 0 -> 278 bytes .../Consumable/Drinks/rubberneck.rsi/icon.png | Bin 0 -> 278 bytes .../Drinks/rubberneck.rsi/icon_empty.png | Bin 0 -> 277 bytes .../Drinks/rubberneck.rsi/meta.json | 28 +++ .../Drinks/xenobasher.rsi/fill-1.png | Bin 0 -> 790 bytes .../Drinks/xenobasher.rsi/fill-2.png | Bin 0 -> 839 bytes .../Consumable/Drinks/xenobasher.rsi/icon.png | Bin 0 -> 839 bytes .../Drinks/xenobasher.rsi/icon_empty.png | Bin 0 -> 754 bytes .../Drinks/xenobasher.rsi/meta.json | 23 +++ 30 files changed, 465 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json create mode 100644 Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index f861624fb65..39b185bd02f 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -243,6 +243,12 @@ flavor-complex-atomic-cola = like hoarding bottle caps flavor-complex-cuba-libre = like spiked cola flavor-complex-gin-tonic = like spiked lemon-lime soda flavor-complex-screwdriver = like spiked orange juice +flavor-complex-vodka-red-bool = like a heart attack +flavor-complex-irish-bool = caffine and Ireland +flavor-complex-xeno-basher = like killing bugs +flavor-complex-budget-insuls-drink = like door hacking +flavor-complex-watermelon-wakeup = like a sweet wakeup call +flavor-complex-rubberneck = like synthetics flavor-complex-irish-car-bomb = like a spiked cola float flavor-complex-themartinez = like violets and lemon vodka flavor-complex-cogchamp = like brass diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 4c38e925583..1cac0495b02 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -261,3 +261,21 @@ reagent-desc-whiskey-soda = For the more refined griffon. reagent-name-white-russian = white russian reagent-desc-white-russian = That's just, like, your opinion, man... + +reagent-name-vodka-red-bool = vodka red bool +reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. + +reagent-name-xeno-basher = xeno basher +reagent-desc-xeno-basher = The perfect drink before an expedition. + +reagent-name-irish-bool = irish bool +reagent-desc-irish-bool = Like a bool in a Ireland shop. + +reagent-name-budget-insuls = budget insuls +reagent-desc-budget-insuls = A tider's preferred drink. + +reagent-name-watermelon-wakeup = watermelon wakeup +reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. + +reagent-name-rubberneck = rubberneck +reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml index 975541a502a..4689e26f8e6 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml @@ -6,6 +6,7 @@ - DrinkColaBottleFull - DrinkCreamCartonXL - DrinkDrGibbJug + - DrinkEnergyDrinkJug - DrinkGreenTeaJug - DrinkIceJug - DrinkJuiceLimeCartonXL diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml index a309b1d61df..e4f4440bd3c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml @@ -18,6 +18,7 @@ DrinkCognacBottleFull: 4 DrinkCoconutWaterCarton: 3 DrinkColaBottleFull: 4 + DrinkEnergyDrinkCan: 8 DrinkMilkCarton: 2 DrinkCreamCarton: 5 DrinkGinBottleFull: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml index ddf79432175..fc8492dcf19 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml @@ -4,6 +4,7 @@ FoodSnackCheesie: 3 FoodSnackChips: 3 FoodSnackBoritos: 3 + DrinkEnergyDrinkCan: 4 FoodSnackPopcorn: 3 FoodSnackEnergy: 3 CigPackMixed: 2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index ff9e5124328..f8fc2998d7f 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -32,6 +32,7 @@ - DrinkBloodyMaryGlass - DrinkBooger - DrinkBraveBullGlass + - BudgetInsulsDrinkGlass - DrinkCarrotJuice - DrinkCoconutRum - DrinkChocolateGlass @@ -57,6 +58,7 @@ - DrinkIcedGreenTeaGlass - DrinkIcedBeerGlass - DrinkIceCreamGlass + - IrishBoolGlass - DrinkIrishCarBomb - DrinkIrishCoffeeGlass - DrinkLemonadeGlass @@ -78,6 +80,7 @@ - DrinkRewriter - DrinkRoyRogersGlass - DrinkRootBeerFloatGlass + - RubberneckGlass - DrinkRumGlass - DrinkSakeGlass - DrinkSbitenGlass @@ -91,12 +94,15 @@ - DrinkThreeMileIslandGlass - DrinkToxinsSpecialGlass - DrinkVodkaMartiniGlass + - DrinkVodkaRedBool - DrinkVodkaTonicGlass - DrinkWatermelonJuice + - DrinkWatermelonWakeup - DrinkWhiskeyColaGlass - DrinkWhiskeySodaGlass - DrinkWhiteRussianGlass - DrinkWineGlass + - XenoBasherGlass - DrinkShakeBlue - DrinkShakeWhite - DrinkTheMartinez diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index a729eed9c8f..42814f7fd87 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -503,6 +503,22 @@ sprite: Objects/Consumable/Drinks/bravebullglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: BudgetInsulsDrinkGlass + suffix: budget insuls + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: BudgetInsulsDrink + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCarrotJuice @@ -535,6 +551,22 @@ sprite: Objects/Consumable/Drinks/chocolateglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: RubberneckGlass + suffix: rubberneck + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Rubberneck + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCoconutRum @@ -1061,6 +1093,22 @@ sprite: Objects/Consumable/Drinks/icecreamglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: IrishBoolGlass + suffix: irish bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: IrishBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkIrishCarBomb @@ -2054,6 +2102,22 @@ sprite: Objects/Consumable/Drinks/martiniglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: DrinkVodkaRedBool + suffix: vodka red bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: VodkaRedBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkVodkaTonicGlass @@ -2100,6 +2164,22 @@ - ReagentId: JuiceWatermelon Quantity: 30 +- type: entity + parent: DrinkGlass + id: DrinkWatermelonWakeup + suffix: watermelon wakeup + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: WatermelonWakeup + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkWhiskeyColaGlass @@ -2180,6 +2260,22 @@ sprite: Objects/Consumable/Drinks/wineglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: XenoBasherGlass + suffix: xeno basher + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: XenoBasher + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon + # TODO: MOVE - type: entity diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 47a1bc71aa6..73ded93e0f2 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -589,6 +589,36 @@ flavorType: Complex description: flavor-complex-irish-car-bomb +- type: flavor + id: vodkaredbool + flavorType: Complex + description: flavor-complex-vodka-red-bool + +- type: flavor + id: xenobasher + flavorType: Complex + description: flavor-complex-xeno-basher + +- type: flavor + id: irishbool + flavorType: Complex + description: flavor-complex-irish-bool + +- type: flavor + id: budgetinsulsdrink + flavorType: Complex + description: flavor-complex-budget-insuls-drink + +- type: flavor + id: watermelonwakeup + flavorType: Complex + description: flavor-complex-watermelon-wakeup + +- type: flavor + id: rubberneck + flavorType: Complex + description: flavor-complex-rubberneck + - type: flavor id: blackrussian flavorType: Complex diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 963e5fcf45a..8028b6376c8 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -1769,3 +1769,165 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + +- type: reagent + id: VodkaRedBool + name: reagent-name-vodka-red-bool + parent: BaseAlcohol + desc: reagent-desc-vodka-red-bool + physicalDesc: reagent-physical-desc-strong-smelling + flavor: vodkaredbool + color: "#c4c27655" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: XenoBasher + name: reagent-name-xeno-basher + parent: BaseAlcohol + desc: reagent-desc-xeno-basher + physicalDesc: reagent-physical-desc-fizzy-and-creamy + flavor: xenobasher + color: "#4d6600" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon_empty + metamorphicMaxFillLevels: 2 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: IrishBool + name: reagent-name-irish-bool + parent: BaseAlcohol + desc: reagent-desc-irish-bool + physicalDesc: reagent-physical-desc-bubbly + flavor: irishbool + color: "#71672e99" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 6 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: BudgetInsulsDrink + name: reagent-name-budget-insuls + parent: BaseAlcohol + desc: reagent-desc-budget-insuls + physicalDesc: reagent-physical-desc-strong-smelling + flavor: budgetinsulsdrink + color: "#dede73" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: WatermelonWakeup + name: reagent-name-watermelon-wakeup + parent: BaseAlcohol + desc: reagent-desc-watermelon-wakeup + physicalDesc: reagent-physical-desc-sweet + flavor: watermelonwakeup + color: "#d49dca" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.07 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: Rubberneck + name: reagent-name-rubberneck + parent: BaseAlcohol + desc: reagent-desc-rubberneck + physicalDesc: reagent-physical-desc-strong-smelling + flavor: rubberneck + color: "#f0d74a" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index f8d3f41af9b..d78b0351cee 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -70,7 +70,7 @@ factor: 2 - !type:AdjustReagent reagent: Theobromine - amount: 0.05 + amount: 0.1 fizziness: 0.4 - type: reagent diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index c810ebb0ce5..2a14c0ecd29 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -86,6 +86,16 @@ products: B52: 3 +- type: reaction + id: BudgetInsulsDrink + reactants: + Tequila: + amount: 1 + VodkaRedBool: + amount: 2 + products: + BudgetInsulsDrink: 3 + - type: reaction id: BlueHawaiian reactants: @@ -516,6 +526,16 @@ products: IcedTea: 3 +- type: reaction + id: IrishBool + reactants: + EnergyDrink: + amount: 1 + IrishCarBomb: + amount: 1 + products: + IrishBool: 2 + - type: reaction id: IrishCarBomb reactants: @@ -794,6 +814,18 @@ products: RoyRogers: 3 +- type: reaction + id: Rubberneck + reactants: + EnergyDrink: + amount: 2 + Moonshine: + amount: 1 + Sugar: + amount: 1 + products: + Rubberneck: 4 + - type: reaction id: Sbiten reactants: @@ -943,6 +975,16 @@ products: VodkaMartini: 3 +- type: reaction + id: VodkaRedBool + reactants: + Vodka: + amount: 1 + EnergyDrink: + amount: 2 + products: + VodkaRedBool: 3 + - type: reaction id: VodkaTonic reactants: @@ -963,6 +1005,18 @@ products: WhiskeyCola: 3 +- type: reaction + id: WatermelonWakeup + reactants: + JuiceWatermelon: + amount: 1 + Whiskey: + amount: 1 + EnergyDrink: + amount: 1 + products: + WatermelonWakeup: 3 + - type: reaction id: WhiteRussian reactants: @@ -983,6 +1037,16 @@ products: WhiskeySoda: 3 +- type: reaction + id: XenoBasher + reactants: + ManlyDorf: + amount: 2 + EnergyDrink: + amount: 1 + products: + XenoBasher: 3 + - type: reaction id: HotRamen minTemp: 323.15 diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png new file mode 100644 index 0000000000000000000000000000000000000000..aca8f4931d802b083f81a1b19a910fbcbfd8d3b1 GIT binary patch literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}S3F%DLn2y} z6C_v{Cy4YkF|zd>(b9?B`rS^G?R$%*w$S3f)`-)!I;C-wA2GCrR=*d1%&|!3z@gJ; zbM%$J?JD_dr(b9?B`rS^G?R$%*w$S3f)`-)!I;C-wA2GCrR=*d1%&|!3z@gJ; zbM%$J?JD_dr(b9?B`rS^G?R$%*w$S3f)`-)!I;C-wA2GCrR=*d1%&|!3z@gJ; zbM%$J?JD_drc&fDMzrm9Yoq=~5U+_6@n{j7?q9&J|ZBo*N$-mnV z)qmkg+BoNqy~S*i$(?22j_DqYJ26eknk~(8)8h_Sm3HYW4u$AGA*L-w4BIjsmU*(e zEN>Lnx%}YguOr4mC6CybTxt96VYoy6Ok`)t^PZ+a11>iu28Qs@eorQEo&*XU22WQ% Jmvv4FO#rpoerNyy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..04bfd58d03a8e42fe0c30a49c7b05fcbf42e3773 GIT binary patch literal 313 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}pFLe1Ln2y} z6C_v{Cy4YkF|zd>(b9?B`rS^G?R$%*w$S3f)`-)!I;C-wA2GCrR=*d1%&|!3z@gJ; zbM%$J?JD_drc&fDMzrm9Yoq=~5U+_6@n{j7?q9&J|ZBo*N$-mnV z)qmkg+BoNqy~S*i$(?22j_DqYJ26eknk~(8)8h_Sm3HYW4u$AGA*L-w4BIjsmU*(e zEN>Lnx%}YguOr4mC6CybTxt96VYoy6Ok`)t^PZ+a11>iu28Qs@eorQEo&*XU22WQ% Jmvv4FO#rpoerNyy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png new file mode 100644 index 0000000000000000000000000000000000000000..4d446abc54ec550893fc1e1fbcc9228c9fcd2f16 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}(>z@qLn2y} z6C_v{Cy4YkF|zd>(b9?B`rS^G?R$%*w$S3f)`-)!I;C-wA2GCrR=*d1%&|!3z@gJ; zbM%$J?JD_dr#y;zV9sD=yTj-*z2(TXoFz;_S%<5aNZb*Aw#H>wvD-ln307r628P&2vhSD8 SUb6$}LIzJ)KbLh*2~7a>=u)!) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json new file mode 100644 index 00000000000..14c43f186f3 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Glass and fillstates by Hanzdegloker on Github.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png index 7a577d477caa8491e525fab9049196f25d63edbb..e9e2aea71684d1d6bafd1a7fb0af40d3cc0e49e7 100644 GIT binary patch delta 411 zcmV;M0c8I81HuE4F@JnXL_t(oh3%F3(G7({0RT0ZZ)xMl(>Bf?Ycq3O6Jy zK+WY_F1HN8VJd~oE#sMVv3qbtG7)bf=&D^*0Kj@U2!P8i^Zxb>z^QsksZx z5I7yZ5zr~xp??~Q!SIlwJcfo)+r3!~3D8oF!~huk`tF?ot^H;(Gy_+gTiuR*7b*ZZ z*99Wqpk=%#8Q|;_*!Jx*+8dCAIT zGQthji6$705i2&-O>0XtJ9|gG>Mxk4Njg2t&h}=uR4T2D==ntr08CFN0Ei8Bb946y zz~S*3MXe|!Cq^_8wL-fgORK&*CzrprLc1X=nuuE8E4Y!`0Yz1a9rU?kXUPkujwgh* zqzo9kfzq!y-+%s^pWf3hB1Hbi06?`?b?)u7%gV?tp`t3B1e(xNKD3nZpXWk)0sw=# zHs>Bz!%`Yj6EJiGfcsR1`&31$u#MCNG&CUKnt-7jG|=!j25ju^2Mz<$8qx;lYbxYa z%9II8mzUfDn=<8}q{|z4NIvndzZ2Ah1ohAU6;=5r>q?glm|916Yh#V`WRbV}H|LDy z$1t^ytf-#UgJfZGV{LS}(^c&9_Bp%1x4JI+Ao1|<_;)@4eddL})Oof&00000NkvXX Hu0mjf3CG}$ diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png index b26d37e3779da1e812d245188310d0fd37d39acf..44688ef3e9277fceaaac1987aec2d2ba559b3276 100644 GIT binary patch delta 414 zcmV;P0b%~=1Goc_B!2;OQb$4nuFf3k0004UNklSQh)DSdR)YQ<@qU#GnQYh#HUQsmEP=kZ6ny5p2gxZqw9uaZx z3nh5J?f&7M^FQaF%X?sBW7B0Eq5-XXVNwS>m*ts-T>NF|m4VDSB;a|Vp#w~Evb+^nv(JN92> z0Jyu=LE;ryz5=UAzk>b-_`bTg!vCDW(&-7cO4+oGilRsv5S~D(>TK-oZsQ&pGU=&Q zic;0t5X~q2{RU9H!TRLHu*v+x(`)1CaH~i3hs4IlrWfmc0y_99smFU delta 462 zcmV;<0Wto#1Ly;gB!2{FK}|sb0I`mI`%#ks00Ey#L_t(oh3%FK37#nqC8|!PtMwXPd{F37FsbK(e*(AAalKY28cJ}tk=kxYA=|49Bu#iiA zi4{)HDH~;poEp(o)D9hlY@`0>uHwb59Xbfv(Nt8q1ELwwbdC7&ct`9!eZ~AqR#{7A zz%nhg3C%tG8-ISr&W4B(`5OZO^+w&@_t7Vnkqx1yYn%ppFfu-jjPg^`fw%(zlf__6rlSd?($xGm3wP`-rC6$ef=1sZU<9h|_< Z(Bb3tt9U}?e4y7DJYD@<);T3K0RWzEbSwY> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png new file mode 100644 index 0000000000000000000000000000000000000000..79bcdcfb8cb7e0099c36cd60ee2180290c85ba10 GIT binary patch literal 278 zcmV+x0qOpUP)Px#&`Cr=R9J;$U>F6XU=)l3>VjvaYG9&;D+UDc3km%qM;{|8iYvCCcvfL=Al`BC z!b@cFukYW9a|;T+WME)m=+Jp1wI>;M1HqW}MY7XAP3w!r`YpGE(#*nWcK1W1u1{@;@R|L2;- z|Npn7DYBfTG=T017@O31ry8JZun${D4DFJzV*80_0~Q5CKJHPx#&`Cr=R9J;$U>F6XU=)l3>VjvaYG9&;D+UDc3km%qM;{|8iYvCCcvfL=Al`BC z!b@cFukYW9a|;T+WME)m=Zhp0N8<7D7Z1s@&Et;07*qoM6N<$g6_a|egFUf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..772aa80d6a7595e230f85f9e1fb7cecb5b0b22e2 GIT binary patch literal 278 zcmV+x0qOpUP)Px#&`Cr=R9J;$U>F6XU=)l3>VjvaYG9&;D+UDc3km%qM;{|8iYvCCcvfL=Al`BC z!b@cFukYW9a|;T+WME)m=Zhp0N8<7D7Z1s@&Et;07*qoM6N<$g6_a|egFUf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png new file mode 100644 index 0000000000000000000000000000000000000000..416d1f771769bda989124a6ab1d323acc37c18e9 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}=RI8^NvsbE$sQ#_U3}5-<|2~a{GC{c6R-&fAI12g|4^i9)5of z9D<}A%2|4R&F4QZKGM*r_`YLdtWa2v{l}aGixN&8x8<1-%9pUY;=rk>p Y8YMlyXxnJ(0=>rI>FVdQ&MBb@0Jzw1-2eap literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json new file mode 100644 index 00000000000..a26c7355aeb --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://tgstation13.org/wiki/images/archive/4/4e/20220514022531%21Rubberneck.png. Fill levels by Hanzdegloker on GitHub.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3aef3bd8abda755f1febb0cfc320ee0ae91886a5 GIT binary patch literal 790 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json new file mode 100644 index 00000000000..9743bd909e0 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hanzdegloker on github", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + } + ] +} From 40a4eeaa3953db8213034fd3dd12fedce922deff Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 06:58:43 +0000 Subject: [PATCH 12/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d50d3c59927..8ee660e02d5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Tayrtahn - changes: - - message: Added a live preview display to reagent dispensers. - type: Add - id: 6021 - time: '2024-02-25T23:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25391 - author: Krunk changes: - message: Fixed grid inventory occasionally messing with your item rotation. @@ -3864,3 +3857,13 @@ id: 6520 time: '2024-05-03T01:24:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25083 +- author: Hanzdegloker + changes: + - message: Added 6 new energy drink based mixed drinks. + type: Add + - message: Added Red Bool energy drink back to the soda dispenser and gave it a + new canned sprite. + type: Add + id: 6521 + time: '2024-05-03T06:57:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27597 From 0056befd4bac47f9e86c975342fcc80583affbb9 Mon Sep 17 00:00:00 2001 From: Jay <67732946+DuskyJay@users.noreply.github.com> Date: Fri, 3 May 2024 17:51:33 +1000 Subject: [PATCH 13/78] Allow EMP implants to be used while stunned or cuffed. (#27644) Update types.yml --- Resources/Prototypes/Actions/types.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index be666915640..fb156a732e6 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -129,6 +129,7 @@ noSpawn: true components: - type: InstantAction + checkCanInteract: false charges: 3 useDelay: 5 itemIconStyle: BigAction From bedec83cd9a778d86795a0c8a5e4d439a3e4d407 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 07:52:39 +0000 Subject: [PATCH 14/78] 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 8ee660e02d5..030777798dd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Krunk - changes: - - message: Fixed grid inventory occasionally messing with your item rotation. - type: Fix - id: 6022 - time: '2024-02-25T23:24:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25510 - author: Ubaser changes: - message: Satchels no longer have darkened space representing a gap, and is instead @@ -3867,3 +3860,10 @@ id: 6521 time: '2024-05-03T06:57:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27597 +- author: DuskyJay + changes: + - message: Allowed EMP implants to be used while stunned or cuffed. + type: Tweak + id: 6522 + time: '2024-05-03T07:51:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27644 From 0450a416e22651270b5dc8f270ac5ca6780b7075 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Fri, 3 May 2024 14:10:24 +0300 Subject: [PATCH 15/78] Revert "Make immovable rod announce at the end of the event" and "Rod event has a proper annoucement" (#27645) * Revert "Make immovable rod announce at the end of the event (#27587)" This reverts commit efceaa89e087704e6810a83f830a7c20844b79d5. * Update immovable-rod.ftl --- .../Locale/en-US/station-events/events/immovable-rod.ftl | 2 +- Resources/Prototypes/GameRules/events.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/en-US/station-events/events/immovable-rod.ftl b/Resources/Locale/en-US/station-events/events/immovable-rod.ftl index 1b0e0a478b7..06abcc85c38 100644 --- a/Resources/Locale/en-US/station-events/events/immovable-rod.ftl +++ b/Resources/Locale/en-US/station-events/events/immovable-rod.ftl @@ -1 +1 @@ -station-event-immovable-rod-start-announcement = What the fuck was that?!? +station-event-immovable-rod-start-announcement = High velocity unidentified object is on a collision course with the station. Impact imminent. diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 73475a1184e..6692efb3f5f 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -501,11 +501,11 @@ noSpawn: true components: - type: StationEvent - endAnnouncement: station-event-immovable-rod-start-announcement - endAudio: + startAnnouncement: station-event-immovable-rod-start-announcement + startAudio: path: /Audio/Announcements/attention.ogg weight: 5 - duration: 25 + duration: 1 earliestStart: 45 minimumPlayers: 20 - type: ImmovableRodRule From 76ecdee94604f3cc73aba8b09d7bb36125a069e4 Mon Sep 17 00:00:00 2001 From: Just-a-Unity-Dev <67359748+Just-a-Unity-Dev@users.noreply.github.com> Date: Fri, 3 May 2024 17:26:09 +0000 Subject: [PATCH 16/78] Geras bug fixes (#27308) * Geras bug fixes * oops * its as shrimple as that toggled transferName in the polymorph yml instead of using the system to manually change it * its as shrimple as that (2.0) fixed reviews for zombies having a dummy action, instead - properly implemented removal of action * its as shrimple as that (3.0) fixed tests by removing nameidentifier from slime (its already inherited, anyway) --- Content.Server/Geras/GerasSystem.cs | 17 ++++++++++++++--- Content.Shared/Geras/SharedGerasSystem.cs | 2 +- .../Prototypes/Entities/Mobs/NPCs/slimes.yml | 10 ++++++++++ Resources/Prototypes/Polymorphs/polymorph.yml | 2 +- 4 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Content.Server/Geras/GerasSystem.cs b/Content.Server/Geras/GerasSystem.cs index e25ea8f0283..e7999d64d87 100644 --- a/Content.Server/Geras/GerasSystem.cs +++ b/Content.Server/Geras/GerasSystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Actions; using Content.Server.Polymorph.Systems; +using Content.Shared.Zombies; +using Content.Server.Actions; using Content.Server.Popups; -using Content.Shared.Actions; using Content.Shared.Geras; using Robust.Shared.Player; @@ -10,8 +10,9 @@ namespace Content.Server.Geras; /// public sealed class GerasSystem : SharedGerasSystem { - [Dependency] private readonly ActionsSystem _actionsSystem = default!; [Dependency] private readonly PolymorphSystem _polymorphSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly ActionsSystem _actionsSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; /// @@ -19,6 +20,12 @@ public override void Initialize() { SubscribeLocalEvent(OnMorphIntoGeras); SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnZombification); + } + + private void OnZombification(EntityUid uid, GerasComponent component, EntityZombifiedEvent args) + { + _actionsSystem.RemoveAction(uid, component.GerasActionEntity); } private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent args) @@ -29,6 +36,9 @@ private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent arg private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphIntoGeras args) { + if (HasComp(uid)) + return; // i hate zomber. + var ent = _polymorphSystem.PolymorphEntity(uid, component.GerasPolymorphId); if (!ent.HasValue) @@ -36,6 +46,7 @@ private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphInto _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-others", ("entity", ent.Value)), ent.Value, Filter.PvsExcept(ent.Value), true); _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-user"), ent.Value, ent.Value); + args.Handled = true; } } diff --git a/Content.Shared/Geras/SharedGerasSystem.cs b/Content.Shared/Geras/SharedGerasSystem.cs index f5dea466a2e..8c998371b64 100644 --- a/Content.Shared/Geras/SharedGerasSystem.cs +++ b/Content.Shared/Geras/SharedGerasSystem.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Geras; /// -/// A Geras is the small morph of a slime. This system handles exactly that. +/// Geras is the god of old age, and A geras is the small morph of a slime. This system allows the slimes to have the morphing action. /// public abstract class SharedGerasSystem : EntitySystem { diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 00de0180256..b3a80f90c76 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -147,6 +147,16 @@ noSpawn: true components: # they portable... + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 5 # +.5 from normal movement speed + - type: MobThresholds + thresholds: + 0: Alive + 80: Dead # weak af tho + - type: NpcFactionMember + factions: + - NanoTrasen - type: MultiHandedItem - type: Item size: Huge diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index ce89f41d374..582f69b744e 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -79,7 +79,7 @@ id: SlimeMorphGeras configuration: entity: MobSlimesGeras - transferName: false + transferName: true transferHumanoidAppearance: false inventory: Drop transferDamage: true From c045e2488e6ce85f16c7f4cf5dfced18cb18ce62 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 17:27:16 +0000 Subject: [PATCH 17/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 030777798dd..89e8cfceabf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Ubaser - changes: - - message: Satchels no longer have darkened space representing a gap, and is instead - transparent. - type: Tweak - id: 6023 - time: '2024-02-25T23:24:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25147 - author: TheShuEd changes: - message: Huge flora anomaly nerf @@ -3867,3 +3859,16 @@ id: 6522 time: '2024-05-03T07:51:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27644 +- author: Just-a-Unity-Dev + changes: + - message: Fixed Geras not having their speed buff. + type: Fix + - message: Geras are no longer immune to other AI mobs. + type: Fix + - message: Slimes can no longer morph into a Geras when zombified. + type: Fix + - message: Lowered the Geras death threshold. + type: Tweak + id: 6523 + time: '2024-05-03T17:26:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27308 From 6fc684812d4deed313970de40e81822157afe461 Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Fri, 3 May 2024 20:23:43 +0000 Subject: [PATCH 18/78] Ninja's pinpointer tracks the research server (#27552) Change the tracked component on the ninja's pinpointer from BecomesStation to Research Server --- Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml index b104b5787ad..4d36af44592 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml @@ -106,5 +106,5 @@ - type: Icon state: pinpointer-station - type: Pinpointer - component: BecomesStation + component: ResearchServer targetName: the station From 960f268d1cf5d2b318ccd4b2adf18f1837d1c9bc Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 3 May 2024 20:24:49 +0000 Subject: [PATCH 19/78] 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 89e8cfceabf..750097c4edb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Huge flora anomaly nerf - type: Tweak - id: 6024 - time: '2024-02-25T23:41:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25499 - author: OctoRocket changes: - message: Removed the hands requirement to read paper. @@ -3872,3 +3865,10 @@ id: 6523 time: '2024-05-03T17:26:09.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27308 +- author: nikthechampiongr + changes: + - message: Ninjas will no longer be pointed to random wreckage in space. + type: Fix + id: 6524 + time: '2024-05-03T20:23:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27552 From 6ecbf0a04ce3ebaa6c74e144a8fb64ddf3223b43 Mon Sep 17 00:00:00 2001 From: "Mr. 27" <45323883+Dutch-VanDerLinde@users.noreply.github.com> Date: Fri, 3 May 2024 20:03:52 -0400 Subject: [PATCH 20/78] Fix some gamerules' round summary not working (#27654) Update GameRuleSystem.cs --- .../GameTicking/Rules/GameRuleSystem.cs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index c167ae7b6c7..0ff9b3bbbba 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -26,7 +26,7 @@ public override void Initialize() SubscribeLocalEvent(OnGameRuleAdded); SubscribeLocalEvent(OnGameRuleStarted); SubscribeLocalEvent(OnGameRuleEnded); - SubscribeLocalEvent(OnRoundEndTextAppend); + SubscribeLocalEvent(OnRoundEndTextAppend); } private void OnStartAttempt(RoundStartAttemptEvent args) @@ -70,11 +70,16 @@ private void OnGameRuleEnded(EntityUid uid, T component, ref GameRuleEndedEvent Ended(uid, component, ruleData, args); } - private void OnRoundEndTextAppend(Entity ent, ref RoundEndTextAppendEvent args) + private void OnRoundEndTextAppend(RoundEndTextAppendEvent ev) { - if (!TryComp(ent, out var ruleData)) - return; - AppendRoundEndText(ent, ent, ruleData, ref args); + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out var comp)) + { + if (!TryComp(uid, out var ruleData)) + return; + + AppendRoundEndText(uid, comp, ruleData, ref ev); + } } /// From 1d5392f86bd9a086283619ad7ce5d3259b1313df Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 4 May 2024 00:04:58 +0000 Subject: [PATCH 21/78] 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 750097c4edb..23225dab0f9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: OctoRocket - changes: - - message: Removed the hands requirement to read paper. - type: Tweak - id: 6025 - time: '2024-02-26T02:40:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25580 - author: SlamBamActionman changes: - message: Self-uncuff damage has been removed, but attempting to self-uncuff now @@ -3872,3 +3865,11 @@ id: 6524 time: '2024-05-03T20:23:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27552 +- author: Dutch-VanDerLinde + changes: + - message: Fixed nuclear operatives, zombies, and head revolutionary round end summaries + not showing. + type: Fix + id: 6525 + time: '2024-05-04T00:03:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27654 From 96a3967c3f4bcf5826b62013bc3e665656b1db81 Mon Sep 17 00:00:00 2001 From: "Mr. 27" <45323883+Dutch-VanDerLinde@users.noreply.github.com> Date: Fri, 3 May 2024 23:03:56 -0400 Subject: [PATCH 22/78] Change return to continue in gamerulesystem (#27656) Update GameRuleSystem.cs --- Content.Server/GameTicking/Rules/GameRuleSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index 0ff9b3bbbba..05374aa1396 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -76,7 +76,7 @@ private void OnRoundEndTextAppend(RoundEndTextAppendEvent ev) while (query.MoveNext(out var uid, out var comp)) { if (!TryComp(uid, out var ruleData)) - return; + continue; AppendRoundEndText(uid, comp, ruleData, ref ev); } From 1b3481f094edffee3d7841e0c3ccbf8ba4cc30cb Mon Sep 17 00:00:00 2001 From: Vasilis Date: Sat, 4 May 2024 09:18:01 +0300 Subject: [PATCH 23/78] Rename Lizard urist (#27652) --- Resources/Prototypes/Entities/Mobs/Player/reptilian.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml index b9f265e0bcf..b332f573fb5 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml @@ -1,6 +1,7 @@ - type: entity save: false - name: Urisst' Mzhand + name: Urist McScales + suffix: Urisst' Mzhand parent: BaseMobReptilian id: MobReptilian From e7d24b56489128da371b5d45b15d9d4c4bd48149 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Sat, 4 May 2024 14:10:08 +0300 Subject: [PATCH 24/78] Added Train station into map rotation (#27534) * Update default.yml * more sec --- Resources/Prototypes/Maps/Pools/default.yml | 2 +- Resources/Prototypes/Maps/train.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 62e05c3a02b..245ccce4b7b 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -15,4 +15,4 @@ - Saltern - Packed - Reach - #- Train <- return after station anchoring PR is finished and merged + - Train diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index f500d85af93..b18db7aea8d 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -49,8 +49,8 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - SecurityCadet: [ 2, 3 ] + SecurityOfficer: [ 6, 6 ] + SecurityCadet: [ 3, 3 ] Lawyer: [ 1, 2 ] #supply Quartermaster: [ 1, 1 ] From 07d43af4a6e407d4e752466d965177dfe3e5c876 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 4 May 2024 11:11:14 +0000 Subject: [PATCH 25/78] 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 23225dab0f9..85ababf5f8a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: Self-uncuff damage has been removed, but attempting to self-uncuff now - has a cooldown instead. - type: Tweak - id: 6026 - time: '2024-02-26T02:41:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25161 - author: deltanedas changes: - message: Traitors can now be asked to steal the CMO's Handheld Crew Monitor. @@ -3873,3 +3865,10 @@ id: 6525 time: '2024-05-04T00:03:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27654 +- author: TheShuEd + changes: + - message: Added Train station! + type: Add + id: 6526 + time: '2024-05-04T11:10:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27534 From 5ab1cc0c846775e438517bbff9d7713eeb5ef85d Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Sat, 4 May 2024 14:11:46 +0300 Subject: [PATCH 26/78] Pathological Liar (#27618) * content * upgrade * n't * ye ya * Update speech-liar.ftl * Mith replacement ideas * fix * more! * Revert "more!" This reverts commit 6d10bdf694985c525a2b451ed39380f975059b44. * Update Content.Server/Speech/Components/ReplacementAccentComponent.cs --------- Co-authored-by: Kara --- .../Components/ReplacementAccentComponent.cs | 6 + .../EntitySystems/ReplacementAccentSystem.cs | 15 +- Resources/Locale/en-US/speech/speech-liar.ftl | 132 ++++++++++++++++++ Resources/Locale/en-US/traits/traits.ftl | 3 + .../Prototypes/Accents/word_replacements.yml | 47 +++++++ Resources/Prototypes/Traits/neutral.yml | 9 ++ 6 files changed, 210 insertions(+), 2 deletions(-) create mode 100644 Resources/Locale/en-US/speech/speech-liar.ftl diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index ac4e9fbafef..e7f57b80d04 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -32,5 +32,11 @@ public sealed partial class ReplacementAccentComponent : Component { [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Accent = default!; + + /// + /// Allows you to substitute words, not always, but with some chance + /// + [DataField] + public float ReplacementChance = 1f; } } diff --git a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs index 36fa7e07ad5..c332c6cda8f 100644 --- a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs @@ -24,6 +24,9 @@ public override void Initialize() private void OnAccent(EntityUid uid, ReplacementAccentComponent component, AccentGetEvent args) { + if (!_random.Prob(component.ReplacementChance)) + return; + args.Message = ApplyReplacements(args.Message, component.Accent); } @@ -46,6 +49,12 @@ public string ApplyReplacements(string message, string accent) if (prototype.WordReplacements == null) return message; + // Prohibition of repeated word replacements. + // All replaced words placed in the final message are placed here as dashes (___) with the same length. + // The regex search goes through this buffer message, from which the already replaced words are crossed out, + // ensuring that the replaced words cannot be replaced again. + var maskMessage = message; + foreach (var (first, replace) in prototype.WordReplacements) { var f = _loc.GetString(first); @@ -53,10 +62,10 @@ public string ApplyReplacements(string message, string accent) // this is kind of slow but its not that bad // essentially: go over all matches, try to match capitalization where possible, then replace // rather than using regex.replace - for (int i = Regex.Count(message, $@"(? 0; i--) + for (int i = Regex.Count(maskMessage, $@"(? 0; i--) { // fetch the match again as the character indices may have changed - Match match = Regex.Match(message, $@"(? Date: Sat, 4 May 2024 06:12:11 -0500 Subject: [PATCH 27/78] Vox customization fixes & updating (#27663) vox customization --- .../en-US/accessories/vox-facial-hair.ftl | 10 +- .../Locale/en-US/accessories/vox-hair.ftl | 27 ++-- .../Locale/en-US/markings/vox_tattoos.ftl | 11 ++ .../Markings/vox_facial_hair.yml | 24 +-- .../Mobs/Customization/Markings/vox_hair.yml | 141 +++++++++++++++--- .../Customization/Markings/vox_tattoos.yml | 55 +++++++ .../vox_facial_hair.rsi/beard_s.png | Bin 0 -> 273 bytes .../vox_facial_hair.rsi/colonel_s.png | Bin 0 -> 257 bytes .../vox_facial_hair.rsi/fu_s.png | Bin 0 -> 271 bytes .../vox_facial_hair.rsi/mane_s.png | Bin 0 -> 412 bytes .../vox_facial_hair.rsi/meta.json | 32 +++- .../vox_facial_hair.rsi/neck_s.png | Bin 0 -> 302 bytes .../vox_facial_hair.rsi/vox_beard_s.png | Bin 159 -> 0 bytes .../vox_facial_hair.rsi/vox_colonel_s.png | Bin 150 -> 0 bytes .../vox_facial_hair.rsi/vox_fu_s.png | Bin 169 -> 0 bytes .../vox_facial_hair.rsi/vox_neck_s.png | Bin 186 -> 0 bytes .../vox_facial_hair.rsi/vox_ruff_beard_s.png | Bin 314 -> 0 bytes .../vox_facial_hair.rsi/vox_ruff_beard_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/afro_s.png | Bin 0 -> 436 bytes .../Customization/vox_hair.rsi/braid_s.png | Bin 0 -> 347 bytes .../vox_hair.rsi/crestedquills_s.png | Bin 0 -> 420 bytes .../vox_hair.rsi/emperorquills_s.png | Bin 0 -> 287 bytes .../Customization/vox_hair.rsi/flowing_s.png | Bin 0 -> 515 bytes .../Customization/vox_hair.rsi/hawk_s.png | Bin 0 -> 336 bytes .../Customization/vox_hair.rsi/horns_s.png | Bin 0 -> 347 bytes .../vox_hair.rsi/keelquills_s.png | Bin 0 -> 397 bytes .../vox_hair.rsi/keetquills_s.png | Bin 0 -> 381 bytes .../Customization/vox_hair.rsi/kingly_s.png | Bin 0 -> 457 bytes .../vox_hair.rsi/long_braid_s.png | Bin 0 -> 913 bytes .../Customization/vox_hair.rsi/mange_s.png | Bin 0 -> 636 bytes .../Mobs/Customization/vox_hair.rsi/meta.json | 100 ++++++++++++- .../Customization/vox_hair.rsi/mohawk_s.png | Bin 0 -> 337 bytes .../Customization/vox_hair.rsi/nights_s.png | Bin 0 -> 369 bytes .../Customization/vox_hair.rsi/ponytail_s.png | Bin 0 -> 747 bytes .../vox_hair.rsi/razor_clipped_s.png | Bin 0 -> 399 bytes .../Customization/vox_hair.rsi/razor_s.png | Bin 0 -> 411 bytes .../vox_hair.rsi/short_braid_s.png | Bin 0 -> 427 bytes .../vox_hair.rsi/shortquills_s.png | Bin 0 -> 391 bytes .../Customization/vox_hair.rsi/surf_s.png | Bin 0 -> 519 bytes .../vox_hair.rsi/tielquills_s.png | Bin 0 -> 373 bytes .../Customization/vox_hair.rsi/vox_afro_s.png | Bin 298 -> 0 bytes .../vox_hair.rsi/vox_afro_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/vox_bald_s.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_cropped_s.png | Bin 262 -> 0 bytes .../vox_hair.rsi/vox_cropped_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_horns_s.png | Bin 236 -> 0 bytes .../vox_hair.rsi/vox_horns_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_kingly_s.png | Bin 309 -> 0 bytes .../vox_hair.rsi/vox_kingly_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_mange_s.png | Bin 296 -> 0 bytes .../vox_hair.rsi/vox_mange_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_mohawk_s.png | Bin 237 -> 0 bytes .../vox_hair.rsi/vox_mohawk_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_nights_s.png | Bin 256 -> 0 bytes .../vox_hair.rsi/vox_nights_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/vox_pony_s.png | Bin 384 -> 0 bytes .../vox_hair.rsi/vox_pony_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/vox_rows_s.png | Bin 227 -> 0 bytes .../vox_hair.rsi/vox_rows_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_ruff_hawk_s.png | Bin 402 -> 0 bytes .../vox_hair.rsi/vox_ruff_hawk_s2.png | Bin 96 -> 0 bytes .../vox_hair.rsi/vox_shortquills_s.png | Bin 250 -> 0 bytes .../vox_hair.rsi/vox_shortquills_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/vox_surf_s.png | Bin 377 -> 0 bytes .../vox_hair.rsi/vox_surf_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/vox_yasu_s.png | Bin 356 -> 0 bytes .../vox_hair.rsi/vox_yasu_s2.png | Bin 96 -> 0 bytes .../Customization/vox_hair.rsi/yasu_s.png | Bin 0 -> 516 bytes .../vox_tattoos.rsi/heart_l_arm.png | Bin 0 -> 223 bytes .../vox_tattoos.rsi/heart_r_arm.png | Bin 0 -> 223 bytes .../Customization/vox_tattoos.rsi/hive_s.png | Bin 0 -> 275 bytes .../Customization/vox_tattoos.rsi/meta.json | 27 ++++ .../vox_tattoos.rsi/nightling_s.png | Bin 0 -> 312 bytes 73 files changed, 377 insertions(+), 50 deletions(-) create mode 100644 Resources/Locale/en-US/markings/vox_tattoos.ftl create mode 100644 Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml create mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png delete mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png create mode 100644 Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png create mode 100644 Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png create mode 100644 Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png create mode 100644 Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json create mode 100644 Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png diff --git a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl index 48b19ca74b1..a63b0b5a398 100644 --- a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl @@ -1,5 +1,5 @@ -marking-VoxFacialHairColonel = Vox Colonel -marking-VoxFacialHairFu = Quill Fu -marking-VoxFacialHairNeck = Neck Quills -marking-VoxFacialHairBeard = Quill Beard -marking-VoxFacialHairRuffBeard = Ruff Beard +marking-VoxFacialHairBeard = Vox Beard (Quills) +marking-VoxFacialHairColonel = Vox Moustache (Colonel) +marking-VoxFacialHairFu = Vox Moustache (Quill Fu) +marking-VoxFacialHairNeck = Vox Beard (Neck Quills) +marking-VoxFacialHairMane = Vox Beard (Mane) diff --git a/Resources/Locale/en-US/accessories/vox-hair.ftl b/Resources/Locale/en-US/accessories/vox-hair.ftl index cf98d0b4f98..94483fd6a6c 100644 --- a/Resources/Locale/en-US/accessories/vox-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-hair.ftl @@ -1,13 +1,22 @@ -marking-VoxHairShortQuills = Short Vox Quills -marking-VoxHairKingly = Vox Kingly marking-VoxHairAfro = Vox Afro -marking-VoxHairMohawk = Vox Mohawk -marking-VoxHairYasuhiro = Vox Yasuhiro +marking-VoxHairBraids = Vox Braids +marking-VoxHairCrestedQuills = Vox Crested Quills +marking-VoxHairEmperorQuills = Vox Emperor Quills +marking-VoxHairFlowing = Vox Flowing +marking-VoxHairHawk = Vox Hawk marking-VoxHairHorns = Vox Horns -marking-VoxHairNights = Vox Nights -marking-VoxHairSurf = Vox Surf -marking-VoxHairCropped = Vox Cropped -marking-VoxHairRuffhawk = Vox Ruffhawk -marking-VoxHairRows = Vox Rows +marking-VoxHairKeelQuills = Vox Keel Quills +marking-VoxHairKeetQuills = Vox Keet Quills +marking-VoxHairKingly = Vox Kingly +marking-VoxHairLongBraid = Vox Long Braid marking-VoxHairMange = Vox Mange +marking-VoxHairMohawk = Vox Mohawk +marking-VoxHairNights = Vox Nights marking-VoxHairPony = Vox Pony +marking-VoxHairRazorClipped = Vox Razor (Clipped) +marking-VoxHairRazor = Vox Razor +marking-VoxHairSortBraid = Vox Short Braid +marking-VoxHairShortQuills = Vox Short Quills +marking-VoxHairSurf = Vox Surf +marking-VoxHairTielQuills = Vox Tiel Quills +marking-VoxHairYasu = Vox Yasuhiro diff --git a/Resources/Locale/en-US/markings/vox_tattoos.ftl b/Resources/Locale/en-US/markings/vox_tattoos.ftl new file mode 100644 index 00000000000..f7f3c7292c7 --- /dev/null +++ b/Resources/Locale/en-US/markings/vox_tattoos.ftl @@ -0,0 +1,11 @@ +marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) + +marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) + +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) + +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml index d4cc4b00e31..6ec5f8999a1 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml @@ -1,40 +1,44 @@ - type: marking - id: VoxFacialHairColonel + id: VoxFacialHairBeard bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_colonel_s + state: beard_s + - type: marking - id: VoxFacialHairFu + id: VoxFacialHairColonel bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_fu_s + state: colonel_s + - type: marking - id: VoxFacialHairNeck + id: VoxFacialHairFu bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_neck_s + state: fu_s + - type: marking - id: VoxFacialHairBeard + id: VoxFacialHairMane bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_beard_s + state: mane_s + - type: marking - id: VoxFacialHairRuffBeard + id: VoxFacialHairNeck bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_ruff_beard_s + state: neck_s diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml index 975de63204d..9a847b40a99 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml @@ -1,91 +1,102 @@ - type: marking - id: VoxHairShortQuills + id: VoxHairAfro bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_shortquills_s + state: afro_s + - type: marking - id: VoxHairKingly + id: VoxHairBraids bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_kingly_s + state: braid_s + - type: marking - id: VoxHairAfro + id: VoxHairCrestedQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_afro_s + state: crestedquills_s + - type: marking - id: VoxHairMohawk + id: VoxHairEmperorQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mohawk_s + state: emperorquills_s + - type: marking - id: VoxHairYasuhiro + id: VoxHairFlowing bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_yasu_s + state: flowing_s + - type: marking - id: VoxHairHorns + id: VoxHairHawk bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_horns_s + state: hawk_s + - type: marking - id: VoxHairNights + id: VoxHairHorns bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_nights_s + state: horns_s + - type: marking - id: VoxHairSurf + id: VoxHairKeelQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_surf_s + state: keelquills_s + - type: marking - id: VoxHairCropped + id: VoxHairKeetQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_cropped_s + state: keetquills_s + - type: marking - id: VoxHairRuffhawk + id: VoxHairKingly bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_ruff_hawk_s + state: kingly_s + - type: marking - id: VoxHairRows + id: VoxHairLongBraid bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_rows_s + state: afro_s + - type: marking id: VoxHairMange bodyPart: Hair @@ -93,7 +104,26 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mange_s + state: mange_s + +- type: marking + id: VoxHairMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: mohawk_s + +- type: marking + id: VoxHairNights + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: nights_s + - type: marking id: VoxHairPony bodyPart: Hair @@ -101,4 +131,67 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_pony_s + state: ponytail_s + +- type: marking + id: VoxHairRazorClipped + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_clipped_s + +- type: marking + id: VoxHairRazor + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_s + +- type: marking + id: VoxHairSortBraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: short_braid_s + +- type: marking + id: VoxHairShortQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: shortquills_s + +- type: marking + id: VoxHairSurf + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: surf_s + +- type: marking + id: VoxHairTielQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: tielquills_s + +- type: marking + id: VoxHairYasu + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: yasu_s \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml new file mode 100644 index 00000000000..c61cfea0c60 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml @@ -0,0 +1,55 @@ +- type: marking + id: TattooVoxHeartLeftArm + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_l_arm + +- type: marking + id: TattooVoxHeartRightArm + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_r_arm + +- type: marking + id: TattooVoxHiveChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: hive_s + +- type: marking + id: TattooVoxNightlingChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: nightling_s diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png new file mode 100644 index 0000000000000000000000000000000000000000..92aeea8f3606d97c46b6f71653bbe449a5d9b4d8 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uw-nnyU-@bjPPoD+~L^Hmh3sP4SEaj?;r@1-As>Sx2Mg=J|IdrxI+$O~C_LKN$~j9gXTecbArFRm zT(eqdw;QgUT023{x^LH`mQS<3m%90yFWt_(x?Gx5g#oBWWdg&W@CVa&Ex9;vuSkN| zj0mk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h2Ka=y?%TKT#*G_5p2%-YZXm^6666>B|3Aa^Q@lX644efXk;M!Qd`Cc- zajG_-G*Ga})5S3)!u{t{qJu|9oXLU-zbfJSN-3Ck3oTnp@X50_snFcRkmg(uaAEE^<+(qsM~AX uUH5j(=GShU-MgRh8Z%H0!y?}Ue;N2r$UkxlvbYVjox#)9&t;ucLK6VOXjnA> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png new file mode 100644 index 0000000000000000000000000000000000000000..87f97eeaeebc987992eddf42fa569ca3cd034a12 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}z?%TKT&Ye4_PoIAI5~Sw!7txbIinS!jFZe$YF#O)e7Yr2OEbxdd zW?X?_wfUrhf)$=Fjv*25Z?8FW9Z=wL3G^-gZ#;eB%_9a^5_Zq#Z`%54Tj7sH zCYA;38!w7|{+pR+{B5?b!x}fq4H3OY4eM(@MSZUFZD3GwU=UJZ_{%os^V@F!aLJ8j zN7FhPivJqkxS`$<+R#(WG-Wwo?e7VX|FUp601b0K@R!Yu-+pPNy83RQ8yGxY{an^L HB{Ts5)J|l| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png new file mode 100644 index 0000000000000000000000000000000000000000..08b120f500e090d011b1b1835d51d9ef1cb0e2fa GIT binary patch literal 412 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}z?%TKT^y$-g?%etI?Hf?+s=7oikYX(f@(cbC1Ps5o@dX0~I14-? ziy0XBj({-ZRBb+Kpy8~ZE{-7)?r*0#@-ZuNxH9hjKl69sv99KmGs-Tv<*N&}sFyN_ z*oQFH@g{71Qgn|kbert^4LYqG&%B!D^wdgI{AA~K331xJ*Z9oh zDt9i?Fz%lsQyq3VyqWzYxm!Jh<;mx7f=p*8Rw&1+q}fl>W-|?#IQe%iYX$qUO@Ey& z8G8O%Ux+MOz@p+XwSi@Y(1+57Z>+cTO0s2)7i_KHVrI;|FhBD|O=tJDV_l(UXFa{F z^K5G}%nY0|T5lzveaupBA2%s%t9?=V;y+7&tWywL%;j`ef+@_v;*JQz1C~U~1Aiah z5oUg6)MFVdQ&MBb@0Kqn( AxBvhE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json index c52ad8a2a2e..64eebb88830 100644 --- a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json @@ -1 +1,31 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_beard_s", "directions": 4}, {"name": "vox_colonel_s", "directions": 4}, {"name": "vox_fu_s", "directions": 4}, {"name": "vox_neck_s", "directions": 4}, {"name": "vox_ruff_beard_s", "directions": 4}, {"name": "vox_ruff_beard_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/0f9ef5962f4422836c0a42f289fb24d018918cbc/icons/mob/sprite_accessories/vox/vox_facial_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "colonel_s", + "directions": 4 + }, + { + "name": "fu_s", + "directions": 4 + }, + { + "name": "neck_s", + "directions": 4 + }, + { + "name": "beard_s", + "directions": 4 + }, + { + "name": "mane_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png new file mode 100644 index 0000000000000000000000000000000000000000..f630e8ce8bc762833616d29800e1834f70cd1791 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}z-nnyU-@bjPPoMtw?Hf>x`KI+{LBbzuMi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png deleted file mode 100644 index 8e922e58dea46603f309e325679cf21d0b244dbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSJOMr-u0UEvnlZ?pJtIi?hU<(X zAfK@$$S;_|;n|HeAji?u#WBR8vOdO4iYz`89D)yBY*0IJ!howyKY=SD zA;Goplca(ZucrgQ%Nqxw2P}e|C)zA}mI-ZQWT;=ks`Eg6=USj)44$rjF6*2UngEV3 BD}(?5 diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png deleted file mode 100644 index 8de4dd68030cd898e7075ce35ef4e821d6541d44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0L3?#3!&-4XSoB=)|u0UEvnlZ?pT{1u`9LQlT z3GxeOaCmkj4al+fba4!^IGvmzal|2sX;uR>_sKMaMcf94Jxz(s64DKVuNqVs{1lix rn3xIzH3Ap}WjvT<3N8jZ7%?y?KV{NhI5}1wXbgj=tDnm{r-UW|@^K$q5pyS6G>temtEiI)zh%!D&weC&x!7Hw78i z#R(!jJPpt7Vq6=Adloi1H!_B(E3aGRz__fT)4}kFMU+Sn(=A4ZCkq&xS556t0h-C+ M>FVdQ&MBb@0Cn{*Jpcdz diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png deleted file mode 100644 index 9009717cee3adf97989004bd8d8cc7bf3f583f08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Jq-%@}0Qo)IM6RiN^s z<#Gp5h_NKdFPOpM*^M+HC(_f!F+@W0?ZJbb4F&?P2fuG^R1FiD#AITo@N&O~V-r`G zIxD|*bM@66gPu1`7bM&579DYHuvjf7HgAQGjqtgh^`|aoh-ihcYE?^p?AB$nu;BQa e8y<&t_OCJJXVKs2x6T%534^DrpUXO@geCxGqC5@& diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png deleted file mode 100644 index 365f134c44f99b419312333cfe4adc530c86c56b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e=>VS)S0Jq-&1fUX5MIIKME-6!S9|qT^y0Lhlwi})&qrLYzyD<@ad!Qb;&myF>-_g#)Cp*3 z?%v|CIqI(_Yq?R7R?Lo#g>5Zcu1N}MRqR&}toolgV}*Zqwoqi8?e7CeZhl^=yFVdQ I&MBb@04q0iZU6uP diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png new file mode 100644 index 0000000000000000000000000000000000000000..74b09a0635af745b15029a5aa8bb84e35015e459 GIT binary patch literal 436 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zzIgFs-@bjfZ{I$D{yb2uwJJRXNU@d#`33(60*2q)_=14~oCO|{ z#S9F5M?jcysy3fA&~RB#7srqY_qSme`Irnjl5_t5KfA4CqVETjeUesZbG5&`dYYuJ z?UZxHSJ*QNVU){2_+55)Z%tP1P zG(HHN<4uTPp77#W{o{tK`s-hoGjT>OVC@jgV0^^Sdd01==MIa5vDN1UrWrXL-;Km2 zWPeS>lvHRgeB<6>3gw9#7Y=&yLZR)Uga!29QeiYc=Z+sZUNm3OfKAibT(Y$ YmAPzdV9HmX4h%g8Pgg&ebxsLQ0BJa^+5i9m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png new file mode 100644 index 0000000000000000000000000000000000000000..ff2aa4acbc7783ded8b1b3181ac8ccf29d36d15a GIT binary patch literal 347 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zzIgHC{Q2|y_U*fU`!-N)=KMl!AjMh|nC~#OgLNL%)OI^wT|k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h2Ka=yo;Y#h(W6H|-eTpXY9Pg2666>B|3Aa^Q@lX644efXk;M!Qd`Cc- zajG_-G|*5{PZ!6K2=}*B4+!`vJlgy!_}WzNx5d^i0-QO0H#w-1#O zO#2c`G)|m)syDs2bI;a~0_B%>F8{@lv2V5pYk_M`&tnP$n1mQq6&M4U>eyngvoG2r`?Z$y>s4T=F?hQA KxvXk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h2Ka=y-nemN-@bi7p75vZn}HN_NswRg|NjivPw@iPGH@1nL>4nJ@ErkR z#;MwT(m=rpo-U3d5$k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}z?%TKT_U+p*Uc5Me{yb2urtBCO>_ z%)r2R1cVu?5rq-F)47UxI5?LWW06tS6WYx&#t($_M1Reth3 z;Mi8X;yu$E(|p79Th~4W*JsXjE#}WQbCa;?+b^*H#=VNqg?4{APn2E1xWVK6<$#6O z0rPkN;y0E%-)^I%E9k|aviRI9J%-!A`Mr;58aWFFC9p0zc)`S_X5ZuQf(lI9hKvbq z`eCAO7q|;z+nFlLvU_*GWBkpX5Ld--xSmyS(kA{%7yRV>8B(Laco!{sc!sy$qN4;lthI-z@LVEKh8I zpLnx{tAWq9mgh)v&zpPhf0Xa%+nutB=U5oV!2WIRY(;}5^9)27p1(HyP;h|PXm$Ya z`!Bl{zbwcJ__W7v*H5h?+21~?tG&68ee3a@v7g;${@k+nuRC@IWX@|j&VT50oT;LM z{n}N5^3RlbC-&7|mzeN<@;&xHZeYj#VLq_!FT;K-8>eMWVJm=k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}z?%TKTlRS#o}qy;kYX(f@(cbC1Ps5o@dX0~I14-? ziy0XBj({-ZRBb+Kpx{nV7srqY_qWqd3msPAa25RXKVQ$nBv@|oTcy~PcZtf3{WE-> zj2)z`vuvL>x2><5aU(o`l0(~%Rqa3Cab`RbRytI9=*syy{vB61`NL1is9Oa6su!Ii z{jau(iA6v{z#+k*pxI&nJh7moDsi9hc=ldX6q{GSX`Z;V$cwzVi+A6wVs(CVWsy&B z-hRn7%i1gUb*$a?zeTEMYe&;3=F1y*JN^A(_9iaLFFNVGx%D;&hDJt47B&`sfipju YLXX=W?q0#~4DmdKI;Vst0C+%wlK=n! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png new file mode 100644 index 0000000000000000000000000000000000000000..8891151c9fd68e186d0928510b8857dd83da9139 GIT binary patch literal 347 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O_~O1^9%x?%TKT+qZA0PoIAI^5va7cYwkdW-15)DYlXzzu^BMz_5A$lKnst z&H|6fVg?4jBOuH;Rhv&5D0slr#W5tp{q0mop~DIs41y2;$FI{cYnWwr*_;23j}qsG zX7z@tmhXV@zKbDBHTyKsqzPi7`Ka|J0ZQDAlA`sd4V|7Fe0 zY{#a4E{6Tpwah^~!x=>G%eTvM|7csPz;WnPe8=ue!3pbrDBm#Oq8QicZ0EFdZg|iH jCPh|FfuIkY8-B7T*ZH-FALteY`h~&M)z4*}Q$iB}D|UtY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c947bcce960e24ad1d6b8e361cc9b41e86548f GIT binary patch literal 397 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h2Ka=y?%TKT#*G_5p2%-YZXm^6666>B|3Aa^Q@lX644efXk;M!Qd`Cc- zajG_-G*IxLr;B4qg!|j6)?!B#I9v^X$A9_I;`u{TUHz=c9TC9^>Jc2W`khSH2Sxb# zq`q@mzI)@ir?D+cQtOdl!!yp;QWjnQx(6e4c)NE96tetybMR+Ob8j@`U+d+L=iQ}W zF_!(!%`4?RF<&Ul|IEhlxSNM7_vkN-3H!O6X;lFKifg5IB5C}q#p)ca1H3C#7+NR% z4_L5(HHu-219yYHh)4gtr5w-h=H*nZ3i$G2^IP`zM7~yw?~mdtf1G}K;_z+%t)1H^ z+Hq@$+)!0*5&6qqSyUNtXe~p$W8`1gTMt++IPMZe0>H49&tQ>{M%@W?vgmHq$# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png new file mode 100644 index 0000000000000000000000000000000000000000..910542dde134290b0ccd779d80e44efee9a61512 GIT binary patch literal 381 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h2Ka=y?%TKT#*G_5p2%-YZXm^6666>B|3Aa^Q@lX644efXk;M!Qd`Cc- zajG_-G*IxJr;B4qg!|iRj(pCF94<$H%kS!G=t`)+mAC7`(v=4uWc+iB`ad!C!li=3 zi|IG4CaUyid^XMdb?qdRQLNI=yu$1w_R~JJN4!3^!gK0$-}v4ez7Y=ipU`L5`iQ`+SUhtnfUolAPl@0xby+r-Xf+r=02i8nQX zZ2`|IhA9W*rCxB)n%uFmde217m6N{Qllk;3@{mBm%O_eFu2>XZ+h|=Yms(&U>y%aO zbbzh>JKLS<^$d*R78biL)7!5+wz9BrtD7m{_Vc8In9cle_Q7na45t?GI7oi^$MjBA WZs8-bW50nuXYh3Ob6Mw<&;$Tksh5rb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0a1d8d89423c1d8556a409bfb093a7932fa12d GIT binary patch literal 457 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zzIgHC_U+r}&!6A7Zy!)B@95cyK#H{_$S?Rm5HS4S#up3};4JWn zEM{QfI|9OtQ?>b|frcA-x;TbJxWAotQ0R~XkBj2N|NC$9-p!iSw(9Xw=JnfJb#yo% zcjW%*FyHX4GJMLe_h0OGJ$Uyf-Rp1ag(~5r&aC{$Y?j|!^lp}xgwh08$<70j6By^k z)k``!yXR;=sbn>_z9w+g$gf=T%jJmIz8hY4{rq8&)FN~vVp;-c!oNi7N(R@j7t7|Et&;Uk6rm)iXRd^eQJGJP<#pirIh70h8AJCZ0=btX!6oXH;%#X>jSd q-LIW^qu`Ftcgfoc(h?Bd!|qgTo9JPB@Fy@x89ZJ6T-G@yGywpF(Z0?A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png new file mode 100644 index 0000000000000000000000000000000000000000..3df31052dbeff4d8eade24d681d8faf20da502cb GIT binary patch literal 913 zcmV;C18)3@P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf113pCK~#8N?V2%? z;xG_J?IolL96`VZh`B#EAm#!D5D`$2&9Zu`Zc62y9n>;5_DZjcYGfO_`|I1xSgv=w zU6nJxBxXyJ0Nd^ML0qrbKI(WVHk*y+^D!8kNfKbc-xD6o<n$@q9j4x7)3{TrSc1 zqZ}ais!ylWx6K3F+3%?3__u+$G(~eX`JDs8<~d$I`Vx}^B>tps%rQxP)B%9XB>f5Y zb6g)-93UTwB3gido%u_TZ#Y@v!w_i zF9`2V;|^uw{mt8B2|EA zmmaFpM zvk&AXw_JFA{-8ErYYe7mgs{Ipj6eh_;A0>HQEQS1CD;^ISIR?Dz*=1LVnk2i=5Xet z1hAX}`Ui(%`fSfUYiZT^5>pdmEnSHnlLNGtnba6f7YB@z-WtyR nW=j!3Vzv|kBxXzI0#wx>w2|poN?|v(00000NkvXXu0mjf?W>h5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png new file mode 100644 index 0000000000000000000000000000000000000000..afa934e88078ac639916d1caa1c0799da4bcf21f GIT binary patch literal 636 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sDEfH31!Z9ZuR1|~sI7srr_xVN(ob{#ShXuEuLF{^FV1@;Ty z_x}?6$|&;6m({lH=2`iFQ?`_-cD_xV`P1Q_Pq6jO{VO>xKdP{iI$0BVbW)B((BORQgUO}tNs)Tf-`4HVU)WJxp74clL+i|CnG$`?m2=W(?y4v+ zKfGw-^BTL|HO|I57k4XGu`k%MY86O&)|9QX_XBvkx0T;{Q?}dB+4#p?ji5S~xt#AG z*u4Aq#5!Sb-0bVGQx{x+ef8zjqQWYxxmCw?FaG@hRDR*xvfGO)RzLe#G2?0$tFhP| zwu}26fB8?)5;JWe8c*xzS+Pnhr}68p#HUBzbMvhGo_;UH&S*jAtPQ^}^u--8jG9#L+{bt{ZFANa zHu{Q9x>=3inuE`eL?-TBsb3(SPt@uPOi`YJE=`E`+ z&gHenC>JS9buW7zR&QKbLh* G2~7YPofp3V literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json index 2f141784244..9b08260bd64 100644 --- a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json @@ -1 +1,99 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_afro_s", "directions": 4}, {"name": "vox_afro_s2", "directions": 4}, {"name": "vox_bald_s", "directions": 4}, {"name": "vox_cropped_s", "directions": 4}, {"name": "vox_cropped_s2", "directions": 4}, {"name": "vox_horns_s", "directions": 4}, {"name": "vox_horns_s2", "directions": 4}, {"name": "vox_kingly_s", "directions": 4}, {"name": "vox_kingly_s2", "directions": 4}, {"name": "vox_mange_s", "directions": 4}, {"name": "vox_mange_s2", "directions": 4}, {"name": "vox_mohawk_s", "directions": 4}, {"name": "vox_mohawk_s2", "directions": 4}, {"name": "vox_nights_s", "directions": 4}, {"name": "vox_nights_s2", "directions": 4}, {"name": "vox_pony_s", "directions": 4}, {"name": "vox_pony_s2", "directions": 4}, {"name": "vox_rows_s", "directions": 4}, {"name": "vox_rows_s2", "directions": 4}, {"name": "vox_ruff_hawk_s", "directions": 4}, {"name": "vox_ruff_hawk_s2", "directions": 4}, {"name": "vox_shortquills_s", "directions": 4}, {"name": "vox_shortquills_s2", "directions": 4}, {"name": "vox_surf_s", "directions": 4}, {"name": "vox_surf_s2", "directions": 4}, {"name": "vox_yasu_s", "directions": 4}, {"name": "vox_yasu_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/dcd1f5d88a8c5ba9634fc3fce67a76ada45f71dc/icons/mob/sprite_accessories/vox/vox_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crestedquills_s", + "directions": 4 + }, + { + "name": "emperorquills_s", + "directions": 4 + }, + { + "name": "keelquills_s", + "directions": 4 + }, + { + "name": "keetquills_s", + "directions": 4 + }, + { + "name": "shortquills_s", + "directions": 4 + }, + { + "name": "tielquills_s", + "directions": 4 + }, + { + "name": "kingly_s", + "directions": 4 + }, + { + "name": "afro_s", + "directions": 4 + }, + { + "name": "yasu_s", + "directions": 4 + }, + { + "name": "razor_s", + "directions": 4 + }, + { + "name": "razor_clipped_s", + "directions": 4 + }, + { + "name": "mohawk_s", + "directions": 4 + }, + { + "name": "horns_s", + "directions": 4 + }, + { + "name": "nights_s", + "directions": 4 + }, + { + "name": "hawk_s", + "directions": 4 + }, + { + "name": "long_braid_s", + "directions": 4 + }, + { + "name": "short_braid_s", + "directions": 4 + }, + { + "name": "mange_s", + "directions": 4 + }, + { + "name": "ponytail_s", + "directions": 4 + }, + { + "name": "braid_s", + "directions": 4 + }, + { + "name": "surf_s", + "directions": 4 + }, + { + "name": "flowing_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png new file mode 100644 index 0000000000000000000000000000000000000000..b8466620b8d2b773d91bb182cc4607cdc1ce4caa GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zoUc9({`!-N)xpBSP$0Z_FPuW91Kr;FUT?+_zj=wjAcm zJd@C~#7fO#pLUQei<8i9sl+wS4XO8;gs(X+ShaDr;NBMsM;nCxJ$S_QX`jOU{n{Q| z7O?tpM?Ki`z@BwlWW;H%6rB*MZpPJzp9k$LbnA58S*OCWk?V2JY}O??T+yuu-`)Pi zJker?($90}zVsOUu*h;(vn~^u{YUJVYMJaDmh5dzJlfyP<+$HnZW6Q5&1k&b^qn=i ahGBA$-J{&4&yNFr!QkoY=d#Wzp$PzrDu6Bk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png new file mode 100644 index 0000000000000000000000000000000000000000..68d2654dcd15836f5d5487ae75ddfad75d6bb5fa GIT binary patch literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O_~O1^9%xzI^%e&Ye5ozI{7=`t-hi`+&my&jdaLDYlXzzu^BMz_5A$lKnst z&H|6fVg?4jBOuH;Rhv&5D0t1&#W5tp{q3~d(+(?exK366|Nr#U3Rmm2S>@lN3^jIm z&v&}yc8E8zKNX0;Jh!Af7RdDZUc zl^>p{W~}NqUH5R&ysv!Q{^UGmzhV38RfTfG#=oEHo=$zB?a`cxFoV;lJf<- zfBYLBs43L)R5koRSe)~J@Bh#uj(froBU=<$R;`kE{@|yfUi$h1(1#43u6{1-oD!M< DS^AmK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png new file mode 100644 index 0000000000000000000000000000000000000000..316f08fe9a5fc947e173c7735198bca960fc4d4a GIT binary patch literal 747 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sDEfH31!Z9ZuR2Brp27srr_xVN)>`&JtWv?P9ubUDR%NVKRq z#zsbo-D66rikKzC`Kv4C1l#PTPYA#Iwt+1f2tOX3jYDwrp~4+tfB`eG$Wj zFOFOI&-IzYn9LX?)S)W!ThKXu|6Tj3zPXKNGydMqJ02z#ZOYJp@BYpChnIyjaNOpb zwCC%#90$AdpUuAO8+LByH`~wpY*Q(7ntfRs9ds^HIN46>n69zx#*sR7qI;Ufpl^7fxdOROnC#*cpSmdC0 zf^%o0PdLW~sb3Ozmk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uw-nemN-@bjPPoD+~JTzsO0;wwr@(cd||38C+*2*tHK4*bPWHAE+ z-w_aIoT|+y4HW$2>Eaj?;r@2&ZN5Va0xmoM{I|Cb4m-@VWXZ3zZzjtQT)G@-y0Bzn zNOZxpO?p$pZm(UqO=_|EuDyzm-5>jWV_9nK?F^$GH&(d#H)tP|R(LMDx$)%;#beSE z41!5!8{QrjZz<+xUzdNPsz&8SIJY6+JkB3`Y(M%G{866!@wq&=SkMHfNlhXX_6uK$ zDy%!2!rW(?H*+HkZ>fyEp>cuM!kqT^Iu29S#YLi-r@2QOc{Bwct1gq=Adz}8;_u#_DCcx18?qpD+`w kapnqg09!eqb?<%#|D}4F<(Jc$fZ@R4>FVdQ&MBb@0Ef+&MF0Q* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png new file mode 100644 index 0000000000000000000000000000000000000000..0b57cec2c120e66ee0408874fec4ac20195df150 GIT binary patch literal 411 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uw-nemN-@bjPPoD+~JTzsO0;wwr@(cd||38C+*2*tHK4*bPWHAE+ z-w_aIoT|+y4K$d;)5S3)!u{>k+kA%=c$|0s`EP$-^JU0vj$>+XHJ8ttGU1HHS}$*P zuc@r5TA!UVx9W;!t(Lo6P~F`8tk5Muo$!)oyDaRWY_rw%Vc>(~4$3Dg409UX3`+aOBhD}G zb^mdO@vRe+RRxdv#slI@9JnMjCos8jefh_9_?({0rSG3DfC0te>FVdQ&MBb@0FyVK A#Q*>R literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png new file mode 100644 index 0000000000000000000000000000000000000000..6f7a1e86ca34774ccff3539971195cfa54f265b9 GIT binary patch literal 427 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zzIgHC{Q2{@Z{OaxZy!+X^k2yxK#H{_$S?Rm5HS4S#up3};4JWn zEM{QfI|9OtQ?>b|frg8Cx;TbJxWAotTj-DikIUo(|LZqP`z+UC-SVnO-|{gl3!k*y zlA!%hjx(*?73#IMaL(?uB(b-WlM979Iv&dI)lSmNvbp!&N91&9nB;~#<`;zix~U)d z^=+?_2+tOl6bsg%{`=hGVk@MT4i+zWoB!ZOMPc81p(`s6WOp1pFmu7;+11Zp34O~5 zR5_6TMY{X!vkXV3xO)Ewt_6(ctdn28uMFodCvD6)Hgn04w}HE&Z=4PPj|&v##0|`r|4!T R`~U_TgQu&X%Q~loCIEk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}zo;`bZ-@bh}Zrr$V;Q~<1o$r1vkYX(f@(cbC1Ps5o@dX0~I14-? ziy0XBj({-ZRBb+Kpx_5j7srqY_qWq7@--{)xOzYRzrXUk*YdSZZ0Vb(&r4y`k;(ZU zu;kx~-AtNMp~wAJcE$JXp4s8GGPL`PXpgp>q1>@k>ijP^bLQ;Zk@o}d#$%J2rYxLVmF(5<>O=nq z&t$&_BN=lau5(KiSXEdx6*McN7aTdp?B_kFVJ?4+R8D8~X6_1ohsUy|Va$7TV>2!% zb1gpI*=&2SO}p-Jll6&Irk3&*M~|t@={Qz7|IotS$3zOY?>OnWA!WuP<)8^nlbS>( fi2R8Uc+Fn@%l3u{m*WJW-x)kz{an^LB{Ts5jcl9< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png new file mode 100644 index 0000000000000000000000000000000000000000..712ccb542f3e4ad796a503d074dc1ce368eacd93 GIT binary patch literal 519 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0(2Ka=yo<3cpB|(0{|G|Jk%A45@ zD8yOd5n0T@z;^_M8K-LVNdqm(@N{tuiEw{A?c%h<3LGwtC7=J#zax2sWv$uQH>)Qf zTf!usRNPf`Pe`sSQAy&?HH#(sWn4>~&P8x(_x%W)QtSH0f{$5M%}Vm6#ahlTZIz;q zSxG&eer+B~vwrY=cvN`kY|<*h&5NDFCcZIeDCnzuE*Xi;OtJb;J z4X?_WMS5e;ewe8^p(*XCUW2TXT5ZVukLP%M1ykoSHU2!czq-PTk@dxNrbR3ki~*0c zSzQ+Wo@}4_PEX=xr!JFz>M3{k1;35!qaO0_lsuZ$9dLUx^NDWmL;FJ=TsYUMn%s-& z*fE!@&~)c&?u?w|QoVl3`CAyJ9dZw_1xSC$KTx@k(U~nm)P#F>I4~j@JYD@<);T3K F0RRL4%{Tx6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png new file mode 100644 index 0000000000000000000000000000000000000000..aa121bd3313e30b1b8c4a9d51d2a14bc6e347cfa GIT binary patch literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uw?%TKT`t|E)&z=Pe$p6x61F0(s@(cd||38C+*2*tHK4*bPWHAE+ z-w_aIoT|+y4HSIj>Eaj?;r@2oMIk0d4%fi{|L5Sy%aeAY~91p1c2 M)78&qol`;+0FdmF2LJ#7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png deleted file mode 100644 index 60b9b18c21ed83a8297754df9f4319909ca98ce2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 298 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0Ei^&z=z^T$Ui$RiKhR zKW8aWh_NKdFPOpM*^M+H=cK2LV~EG`w^IW7niY5)UO!;CRmH$9zTgP+f{*{wXWi_{ zHvC*2S;48ofA+V5ScCYz>I+xm#H74_zI(vYnRllRdL~s*022UX8e&mXSr5W z^|uY@qO!CiGXa&=p0AWxXHV$ZQ(NMEE`>>@@Cv)PnrG<387Fs%?2vLjv`RqD`0ZWg s39@0U@|yj+_G+9i-FN%`zopr0FotlqW}N^ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png deleted file mode 100644 index 67574355ee4a44f2cefebdffd0a36f6b2740e664..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e(Ey(iS0Jq-%@}0Qo)IKmmLOM= zV&7GuGUec%uRsaLk|4ie28U-i(tw=#o-U3d5|VEZZsa{=AmDIO|8@nFOYXx9(Q3?d z-mnS?M{M}d7ob|sDrow|cAx4*-^Yd*R5;x%WR<(JbrZ8PP7xJgMiq&eVp3- z6=8dy*SJdV;T2Q-ZpS(Q>#bW;c@x)tJ~QoKP1gp+V<+;yzfR)OFk%Zk`SsYN39FA6 zYgr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png deleted file mode 100644 index dbb4ae8f28e1001efad21da703a81a34acae7330..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0Jq-%@}0Qo)IKmmLS(v zpkgF1UJMjvED7=pW^j0RBMr#u@N{tu@i_i=vLhdpB9E)Q?A^m>SiN>MOxj^S?|{qu zdNFY|wyqsBm)3Gl2(R1qo53Yx-bG8Z@8<677`CrGENpS-x!=X_KP#@?vC4MMnq%## zxIJ#m7Q0OwkIZLuESO`j-cl&G``MI~|G{r(ml$?_xlk9-<83M(ZY*)CcAK=B@P**_ f-P>;$mVIEFJBd>+PQ&dk&`k`Uu6{1-oD!MYgr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png deleted file mode 100644 index 3f35429e14fb9eabc4f12e3e76a0a023067bd45f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)qiyE*l&czLmVZWq_8LWl&s2 zs^UYsdfd{B^PG4|%3%iJCdG+PJn0qyylz1vq!{k8p3Kaw$Mk0)YL;2VBsBoq5k#iL zTHgB);d|`b^;3oB?8eZpc7qykAkg?Y(hIp9shI*-iOSP7jLg}796z%DdWclcwneSx zgv+`04&9|YhY-mYaO}n$?WJ5TeN<#l1YU<}gW4b0uK(2?r8yORYgr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png deleted file mode 100644 index 138c58e690aed7b3368ba707eab34d6f022cfde6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e-2k5uS0Ei|#}Q=D9_3|QmLOM= zV&7GuGP%wcBA5{*TpBMA6o&|&_?htssDYy-$S;`T4+OLy43!6pE%J1643Ut0dvGr& zlc7YzL-CLA?RJ)YGc#}68_EWvEvZbYn{grgr?FA=LEm8i#A(pRi)Ji{7HL@;uDW?t1fhcFtVjJGWFLH={p8S^k@b_w6+ok}gm97^l(o bs9Su^La9RSYgr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png deleted file mode 100644 index 0a5589b0baec8ef0bf45097fb1e5dcdccf6e9bc8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0Jq-%@}0Qo)IKmmLS(v zpkgF1UJMjvED7=pW^j0RBMr#u^mK6yk&t|Q(2%d$K*06jbN%Jp1-^8s?xobM+V&SUkjD1LTp&Q7!Rb)CyH1&%pN zh<1lrxQISnd${QNhnM$-`=)JuZC19ua8A|ZH`a|pyAw9-vj}En+Rftf*r(OYL}sy) h&0?il&+`8={CmtLa(vh4N}!_{JYD@<);T3K0RXhaR>}YX diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png deleted file mode 100644 index 0a587eafceb8c9180e6e6d31fedd4cf28e47471b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0Jq-%@}0Qo)IKmmLS(v zpkgF1UJMjvED7=pW^j0RBMr!zHZzrXvE z;os4{P>o~X-NqwZ?mNG`ZfB)mn{fOpAKU)VEUOmq2P_Ocdj{xE22WQ%mvv4FO#sGV BVdww= diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png deleted file mode 100644 index a9ff211389f32a0a183c7b8e263eb84a6217bc4b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 384 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!j01c^T!D01f?SY2dwhI6kkM73 zq9V-*=QcDn07WL(*{aGg1=?|x#>;o+t3K=M(FAJaEeY}qW;pp92>w98lm7TDpu~Gm z7srr@!*4@l`I{AZTv)TN8~ypezl`{M z;Y{b|bH!^^Hyu+~QSgy^zhR}WQL_X?x@lr?^d0@?-Dv`|Zz&nR-9FbMlkLhCG4|7P z?oS>+51y8{pu_k(3uEG|MT!@vGyAU3s+~Fg)@AUJh%Y9r8Z!LZl zU$QTH>HcT2Zj4?nPpe)&v-~Y4xj1=E)AT=ccgyTcsGKa#!`A$8{|5%y)vULB)Xk0o Pz0Tn2>gTe~DWM4fhYg{v diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png deleted file mode 100644 index cee8b9a103008f6260c30a6ef29bf30f522691ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|ep#Yx{S0Ei^&z=z^T$Ui$RiHAt z&USwHCm*0FV@Z%-FoVOh8)-mJy{C&~h=k7%!pDj~Yx&ps WG5_Q|!J!9q3WKMspUXO@geCymaaDu> diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png deleted file mode 100644 index 41c3cb6decc1a40fac2318c2b4d486769604b072..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmV;D0d4+?P)L;&MWS9>5&HqJ=J91bXe35~nlP<^;aSKnMvJ zB0>=t4toNPB{a_nOfy1jLttwO38BI;t}u)d3M2fAV<3+C)gSs3o((WDoXK5PRU5&1 z=oLKlinG4^w#P}HUx+tL&ZNxCynMt_#X;R4jpAQPUDr!SsG{8(#fW6RW|WFi+}t>V z#t}3ZbgC^*Dpm-!^X3WXFnh}hNYhTIdj@xlMLyH`-gA(QL8PI5#U~bs7-T@I@l7ok z(gnU`c_J_=3?8XgwZW4dcb&$w?79zwlYCZHfhS7yRd>Xxt6gg|0%=(p21&QI{LyTW w4C->m6|+sokEn0BMl6F=b5+D3Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png deleted file mode 100644 index c83ef673a5451e518e9f223c2167862216fd8316..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4S0J6}FIkl=Uze`XRiM%< z{jv-w#8?vK7tG-B>_!@pGt<+>F+@W0?ZJbEhZO`IF7hvAI1+GRlQW|xdl=#GF4SYwf!;xt;gjl3T6Op%pg!=KM~Wd?#{8R(kTPbE-#6(##g}N%}1RgTe~DWM4fJwIV> diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png deleted file mode 100644 index df2191cacd2ec1db6393fa414993ee7005ff65e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 377 zcmV-<0fzpGP)WWfPji{Bp)#~cK`qY0d!JMQvg8b*k%9#0TM|>K~xwS?ZGi?gfJKe z;P)evIo~DCejId;)jAs#_d?q_K`;ORClu_RNe}AKvG_b#k)Ys^2{;H8daY-rki{4S z3eQi zu#!#p61i0<(7^UGHvucj=QNrgh02fV!~v_wklgkT1yKzgz!rCj@qiP42zVfIIQ&;% XHq0oar8OXH00000NkvXXu0mjfu>6)e diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png deleted file mode 100644 index 6461305e85e744b44ee1c304fbc8308c583d5748..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 356 zcmV-q0h|7bP)3Du(%1827%DE2mQ@$}Da9{U2IkXg5_o} diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png deleted file mode 100644 index 0858c19f0521b74f4a058fbddc280ea48a5751bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=>Ygr+Ar*7p9%SSN@(wNd?w`wN fz5vKX1`XxR4h{^A{hv+-f`mO?{an^LB{Ts5qcarg diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee3de1dad2f57f2844d720e45a8d8ee8d747a1f GIT binary patch literal 516 zcmV+f0{i`mP)Px#1ZP1_K>z@;j|==^1poj54^T{0Md;}0zP`TO+uP62&j0`bg?eXH00005bW%=J z|NsC00Q+ozOVaH@;isp)OWkb|{QT^2VEy@BvGzVpmvgQvi?DT0j->@H($g=C@qUsp5GB z<8d(8!q08V^1bDOD9VQhDslWU!3}|D3zTR3*agpzB>jdcVDAd#c{-bjlP2%7_<9Ai z77ymjYjm{&Q^_Yi3eZq0*w1XoKX=}NcftK@gT4_sA_PK!2!RkF{+&Q-Ret);z^@@_ za}2A?$%P4bQQ%PHXfs#gJftp2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff82bbaf26d13c97ce4b376bd4e4bbe73fa1997 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1M1^9%xo;Yy=$TV_rcnYMLN`m}?|1&(@Zr}yvaTa()7BevL9RXp+soH$f zK*11C7srqY_qW#!xfm3ATmp;#d!N3+YAleX{(t)6Un$n%Hf#(F7-Rz0KGR~pQ*1c* z*5;oV-o0gD5MgLwVhCUmPIzj}tgv5%ZU2ORo(379;17n58#9jZf41Z?-3m0H!PC{x JWt~$(69C9LLYn{p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png new file mode 100644 index 0000000000000000000000000000000000000000..774c96692c1a90d27c9ea972a59032d09b265fdb GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1M1^9%xo;Yy=$TV_rcnYMLN`m}?|1&(@Zr}yvaTa()7BevL9RXp+soH$f zK*11C7srqY_qW#!xfm39SPnkziwJ_G~o$WXQn48o=1DRes%2=fQ_{ zo7ZpOdsh)C#;|~aLF542k=E;suO}P4=B}?de#yw7(ZJtuhH?5c{?Dru1-}8!XYh3O Kb6Mw<&;$TH07WhU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png new file mode 100644 index 0000000000000000000000000000000000000000..8361f55864ba9ca65d14c3b9e59107a01111cacb GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uw-n@D9#EBFC{`~_AoJgFw5~Qvq$S?T+|NjgQS}VT*`J4qFk;M!Q zd`Cc-ajG_-G*Ga?)5S3)!u{>ki(Cg3I9yHt|DV5nv7=Z{Y}Jj7?;nq`{8&q{Wo3ch_s94Z&G%^Or*gpC&*@P6UI$}AEf5a8hG zaIlR@{y~4qW7E58mv?r~^hhY&(O2VV@R|GTnm5;(Wwk44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`211o(uwo;Y#h!Gj0?|NjRHL@p>Y0jVnq@(TuuIB2c>0_1ZRctjR6Fz_7# zVaBQ2e9}O{rJgR1ArbCxr(Wc1P~dP4{QrM`^F*-)#b>5(dlx%fp+Kps;nqT+Yrc3M zm}S|$=iQ3ihYPeq`GxCb^n%;Zi#onrxuQ6G$)<~MU3WeU*!nQ_Q%FekMqU+08@5f# zCz$RqL}WJn>vTUU`Qb6gNxmeyO{ME7z7v@8eX(FOvu;Iim-7!`c#5p{oYu2 vneDI7ioUV_AiCQ;59l=|pgLKmsND?n-s`8AN32%?I+(%J)z4*}Q$iB}t> Date: Sat, 4 May 2024 11:12:52 +0000 Subject: [PATCH 28/78] 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 85ababf5f8a..3c9d0efaa19 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Traitors can now be asked to steal the CMO's Handheld Crew Monitor. - type: Tweak - id: 6027 - time: '2024-02-26T03:40:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25563 - author: MACMAN2003 changes: - message: You can now make LED light tubes and LED light bulbs at an autolathe. @@ -3872,3 +3865,12 @@ id: 6526 time: '2024-05-04T11:10:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27534 +- author: TheShuEd + changes: + - message: "Added Pathological Liar trait accent. The accent has a 15% chance of\ + \ inverting your message to the opposite. Replacing \u201CYes\u201D with \u201C\ + No\u201D, \u201CCan\u201D with \u201Ccan't\u201D and so on." + type: Add + id: 6527 + time: '2024-05-04T11:11:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27618 From 83b486b63fd23e149bb0112aac4800e63b1f33dc Mon Sep 17 00:00:00 2001 From: Tyzemol <85772526+Tyzemol@users.noreply.github.com> Date: Sun, 5 May 2024 00:57:58 +0500 Subject: [PATCH 29/78] npc can no longer attack you through a locker (#27677) --- Content.Server/NPC/Systems/NPCUtilitySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index e8fb54022ee..a3b9aed57e3 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -224,7 +224,7 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon { if (TryComp(container.Owner, out var storageComponent)) { - if (storageComponent is { Open: false } && _weldable.IsWelded(container.Owner)) + if (storageComponent is { Open: false }) { return 0.0f; } From 8ee9ca22276df595ab4dc7767d66d9145dac2743 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 4 May 2024 19:59:06 +0000 Subject: [PATCH 30/78] 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 3c9d0efaa19..34c8e10f6e6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MACMAN2003 - changes: - - message: You can now make LED light tubes and LED light bulbs at an autolathe. - type: Add - id: 6028 - time: '2024-02-26T22:58:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25616 - author: botanySupremist changes: - message: Fixed a few small typos in ghost role information. @@ -3874,3 +3867,11 @@ id: 6527 time: '2024-05-04T11:11:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27618 +- author: Tyzemol + changes: + - message: Fixed NPCs being able to see and attack you hiding in closed lockers + and crates + type: Fix + id: 6528 + time: '2024-05-04T19:57:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27677 From 873799095cc28cb5db753b005b3fa00ee117c370 Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Sat, 4 May 2024 15:00:22 -0500 Subject: [PATCH 31/78] Security belts can now hold more items commonly carried by secoffs/HoS (#27674) holobarrier --- Resources/Prototypes/Entities/Clothing/Belt/belts.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 2462d3d0411..57d3c5c3514 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -482,6 +482,10 @@ - Handcuff - BallisticAmmoProvider - CartridgeAmmo + - DoorRemote + - Whistle + - HolosignProjector + - BalloonPopper - type: ItemMapper mapLayers: flashbang: From 0a15d0855083eb5a35c5c8d0170720a294d07bf7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 4 May 2024 20:01:28 +0000 Subject: [PATCH 32/78] 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 34c8e10f6e6..aed0a9f32cf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: botanySupremist - changes: - - message: Fixed a few small typos in ghost role information. - type: Fix - id: 6029 - time: '2024-02-26T22:58:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25613 - author: Whisper changes: - message: Juice that makes you Weh can be found in; anomalies, Artifacts, random @@ -3875,3 +3868,10 @@ id: 6528 time: '2024-05-04T19:57:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27677 +- author: Blackern5000 + changes: + - message: Security belts can now hold more items that security commonly uses. + type: Tweak + id: 6529 + time: '2024-05-04T20:00:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27674 From 1c125cb14e661492e4c2a31f2e9d07c60bdde0c8 Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Sat, 4 May 2024 15:06:16 -0500 Subject: [PATCH 33/78] Floodlights now have medium powercells instead of small (#27672) mediumcellfloodlight --- Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index a42b2fa1139..a02f94215b8 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -212,6 +212,11 @@ enabled: false radius: 8 energy: 5 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellMedium - type: Anchorable - type: Damageable damageContainer: Inorganic From 4bb078601845228391db7a09f1b8c4a5c8f410d1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 4 May 2024 20:07:22 +0000 Subject: [PATCH 34/78] 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 aed0a9f32cf..f4847c68f85 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Whisper - changes: - - message: Juice that makes you Weh can be found in; anomalies, Artifacts, random - puddles. - type: Add - id: 6030 - time: '2024-02-26T22:59:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25611 - author: Hanzdegloker changes: - message: ERT medic PDA now has a health analyzer built in. @@ -3875,3 +3867,10 @@ id: 6529 time: '2024-05-04T20:00:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27674 +- author: Blackern5000 + changes: + - message: Floodlights now use medium power cells instead of small ones. + type: Tweak + id: 6530 + time: '2024-05-04T20:06:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27672 From c3fe975e8b8cf1dd220a49ceecd7450535eabf45 Mon Sep 17 00:00:00 2001 From: Pok <113675512+Pok27@users.noreply.github.com> Date: Sat, 4 May 2024 23:07:29 +0300 Subject: [PATCH 35/78] More descriptions for the beakers in the status panel (#27669) Bottles Descriptions for status panel --- .../Prototypes/Entities/Objects/Specific/chemistry-bottles.yml | 2 ++ .../Prototypes/Entities/Objects/Specific/chemistry-vials.yml | 2 ++ Resources/Prototypes/Entities/Objects/Specific/chemistry.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index 3005f6b947a..6fdb77fe5fc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -42,6 +42,8 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: drink - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index ed36861bb26..39a35dba8c6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -48,6 +48,8 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index db81ebbe497..ce0e0b629a3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -136,6 +136,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: From 2f3f917007f4997ea84e398593248be4bcd9a777 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 21:23:45 -0400 Subject: [PATCH 36/78] Update Credits (#27681) 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 e212aa149e5..00d89d6d0da 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, K-Dynamic, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, DuskyJay, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, K-Dynamic, Kadeo64, KaiShibaa, kalane15, kalanosh, Keer-Sar, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem From 37d0cb9c9085befad4f7fe1ee21a15d1d3c2f66c Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 5 May 2024 19:22:33 +1000 Subject: [PATCH 37/78] Revert "npc can no longer attack you through a locker" (#27680) Revert "npc can no longer attack you through a locker (#27677)" This reverts commit 83b486b63fd23e149bb0112aac4800e63b1f33dc. --- Content.Server/NPC/Systems/NPCUtilitySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index a3b9aed57e3..e8fb54022ee 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -224,7 +224,7 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon { if (TryComp(container.Owner, out var storageComponent)) { - if (storageComponent is { Open: false }) + if (storageComponent is { Open: false } && _weldable.IsWelded(container.Owner)) { return 0.0f; } From 5183f3ed8ba40527808610596d7e3eef3c925eef Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sun, 5 May 2024 05:23:43 -0400 Subject: [PATCH 38/78] Scattershot antag fixes (#27429) * scattershot antag fixes * this too? * dawg fuck this code * ok so we kinda need this? --- .../Access/Systems/PresetIdCardSystem.cs | 4 ++-- .../Antag/AntagSelectionSystem.API.cs | 9 ++++++--- Content.Server/Antag/AntagSelectionSystem.cs | 17 ++++++++--------- Resources/Prototypes/GameRules/midround.yml | 2 +- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/Content.Server/Access/Systems/PresetIdCardSystem.cs b/Content.Server/Access/Systems/PresetIdCardSystem.cs index 696b7a1dcfd..3e775b9c35d 100644 --- a/Content.Server/Access/Systems/PresetIdCardSystem.cs +++ b/Content.Server/Access/Systems/PresetIdCardSystem.cs @@ -33,8 +33,8 @@ private void PlayerJobsAssigned(RulePlayerJobsAssignedEvent ev) var station = _stationSystem.GetOwningStation(uid); // If we're not on an extended access station, the ID is already configured correctly from MapInit. - if (station == null || !Comp(station.Value).ExtendedAccess) - return; + if (station == null || !TryComp(station.Value, out var jobsComp) || !jobsComp.ExtendedAccess) + continue; SetupIdAccess(uid, card, true); SetupIdName(uid, card); diff --git a/Content.Server/Antag/AntagSelectionSystem.API.cs b/Content.Server/Antag/AntagSelectionSystem.API.cs index f8ec5bcafcd..6acd17a35b2 100644 --- a/Content.Server/Antag/AntagSelectionSystem.API.cs +++ b/Content.Server/Antag/AntagSelectionSystem.API.cs @@ -7,6 +7,7 @@ using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Enums; using Robust.Shared.Player; namespace Content.Server.Antag; @@ -63,15 +64,17 @@ public int GetTargetAntagCount(Entity ent, AntagSelecti /// public int GetTargetAntagCount(Entity ent, AntagSelectionPlayerPool? pool, AntagSelectionDefinition def) { - var poolSize = pool?.Count ?? _playerManager.Sessions.Length; + var poolSize = pool?.Count ?? _playerManager.Sessions + .Count(s => s.State.Status is not SessionStatus.Disconnected and not SessionStatus.Zombie); + // factor in other definitions' affect on the count. var countOffset = 0; foreach (var otherDef in ent.Comp.Definitions) { - countOffset += Math.Clamp(poolSize / otherDef.PlayerRatio, otherDef.Min, otherDef.Max) * otherDef.PlayerRatio; + countOffset += Math.Clamp((poolSize - countOffset) / otherDef.PlayerRatio, otherDef.Min, otherDef.Max) * otherDef.PlayerRatio; } // make sure we don't double-count the current selection - countOffset -= Math.Clamp((poolSize + countOffset) / def.PlayerRatio, def.Min, def.Max) * def.PlayerRatio; + countOffset -= Math.Clamp(poolSize / def.PlayerRatio, def.Min, def.Max) * def.PlayerRatio; return Math.Clamp((poolSize - countOffset) / def.PlayerRatio, def.Min, def.Max); } diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 6bfb7394f5b..57df82d6fd9 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -280,11 +280,13 @@ public void MakeAntag(Entity ent, ICommonSession? sessi _transform.SetMapCoordinates((player, playerXform), pos); } + // If we want to just do a ghost role spawner, set up data here and then return early. + // This could probably be an event in the future if we want to be more refined about it. if (isSpawner) { if (!TryComp(player, out var spawnerComp)) { - Log.Error("Antag spawner with GhostRoleAntagSpawnerComponent."); + Log.Error($"Antag spawner {player} does not have a GhostRoleAntagSpawnerComponent."); return; } @@ -293,6 +295,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi return; } + // The following is where we apply components, equipment, and other changes to our antagonist entity. EntityManager.AddComponents(player, def.Components); _stationSpawning.EquipStartingGear(player, def.StartingGear); @@ -308,11 +311,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); _role.MindAddRoles(curMind.Value, def.MindComponents); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); - } - - if (def.Briefing is { } briefing) - { - SendBriefing(session, briefing); + SendBriefing(session, def.Briefing); } var afterEv = new AfterAntagEntitySelectedEvent(session, player, ent, def); @@ -325,7 +324,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi public AntagSelectionPlayerPool GetPlayerPool(Entity ent, List sessions, AntagSelectionDefinition def) { var preferredList = new List(); - var secondBestList = new List(); + var fallbackList = new List(); var unwantedList = new List(); var invalidList = new List(); foreach (var session in sessions) @@ -344,7 +343,7 @@ public AntagSelectionPlayerPool GetPlayerPool(Entity en } else if (def.FallbackRoles.Count != 0 && pref.AntagPreferences.Any(p => def.FallbackRoles.Contains(p))) { - secondBestList.Add(session); + fallbackList.Add(session); } else { @@ -352,7 +351,7 @@ public AntagSelectionPlayerPool GetPlayerPool(Entity en } } - return new AntagSelectionPlayerPool(new() { preferredList, secondBestList, unwantedList, invalidList }); + return new AntagSelectionPlayerPool(new() { preferredList, fallbackList, unwantedList, invalidList }); } /// /// - private string? FindEvent(Dictionary availableEvents) + public string? FindEvent(Dictionary availableEvents) { if (availableEvents.Count == 0) { @@ -95,16 +95,20 @@ public string RunRandomEvent() /// /// Gets the events that have met their player count, time-until start, etc. /// - /// + /// Override for player count, if using this to simulate events rather than in an actual round. + /// Override for round time, if using this to simulate events rather than in an actual round. /// - private Dictionary AvailableEvents(bool ignoreEarliestStart = false) + public Dictionary AvailableEvents( + bool ignoreEarliestStart = false, + int? playerCountOverride = null, + TimeSpan? currentTimeOverride = null) { - var playerCount = _playerManager.PlayerCount; + var playerCount = playerCountOverride ?? _playerManager.PlayerCount; // playerCount does a lock so we'll just keep the variable here - var currentTime = !ignoreEarliestStart + var currentTime = currentTimeOverride ?? (!ignoreEarliestStart ? GameTicker.RoundDuration() - : TimeSpan.Zero; + : TimeSpan.Zero); var result = new Dictionary(); @@ -112,7 +116,6 @@ private Dictionary AvailableEvents(bool { if (CanRun(proto, stationEvent, playerCount, currentTime)) { - Log.Debug($"Adding event {proto.ID} to possibilities"); result.Add(proto, stationEvent); } } From 026af631f8a844b000dec4702eb6080e9a7bed9b Mon Sep 17 00:00:00 2001 From: T-Stalker <43253663+DogZeroX@users.noreply.github.com> Date: Mon, 6 May 2024 05:17:35 -0300 Subject: [PATCH 64/78] New lobby art: Just a week away (#27717) just a week away --- Resources/Prototypes/lobbyscreens.yml | 4 ++++ .../Textures/LobbyScreens/attributions.yml | 5 +++++ .../Textures/LobbyScreens/justaweekaway.webp | Bin 0 -> 309680 bytes .../Textures/LobbyScreens/justaweekaway.yml | 2 ++ 4 files changed, 11 insertions(+) create mode 100644 Resources/Textures/LobbyScreens/justaweekaway.webp create mode 100644 Resources/Textures/LobbyScreens/justaweekaway.yml diff --git a/Resources/Prototypes/lobbyscreens.yml b/Resources/Prototypes/lobbyscreens.yml index 5dac050fd1f..decee65b243 100644 --- a/Resources/Prototypes/lobbyscreens.yml +++ b/Resources/Prototypes/lobbyscreens.yml @@ -41,3 +41,7 @@ - type: lobbyBackground id: TerminalStation background: /Textures/LobbyScreens/terminalstation.webp + +- type: lobbyBackground + id: JustAWeekAway + background: /Textures/LobbyScreens/justaweekaway.webp \ No newline at end of file diff --git a/Resources/Textures/LobbyScreens/attributions.yml b/Resources/Textures/LobbyScreens/attributions.yml index 3b81fc68fd4..1e35162cbfb 100644 --- a/Resources/Textures/LobbyScreens/attributions.yml +++ b/Resources/Textures/LobbyScreens/attributions.yml @@ -42,3 +42,8 @@ license: "CC-BY-SA-3.0" copyright: "aserovich on discord" source: "https://github.com/space-wizards/space-station-14" + +- files: ["justaweekaway.webp"] + license: "CC-BY-SA-3.0" + copyright: "plantyfern on discord" + source: "https://github.com/space-wizards/space-station-14" \ No newline at end of file diff --git a/Resources/Textures/LobbyScreens/justaweekaway.webp b/Resources/Textures/LobbyScreens/justaweekaway.webp new file mode 100644 index 0000000000000000000000000000000000000000..6e8205043c98cb6c0f9951260d0a56e584fb5a1b GIT binary patch literal 309680 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

GRP!)osd^JA7M5P4S(qg$ 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� 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%0DrIh>=b6mk_tX`&t<;53` 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 z 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%0AQOr`_o6(=9dK~Ep8I< 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%0D#SPU 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 Date: Mon, 6 May 2024 08:18:41 +0000 Subject: [PATCH 65/78] 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 8bc5961c6ca..27c86b3e8ce 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MACMAN2003 - changes: - - message: Added a NanoTrasen balloon toy. - type: Add - id: 6037 - time: '2024-02-26T23:15:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25543 - author: TheShuEd changes: - message: Added a new T2 industrial technology "Space Scanning"! It includes a @@ -3866,3 +3859,10 @@ id: 6536 time: '2024-05-06T03:59:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27646 +- author: DogZeroX + changes: + - message: 'Added new lobby art: Just a week away by Fern' + type: Add + id: 6537 + time: '2024-05-06T08:17:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27717 From aa426c9c3aec67ee82f7b6d10cd5770ad008483d Mon Sep 17 00:00:00 2001 From: Kara Date: Mon, 6 May 2024 01:54:37 -0700 Subject: [PATCH 66/78] Fix missing command desc (#27722) --- Resources/Locale/en-US/commands/toolshed-commands.ftl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index 04f6aa08fac..e2536f6781b 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -80,3 +80,5 @@ command-description-mind-control = Assumes control of an entity with the given player. command-description-addaccesslog = Adds an access log to this entity. Do note that this bypasses the log's default limit and pause check. +command-description-stationevent-simulate = + Simulates N number of rounds in which events will occur and prints the occurrences of every event after. From fbe8374c0f79b32dc49f0a009041798510f2c888 Mon Sep 17 00:00:00 2001 From: Ygg01 Date: Mon, 6 May 2024 11:28:48 +0200 Subject: [PATCH 67/78] Remove duplicate liar word id (#27723) --- Resources/Locale/en-US/speech/speech-liar.ftl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Locale/en-US/speech/speech-liar.ftl b/Resources/Locale/en-US/speech/speech-liar.ftl index 1cd0a778b13..e07ab625a1a 100644 --- a/Resources/Locale/en-US/speech/speech-liar.ftl +++ b/Resources/Locale/en-US/speech/speech-liar.ftl @@ -34,9 +34,6 @@ liar-word-replacement-11 = isnt liar-word-12 = will liar-word-replacement-12 = wont -liar-word-12 = not -liar-word-replacement-12 = "" - liar-word-13 = dont liar-word-replacement-13 = "" @@ -130,3 +127,6 @@ liar-word-replacement-42 = good liar-word-42 = want liar-word-replacement-42 = "don't want" + +liar-word-43 = not +liar-word-replacement-43 = "" From 8f4362df036ea1dd5dba7a31c3669640964a45c2 Mon Sep 17 00:00:00 2001 From: Kara Date: Mon, 6 May 2024 03:10:12 -0700 Subject: [PATCH 68/78] Event frequency balance pass (#27721) balance --- .../Mimic/MobReplacementRuleComponent.cs | 2 +- .../Prototypes/GameRules/cargo_gifts.yml | 17 ++- Resources/Prototypes/GameRules/events.yml | 117 +++++++----------- 3 files changed, 55 insertions(+), 81 deletions(-) diff --git a/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs b/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs index d89d61606db..8e96595b4fb 100644 --- a/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs +++ b/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs @@ -17,5 +17,5 @@ public sealed partial class MobReplacementRuleComponent : Component /// Chance per-entity. ///

diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 428735709f0..c4171329921 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -43,7 +43,7 @@ playerRatio: 1 lateJoinAdditional: true allowNonHumans: true - multiAntagSetting: All + multiAntagSetting: NotExclusive startingGear: ThiefGear components: - type: Pacified From 45fc6bed2f6e812603e0c181b0b163f15576749e Mon Sep 17 00:00:00 2001 From: RumiTiger <154005209+RumiTiger@users.noreply.github.com> Date: Sun, 5 May 2024 10:37:10 -0300 Subject: [PATCH 39/78] Rename ChemCleanBoodstream.cs (#27691) --- .../{ChemCleanBoodstream.cs => ChemCleanBloodstream.cs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Content.Server/Chemistry/ReagentEffects/{ChemCleanBoodstream.cs => ChemCleanBloodstream.cs} (100%) diff --git a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs b/Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs similarity index 100% rename from Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs rename to Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs From ead78b72d2e507fadf4f5424377aff8a5f94d271 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 5 May 2024 16:42:35 +0200 Subject: [PATCH 40/78] Add default whistle + whistles reorganize (#27676) * Add default whistle + whistle reorganize * aaa * fux? * fiiiiix??? * Revert "fiiiiix???" This reverts commit 15353465d58db615185afa8c549e1819099c1a5b. * Apply suggestions from code review Co-authored-by: Tayrtahn --------- Co-authored-by: Tayrtahn --- .../Entities/Objects/Fun/whistles.yml | 30 ++++++++++------ .../Structures/Machines/Computers/arcades.yml | 1 + .../Clothing/Neck/Misc/whistles.rsi/meta.json | 19 ---------- .../Objects/Fun/whistle.rsi/meta.json | 14 -------- .../Fun/whistles.rsi/equipped-NECK.png | Bin 0 -> 288 bytes .../Objects/Fun/whistles.rsi/meta.json | 33 ++++++++++++++++++ .../Fun/whistles.rsi/sec-equipped-NECK.png | Bin 0 -> 6755 bytes .../sec.png} | Bin .../whistles.rsi/trench-equipped-NECK.png} | Bin .../Fun/whistles.rsi/trench.png} | Bin .../Objects/Fun/whistles.rsi/whistle.png | Bin 0 -> 593 bytes 11 files changed, 53 insertions(+), 44 deletions(-) delete mode 100644 Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json delete mode 100644 Resources/Textures/Objects/Fun/whistle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Objects/Fun/whistles.rsi/meta.json create mode 100644 Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png rename Resources/Textures/Objects/Fun/{whistle.rsi/securityWhistle.png => whistles.rsi/sec.png} (100%) rename Resources/Textures/{Clothing/Neck/Misc/whistles.rsi/equipped-NECK.png => Objects/Fun/whistles.rsi/trench-equipped-NECK.png} (100%) rename Resources/Textures/{Clothing/Neck/Misc/whistles.rsi/icon.png => Objects/Fun/whistles.rsi/trench.png} (100%) create mode 100644 Resources/Textures/Objects/Fun/whistles.rsi/whistle.png diff --git a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml index 10c41efc54a..667d5da11ca 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml @@ -6,8 +6,12 @@ description: Someone forgot to turn off kettle? components: - type: Item + sprite: Objects/Fun/whistles.rsi size: Tiny + - type: Sprite + sprite: Objects/Fun/whistles.rsi - type: Clothing + sprite: Objects/Fun/whistles.rsi quickEquip: false slots: neck - type: UseDelay @@ -16,7 +20,14 @@ sound: collection: BaseWhistle - type: Whistle - distance: 5 + distance: 3 + +- type: entity + parent: BaseWhistle + id: Whistle + components: + - type: Sprite + state: whistle - type: entity parent: BaseWhistle @@ -24,10 +35,11 @@ description: Sound of it make you feel fear. components: - type: Sprite - sprite: Objects/Fun/whistle.rsi - state: securityWhistle - - type: Item - sprite: Objects/Fun/whistle.rsi + state: sec + - type: Clothing + equippedPrefix: sec + - type: Whistle + distance: 5 - type: entity parent: BaseWhistle @@ -36,13 +48,9 @@ description: A whistle used by Syndicate commanders to draw attention. Avanti! components: - type: Sprite - sprite: Clothing/Neck/Misc/whistles.rsi - state: icon + state: trench - type: Clothing - sprite: Clothing/Neck/Misc/whistles.rsi - quickEquip: False - slots: - - neck + equippedPrefix: trench - type: EmitSoundOnUse sound: collection: TrenchWhistle diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index 6a351d47f0b..8b2cb5d5c7b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -129,6 +129,7 @@ - PlushiePenguin - PlushieHuman - ClothingHeadHatCowboyRed + - Whistle - type: WiresPanel - type: Wires layoutId: Arcade diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json deleted file mode 100644 index 31cda14261e..00000000000 --- a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Firewatchin on Discord.", - "size": { - "x": 32, - "y": 32 - }, - - "states": [ - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - } - ] -} diff --git a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json b/Resources/Textures/Objects/Fun/whistle.rsi/meta.json deleted file mode 100644 index 59159ff6170..00000000000 --- a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Foleps (discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "securityWhistle" - } - ] -} diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..89fdd599b2b55234330f8f800f952de194f64d11 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9GG!XV7ZFl&wkQ1Ftc zi(^Pd+}m3lc@G%~FgO@ z#Q%Pl70R3m*MpTYmrKW%+n`nR^6f0IMn$tUCbQSMl{W9^`+teS6!`|Gde sy(&C6v(d8HJl0PD<^+UsjsIBhg*6&)&($`03-ld>r>mdKI;Vst09EQV39Gy3FDcx@TmJABk}ZrVmqkMq{4e#hy# zIKKPg@%_P5wXq{l#G{WzwehFNqFOXD8as@7R-?x2oJnOo?Q89#NniRrz`&y~G#a~Z z-IcbtA2hVBUY=(y0f#_f2|Z|@H4Q7-d_9@RD%iKRPZA>j|6<7 z7eWdyFoSm>T!ujak;bCBP#AM8fj|&P1P5f4pk)vtqQ-tdHhl+jeyD4DN5{sS4x>Iv zZ;flFTD{W9%kqE&@+-Njn&N1(6Ni)g_B}3uL5GfE?iy~ywGl7Ak5+;z5 zk{WLq6aq?|i&#W%AezP#0csYCIwWTrl||pWsUrhAjmO9Xq5*1(Lj;MSwcJLMn}Laj zjmb+AhFaVaIzT8bl)Q79fW5f-t}>nB&?vE};1! zAwpznq@abvr9wo687TpfI?CB)fB?dD2wS#4>3q}MYS)fC>63urxC~Yj)_N#3yRqNT~5z}*UU%= zC7TfAqt?lovd~)REVBphBIj&wFiSbbMRC}eM0$!@lZ;ZC?J&E?T7@8KcS)RKF3fNx zKmwgdpgUim?@FW}3gD?I%*8mLn%WnU@I(`vDBGxZF5f=1o|T2mD=fC2(V>-i%{>&o zx5sN`UEs6D@Ry8rJ(ChLvUN71`oIWU!iwmLBD8=4zb zs*cKJwtuxJrqa;b!IZ&P4BFCQDh6#eVAegfwS!rI(8^dUwnfTx;u5cQThT75;6Jvd zz?9)tAZsfJQvqme1+yNZ6|q#Hj>;6ae-*)$Wy?ULD}^rC)O5#XFG7vMT@P-UnYs0g zJ-A}OI5c?ALlciK{BXAKYj>+N@adM9Zr1O`y_5HUGqQ2l?9BHs+)`)1zIOY@yXHUG zFnqU}K7IMxl?%__xxJ@%!{)8EffLTu;i(_5{;^}zZ4b>ffvdGiwv_!7 zR*S9S;36~_M1MfwAcWx3qEz7aaMQ&_ZhjZf?RL3W-+S5AJ8*eVeV*TUzI)D9#-fNE zh#dIu4#fV#fLguHk#{uuV5!uOKvXM-n_+RznZDBLG^bUm-Uv9ZbdT30N-uc(w+>`7 z8J^8%Sw5c^sTz&C5V(k#dwj~BqZ9u8aF6O2tIc&M0^71oE?@+wBECg5*zVpwTY}m3 z-6Ov|I}oh%t6N^LT}bX$SO)-yn89EmQ*=5V=6N1-9EZKWJQ-6{Ptb><1OQ$tl_Y>f z^m;w{-fT9L_oyB&P-Cjf0t+BGDs^2~<^sG}EVAKnD3%_W2vYdWt11T^FhsN2l=^fy8jwaZ@YE#|331Am%Vn_&g#u3|lj0hW$Hgex77ihthV;35 zGWr$*7(@_s6`X){)gdMUYqwxL9>)Nk&*!4y$ad9c9JzqO=0*4}F3^Lv%2kWiW7<#k zc*gfR04Ge{Z5uCLfIk0$s#hO2HJs{#DRHRgvnjN7Jbv#@Alv@{%D?fB(SaNLClq?m fqAx}cta0EA6gPzg#fYiV00000NkvXXu0mjfD^&(9 literal 0 HcmV?d00001 From 92c2ff0b05482ea490fbdc8ac3d27776a30dd936 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 5 May 2024 14:43:41 +0000 Subject: [PATCH 41/78] 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 f4847c68f85..3ce82e615fd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Hanzdegloker - changes: - - message: ERT medic PDA now has a health analyzer built in. - type: Tweak - id: 6031 - time: '2024-02-26T23:00:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25606 - author: Ilya246 changes: - message: Macrobomb implant price reduced 20->13 TC. @@ -3874,3 +3867,10 @@ id: 6530 time: '2024-05-04T20:06:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27672 +- author: lzk228 + changes: + - message: Grey whistle added to arcade machine prizes. + type: Add + id: 6531 + time: '2024-05-05T14:42:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27676 From eb2fac40db1dfaf789511eef0cb7e394100fef50 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Sun, 5 May 2024 23:18:26 +0300 Subject: [PATCH 42/78] Use dotnet run for the run batch files instead of directly calling the exe (#27698) * Use dotnet run for the run batch files instead of directly calling the exe * FUCK --- runclient.bat | 5 +---- runserver.bat | 6 +----- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/runclient.bat b/runclient.bat index f580d41e9d6..f867d00c0ba 100644 --- a/runclient.bat +++ b/runclient.bat @@ -1,6 +1,3 @@ @echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Client -start Content.Client.exe %* -cd %PDIR% +dotnet run --project Content.Client set PDIR= diff --git a/runserver.bat b/runserver.bat index 573de0a15d8..5c3f8acecdf 100644 --- a/runserver.bat +++ b/runserver.bat @@ -1,7 +1,3 @@ @echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Server -call Content.Server.exe %* -cd %PDIR% -set PDIR= +dotnet run --project Content.Server pause From 70d3cf7ba411ef38818f63eec944c4f0c7c33c98 Mon Sep 17 00:00:00 2001 From: Verm <32827189+Vermidia@users.noreply.github.com> Date: Sun, 5 May 2024 16:42:22 -0500 Subject: [PATCH 43/78] Emergency Tank + Plasma Can visible on suit storage slot (#27598) * Suitstorage Sprites + Plasma tank slots * Fix some extra brackets --- .../Entities/Objects/Tools/gas_tanks.yml | 5 ++++- .../Tanks/emergency.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 643 bytes .../Objects/Tanks/emergency.rsi/meta.json | 4 ++++ .../emergency_clown.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 444 bytes .../Objects/Tanks/emergency_clown.rsi/meta.json | 4 ++++ .../emergency_double.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 525 bytes .../Objects/Tanks/emergency_double.rsi/meta.json | 4 ++++ .../equipped-SUITSTORAGE.png | Bin 0 -> 652 bytes .../Tanks/emergency_double_red.rsi/meta.json | 4 ++++ .../equipped-SUITSTORAGE.png | Bin 0 -> 665 bytes .../Tanks/emergency_extended.rsi/meta.json | 4 ++++ .../equipped-SUITSTORAGE.png | Bin 0 -> 440 bytes .../Tanks/emergency_extended_red.rsi/meta.json | 4 ++++ .../emergency_red.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 440 bytes .../Objects/Tanks/emergency_red.rsi/meta.json | 4 ++++ .../emergency_yellow.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 665 bytes .../Objects/Tanks/emergency_yellow.rsi/meta.json | 4 ++++ .../Tanks/plasma.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 383 bytes .../Textures/Objects/Tanks/plasma.rsi/meta.json | 4 ++++ 19 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 65942e330ea..7bdd32f4579 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true parent: BaseItem id: GasTankBase @@ -238,3 +238,6 @@ outputPressure: 101.3 - type: Clothing sprite: Objects/Tanks/plasma.rsi + slots: + - Belt + - suitStorage diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..a37261e3f7b438de9a3fa569d633d0008f868a2b GIT binary patch literal 643 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=MO7gYB`&GO$wiq3C7Jno3=9=> zRF7M8H5dr69id#gmv8D{npebOMW;uhik31T}B@z2(wp zzc+ptV_;xBou>0O$u4Pj=FWXF#o~yj!lR-u@9K{1J0J6Io}K6VrImBz*0+bI z_39pQW7@!a!-HWPgEZ#>u>@tt8%#MW4d;$7E4*`Y=RDpmY&X_kEzwJ7{mB7V7Rx;~ zX8UJLDcRRi=fz%Y>F1eBb27Aimi*MJ#Bks<^YSOVW?KIZmYG`L0yJQ!o&D=QWdq*!r5TOR^XC?OOAk+qI=zKj;0M^k2QpHRdwTleg$@4_3K&W=enQ6#j#E zPTKb6#rfxB0Y z1RmD36)o*5$osc)<2&1Fd>?*&>6mZKyzJuMc*Dsbl0nTBZ$k@F-k2pxEK z2I#s6kMicci1PPlm~G7bGH%y|pD3XkW_Q5cB(o_>*XxA}FjX;ly85}Sb4q9e0FoUP A@Bjb+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json index 9dd4186ecdd..59aada80e00 100644 --- a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..dd19aa56804a18560243b43d87ae1bff143cabff GIT binary patch literal 444 zcmV;t0YmPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0Z~arK~#8N?b@+R z!$1_r@mF!kAXrz2E~0j+IEaJbKjGlNAc&iSduPEd;4Ti*!NsMkoA?j7R&Wy)oJ4r` z9TzC#VC?0{HQx`EcfAacyIhjxCjbBd0H!t=4zK+%8FRh{(d%~oC>=pJAVq9|ub9^3 zXq4Ow(6oI0lilqtwfg?{DvRwUH+Ogc&?*+c-s$YS$yqi2%sp+at?1`bu9w-l+QL)4 z^Z#Nez>Kn!n?jlu`yqQytI6`hfoqQBNfD@*In!n*?qI?Kz?;9e2mw z%k5X%i znlv$WuElAs`#MjH=A33_THRp4#K?99eE@iM3F+Ndwn7+1oZ>;;#Z@Ybi zFK2$=ym<5H8MpS_y!}T$UUoxmO;q6Q`RDa^2tw7M zyN-Xm<{Dr{42p~Q{J%a{`@I#8zop7*Q`J6nDpdzfkYz%bCv)r z6VD1q5e|a|Y=H^~8l+qZ2u|53{vg}#fqvb2o}OR-nWpv|x0kU$@m~FFVdQ&MBb@05!GbwEzGB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2f947d343f57e0a89ac27098e60c7490b38880 GIT binary patch literal 652 zcmV;70(1R|P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0wGC6K~#8N?b<<0 z8$lEY@V7BBNRe1?LRHYVdeMVh+mK>Gq*8<))1G^1p*}y&m000000A+K@vfR0cA89~)nI<4IS$Qd$LrSI`0#$)E_kRlCtMef_`no-$&M@!2q zk-Vw+ZLa%aJ9{}a#CYTz*Y(O*T+x9vZ%%F z@vQGT`?sHBA|7q9H~ml9$cX-Tk*YTE&NM@9;Ua}TPSOK62FE6d83v7xQdz!5TU8Zc zYJL6GC^@uwP@uBo(Dtu=V!;|YtGBAZ!aD_!0e2C<)1_%;mDz9lnTIm1?H2}6nQ;IpTB&N zS-mI~pgmZiz}Psog-)nE^GRm)qV^MT&*JUhS$Du_cQ<#I^HHTEg?Ffkga7KaIs=^>xl^wlS9vAJpHm7FSZf{s-Vp m(+o8P1NK#{1pojy8_|F8V83+jT_w=~0000lF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json index ce287bf2779..74fc108c09c 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..0470c6895f345350eec1c7fd70c6b5b60d6ee1c0 GIT binary patch literal 665 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=6;&Y-B`&GO$wiq3C7JnoK#@7B z$2W2{8wjvHu>3A!zpFbpHh*GA%7t)^g>jRmdnT}W-@kV-|94c+hTb5jU@}!_i!X-FfF-mH!{{;b) zE@u@N_wGBF?x=f6%Q$n$G(T%|ILMI`c<%7Z>l zjl1sZ{WI1qV=&WdkZtJYN?=b|%yfhC#tH_Iki(`M8XU7GeSPE*av*P~PNbgL7g4Z^ zC0tK)cmKTkUf%m^clVZ)N54juvN8NS;;c5CnZbhh`l;Jxk9O5}q<-qZ0Mvi|dHPhR zjV<5rNk{qL6=P8Oc&=T-mT~)Z@u@y$?DfBT_s&gPWM9z{$X_6}&NO#^(zmCsQ`O6Q zW};dF8JA)IZ%1;u~STw?2HvIu}roxR!~wn zY0R8-J7JD7^X!-Rd{#~CXt+PKaihyl`?adA9SqAKMw$ESe|pdGIoosLXB1~VV>fZ{ W_MY{2zc?_hF?hQAxvXmiE( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..db800b2a3bf79d09f87ce89e88208701364dcc8f GIT binary patch literal 440 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4ZfZ(jv*CsZ*T4OVs;cb@X=ED&6SWQ0UaS8 z&7{Zf%4SVUjM24B^2e5Mm@Z=0B*W2^uy9{Pl5*yoNdh8&8YV}6lhQtams|4lf79aa z#|_`y*%bbU187%6!dw&EuhY|feoDBmzWF7*%tg1sRpfwsOVx|Av$+jgA3ug~GrMNg z+g#`W?3s4nn_u7TPO9Hu5ypS#LH*MGJEuO4+IBxLU8?j^*#4S#{@MyNS9;|B3iVr; z$F*jw?4E4; z|Mbz3Q|8VrH=Y-atEvNp&Wanm7j&Qb^={tmKS6sRCf!VW&Y^c8w(8-& zKM6lHS9f#QZL!%{%p!iE>bye%*jw?4E4; z|Mbz3Q|8VrH=Y-atEvNp&Wanm7j&Qb^={tmKS6sRCf!VW&Y^c8w(8-& zKM6lHS9f#QZL!%{%p!iE>bye%3A!zpFbpHh*GA%7t)^g>jRmdnT}W-@kV-|94c+hTb5jU@}!_i!X-FfF-mH!{{;b) zE@u@N_wGBF?x=f6%Q$n$G(T%|ILMI`c<%7Z>l zjl1sZ{WI1qV=&WdkZtJYN?=b|%yfhC#tH_Iki(`M8XU7GeSPE*av*P~PNbgL7g4Z^ zC0tK)cmKTkUf%m^clVZ)N54juvN8NS;;c5CnZbhh`l;Jxk9O5}q<-qZ0Mvi|dHPhR zjV<5rNk{qL6=P8Oc&=T-mT~)Z@u@y$?DfBT_s&gPWM9z{$X_6}&NO#^(zmCsQ`O6Q zW};dF8JA)IZ%1;u~STw?2HvIu}roxR!~wn zY0R8-J7JD7^X!-Rd{#~CXt+PKaihyl`?adA9SqAKMw$ESe|pdGIoosLXB1~VV>fZ{ W_MY{2zc?_hF?hQAxvXmiE( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..e282da2e6d219c9f1f5f5c496e13d3f5223e85a0 GIT binary patch literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV080zaSW-L^Y)fv5tE_Fv5)M* zTiLoFNQuU76h9G?q?PF(v~}OKc?qfM=Nn!aIwTlcm)`bdf8i55>-s+NAOCq~v`o*B zYw};Mnioao?gRevh57;hm4u z1+E8br3e09IDK1f&i?6omJL63PV8h>5s^P&lD;AIceYpD0q+ThWsNf14Tpf6fRp2ZBkwXY2#4fJKjIvc<+yJ$e(^tD`1RwTuaQX%C(E1dk8)qC zaF2Ku-S~#DWBStV-En^A$LimfMy@Q2Dr{d+cHwAl;}7fOdI6QwC&(Vi Date: Mon, 6 May 2024 00:57:32 +0200 Subject: [PATCH 44/78] Cache regex instances in most cases (#27699) Using static Regex functions that take in a pattern is bad because the pattern constantly needs to be re-parsed. With https://github.com/space-wizards/RobustToolbox/pull/5107, the engine has an analyzer to warn for this practice now. This commit brings most of content up to snuff already, though some of the tricker code I left for somebody else. --- .../EntitySystems/FrenchAccentSystem.cs | 15 +++--- .../Speech/EntitySystems/FrontalLispSystem.cs | 15 ++++-- .../EntitySystems/LizardAccentSystem.cs | 16 +++++-- .../EntitySystems/MobsterAccentSystem.cs | 46 +++++++------------ .../Speech/EntitySystems/MothAccentSystem.cs | 9 ++-- .../EntitySystems/ParrotAccentSystem.cs | 4 +- .../EntitySystems/PirateAccentSystem.cs | 4 +- .../EntitySystems/ScrambledAccentSystem.cs | 4 +- .../EntitySystems/SouthernAccentSystem.cs | 12 +++-- .../Preferences/HumanoidCharacterProfile.cs | 9 ++-- 10 files changed, 74 insertions(+), 60 deletions(-) diff --git a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs index 56372887325..f6d259c1153 100644 --- a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs @@ -10,6 +10,10 @@ public sealed class FrenchAccentSystem : EntitySystem { [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + private static readonly Regex RegexTh = new(@"th", RegexOptions.IgnoreCase); + private static readonly Regex RegexStartH = new(@"(? DirectReplacements = new() - { - { "let me", "lemme" }, - { "should", "oughta" }, - { "the", "da" }, - { "them", "dem" }, - { "attack", "whack" }, - { "kill", "whack" }, - { "murder", "whack" }, - { "dead", "sleepin' with da fishies"}, - { "hey", "ey'o" }, - { "hi", "ey'o"}, - { "hello", "ey'o"}, - { "rules", "roolz" }, - { "you", "yous" }, - { "have to", "gotta" }, - { "going to", "boutta" }, - { "about to", "boutta" }, - { "here", "'ere" } - }; - public override void Initialize() { base.Initialize(); @@ -51,20 +37,20 @@ public string Accentuate(string message, MobsterAccentComponent component) // thinking -> thinkin' // king -> king //Uses captures groups to make sure the captialization of IN is kept - msg = Regex.Replace(msg, @"(?<=\w\w)(in)g(?!\w)", "$1'", RegexOptions.IgnoreCase); + msg = RegexIng.Replace(msg, "$1'"); // or -> uh and ar -> ah in the middle of words (fuhget, tahget) - msg = Regex.Replace(msg, @"(?<=\w)o[Rr](?=\w)", "uh"); - msg = Regex.Replace(msg, @"(?<=\w)O[Rr](?=\w)", "UH"); - msg = Regex.Replace(msg, @"(?<=\w)a[Rr](?=\w)", "ah"); - msg = Regex.Replace(msg, @"(?<=\w)A[Rr](?=\w)", "AH"); + msg = RegexLowerOr.Replace(msg, "uh"); + msg = RegexUpperOr.Replace(msg, "UH"); + msg = RegexLowerAr.Replace(msg, "ah"); + msg = RegexUpperAr.Replace(msg, "AH"); // Prefix if (_random.Prob(0.15f)) { //Checks if the first word of the sentence is all caps //So the prefix can be allcapped and to not resanitize the captial - var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); + var firstWordAllCaps = !RegexFirstWord.Match(msg).Value.Any(char.IsLower); var pick = _random.Next(1, 2); // Reverse sanitize capital @@ -84,7 +70,7 @@ public string Accentuate(string message, MobsterAccentComponent component) { //Checks if the last word of the sentence is all caps //So the suffix can be allcapped - var lastWordAllCaps = !Regex.Match(msg, @"(\S+)$").Value.Any(char.IsLower); + var lastWordAllCaps = !RegexLastWord.Match(msg).Value.Any(char.IsLower); var suffix = ""; if (component.IsBoss) { @@ -94,7 +80,7 @@ public string Accentuate(string message, MobsterAccentComponent component) else { var pick = _random.Next(1, 3); - suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); } if (lastWordAllCaps) suffix = suffix.ToUpper(); diff --git a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs index 3de4651b4af..84b79d4ce98 100644 --- a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs @@ -5,6 +5,9 @@ namespace Content.Server.Speech.EntitySystems; public sealed class MothAccentSystem : EntitySystem { + private static readonly Regex RegexLowerBuzz = new Regex("z{1,3}"); + private static readonly Regex RegexUpperBuzz = new Regex("Z{1,3}"); + public override void Initialize() { base.Initialize(); @@ -16,10 +19,10 @@ private void OnAccent(EntityUid uid, MothAccentComponent component, AccentGetEve var message = args.Message; // buzzz - message = Regex.Replace(message, "z{1,3}", "zzz"); + message = RegexLowerBuzz.Replace(message, "zzz"); // buZZZ - message = Regex.Replace(message, "Z{1,3}", "ZZZ"); - + message = RegexUpperBuzz.Replace(message, "ZZZ"); + args.Message = message; } } diff --git a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs index 10437c235d6..ae8fe522b9b 100644 --- a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed partial class ParrotAccentSystem : EntitySystem { + private static readonly Regex WordCleanupRegex = new Regex("[^A-Za-z0-9 -]"); + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() @@ -27,7 +29,7 @@ public string Accentuate(Entity entity, string message) if (_random.Prob(entity.Comp.LongestWordRepeatChance)) { // Don't count non-alphanumeric characters as parts of words - var cleaned = Regex.Replace(message, "[^A-Za-z0-9 -]", string.Empty); + var cleaned = WordCleanupRegex.Replace(message, string.Empty); // Split on whitespace and favor words towards the end of the message var words = cleaned.Split(null).Reverse(); // Find longest word diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index 9f5f8080b9b..84298cbf01a 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed class PirateAccentSystem : EntitySystem { + private static readonly Regex FirstWordAllCapsRegex = new(@"^(\S+)"); + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ReplacementAccentSystem _replacement = default!; @@ -26,7 +28,7 @@ public string Accentuate(string message, PirateAccentComponent component) return msg; //Checks if the first word of the sentence is all caps //So the prefix can be allcapped and to not resanitize the captial - var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); + var firstWordAllCaps = !FirstWordAllCapsRegex.Match(msg).Value.Any(char.IsLower); var pick = _random.Pick(component.PirateWords); var pirateWord = Loc.GetString(pick); diff --git a/Content.Server/Speech/EntitySystems/ScrambledAccentSystem.cs b/Content.Server/Speech/EntitySystems/ScrambledAccentSystem.cs index 37b267bec2b..8a61c0ea500 100644 --- a/Content.Server/Speech/EntitySystems/ScrambledAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ScrambledAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems { public sealed class ScrambledAccentSystem : EntitySystem { + private static readonly Regex RegexLoneI = new(@"(?<=\ )i(?=[\ \.\?]|$)"); + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() @@ -34,7 +36,7 @@ public string Accentuate(string message) msg = msg[0].ToString().ToUpper() + msg.Remove(0, 1); // Capitalize lone i's - msg = Regex.Replace(msg, @"(?<=\ )i(?=[\ \.\?]|$)", "I"); + msg = RegexLoneI.Replace(msg, "I"); return msg; } diff --git a/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs b/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs index 4d401367cca..b9260eb8441 100644 --- a/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/SouthernAccentSystem.cs @@ -5,8 +5,12 @@ namespace Content.Server.Speech.EntitySystems; public sealed class SouthernAccentSystem : EntitySystem { + private static readonly Regex RegexIng = new(@"ing\b"); + private static readonly Regex RegexAnd = new(@"\band\b"); + private static readonly Regex RegexDve = new("d've"); + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; - + public override void Initialize() { base.Initialize(); @@ -20,9 +24,9 @@ private void OnAccent(EntityUid uid, SouthernAccentComponent component, AccentGe message = _replacement.ApplyReplacements(message, "southern"); //They shoulda started runnin' an' hidin' from me! - message = Regex.Replace(message, @"ing\b", "in'"); - message = Regex.Replace(message, @"\band\b", "an'"); - message = Regex.Replace(message, "d've", "da"); + message = RegexIng.Replace(message, "in'"); + message = RegexAnd.Replace(message, "an'"); + message = RegexDve.Replace(message, "da"); args.Message = message; } }; diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 3f3444195ca..f9b037c8ab5 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -26,6 +26,9 @@ namespace Content.Shared.Preferences [Serializable, NetSerializable] public sealed partial class HumanoidCharacterProfile : ICharacterProfile { + private static readonly Regex RestrictedNameRegex = new("[^A-Z,a-z,0-9, -]"); + private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); + public const int MaxNameLength = 32; public const int MaxDescLength = 512; @@ -418,15 +421,13 @@ public void EnsureValid(ICommonSession session, IDependencyCollection collection if (configManager.GetCVar(CCVars.RestrictedNames)) { - name = Regex.Replace(name, @"[^A-Z,a-z,0-9, -]", string.Empty); + name = RestrictedNameRegex.Replace(name, string.Empty); } if (configManager.GetCVar(CCVars.ICNameCase)) { // This regex replaces the first character of the first and last words of the name with their uppercase version - name = Regex.Replace(name, - @"^(?\w)|\b(?\w)(?=\w*$)", - m => m.Groups["word"].Value.ToUpper()); + name = ICNameCaseRegex.Replace(name, m => m.Groups["word"].Value.ToUpper()); } if (string.IsNullOrEmpty(name)) From 2335be5e83a8586bc8085df934f3ff35aa3c8f66 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 6 May 2024 09:00:31 +1000 Subject: [PATCH 45/78] Update submodule to 222.0.0 (#27700) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 7cb3aeccc23..4500669f658 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 7cb3aeccc23a894b149b4547e5fecb399c8c507f +Subproject commit 4500669f6582898a2a0f06b56c9256e87339a5f2 From c61e683354d45bd4ec382de9117ba75cab67db9f Mon Sep 17 00:00:00 2001 From: Vasilis Date: Mon, 6 May 2024 02:16:12 +0300 Subject: [PATCH 46/78] Remove useless line in runclient (#27701) I forgor --- runclient.bat | 1 - 1 file changed, 1 deletion(-) diff --git a/runclient.bat b/runclient.bat index f867d00c0ba..96237c34411 100644 --- a/runclient.bat +++ b/runclient.bat @@ -1,3 +1,2 @@ @echo off dotnet run --project Content.Client -set PDIR= From 7d35d54a814df74ef385ad8293eadff3e921c1c9 Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Mon, 6 May 2024 01:30:06 +0200 Subject: [PATCH 47/78] welding masks on utility belts (#27694) --- Resources/Prototypes/Entities/Clothing/Belt/belts.yml | 3 ++- Resources/Prototypes/Entities/Clothing/Head/welding.yml | 2 ++ Resources/Prototypes/tags.yml | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 57d3c5c3514..66a9c60511b 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -31,6 +31,7 @@ - AppraisalTool - JawsOfLife - GPS + - WeldingMask components: - SprayPainter - NetworkConfigurator @@ -616,7 +617,7 @@ sprite: Clothing/Belt/securitywebbing.rsi - type: Clothing sprite: Clothing/Belt/securitywebbing.rsi - + - type: entity parent: ClothingBeltStorageBase id: ClothingBeltMercWebbing diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index cd5c63d7ec7..c0ae440a56e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -19,6 +19,7 @@ - type: Tag tags: - WhitelistChameleon + - WeldingMask - type: HideLayerClothing slots: - Snout @@ -37,6 +38,7 @@ tags: - HamsterWearable - WhitelistChameleon + - WeldingMask - type: entity parent: WeldingMaskBase diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 3424d5a4e59..253aa485653 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1283,6 +1283,9 @@ - type: Tag id: WeaponShotgunKammerer +- type: Tag + id: WeldingMask + - type: Tag id: WetFloorSign From b947490d089af4c70ff0979250a4a03064e87069 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 5 May 2024 23:31:13 +0000 Subject: [PATCH 48/78] 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 3ce82e615fd..fc8a7441175 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Macrobomb implant price reduced 20->13 TC. - type: Tweak - id: 6032 - time: '2024-02-26T23:04:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25585 - author: QuietlyWhisper changes: - message: Handcuff and handcuff replacements are faster to escape. You can allow @@ -3874,3 +3867,10 @@ id: 6531 time: '2024-05-05T14:42:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27676 +- author: Killerqu00 + changes: + - message: Welding masks can now be put on utility belts. + type: Tweak + id: 6532 + time: '2024-05-05T23:30:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27694 From 93c5e868579c0bd1baec8c6d023d98f530b63c44 Mon Sep 17 00:00:00 2001 From: "Mr. 27" <45323883+Dutch-VanDerLinde@users.noreply.github.com> Date: Sun, 5 May 2024 19:32:43 -0400 Subject: [PATCH 49/78] Add solution temperature to chemical analysis goggles (#27693) yes --- .../EntitySystems/SharedSolutionContainerSystem.cs | 7 +++++-- .../chemistry/components/solution-scanner-component.ftl | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index e74c1463804..4b910070855 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -733,7 +733,7 @@ private void OnExamineSolution(Entity entity, ref E return; } - if (!CanSeeHiddenSolution(entity,args.Examiner)) + if (!CanSeeHiddenSolution(entity, args.Examiner)) return; var primaryReagent = solution.GetPrimaryReagentId(); @@ -832,7 +832,7 @@ private void OnSolutionExaminableVerb(Entity entity return; } - if (!CanSeeHiddenSolution(entity,args.User)) + if (!CanSeeHiddenSolution(entity, args.User)) return; var target = args.Target; @@ -881,6 +881,9 @@ private FormattedMessage GetSolutionExamine(Solution solution) , ("amount", quantity))); } + msg.PushNewline(); + msg.AddMarkup(Loc.GetString("scannable-solution-temperature", ("temperature", Math.Round(solution.Temperature)))); + return msg; } diff --git a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl index 8dbbaf3edd7..51a049aab17 100644 --- a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl @@ -3,3 +3,4 @@ scannable-solution-verb-message = Examine the chemical composition. scannable-solution-main-text = It contains the following chemicals: scannable-solution-empty-container = It contains no chemicals. scannable-solution-chemical = - {$amount}u [color={$color}]{$type}[/color] +scannable-solution-temperature = Solution temperature: {$temperature}K \ No newline at end of file From 254a9177fc99a359f134516b19d2943baf50ae5f Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 5 May 2024 23:33:50 +0000 Subject: [PATCH 50/78] 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 fc8a7441175..2b468926049 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: QuietlyWhisper - changes: - - message: Handcuff and handcuff replacements are faster to escape. You can allow - your teammates to uncuff themselves! - type: Tweak - id: 6033 - time: '2024-02-26T23:05:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25601 - author: PoorMansDreams changes: - message: New lobby art (of horror) @@ -3874,3 +3866,10 @@ id: 6532 time: '2024-05-05T23:30:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27694 +- author: Dutch-VanDerLinde + changes: + - message: Chemical analysis goggles now show the scanned solution's temperature. + type: Tweak + id: 6533 + time: '2024-05-05T23:32:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27693 From d1a5d3562355a514c42b1027742549180f6edc37 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 6 May 2024 10:19:43 +1000 Subject: [PATCH 51/78] Expeditions audio tweaks (#27524) - Now uses a SoundCollection. - Now properly handles going between maps (audio rework mucho wow). - GetAudioLength used so it can properly countdown ANY song (wow audio rework wow wow). --- .../Salvage/Expeditions/SalvageExpeditionComponent.cs | 11 +++++++++-- Content.Server/Salvage/SalvageSystem.Expeditions.cs | 9 +++++++++ Content.Server/Salvage/SalvageSystem.Runner.cs | 10 ++++++---- Resources/Prototypes/SoundCollections/expeditions.yml | 4 ++++ 4 files changed, 28 insertions(+), 6 deletions(-) create mode 100644 Resources/Prototypes/SoundCollections/expeditions.yml diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 6a58c209cfa..ff3c8176fd0 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -40,14 +40,21 @@ public sealed partial class SalvageExpeditionComponent : SharedSalvageExpedition /// /// Countdown audio stream. /// + [DataField, AutoNetworkedField] public EntityUid? Stream = null; /// /// Sound that plays when the mission end is imminent. /// - [ViewVariables(VVAccess.ReadWrite), DataField("sound")] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Misc/tension_session.ogg") + [ViewVariables(VVAccess.ReadWrite), DataField] + public SoundSpecifier Sound = new SoundCollectionSpecifier("ExpeditionEnd") { Params = AudioParams.Default.WithVolume(-5), }; + + /// + /// Song selected on MapInit so we can predict the audio countdown properly. + /// + [DataField] + public SoundPathSpecifier SelectedSong; } diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 4d5d569dabd..923880169d5 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -4,7 +4,9 @@ using Content.Server.Salvage.Expeditions.Structure; using Content.Shared.CCVar; using Content.Shared.Examine; +using Content.Shared.Random.Helpers; using Content.Shared.Salvage.Expeditions; +using Robust.Shared.Audio; using Robust.Shared.CPUJob.JobQueues; using Robust.Shared.CPUJob.JobQueues.Queues; using Robust.Shared.GameStates; @@ -32,6 +34,7 @@ private void InitializeExpeditions() SubscribeLocalEvent(OnSalvageConsoleParent); SubscribeLocalEvent(OnSalvageClaimMessage); + SubscribeLocalEvent(OnExpeditionMapInit); SubscribeLocalEvent(OnExpeditionShutdown); SubscribeLocalEvent(OnExpeditionGetState); @@ -64,6 +67,12 @@ private void SetCooldownChange(float obj) _cooldown = obj; } + private void OnExpeditionMapInit(EntityUid uid, SalvageExpeditionComponent component, MapInitEvent args) + { + var selectedFile = _audio.GetSound(component.Sound); + component.SelectedSong = new SoundPathSpecifier(selectedFile, component.Sound.Params); + } + private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent component, ComponentShutdown args) { component.Stream = _audio.Stop(component.Stream); diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 8a1498cbe96..e6e29eb5775 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -144,6 +144,7 @@ private void UpdateRunner() while (query.MoveNext(out var uid, out var comp)) { var remaining = comp.EndTime - _timing.CurTime; + var audioLength = _audio.GetAudioLength(comp.SelectedSong.Path.ToString()); if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(45)) { @@ -151,13 +152,14 @@ private void UpdateRunner() Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-seconds", ("duration", TimeSpan.FromSeconds(45).Seconds))); } - else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) + else if (comp.Stream == null && remaining < audioLength) { - // TODO: Some way to play audio attached to a map for players. - comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true).Value.Entity; + var audio = _audio.PlayPvs(comp.Sound, uid).Value; + comp.Stream = audio.Entity; + _audio.SetMapAudio(audio); comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); - Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); + Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", audioLength.Minutes))); } else if (comp.Stage < ExpeditionStage.Countdown && remaining < TimeSpan.FromMinutes(4)) { diff --git a/Resources/Prototypes/SoundCollections/expeditions.yml b/Resources/Prototypes/SoundCollections/expeditions.yml new file mode 100644 index 00000000000..665ac12c696 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/expeditions.yml @@ -0,0 +1,4 @@ +- type: soundCollection + id: ExpeditionEnd + files: + - /Audio/Misc/tension_session.ogg From b8144df7a5f2c264a36ce33fd7585a5539d65332 Mon Sep 17 00:00:00 2001 From: Ty Ashley <42426760+TyAshley@users.noreply.github.com> Date: Sun, 5 May 2024 20:12:30 -0500 Subject: [PATCH 52/78] Added new icons for the emote wheel (#27541) * Added new icons for the emote wheel * Corrected weh path * Changed whistle to better match other vocal emotes. Modified honk icon to match dimensions of box. Corrected chirp and chitter emote icons. * Cleaned up edges of icons * Added attributions.yml to emotes folder --- Content.Client/Chat/UI/EmotesMenu.xaml | 2 +- Resources/Prototypes/Voice/disease_emotes.yml | 2 + Resources/Prototypes/Voice/speech_emotes.yml | 40 +++--- .../Interface/Emotes/attributions.yml | 117 ++++++++++++++++++ Resources/Textures/Interface/Emotes/beep.png | Bin 0 -> 584 bytes Resources/Textures/Interface/Emotes/buzz.png | Bin 0 -> 572 bytes .../Textures/Interface/Emotes/buzztwo.png | Bin 0 -> 595 bytes Resources/Textures/Interface/Emotes/chime.png | Bin 0 -> 380 bytes Resources/Textures/Interface/Emotes/chirp.png | Bin 0 -> 514 bytes .../Textures/Interface/Emotes/chitter.png | Bin 0 -> 478 bytes Resources/Textures/Interface/Emotes/clap.png | Bin 0 -> 628 bytes Resources/Textures/Interface/Emotes/click.png | Bin 0 -> 569 bytes Resources/Textures/Interface/Emotes/cough.png | Bin 0 -> 449 bytes Resources/Textures/Interface/Emotes/cry.png | Bin 0 -> 577 bytes .../Textures/Interface/Emotes/deathgasp.png | Bin 0 -> 536 bytes Resources/Textures/Interface/Emotes/honk.png | Bin 0 -> 600 bytes Resources/Textures/Interface/Emotes/laugh.png | Bin 0 -> 583 bytes Resources/Textures/Interface/Emotes/ping.png | Bin 0 -> 512 bytes .../Textures/Interface/Emotes/salute.png | Bin 0 -> 839 bytes Resources/Textures/Interface/Emotes/sigh.png | Bin 0 -> 449 bytes Resources/Textures/Interface/Emotes/snap.png | Bin 0 -> 1106 bytes .../Textures/Interface/Emotes/squeak.png | Bin 0 -> 342 bytes .../Textures/Interface/Emotes/squish.png | Bin 0 -> 602 bytes Resources/Textures/Interface/Emotes/vocal.png | Bin 0 -> 473 bytes Resources/Textures/Interface/Emotes/weh.png | Bin 0 -> 478 bytes .../Textures/Interface/Emotes/whistle.png | Bin 0 -> 910 bytes Resources/Textures/Interface/Emotes/yawn.png | Bin 0 -> 660 bytes 27 files changed, 141 insertions(+), 20 deletions(-) create mode 100644 Resources/Textures/Interface/Emotes/attributions.yml create mode 100644 Resources/Textures/Interface/Emotes/beep.png create mode 100644 Resources/Textures/Interface/Emotes/buzz.png create mode 100644 Resources/Textures/Interface/Emotes/buzztwo.png create mode 100644 Resources/Textures/Interface/Emotes/chime.png create mode 100644 Resources/Textures/Interface/Emotes/chirp.png create mode 100644 Resources/Textures/Interface/Emotes/chitter.png create mode 100644 Resources/Textures/Interface/Emotes/clap.png create mode 100644 Resources/Textures/Interface/Emotes/click.png create mode 100644 Resources/Textures/Interface/Emotes/cough.png create mode 100644 Resources/Textures/Interface/Emotes/cry.png create mode 100644 Resources/Textures/Interface/Emotes/deathgasp.png create mode 100644 Resources/Textures/Interface/Emotes/honk.png create mode 100644 Resources/Textures/Interface/Emotes/laugh.png create mode 100644 Resources/Textures/Interface/Emotes/ping.png create mode 100644 Resources/Textures/Interface/Emotes/salute.png create mode 100644 Resources/Textures/Interface/Emotes/sigh.png create mode 100644 Resources/Textures/Interface/Emotes/snap.png create mode 100644 Resources/Textures/Interface/Emotes/squeak.png create mode 100644 Resources/Textures/Interface/Emotes/squish.png create mode 100644 Resources/Textures/Interface/Emotes/vocal.png create mode 100644 Resources/Textures/Interface/Emotes/weh.png create mode 100644 Resources/Textures/Interface/Emotes/whistle.png create mode 100644 Resources/Textures/Interface/Emotes/yawn.png diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml index 819a6543c4d..cc4d5bb77e9 100644 --- a/Content.Client/Chat/UI/EmotesMenu.xaml +++ b/Content.Client/Chat/UI/EmotesMenu.xaml @@ -12,7 +12,7 @@ - + diff --git a/Resources/Prototypes/Voice/disease_emotes.yml b/Resources/Prototypes/Voice/disease_emotes.yml index 54330133d75..73b36c137b3 100644 --- a/Resources/Prototypes/Voice/disease_emotes.yml +++ b/Resources/Prototypes/Voice/disease_emotes.yml @@ -7,6 +7,7 @@ - type: emote id: Cough name: chat-emote-name-cough + icon: Interface/Emotes/cough.png category: Vocal whitelist: components: @@ -46,6 +47,7 @@ - type: emote id: Yawn name: chat-emote-name-yawn + icon: Interface/Emotes/yawn.png category: Vocal whitelist: components: diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 29a09c03cbf..84e48c1c23e 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -41,7 +41,7 @@ id: Laugh name: chat-emote-name-laugh category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/laugh.png whitelist: components: - Vocal @@ -82,7 +82,7 @@ id: Honk name: chat-emote-name-honk category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/honk.png whitelist: requireAll: true components: @@ -107,7 +107,7 @@ id: Sigh name: chat-emote-name-sigh category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/sigh.png whitelist: components: - Vocal @@ -127,7 +127,7 @@ id: Whistle name: chat-emote-name-whistle category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/whistle.png whitelist: components: - Vocal @@ -150,7 +150,7 @@ id: Crying name: chat-emote-name-crying category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/cry.png whitelist: components: - Vocal @@ -182,7 +182,7 @@ name: chat-emote-name-squish category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/squish.png whitelist: components: - Vocal @@ -206,7 +206,7 @@ name: chat-emote-name-chitter category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chitter.png whitelist: components: - Vocal @@ -230,6 +230,7 @@ name: chat-emote-name-squeak category: Vocal available: false + icon: Interface/Emotes/squeak.png whitelist: components: - Vocal @@ -253,7 +254,7 @@ name: chat-emote-name-click category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/click.png whitelist: components: - Vocal @@ -274,7 +275,7 @@ id: Clap name: chat-emote-name-clap category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/clap.png whitelist: components: - Hands @@ -294,7 +295,7 @@ id: Snap name: chat-emote-name-snap category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/snap.png whitelist: components: - Hands @@ -321,7 +322,7 @@ id: Salute name: chat-emote-name-salute category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/salute.png whitelist: components: - Hands @@ -340,7 +341,7 @@ - type: emote id: DefaultDeathgasp name: chat-emote-name-deathgasp - icon: Interface/Actions/scream.png + icon: Interface/Emotes/deathgasp.png whitelist: components: - MobState @@ -351,14 +352,14 @@ - type: emote id: MonkeyDeathgasp name: chat-emote-name-deathgasp - icon: Interface/Actions/scream.png + icon: Interface/Emotes/deathgasp.png chatMessages: ["chat-emote-msg-deathgasp-monkey"] - type: emote id: Buzz name: chat-emote-name-buzz category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/buzz.png whitelist: requireAll: true components: @@ -383,13 +384,14 @@ id: Weh name: chat-emote-name-weh category: Vocal + icon: Interface/Emotes/weh.png chatMessages: [Wehs!] - type: emote id: Chirp name: chat-emote-name-chirp category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chirp.png whitelist: requireAll: true components: @@ -414,7 +416,7 @@ id: Beep name: chat-emote-name-beep category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/beep.png whitelist: requireAll: true components: @@ -439,7 +441,7 @@ id: Chime name: chat-emote-name-chime category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chime.png whitelist: requireAll: true components: @@ -464,7 +466,7 @@ id: Buzz-Two name: chat-emote-name-buzztwo category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/buzztwo.png whitelist: requireAll: true components: @@ -507,7 +509,7 @@ id: Ping name: chat-emote-name-ping category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/ping.png whitelist: requireAll: true components: diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml new file mode 100644 index 00000000000..125651e4194 --- /dev/null +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -0,0 +1,117 @@ +# Attempted to keep the files in alphabetical order so its easier to audit. +# Finding individual authors is an unfeasible task. If you can reference the author please do so. + +- files: ["beep.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from borg_chest.png and borg_head.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzz.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzztwo.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chime.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing desk bell texture (normal.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chirp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing nymph texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chitter.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mothroach.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["clap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["click.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing crab.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["cough.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["cry.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["deathgasp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["honk.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bikehorn texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["laugh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["ping.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["salute.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["sigh.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["snap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["squeak.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mouse-0.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["squish.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from blue_adult_slime.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["vocal.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["weh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from plushie_lizard.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["whistle.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["yawn.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" diff --git a/Resources/Textures/Interface/Emotes/beep.png b/Resources/Textures/Interface/Emotes/beep.png new file mode 100644 index 0000000000000000000000000000000000000000..f59b0925ab53f8e5613579d03d2bba1ad8ef4b83 GIT binary patch literal 584 zcmV-O0=NB%P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0o_SNK~z{r?UcW+ z0Z|af$E_6GQb;tiQF#iTVj~eRAQWCer<8aJ3NN5hh(=GMQ;9;N@TU+jAg*tmkz?I+ z7TLSi{*sd!$DEySX6G!$#Kc6&^@ehz1&M+B867IGHE}{&E2UED=^^9s*m_QqCT{SC z1#5sL?smI$I-O{>T2VTkruBMFsZ@$;wc6A9PZA5pKqPOqTI`?CXSSQohH|+amCI#1 z91b*_&EO}#Ni0|eTrL;NX0vMNj_bPAY&L1JSg^2awfb>VogZai$Ye4QL4`tr*LJ(* zl}sjSKA)50IG6>FMF-x64`>+G*X#8w5~2gJI_6ZWwNg8_9q z9rguP+)H)uU{#MUz(NGr@Aqum?KWF~^&%paTL3)IyB3Q@S}vDr=MH9KI-SyJH2U-W zCqj$?NRB%XkT9RmvyX3q2s$2*MiJm0A;uX%k}@P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ntfBK~z{r?Uv6@ z!axwlx6-N!O%x4{l3+rjCY<5UGk7(^$um#jk>~Kh!H}5v2t@AO8(%;Z;-7>x0z$3d zEK_Jp6l>d){Uu*!W@*`PXO|5kCFS3vaFjTXqamoQ8Dvvb6y*~!5rPH^2>Z|;^ai~^ zuP`t|OoR=NE_vIwkGtLOJ>n_q187@*k`O)vv)L@)>-Fv^N4%vP=@!*V;WMDB>U*tL zyW~=!^;v}CXf!HedklzbM}D{@Scf8b22KzPXg{3=>cR~SolhncOVhMR5==eOqY%C8 z#y=A@u!EpOS+u{1$&O&+TGw?^sZ`D~nT(0C2l;RelM}&1IEIGMGYr_{@pzX8Ez1(f zOVA<49Tpi5z8@Oj3h0YD6@$Uxs?+JT`u#qS2vMz8MYGxDY7Wj#q%QbYfEIHmgkc!1 za=Faad~$EyXf$N>nnp(!@X%UTTIeLmC>$v!~1Gon+I9*V$ z*X0!*C%#r;>u66mA^Kw?hC{j(WoPVME;mIwMRzHtq@<+8gb-gzlfPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0q99YK~z{r?Uv0- z0#O)-k2zC;17+b*LV-|$Yu$SdZ6jT^_6k~h9W7jh5OfKWd-u`}6i7cHL!&v<^nS;0 zbk2y@q_b)sc=>+(Iq&)Acu*uH{CiRyC7$Q$2pY?QT#Bhw>I*Rz!UpmP`_LZr4!uHe zFkmCb!Ujj5oa?$L?RNVC@eK6=v@KtW3B`cpIJr)zb5A+q9o0y;sE!N8fTn35l}hD` zOM%g65RPoyF5vN)5Y?W1aYnd~MEDGxBIGfCItw&~TNt_+jYgKP>rW(@dZxER^jSat znXrK!1Ov)o{6|>q7$$BE!w{uX={%iI_t1NkZ(hUVMEDR6p#k&)1MYA*+@+>vSpsT*?BctqqzL-002ovPDHLkV1jT9{*?d# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/chime.png b/Resources/Textures/Interface/Emotes/chime.png new file mode 100644 index 0000000000000000000000000000000000000000..ca595be5d3b7c7a12afbaa58f879014136bea851 GIT binary patch literal 380 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!20>33$B+p3x0Ch?HXHD?`nn}>d0ADlH8M)H z^)X7c%**p&-3qg@cJD! ziSe70I&;K%# z56+g-X8w|K&Y@FqClgbybwzM;>VvM#S@-zgb4cagvOn~aS0HoNxk4G`YQ^_WZRN4g zmt=b}2QpM!J Xct^0@sq7js#27qX{an^LB{Ts5hTD|v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/chirp.png b/Resources/Textures/Interface/Emotes/chirp.png new file mode 100644 index 0000000000000000000000000000000000000000..57e8b671439e408117974bef27d6819143acabcb GIT binary patch literal 514 zcmV+d0{#7oP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0hdWcK~z{r?Upaj z!axwkhhne<6tY2q;~+>l0=kE&#=;Sxsu&J|ra^%Nhpp_#o6L~@W4ntW`I7#UW~N){ zdo!~epq7@Ff5&FC$s{f0KS2c%^Eu*A+3j|3(R}_5ojWEL&QB0T_<7X zR07*qoM6N<$ Ef{l;o^8f$< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/chitter.png b/Resources/Textures/Interface/Emotes/chitter.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e11012237f45e888a9606ed76c3601fb442820 GIT binary patch literal 478 zcmV<40U`d0P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0dq-2K~z{r?UpgF zML-mWk5|zvZ==v)E0&>?Sc^m<6jq?J0EI2+6jq=`=Q?v|CNqZjc*%Pje{ymTV*YQ= zj0tU77PwPiG~cEN-~o65?f{Sup8o_uV+@U4Q7I>37>3Hxm?Vkx(nYcHcE?Zv;y9LW zL{S9OG|?*n!!R(N0s7XM>2L{r-zRwmBBm@5W(}oFg76sz8vh8o3&6}#ShsDV%WA#pL{e712jzo^E{I*NSWOkDFEv?&rO3MAURD_z7b!q z7rBS#Wm)1fuo?=6)`N&v0C}F%>La!h(RgDn>Jo?oP}eoB-)mw`AOBX&NE+vkzhX4x5Qm@PA4=-L9RQLZfCu0KxETQ84eFV% Unt_*D-~a#s07*qoM6N<$g2=(WQvd(} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/clap.png b/Resources/Textures/Interface/Emotes/clap.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ef9e1316a8dd66b216f64fe3945a168000cf64 GIT binary patch literal 628 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 Vc>C8dCYS&K002ovPDHLkV1n0a1z`XH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/ping.png b/Resources/Textures/Interface/Emotes/ping.png new file mode 100644 index 0000000000000000000000000000000000000000..7408eb1f28fa6abf7a7402ecd5055fb61ded3dd0 GIT binary patch literal 512 zcmV+b0{{JqP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0hLKaK~z{r?Uu`J zgFq05mvn(Bz$OSWP=cw0Gv{ERBjlR{g1f_yW(nYZVoSOBlUDoi&dfiv zgJkyRjgI>OEvD*muEORDASfTNMkxTGPD&yqpim) z(F!Qbl2(7L-x`R{M7C>`O^EXOzRy1Q`|&qhzRqV>Rn^pp)=daQIQXt>Ixz<}^WZX! zzJjjnXl0J6jaI;xDwt*u9t7Zx@K&^)Kt?~q7l0vy|1Qd2^!`AoP;{9$r0cqLBIbI% z3bVHo0AwO|yB+g9k4~1pGJeSiA^0000Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0^CVNK~z{r?Uv6= znqeHkzv?m~K`e?6?jS@UZbAmz?jz7i-aH7~JbBaAycit@E@%s^PCIl+`Jlt)|ag>$3HMr|0{8-}imKzbkm)zemM(#cXbFc9=*^ zPfx#exm;h_Q5eMzaKke*Gj!%uDizuTfqI5eA07#bRav$Hd3wOTMd zJPf5$35~nWzi~g8@cHM(Eka#Ra5NDg5;Dz#h0-|6;L7`%N4k9>U(<9y`fd zUtb5kUJvDR86uGg#N%8|7bKyE1%CZ?RBuh%w{vp&(DM3?+1&;g6fa>1C8S( zbd9&Taip&UJbG*}95Y;q)Cud;C$w|j!omW*_u~08uv)FC`r!3?f1aP8!}9Vno@IR} zJOy}}%y92=f;)lWJN(SYubVktC={ZGltw=g%s?`k?A~)pp-`a3$jerapAXk z2fOY@gfdXC*O?@b{3_B+)W82=(jCDFYPA|ge3hM@o!&D^)O?|SQ1pmU2C~^KldiM7 zyUQdw{k~C5zbwd57(F691^0#UNMJ-BkB5FIY;A2Zt(^Bui`0CHL;`}rp!m3nAXEm0 z=~v7jow!BqZ;i|eX810~Z&fEWgnuLWKPfnJCnqO=zwU!TNA5l45B%c*`~vRB7+V0I RFj@cr002ovPDHLkV1h(PirWAH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/sigh.png b/Resources/Textures/Interface/Emotes/sigh.png new file mode 100644 index 0000000000000000000000000000000000000000..ff49a56360f4dcf095d841be96e9b3f2174d2a73 GIT binary patch literal 449 zcmV;y0Y3hTP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ai&wK~z{r?Uw&d zgfJAxi;22{IspqXg*pLiFbL`tEPy%%3$Os{2FJy#`POffa=z=)ED+)D z_C|FVk_DcgUrgWk>@6or0Kt(xnijJKK0d!pS(YyQf8POQ`ug_nf_iZFAzI&oD1c1y zwRc^|kzXKzIX|y~D1gBG!99@h4I)c-K@{+3d@ReRX-rjB8N16tHnCFd+b|4jC3*HO z2sv~-r*M*hW;sq4!1cu0Ymp>?x*!!HOV~{!NdQ+*D#IC}N0LbL5#XNy_us>qE+{>m z$Y$Km5)lQ$61)%Q!u!vdlkCyIzPijd<7mfiTx3#2{N2VjANtb6;9)>KfixCFTofxZ rQsvVSQ2{{#yXS)*=NDO7IgT+uz*782eZba`00000NkvXXu0mjfxP-uE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/snap.png b/Resources/Textures/Interface/Emotes/snap.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6d81c19d8899250c8778660a61ddd1152a271c GIT binary patch literal 1106 zcmV-Y1g-mtP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1LsLZK~z{r?N&)k zTTv7~nH*yhjZs6L#|SE^ibau9bXP3Wg;@x?=&x{T_b$6K&{A+hUDPfF5sQk@g``eU zgDE)TgiXK+hp0X0A9DzJ0FsiI~)!kOX%bj`HPB*T!n>&fP$Zj zrE8FsBl6HnBXwe8V$2yC8GvWOYPHf7c_yr<6$zlQXJ`?mrKMGrl#~DoR7$*^ogMz_ z_4+#8|AhK<`?OjuBqt|>$zOn=+Qd#!aFe? zgpvnz8yg$XF`GI5q&PM<7Dh%!I2SPCm=q}@i_@%07*qoM6N<$f`*9qX#fBK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/squeak.png b/Resources/Textures/Interface/Emotes/squeak.png new file mode 100644 index 0000000000000000000000000000000000000000..e32a89f5989d0855d0de771554bc0060666f48e7 GIT binary patch literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!;A>A8$B+p3x04L{nhkhd&$3#$rCG2GDaW+8 zHXCd(*iax)_U@q1&vn5|S90*KiVFQSdCd*KNB>1zMO*`?>|eTS6|dsc^2QG)zS140 zjnJaEtjXAPxHm%KU9((L zZ1}pPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0q;pfK~z{r?UcW3 z!ax+qUn_~wR{aYES35Ym6y2Phh0N}*{Uf@T`Zr{8bQeQGoZVauF3~Ffh}f2h)_2~? zdC8eXIyBS|g!k?xyb5? z24})(w|9kN(WU1q@DDO^6i%g*v=v6zkG z)oK-z$wTMM<&s1%1Bjw1fX+9L1B=B1=JVM;E`3e74kDvgJ1FcKjYdadKb*ZVipyY= z6>%9T=&uQy9zhe>xvcvj$i4yhQT#z8g%?K7iR0+m_!*f@hGyQl4XjoU?ic<>&1Mri zoemLYmk1NZ3t{58|9CF=;W-xZPbinmr0#`j4v3h@U@#yCLjMI!Ts#XdfgMKTJ9(te oc-T=K7QS;dA^Q-o{AU1u06=v{CXg{np8x;=07*qoM6N<$f)-2*egFUf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/vocal.png b/Resources/Textures/Interface/Emotes/vocal.png new file mode 100644 index 0000000000000000000000000000000000000000..9b129ec4669d683c9c643104a38287cb04a53216 GIT binary patch literal 473 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!hCELf$B+p3x6>X5wipPsHoLA6y}%F(B-mOP zggG*=2))3-yWrb{qm>`mPClHXukz#dyV)mMoSxk~t+%^*M-+%Po`9Hb@AEIgt?A8t~tH# z@8=1kwJOq_ZLV3;iG8MuYkx8rG6v@4D N!PC{xWt~$(69D1!#vA|u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/weh.png b/Resources/Textures/Interface/Emotes/weh.png new file mode 100644 index 0000000000000000000000000000000000000000..fea5ad3b731e3e9fb02203befff350a9c5ce852c GIT binary patch literal 478 zcmV<40U`d0P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0dq-2K~z{r?Uuo= zMKBPC>nDKNuImzinO91TQVJkAFW9zi z>b=o*9Ti1Ed|v1o$~CY|Ouf(WB4qftA_Ng-SqgVSNx(j@M=OP0V2DI07a>0(A7~F0 zB*Sr>!@Mb{fK7H390K#fMO^+LfaCCby@{>+3a7={7mdA@E_*L4`i063DoEs*zuAUIz&hcE?6lB_QnhJj4e zB>u9s?mBY~!H5%9@nH~TL1%zR!jpIn~5b5>4??Vuh!#yy@QY3@a4n$Ez zL@*%`0Icu(O+kUdmPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D10zX9K~z{r?Up@A zTTv9p|1TkG;uoSeK@pu4wT*~~g5cmHP2E&Ez&O7t=cGAlMc`#6g;X zh-j;W2!f!-B7T6WL5cRAU2OX|AlS zd0vIl}meCDQJF^IBNcP!bRdg~Tc`^83U`9y3JKC zMn80PbfCGpnUAlmtYCI_me)j4Q4tCY3(?xzip|YU<$r>QGN7HDoP@i&x;TyGytlU( zot>R1EiJ{~-d@akTU#3(4hN2pk8yr}j*E*6wyR6$;ok6S68FGy`AlZo(ZzU|(ad9yskqGkg z@>mEtr$Nn^nVHGi$;!&&2F%FF7}87iPTVpjh7wFqPis?CQ*;vy3=CjlVFA0lyQrh($ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Emotes/yawn.png b/Resources/Textures/Interface/Emotes/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..8130fc9ab443beae1d590def6b9a500aa3aa9131 GIT binary patch literal 660 zcmV;F0&D$=P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0x3yEK~z{r?UXUE zVL=qfkKICN3yFQ9U>g;c4GagshkJ0l-6WI`8A2|AZTQ16KA(?28AmSQ40oSxS93v^fFD1zFc=JY<)AaB<8Y z;~FRl`2FV0<$@H6^jUkLKKZggAIp6dgi}SLg^G75{X2hTCKu( zJce*M40=T95`ZTJ!7}A?ImqYpV7J?8OciATxH#6lSS&)j-G)x51KI3WP@zyzc0oyi z$Q&7sMkJzEtC15lHU(DwX2BcSH$R zs} Date: Mon, 6 May 2024 01:13:36 +0000 Subject: [PATCH 53/78] 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 2b468926049..1f9de153397 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: PoorMansDreams - changes: - - message: New lobby art (of horror) - type: Add - id: 6034 - time: '2024-02-26T23:06:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25455 - author: TheShuEd changes: - message: Carpets can now be printed at the uniform printer. @@ -3873,3 +3866,10 @@ id: 6533 time: '2024-05-05T23:32:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27693 +- author: Allen + changes: + - message: Added new icons for the emote wheel + type: Add + id: 6534 + time: '2024-05-06T01:12:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27541 From c20df3e39ffd3b28db499bcc4a0e1fb48b563826 Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Sun, 5 May 2024 18:38:55 -0700 Subject: [PATCH 54/78] Fix AlertControl throwing an error if the sprite view entity is deleted multiple times (#27690) * Fix AlertControl throwing an error if disposed multiple times * Replace default check with deleted check --- .../UserInterface/Systems/Alerts/Controls/AlertControl.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs index af93033a9d3..6327757dec2 100644 --- a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs +++ b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs @@ -3,7 +3,6 @@ using Content.Client.Cooldown; using Content.Shared.Alert; using Robust.Client.GameObjects; -using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; @@ -117,7 +116,9 @@ protected override void FrameUpdate(FrameEventArgs args) protected override void Dispose(bool disposing) { base.Dispose(disposing); - _entityManager.QueueDeleteEntity(_spriteViewEntity); + + if (!_entityManager.Deleted(_spriteViewEntity)) + _entityManager.QueueDeleteEntity(_spriteViewEntity); } } From eee8e03c15ea22472d6b442281fccc4cb036e64d Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Sun, 5 May 2024 19:08:56 -0700 Subject: [PATCH 55/78] Fix tests (#27711) * Fix tests * Fix test fail * Apply same fix to other tests --- .../InteractionTest.EntitySpecifier.cs | 25 ++++++--- ...teractionTest.EntitySpecifierCollection.cs | 14 +++-- .../Interaction/InteractionTest.Helpers.cs | 7 +-- Content.IntegrationTests/Tests/StorageTest.cs | 55 ++++++++++++------- 4 files changed, 62 insertions(+), 39 deletions(-) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs index 414cf4bb56f..37dca721373 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs @@ -3,6 +3,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using static Robust.UnitTesting.RobustIntegrationTest; namespace Content.IntegrationTests.Tests.Interaction; @@ -54,7 +55,7 @@ public static implicit operator EntitySpecifier((string, int) tuple) /// /// Convert applicable entity prototypes into stack prototypes. /// - public void ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory) + public async Task ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory, ServerIntegrationInstance server) { if (Converted) return; @@ -73,11 +74,14 @@ public void ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory return; } - if (entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await server.WaitPost(() => { - Prototype = stackComp.StackTypeId; - } + entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack != null) + Prototype = stack.StackTypeId; } } @@ -100,11 +104,14 @@ await Server.WaitPost(() => return default; } - if (entProto.TryGetComponent(Factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await Server.WaitPost(() => { - return await SpawnEntity((stackComp.StackTypeId, spec.Quantity), coords); - } + entProto.TryGetComponent(Factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack != null) + return await SpawnEntity((stack.StackTypeId, spec.Quantity), coords); Assert.That(spec.Quantity, Is.EqualTo(1), "SpawnEntity only supports returning a singular entity"); await Server.WaitPost(() => uid = SEntMan.SpawnEntity(spec.Prototype, coords)); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs index 520d2699c14..7f7de3318b4 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs @@ -5,6 +5,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using static Robust.UnitTesting.RobustIntegrationTest; namespace Content.IntegrationTests.Tests.Interaction; @@ -111,7 +112,7 @@ public EntitySpecifierCollection Clone() /// /// Convert applicable entity prototypes into stack prototypes. /// - public void ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factory) + public async Task ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factory, ServerIntegrationInstance server) { if (Converted) return; @@ -130,14 +131,17 @@ public void ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factor continue; } - if (!entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await server.WaitPost(() => { + entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack == null) continue; - } toRemove.Add(id); - toAdd.Add((stackComp.StackTypeId, quantity)); + toAdd.Add((stack.StackTypeId, quantity)); } foreach (var id in toRemove) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 95cf8a06dfa..19ca83a9715 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -5,12 +5,9 @@ using System.Numerics; using System.Reflection; using Content.Client.Construction; -using Content.Server.Atmos; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Construction.Components; using Content.Server.Gravity; -using Content.Server.Item; using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Construction.Prototypes; @@ -634,7 +631,7 @@ protected async Task AssertEntityLookup( var entities = await DoEntityLookup(flags); var found = ToEntityCollection(entities); expected.Remove(found); - expected.ConvertToStacks(ProtoMan, Factory); + await expected.ConvertToStacks(ProtoMan, Factory, Server); if (expected.Entities.Count == 0) return; @@ -670,7 +667,7 @@ protected async Task FindEntity( LookupFlags flags = LookupFlags.Uncontained | LookupFlags.Contained, bool shouldSucceed = true) { - spec.ConvertToStack(ProtoMan, Factory); + await spec.ConvertToStack(ProtoMan, Factory, Server); var entities = await DoEntityLookup(flags); foreach (var uid in entities) diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index 659b310661b..2d28534347d 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -92,23 +92,32 @@ public async Task TestSufficientSpaceForFill() var allSizes = protoMan.EnumeratePrototypes().ToList(); allSizes.Sort(); - Assert.Multiple(() => + await Assert.MultipleAsync(async () => { foreach (var proto in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; - if (!proto.TryGetComponent("Storage", out var storage)) + StorageComponent? storage = null; + ItemComponent? item = null; + StorageFillComponent fill = default!; + var size = 0; + await server.WaitAssertion(() => { - Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); - continue; - } + if (!proto.TryGetComponent("Storage", out storage)) + { + Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); + return; + } - proto.TryGetComponent("Item", out var item); + proto.TryGetComponent("Item", out item); + fill = (StorageFillComponent) proto.Components[id].Component; + size = GetFillSize(fill, false, protoMan, itemSys); + }); - var fill = (StorageFillComponent) proto.Components[id].Component; - var size = GetFillSize(fill, false, protoMan, itemSys); + if (storage == null) + continue; var maxSize = storage.MaxItemSize; if (storage.MaxItemSize == null) @@ -138,7 +147,13 @@ public async Task TestSufficientSpaceForFill() if (!protoMan.TryIndex(entry.PrototypeId, out var fillItem)) continue; - if (!fillItem.TryGetComponent("Item", out var entryItem)) + ItemComponent? entryItem = null; + await server.WaitPost(() => + { + fillItem.TryGetComponent("Item", out entryItem); + }); + + if (entryItem == null) continue; Assert.That(protoMan.Index(entryItem.Size).Weight, @@ -164,25 +179,25 @@ public async Task TestSufficientSpaceForEntityStorageFill() var itemSys = entMan.System(); - Assert.Multiple(() => + foreach (var proto in pair.GetPrototypesWithComponent()) { - foreach (var proto in pair.GetPrototypesWithComponent()) - { - if (proto.HasComponent(compFact)) - continue; + if (proto.HasComponent(compFact)) + continue; - if (!proto.TryGetComponent("EntityStorage", out var entStorage)) - { + await server.WaitAssertion(() => + { + if (!proto.TryGetComponent("EntityStorage", out EntityStorageComponent? entStorage)) Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); - continue; - } + + if (entStorage == null) + return; var fill = (StorageFillComponent) proto.Components[id].Component; var size = GetFillSize(fill, true, protoMan, itemSys); Assert.That(size, Is.LessThanOrEqualTo(entStorage.Capacity), $"{proto.ID} storage fill is too large."); - } - }); + }); + } await pair.CleanReturnAsync(); } From 104c2afe692c0c05172b9ba2a15213d2a54ae99c Mon Sep 17 00:00:00 2001 From: T-Stalker <43253663+DogZeroX@users.noreply.github.com> Date: Mon, 6 May 2024 00:51:33 -0300 Subject: [PATCH 56/78] New Salvage song: Deadline (#27707) Deadline --- Resources/Audio/Expedition/attributions.yml | 9 +++++++++ Resources/Audio/Expedition/deadline.ogg | Bin 0 -> 1797293 bytes .../{Misc => Expedition}/tension_session.ogg | Bin .../SoundCollections/expeditions.yml | 3 ++- 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Resources/Audio/Expedition/attributions.yml create mode 100644 Resources/Audio/Expedition/deadline.ogg rename Resources/Audio/{Misc => Expedition}/tension_session.ogg (100%) diff --git a/Resources/Audio/Expedition/attributions.yml b/Resources/Audio/Expedition/attributions.yml new file mode 100644 index 00000000000..a0bc137a012 --- /dev/null +++ b/Resources/Audio/Expedition/attributions.yml @@ -0,0 +1,9 @@ +- files: ["tension_session.ogg"] + license: "CC-BY-3.0" + copyright: "Created by qwertyquerty" + source: "https://www.youtube.com/@qwertyquerty" + +- files: ["deadline.ogg"] + license: "CC-BY-3.0" + copyright: "Bolgarich" + source: "https://www.youtube.com/watch?v=q7_NFEeeEac" diff --git a/Resources/Audio/Expedition/deadline.ogg b/Resources/Audio/Expedition/deadline.ogg new file mode 100644 index 0000000000000000000000000000000000000000..131016d8919ecbd68509e563151c08449e2cdc0e GIT binary patch literal 1797293 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®AcETrfVhVDq2KBJp2H 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

8-l;2abhamQ@z$#qa;If!^BLnDS$-K8S-iEuTK zM3pC1001BYj4c6*K(Yb;jP|Jk;sp&0?XOva6o3HmziC-_%bue_zd#p^LT8kbR?e)- zRoUw4%(Clp-QK3$<5lb)Yk#svKsTj>Mq;8k_Gc%BshnTniLv(nw8|QBT6NBm}XykKyNa zytyuui(U9F7gfDd5lNLq|CafQvU}&q-k;cQEE|NSST;~jX=`P#8gP7FG&Ss3n`{rN z)j)EGLJcQXs_LzB240NzAOgGq z@b{V-sDS)I0&)8mnR_O*(~dp%Xrm~zhq!XAs;ZpSMANZZ&fi@|)$!ZyGG10;_0J=3 z?%1clFCUNBgL}Gkd!DqIy!FRzk6g*lx8wEEO&KA!g79{axcdft=sdY<;} z{&w4r0liaaLn^p7WxEH~RIT*9;iGWR>peeCs(dIt5jU!Qh#t9H(JsQSM7Z!UADoS&oc=v}eZ}mx_>TLIkZ) zNa;0ru*S@>bdcDLbZ(H``w`gWdkZ179HMgf_+^234rOcF!0jre6(Nhk+}X)~Mr~*i zNHTT1DI_#y{-qTgVBiwE+KT>+jxhxg0KVjMls*mu!1u5gu)p#$pL)K?(lawv<*cfT zAd0m%t`d9W-4RX`&sVhFo4q_Krz>mkgYN%-tns^lY1ykjikXH!7u9%S^nU*O{o!Vw z&za5HGg8X zlyO{HV`wxLLl_f9R9ux;)VRXQfTlgGvMd_txtD?Mj+$9XTw+3$H_%zT5YDzoosQ&! zE(0`3a%hO|io2_`?;WN4_FANTNDC9faCLKd^+H_nJ2^f)gfxGnZy;-G$}B6syZRDi zacf$&UemXVAHOpD6^;JPTFtIFwMiDqQY+sNd2w%*(GWZO(t~ zuIz2T;5YYn9b?mLiA7de+EKIRv3yL zm8N`1D4KX8jpZ~WZn|F1>e=V4AC<>cz=|!vLZ&>V7jbkXiu0axS;MT6tEXhMIhHAd zJlqB2h)}D#Weke|Tc)zlZ6R=zJC$5tuU7#egaLJIk3iD4x4rh5NCR5+KwJT07ffyu z&Iypaz_pj-m^zbEYm0G@0vx(6T#Ab!PUPsa+-2H<WJ_n1 zNrVAaRfAOxz2&8Y9`_8&foJ6U6fEU!;QDuWv7d*e!GG&7`P}65g37skDzAGbXIjiz zO3u_55f@DU9?wvtrW4m$Uk!VHKf^Q^ujDDasr3G_;F8?-&yRW2sdw>e7+JWBhUp

ECRR;G0I*8G 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 (lzAKnVQNd-zN*ZXGtk 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 z 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�_A?-@AoSLlY0GCoVl?fd7%7 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 Q8 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⪚(nZY&qHAQ$9Av$2|CT=+J7w# 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 ^5wZ@!|K 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 ($;Oh$!l~hTHm0lc{!hqmm18A4U-k2aEXh8Q^ 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ģcnrA)vf4Tg-_Tb!G?prtWACKGUDi&M$ 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

9?cCw|dK3 z(C5DA)2JWKeB8I&y!D@-{Cn#g%=!M7y5KMzM^1O1C~F|=Be|G!b|+UBo3Cl=MMbUy zY{(0k+-)K*2!^*&&UQ6d-qqan|#$!Y0cxMj;r^(zO6Syp_NM z2mqLWrwkYX0D#Awkq-J><G$0UQg%Urvw@|r1iAS|q0#}#zBl1J4(tH%E zDc^ZUtw6#%VjsPMj!aH5^|W&&TArQ*zY_cwTsmaK*6-fUlcaql*=#IunJmG_5#$R4 zaCC*x=3DL?kySO@3x(tWKR3$U+1#EOFp_Xx}dyk-fn;T>Z$4% zp7VJ=-1OUw8lOJZP-p$ueO%@3%wpEQ9pYV0pQ;;|5hG9?#&=e3R$WIC1BW*~#*A&g z-tYGD^X_KpXzrP>rMq*0N|IU!GH1r+U>~)Em*018Ek99FH6ED;QJbzdmwJTe>`(lqEMh#TSfIuRi#ulfm+Oh_#sMF zlr*tQ1%nDu!$z8Yt&Ve8YtSy_eJ#eLFE(sDL@9uC+-o4Xd|05q_oLQzzfSV&>}V1E z;S}?y5!|%e_rpLCFRpRzq*$cv?>Y9^npQpB^-^{9`0t)S$DKdlFx<@J^khEuo-C)= z`uu;c|NXIloQGGB>)iO~>@>Njx6e*)hRu1VQ7HR!nX~%Y%<-LM<$2rFIq9+T6u+vj z+4DhPY5FRZ2uQZ_Z1;zGiTCf9bM_cj>iTqI-TPLYNgcJ^OUsn0BKvfsu6kV4x&S7~ z<@rIwsnm~Z>2k(Sn9Eoa#=41p*7ZlV(amEhUbmy}Fs*^A4@%l7vapSjwb&R-wgQJl zvUC@r%+MNjLF_wWN5f%DmKjhipBRim7_c1RZyGPO?U33Z1_00?xd7{ofo;$I1r5+{ z${dA#a*#qPZg@TIa@PSqEcPG)*#QNFzv6EN9>{k9_#WAX>IwXcmxHLl7}2cFqPW*k zv8qb)jlJg+c8&V=u0OcA!p&tPelW1(>bRzI`TF=D1mdf=dn{`+<2uLdvc1i--R9W+ zqJIph-~aZ*!-zQh(`x_RA2JrVJT3Zf7u(=)3ghJIcHDnYZ?ZiT3!%?fCIio)+EL_Q5^( zy4`e})@wYO2}R3q(>tXV727a@Y$!1Blq*5~!qgn*!+bw=_x-&~Gj*!gtxx&+ zL7yk;?iBfgaUHAE4%+&=CD(MhSvd9b;qBa7#*3+w^P%I}+qXw90pz*S3*}EUbO5HW zvx6~^$=CU)LV|lAdg^n1`Cdr{Z3)($`Pd-{>=g*_k3vwXbPkVFDE>_-<=5-hYcUu} z1|!MWsw6-e?n~Mh)d>W$e-a?Tbp72Cx9L!q;@E=?S)g~6VdLOW;<5U|`QpsoSywZY zymKCML;!06c3UI>9z2$WPe}#?g#Y4k1S#YS0Pmp-P(Uj`e@ZqQ^BYha1kp>EtA?sU z&dhccpYQwMW$@MI<%9bqUvU+$$5`IB8*4_g27I9u0wt9H^YHXtn*8FpVf85VsBYS_JWBvUV!~ipZDf#g3XEiSR;mzAA)lNE}AxkhnUzum)q3VVW zul4D#OlKSX@ep{0y5&d)Ku8LonNf@ZK(e9oo(iZ0VX!5OM;0J}O9IE0fK+=~dRqB4 zs-om)eOoErwyoF*S(tNr_uVLu`X0QI*&@@M0K4{UH96dbrI&!iv{vh?`v3@JEr5m4 z`gj+vt@1J<%WkyEQnG`+PfXtx0sc#tD5gw-pdyro4v!5giL{`B(D0bgQ#c_CWNpVX zYAkdo$q+tWrlE!;Nd^T7)$-eM-M~Hb{jdMC{{6C?KI}<<>HDei8L5S#kB_%+micV& zjt8~c#?evz$1ywAf17Q7)amoQFAc*@9>%+_-&`6ltg|}u^mfc!(+p5MDO8*3sr%Il zf1THt8R*>hAIv*Dh2HM->c3BWpD+J9x#w=Rtu?$BwbIMzfqL20@4PLhIKAmca}E$Q z!#_efmg($nsCw$!4by**=Sz3bb3lC=8w6r89$wYol|rE+mh%IPLMT6f7Gy03frPa} zrU+Y@%*pb7;l~134^7jS~s=d`~|Y9 z*bkC=2S=Lcd;fEu$Ln}{uG?Zu0~Q}+D%$XSbL;eje?9L`wsz*Bw8<;$Sz(x+rB0%A zKTetE`P*kPiT~Xew-?7OoIIPABH((aXK~3E7z?QG`M9PjHS>i5K*%UI0sssMKcNNK z8aq`flvZ~llgm0mB}hu@S5#UHN!9nCKZ;5ftwsmAz%l>;n}8LYm1$cb&$k)@a^?O= z0XaG*DZo2`juS5F3K5SRCCK$6FT< zzz13Y^e8bec(^vp=XpC_neN|=@s@mgB!o@9#lPF>_Bl(!vuY81Vd9Yqw{eis_f5?o zj07yE1zhR%=zrKxR|~iE`0e#vxzfH@4C17w`PG5xi0hK#r=n{BWLd5g5Mh|?jz2&Y zPzB&I1GJdz>{Y$e*%|$-_y6`dDRODJzvr2Rr)?v&*w+~KoL>E#_k#sF zJ~J;sDpCecD-B8NRZ;N2(~DzIac#=>5yflYR=>{S%<-%uVrkK$N%E6)LR>ld6~zr~ zTjrAzxUIY0fY>|x$ZZfJZJBpd#qjDoq9G;)#*E|PDufDtCIz}md^B5 zrZqWq287|vNTV+tR57`~{Y`$q43k@!fuYT7_~`$~=-rv`{h#|`WsUvc+dum^tK*i` z|Lec@l5tg1t{O>xf*i`Il+UV4^WGFbawtSw%793+4C}${eKp$0pER9#76^?6Ok><} z_y0JxK<;ZvcUI`rxGnXG(!G+@sTd-ql{6)e|~@WdHiZCq3D+ zi8<$8?25fFU2Y$>Q^b$5$hW~yhx&RPd}9=``)tZE#ZX^>Hf2~~K7|4ASl;!C_sAvT z;yllP$*Fw#^K$j#<#MZd7QU=c^^I06Lxk0!S#?zz_1U#r5NSRa)Bxz@Qk_ z(13f}C2+zq0S4Bh`{85#!}MMA!{6KQK7Ap+)5-DV!}j%=zP2?6HnKNnyL7_B9Hy#V z^_|#f-pA;=RdTpY*TVw@ z1v#XuCq0$cDk~T4`?xQR>@ifQnHf%Hxvsq*_wIjRJ+ngDo@Vu@Id-gr^CT}OT8F8t z%4IaY+s`kj@l+;mzKFRewKRS6I(H3Y&#w022USR%1y2*fzqFZ5g(>;gs`g0}IG9k@O)|6;)*M)eh_6vn_#a>6_l`1xvCm z$tcb|j{@5kV0_62fJFvSkZFV=5)qv6bMM`1_^vmX`6d=nvz=21YEW!{!|c}NLe;Us zYV~@Rsgvirzwz6)^6UYg%uRxUCkG>8+R5I;B#;^?zF~Z+^^SncTl>GXnx4+!;^Z zJl-GnGUq&Ss&cB& QC&kUfbHYe@9~bx@&g9;?8Ku#8&VCqrYmVCz6x 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%0D8kDGh_cN|1}?d{9$dTo8j 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%0DBPtmIXfi^_>Nq0FZ-+y*k2(q(H7l%C+EC#s;>z z_D)%J;+@>3Fm^`0yM$a-B?^-Ojg4iYA@=;j>iy<&@!r?*QQC9EZ|`2UDEj@j>-@@B z;aXFIx!s;_fB*My&U{_(ha5CkiMxDhEpB@b<(QdYv)lFYmDA0D)?^-wFAL-K=jZx9 zDK~w3CDy}#-*dmOGxpm!Gt;0>Q(GK8PraS*B)=Yw$2}GsJ*Ee+i!;AwzRHJ$4O!95 zFa=lD@l1O?525BirM~_-yoo)WJ*G7CWn_avq7}l|Bmx1q0l=ewxkzW10U-OSZOIsb z7aJ@90GThq;M*H!Qr?r@rf#t>ifveIhgVJZXK3BTgzZdov%B|n-iO<6Q3;?WF&w$L z9S61Q&0S$|#7&kR8(la`%aktu*sa(3eQQqfkpY_HkPQIT< z-PFnD3JLx{m!KuwnxRe zz2DU*t;6oc*jl!^eH-uNZH)ha7Bi0fz8&+U-ETjfGYw7E#5Hq6bu%?Nb144PT@{r- ze2Rh6z_~K>!cL|b2S87*y|XOV=j*6h-$(5qZ#V00CIkryMyPy;MiI|}U}8JYT@?Q$ zbkeDkf15%8dNiQ=#>j+6t1g9*rh~}Ou$%U77vI0&^f@PI7&?F@_)qJ;ZE(gGvc&g8 zCz^-3xZQAo7)yVhhEh>QJvRxoY3WDvYzM0?h-Dd!EGzi#jQ{|?{H;~QlYXQLw7EhFO36-VawR#74Y}d~^JctsmFFJP_sd>69h^1rYJO$m z-e_C#8oUpr1tY4ka`-D1-_unNF2l6;YWqh&{o*~`tQmW=+nL$n==+*^uBu_qY1}To z^I?RSx9KiCw~YSZ94l_H>JqVHZF>y$y^(5P||Z2_L0@`vG_c4yP;jn^uKNw z6psh~`Te_N4eYOnfkA@$neXnGJARX#XezTWH|d_nU*!8WfXI?Ff<(wDz`L=%M<-n` zzoe2XUo;O4r&^&)d0ziUh$<+4I;fY^H8OP5=O%gqq01#Z<1^@s60KnEO{|Ep8 ze%$p%CV&9YC3|BBVA6{sW+>J0ZB9Jzqccw_A7kn-1fLH~!|Xs#&n8>tk-bX9ER%>8s5gKyp*_GKtB(B$OQ!x&jDmxcf8?D_hmz9~RG5`21* zp|?)2ed(>&`@ATgO7RGilR95@pnAW+yB2$Bd!8FV7JGc`i5T_H9{%Ba7njRx-=X&W zKD_%G4-03<6*^2#ueIBw~8&f1Gzlqm;G< z_5~m*QO^nh(5HJ800=hgMNtN0pn*b`ANxfbq2#{;Awdn_{r~_*F@9-XUV842qIhTA zE-&;#*)t0^w8}%p%8VpZGxx$kIKO<`t_GjXZ~08mjJtX|8EKv>FcB!bfT!;1CqDmn z@cy#wv7esx@!#Yd=YhF)fY#mJ+q^8Q-d;E-7Pql<5h+w_8MwUErlC+Yt?6^-zP-)) z>vo%Se>!@5x>K|&>2u?ra?r!vwVx_`+s7RJ7aB?+t$ zueP9&qiI!VV|MKzBvtu4Nfm3PC=r?RHx+ePWXSO0sG`V#WB@UlTu}y7quZgKbi)RA z$6%U2ox}97$LybWTHL`qC4~0)vxEf3tAUXh0cbWn0c>5=n7O9ha$)fS8ifK-o)%2F z?ad91W1DjCm)As%)P4Q%{P{CSuu{W6?PzfsoTY)7vFDCA|BHYIB`NUVdX23%XrAYNODndToL zl?uQNU>Bz^PkY!fw`ZQrZLv!Imgwt>&b{w{%6wJ%$>S^+#~Q9&P=U`P!3XP)?O5Wzb2 zS4pLo(o51FmZ$RiQk2xyd#nLeT|-bZMU{~>IljEWyjd$PDNBj%XMd~Sc0NzAXq}Qn zYR5}5eEe&=dK>)}aDXd$`9oz@R8vI%=8zmu-aR27UKLU=0eWktm7=6UL5!(rcAaaj zzyOpD8bV=V`p83^Kir;vdAy1KHZmN}!4sr!Zu>r=7rLc;=T;(ARaLBrdvxC{Xt!y8W}MnLP#y|^||7&zmF##-6FMm-RG6Jv3MJ`UvsIG zekah9+S=2V6DMoenWn3YcQanw{_CyxCA? zQvd+Kb}|3}0001qtyQf{0000BBWwa_|1keT|1T{}2Bt{}ulp|26+1 z|1SS6|2RNDLjNWIBmXP^GygLGCjTz~OE)z)IyW~-LPRr3LP!5F{~iA-|0(|v{}ulf z|1LK+I72-@|0Vw-|1JL>|1AF{|1JMHe#}i3L(9M-0UTpprN96f5s}S9egRx({8yaJ zTzX~|TY0FeiiwP2n|<^2T;lzus;jhU7}(hVwm#gSo!ZZn_s&Z7?GJk|YsopIfwpw) z>4Wc17jx-lQ_HNn=_YCQnw_pT)$21=5!dKsCXFeYRqNnhD*ODCZgEdhby__pU0-^4 z*zea8P5+*zezu7ZIQeP^c2TdEkXYZWeU(fYeZ>*Fb( zXYHUMUk^-p{Z1Zwru+R$ACdD`W87eT{c;w@@xP5RTrlki<7Rx^=6#GX2Ya8@Q0sI0 z^F5lVr;FOzxaw*q!IF)|-``(E8sRsT%4?-06p@E-?J^Xl+Stf=8Br!4h>esh=O=h*Sf2giU|-@T@(0^A|4*NkK8)Jv4MP#pt9v-?-0i#pD1? zWAQ9<&zzTMS}tmsTRr}I|LeRVr`N;(+x4N*GEeD8nZitwZ|=C09cZ#k`$EUufA*~+sHD!7|BZF7$fFI27v)9 z73ydC5ekC*+_=*V92}?>U00rn}DFUr~-`YI^e8e_j`BLkebRS9E4_PSRbVZgPLJ_qkyI zsoo^Lw_R=DYwV|6U6g#K{6C;pX7#4P7%re#$xPbMPZhm8SV zZTD6ne|;7WsrprnM!+~00x*D?csZFn=R=6m%uFc**>tNbXUS-~DiT%ERK_czpcdC)y~?%QqGC!wYDggv#0nc%lS=`SB^3=PYSv zexG6}0Q2th(%AdVakecm4+B2Y>n`ukdmM*GYxa^^7Vz+T*+RaPfi8bM;<;rI;ZuVw z+pHr8*FWaw9*SOC8K9Y+_D2S|y@VGnyt#F3+t z0Q|T0z{K3KBpGdNFtT9G6LT)1p~1>XeWS5?k&o#tgT3Wk@*Tg&Tn-dJzSmYunQra< znA86!`fsnd{WhKb^*)ca+QF-jO;7h#Z+%`*dq^GcpDyP(^T)&OFno$JF7xM)_r28| z^O#JSYx!g8CHJ$oX?VOVi@c`QFX{0@Leqk{+z)OX%-p;7SswrWZ)~~mGslXw6~<3g`wZp?CPSD;wy7SpbZA9;M`K68yL0uXK#s#ua_V zKNZ=T*a}_GqyWHxjCdq0iOa&4@?2g(GyS1VOiQop9qY9&ZIK%0HZi`gEt@oVp)`YI z0KgJvm{jRhvw-!vs6j{)f*1f7C>$hiMUNBg2*6-u45vU(+lR+fge`!=4E`LRla5Wv z6Tn^eP6cN(3Y!dc=k$@C&J0;4Fc&LURjQt_mKvIT(#k7N?t@Fq>e2hAZ`XHUntw09 zXqzDw2UiT~!`~YN-L%8Xo$)GEFJP+Z$jYTp~sM<8XB10<|T}-BHX|9m* z@1)auOvmXM^McaD|E1L&g8uWHa)b!|IY&*ODDoeV0t(ID+25+fyA|q6fLVE8f zRoodaR2&r2u6TJx?`q|;UPLNDVhTYTIhD19krm4)mU{p&hNvv8EC;8SNGE7|dK7B} z6qR=>Zb#1L*J`OWY!EET&49R^Q_8GHod9Wu7oZzjxHBShBQOJuVYMr?vjH+`MTlZ7 zvdkwX{i@zlNhBmxq*sZ*ZhfOb7e*k=l)JOG%+m2ah{yXecz+r*eJK`=hJWoPB!RIQ zIk)(j6D#Wf7UvtkfU%KH)g1X~)cbvu`+xTu=g6$`HW1mo34y}gpkOgbk0enw0$%(z zBMSn81a!e$*(e}?P=NNF%*-swteC|Z%T+b^`Ut~TuKZz-ZPzP396i5w_I4T6zZH)E zZ~l^S`!}`ZT}!bE>pSi_J(vd7Zyjvi{XIwPoFs>}Y*9M!$Wwunh}KN#myRhBY)_^$ znwjooC)3%i?)1(M<0{h)O>vD~<+ugS0t*_7&^1i$O+pT2<=}|}NpbI=7Fa`@naRX(rG<@UQ)9>k$cd>~`}{~c#t;^y z#F7@B&IE_B00UCzq)SsAH4MWf?&9Wz#S!$PVty4L( zbD{)QT~QHLrMeOoVyRY%eyb z1!;f`?J!s;956tI?xy|g&hA;Vj1r8wSQV=(va~VEdbL!Nb}t_L{py@0?RmRg#$!oSr}WLAt9w3Vov{?sn9lC2+jqF# zSR0i;#1g5ETc#s1_~;xAQS`G0a&Qg{3^}4w;=d~710oP zchVGWJu-QU%XE>sogF%)Q;fOztgswA;SQ~M$mhn~566R446e`BhL&QuO|(BlxMRFB zp_qP3bazZ8oO=Y*ri;wUhNd_z0p2W5RR%pETP)(?7;Kz~^JodZBC>#Ue*?slz4tMi zoK;no$e_SMPuu4I)95bb0wan@q{@@h&Y$qxEA{dqt$smC#<#PbZ;6~piyt!hl(ww; z_(iG*>l8W3S`E@EA9~oF+K^(_$~0h4XGJwlE~!Q%m>gz?BJ6Q{*^XHi48^IhV%+~m zwSeYMN!|Xzc%XVZl}JgouRf>hR5`-?zN}Aoxn~JRy=Yy?Wl!VOPVM(>dtc}t=hWCE zJJnpcTAz{2KK8EW5|yeew3Vx*+DZ{Pva0YX6|C%J>rCRyDFfn98hTf>)SWi}L3P>wlfDs`ILJlS!>cj5ZkFMW|E2BvSv15B10+y)v>9ST;5i zwvhc5Vhpl`{s&dXG zKw5=(8as&IhDLUl9w+1}`s!JD^zrlvv6XKh{{EBw;pKWxCVyC`*F&~i4$jI{;k%`G z*GQG(BfE_E{(jJZT%6HN7m)2rB4_A}iwT+BN?cb&O~|WTdh6jBTaDw>+s<*9rdPKf z&c({h_UQEsH!%2LOz$SD>^b&WwfDT=Q>f_}MhvVh2Z>5rw6Iil-qwg}TZxQWXQ2^p zH^QL=V8jZcEMZG}*F(RzV&|>*_Sc=;86Gf?1WWcIk(Lh+u{Z?cyIfyS?$~QrfB$pP zwc6h~_IwO)QPKAunqzaXtL1RWNuevmI@{)c=0qh0^F4QE-VTL4W|v*sPw z(^XkU6h&~otv<*t$Jg7<$Qjt9zJNQbxW!fb{_?E%^e4K1Pbn+m&HJo$b2WW>(l8~O zk{?Q@v%Io+oTk&&CFbc-HBrh3?y3~jW zfjQ<)F{cDQdn0qmxujf`lL01ynDz$_rruwDzZ&=J`Dh_qCh5)TjxO|bRTW8d_4Fzd zIYoWtU$mfbk^Mu7?Kf_PUo#j6W~*jaK4$IXqVyNR;AB7(D4L#G8_J?EUG}<5Q7sZtzy~zyj)-r@E2QVrRyakkco#moZi+ zu5NfrT`bGw7jC?5ddEou@g7Xe088MB! zjda>x{Iyb&bW@ce)#7`lqoQF=MWEn57B6ffB?*dM1OR5eQ2J`p+5pU-9VcU^GQWIN?xKCM zlFZ#Xv(xEWdL}IvH!;B6TLqP&`I$EKIDeg5& zEqRI&MY(BD{o8H0Ib$)$ZTfMUq5I=v+FRa%r>CfPGPEC|d}ykgLqb!X*U||cQ5wT2 z3jjeSkj`LgPxNzJ;QCWpjggV8Xnc4I(8~MN!Kt@*qdqNwAAVUHzjgg)9uj zU}P{t5i%B7NNwTrj_=8>Qg}0n0bFM`b4+RLB1ZNDEW<+JuLwBycTVbvHf^=-(wr-; z^5FU4`1Y=p^K?}ueHHT5Bx#yuqeFgfSmhPwe50!-_~fw*Gx5njCX{C+w7=HQ;n*uRwa5X(Jl6B{~tQd zU38_|HU*m7#YqDK&|zWCwcCjjy7Fk3lS72+zEv4Tq4^NmrDYg#hh-`99K-CYvRXd3M8!BU%}WUJ&hswVE$(OiFN z`NRtpfiSh!I$mkBsI{0ive0NEo28&Y9`Km8$6_{PHr1)r;zVSV=^UUELDO+G?P3zC zieG9fONx|rYaWnBP+3pU5J4w+F*TVpGa!0$g@Og3GZBC**G#F?&z5oQYy*rapi{8< zEdn;SmOu*#w@X*;Mw&{Mic*!;3aiy~6mmr_I`T;4`Us^90^etwT{8o^C$3|`q$h=p z2foym`G8=#?j?XAT*77&0rUQibLa{=wykQcSY=!o(9Jt0QUJcptz96INC;S9SR1`W zV9@~JBk~?;oR~#x|4*fdYx{xrXomY4vgrxG%0RB zXd)%?WGcZV_0XT=cJ}Kz{l9Kw*3;L=lh0nG@i>^XXyyz{=?Q7QyV##EPo4vJPQTft z8Au0oc1#-sV0u+H?fxVP$+59&IzuLp*V!Btq*)f#CPkwNj1_WWRnOz8CPwt)-fxb8 z?$in(iEg1nBagU7z1Fy6FMVU1SO|f17o$g4G=*G>C5EDtF{Me%wo(Sg*g0Ei01>Xb zekU&js=3J=lY^4>#kAM~zT6$F1V^F=73SycSTsl=03q;bCkuAjy9D%7HX|DW3s;q^ zD!RM)4bHuzGqw(4mP>YZeCEsk)99`n_8q6}CuK#uueFzDoOZX9tkjR^ueqJdb*r^{ z_I=yM{nr_8(^;~rn%b=%m{7_ob(RN6%3+Q=&iSCq>53S@G-scBT-5kmJ-Cg>m`_h{ zdP#Qbb554lUc0Y(?9X%WzubM>Mlwvk$wsH%9F?;e+RGl+qevBoa4&hX1yk=`Ho2?L zdM%e)ug7hVWPR*E8X*E?SJRiBDpGmj!a~S*`WQ9uA*-at7;HdDHPdu)C#o+Ql4Ul~GiczdwqReM>MUfSdz>#MmUMu@B6?f-TvRQQG7|1Q_d` zIBb4=ZACz{m=+NWBv)&6xEPR1CQ)+c(Mmw&XYRNtdMb2DIx9DTRprVhf<+yx@u2g{ z!qT1$<=)?{ThgD?r4{E_>qF6er%l`oka!b{vVh~>pR)+T?92sGCkD8k8#}RgF4T1v0pDr!eR93 z7Q^*+=AeJDEy3$jAU7>!hg_N?jR&BKE}(8rf(tZ?$%=-KRp;5X%@NL?`>h}U1q8&! z?)hYF*Y80JF|P(TE9FU(Hj;jsjP9BXAc9FbczWXYas5(U8^^ROq9e<4<$N7xzn^1X z(aq);zYN&KS1O3$^0CD$LgkL&zY6KoY21aOT@1?%bg~RgwtcH){p2SfW1Rh7d%sOJ`&U6MMJild zcDei$gREEpmWA;G766iw>**quBnuVqBov6~`q`bXYuhynA?vJ%PHn5UV<_wP%4_P| z@Y&?1q}d^Y?OBmc(fFCY(5jq(>l=e)Z%4Pcf`OT9n%ftVAo!!D$&(Nbe;aLIgG1ua)z_tZ{yfJq>ja5sLnkzHw|8f z1v=@0hDi!fxfq1CamW=yXyFOgbcY9`@{db~aiU_K9fB#Y3JdOq4N$V;7`o@DR zJA%7^{6N|tAL2~&$NJw)hhlt6z^hE={xs(O=Eyno+!Wl_Av=4jp2)zIozMgKF}Tf# zAN%oXK3vxAb~5JpYxgU*`9tnyGq3ZQ-g<96$aUENn_=et`x)b~XU=g7C!H&M-}5La z6OT_u$4?Kv#`!gqZll<1N*-B-T|>m7f@&PP)4BD8-QPg+t}RqOlS^DQvkZoYcAIj24qky zSOT7*0fH=^N<{${8>VFpRzOSOzJggQb(=2$@CN{Jd41EL`oqKZU-MZX`F?tP)3zV_ z#zHS;i5N*5s)kmR90F2fjI)J-v72ZAcCusWJ~lhJvh$E;M$hilB`+F$`uQKEee~e$ z&ldR(jywN#?aqVWcX6R>?cjS&Y+(IGw^ob^YJY9(|D+H>PBe`&0b&lMKArlRGqvMcJ<>PLqR_^C$pFqk4^4L zGhBJoe7~M^YwdoiGmQHE^x)BXCZxm+;q=-A3LxtzeHZS*cz=@Wc{lET;E(zzRDW5=?@SE$^e{afT7RK z?whNzOrxyvE4kA3Llq*zM|Q|9bq>I zdZ>2zjy>P__O&W1=l4?OrAj`kH7Mc_)BjSNf6xGAW!n>>?Moh0AD~wxrNH+MU{0qQ z2M>*CFFLz^|5f8LRU)Z}FUKwJAj7%dzbmOWbv?ZjKQHtq@o%P5JF|K-tt|s|U#&!N zb+sMo9snXt1zwy0U9Uz-!@D?Y-{{>J=ePJP=aH9$h)CIM)#x`Al_OCz*aA%9lubUm z`qF8A0G25pFkdJRsBhLb&+PV2-~P+Jm+d=|y|2CD=veosSNk&G9<~arCGS~nDk=Gz zRNgw@=t`|Zkt@}v=Jx=6VT>Wj!jZv4AAnv)6oPph(CY8^v-haaE>Rfv@fvp@Js(y0 zGOzcX6RrOB+@`9M@7nl7MQFQcN;aGiboRXy3S?VGML>2XgTNP{Ka@#g=K)l7$!~_V z-iwM3Qei7jecYapGdlL*mNsE#9IujkN-9^^HBF7&CGv|J_%Py=LSwZ=RhCTyntPSa zzz7-u#8#nBKn@V#<)d9jot*e`U0r;>d47t{-|67)-nBE5&L~q!9#AeWfZtO2?&E-+Qdj z?W}vvxiIR;+0T=VAGg}ihWwPe@zc;r(Px1naZ(h{Z=lZZCv&KQ%}nnw0cyE&BPPF? zeQ}?fR5sx{*;S*tTumZxYr@bByo#csnG_^&cM)+ZtKOA37iJQyIxCq>f`GvGf^>9! z`>(x9e*7k*2Y+GdS4f)oA}XZA;(2n26cy-Zc2%J?3Bu6dZhMlCWON5D9BxCer&-J! z^_B@YR=QB9U?Kr{BV=lU0tImCjT)z3{q`2p%=$aI;;PhM8X*9_9B#Ej#>4=)!C+Bl zNK6z^=D%&goHc=9^~!r3wZOm< zbR~y=8B@w($Z^iL$Zq!Y92Lf$%<1v33MO*b#WCr9f6ST%UDP!qOM9WRj~kMtlOZFj zCjn4gvE{Qni&Czif2^3>dYfa8%(;|@rd2XG+XXgS zX^snzkW`ZXViI{JUDb;(Cl*Jcyb!Gi!aM|NHOn>vQAd@L!gJh6(qX!#d zVGFDJ>}(>zwpU5QGT;zf(hD{Sxm4=Zq;F-8FIfk3HX)RHbF!SCZS>*Iv4i;ucRNDx zT-MT2yKDDlJzvzPlpVIS zr(07=_CIAy{fb+Px~FA`)0uQ)T;0?q`%PYI7)5fdY-n64U7aaE*7DNyBImAqA~~+s z_l)@b+CKgE_O~%UhU!eO`zy1jnAoMvCqMTK+n}m7A7f^qZ=D)k02-+2%Os*l@C?wc zDP5UNB?4edofXKEB|u0*U|6op>grO>?_D-N`W*XW4jQ?57_^&GLlq)}v$E7;JYErw zy#vvDtOP@cb;advrdgRY%c8*>;w^u zh+eTaN3aJ}?89Rd0@>r>`q+cK0IG#k#?aD3Z)$UgUZ`GbB&r*lA#dcGk=-j*g~-yY;aZ2OV)gSc(dkTHmwn^Nwl&rB zwGNp*6f{$GCK06R%BDdqBY&J~Ynncn)je34v3m$4Vw0F^g5CsvqrhR zb_WSrkyMp20AuF*w9)`A*;;Zlzb)qdvaPi!XsQ@0U&rhE>C=7xkm}dto1~7r&pog~ z)wK&&ahkh1ozqiYT?23N<1A6}7Ddtw#;mT{MrJe=5ssVj9^XSw^(^OCtE7}tJms2= zHXwtfN67VJ>fG$-%2aQ4%+sy15nWP%Q+5s^L+R$z%)*!7jMb`n#MN8J+#)nE_;akN zI5>*VcRys5fW7P0(hy9MMmUXzt_@aOrurV_F#+IJjM+Z0S3w8x2LKSe@3!*V=(&#< zKhBlFpc$E&SW<4Ns+dUt#bij`;T&hqajWX{?w-cJoV?>hv!A1Gs81lIX}s)lv&EVK z5}2aeu?F*QAf`-|nXj<79TW>xduP{}Rje+ztjm>PKf{H3H+C6TKV z`4aGrG9R#EkHKEkLg(;_RmRu=2u+GT8moUEUIuga(#bhM=eudcx-%rk+`+o)4A>ij zQG%TMaG0i^ZU6vO=R?@v6}Ees$pbI}D*&Im0mI@<@5~WXRMr?LzUTG%b=-?F?mx$l zv1RZ*se`fNF6eP!ga$n46O^&7ytL$g0wPQW;P0S?i_Lg+{ng?V&iK9Nq9Ue5yZ3j^ zWZmCna@zvMfx~d(-U-eCOx^v$bhceq(htB`ECBBl;M~T5bC$Rl*{dsbPo7*}`|Gp% zknHVie@{&hMfmEZ-Wy7~>*j(3Wa&LBGdHD|wa$NlB^4ETffHbQVhHcdB%W8t?XH!! zo`=11to~&`{MOdF%Ti#&m#QYBsfwok&no49qsR~+yJZMmTl7d}S2kh#14JQ~0-xmq zZdd)}H>+(Z(S3Uz+N<7V3DTi+iEwDN2ph@kdNJpvRpV++TRY|LyZ5~oY+GGW*=^y2 zzm7`%_kB%KxYk-leZFxEBqmouQXYJFwYjdC3 z*EJow8)nS`004V8>!Lv92}BQoUjP8lgI%__<;l{M&cvAIT*ay?%8blN85w@JBuF$FUj27j`Zh3HYis|XCD_`y0ZooxM^yzdgZBhE>O#Nbe zV->E&1dgh+rGw?x+*A)(u@i{ZCF9Vpd$Ty}mYqu~;^J(%dIvNzSz4b_^U9gfxoW&j z2~!SAp*zgVa+eXuM!RR^o=3t=uBO0H1CUNeQ5ZQFr_rot6%>GC5Hv^@gt7#4eoC6I z$ssg~102PM$mQ*~_OK(-QU0SAv%ArosrbEbzo5@uG%2ccJD7GAoz!YDV_yCz0T8vJ zjBAXx}-eJHHw0}^$`O<-GPj39a2x&|bm zVkG7(it{@`XTBD~Rrb(w`O#bj3`Q~-rHgS$s;XkKx9whW_a(UWBP;au%k}2OWZY{> zv(x>N;!dQw9!flxPknlEPs{z$=e#v};o78TWZGvhmUY@)PkSeO&&8SKN{nag`}?SQ z=D5698;^a{Ffc|hV^vf%5&wNej@sMzuiu1zJkH9a+jf@E|9@8q7?iX3^FHC1A~P^B z47dWOcaBh-^@7!Txt@J`2P(uP001Kg)!9fbX*H%SO|4+_-nzJs7VFr6fK`Ab*}Cgv zZr1>MX$6JWYN_X4+HjgRr@1SJt{`H3a;hD+IbN0YlNB zR#mQcapPa+X^ZB5lsB;UCnFCZQv(UJ*K0#s{#f$tX8Z3v5Rm4@$Z`AT=D)3JVOm~2 zkQ`UX0lAK>)MauTL#*XM}>Tf!P64cVki3zY?%+X+kpJ#_H;ZB{F}mxUT2{~8htJ8siBS*_EoUe;!<=r)vz z8m>r!SPGSs-#}7Ob@hpKGi}B;`B<%_qG;3Fe6|@R?H&Skq6b?FYT2(8>_9{hk*%I& z0@jynL4~RSy*)kdta6$b$(?5+u|;*B;sMbk#)dj=LolFcd8TOjnUm6A`&uz0n`W53i>|0aPGknM*_^WqCl%RaJe%;)lmu z`n{zvaZL5&mj3%O*`^0GuI2YanZ8f=e<-b`^5*P5lEwkC`ckjbsHE#;>ZcWQYFI;H zSe#RF;Ubx52FQ`B1)G*jkL2e~-%RWA!T|APW#f(vI3u5nLvm|iCcm@V01o(16h29k@DG@7r(&Z)&*&Q~_bqW%eAP3w){mXK&eE8(!=!tpK7aFc`6myTy$N=mr4$(Mo^^pxfz; zvJ1^1SrRMfswyseG?$0F^A)QxiSO*VyJ0Sftql&Ays3w+eQNCY{$B56%(a0ODONN2YmxDmrD5+%UOU@ZA>N6LR6(AE zah=cgwf4L(zi#TWjxt%}@l%q8GR=AJ8Pol**;&*W1u$IHKoR`@`nJcIV^8+6*PUS^ zBkqRI&Z5%px3hBRojvcbCZmW*)hi{Qilo}SETx2|s`Mndiq@S;q07psl;TUDm7ZT| zIwGBm0a8TvP;JK@?*SUR3-PZAPs8Q}*HJd-L(Y*oL7^M1qe=$nL@o*pwcptu81jM? z$l)MAQo>bK9y?k9{wsEI0mNrQQ9bbwhkaQC1OV?Vy-YD^!kW`8bIm)cte?8i&CqpUKI)xZyp0VB57E zlInY{ntb$2jhu(REMZc+aUk0nMVvL%c5(MSIe@iIT@opi|y=Z{fFW4ECxjM zb;b>JYs5Z>;>jcvfSq5|Ve?*NOk1Ul$=YD4TG+#F4EtoR%P+BJIorU#P&}3bJWf=Y?_PX!G(yI5UaHqCjZNLIAf6mI1JXR{+QWK1}Z85^RIM zbqMI~7C%Q01(Xg(Um3GYHzHRwhPkEhTPtWD*6p1olgT>evJCmx!m0T8;|`{Y^{&3?VW2C4~x6939hqd zzwWMXR7G|X=h&xmd+DtHxIg~*b!Qbfm53`%Rt-Zb+HpsxQi;fnp9V2E@hS4{^`uA~ zX!ZVU%bu*5g8*ofZt5lF5oBgYSuCv3aqqQU(KT=iUe4zXtN5vbl0Cv1 zf3R(i`qT6D4p(83b`97vtP%*o9WChJGN0b-vM+Q4{BwzPfHVZ>Jcg`+WtAg&AmoR) z^_4$eS*e^Z!$d6E7S@7neRos5O+5O-Wm!Tpwly69HapgJTcHd9s10j(7RWMCF%ssJ z$9?XeC&hcaznQ$>pB@!HyVAkATMqn?B}dXlE*Fy=i{&CvL-FG%>wcAT&+qQz(I{az zdCi->jr}D#fA|U?uOA0@2fuepJ=tH34sP0?%FezCbDt>m<2x!1otm7X?$w#ITBEOA zi-tCwaU^u?SEEX;iePiJRS002NGGXMYp004=tRjo__ z0050-wp)KUH#j#pJUT%^LO@7I|119_|1YW`X5W$CA9?=#`f@WE zQ~>(&tEO$Y%lTY;f8fch`Q_%e_x(7Z!C@fxMLtQn>M@)*WaCX>;;!*75%C`&VUS4x zrZ%8iKH1{9{K)z8`s*^h0L5N=KYp=ua!MJZql9wI8Ja6N6d^!8muCvemR!_%MCOeZRM9US)|5npm zUIJ|CO+?x@<3q#DPe2nu8Gyfg+i>7+tm~&wIgfq+a<6eY&irzd`R1<9{Iw*(U)s=! z95QVduepc~RNtT%(X1QwB74`l9uL{*g(wMu;k#Sj_kWzH^!0z9Z;1UiW&O2$f1Uos zE7-E=^+e0@U9O$WtD30d`Ij#41Y}?K=fSq6WH{^xm;j;z&H|p%*=jT2q`aWg`92+k3`@Hj)puBjfoZ^Ej6G zBvF&8-YJ+LjA5EoqQ|h0py{)y=g^Zq;hZ6u@Oo%4K8Q<8<;B45e*CQa@K@&g*QJ*e z1c3y%6-auorfvVuJLbJslSUG9%Y=)4y)Vx-d|f1Z{B^;RKfk6c5khZBGRH!dlk#cn ztK^&J^?~=B$JcxDj=tZ|n|jsMS4ooIDw$BaDw3bcON;VbQWZZdp)Ft}`S;2)zBb1HRJ)A~nW{EK8Sh=cdC~i>4T-*4s zr?#~C;_$<)^ZGHyM|+Z5d-DB?-AAVveg8bXBF4MdujCfcNj{u@T{_F!ZtJ;^)>Ejr zpS0Xb=u}tH3qVpvv~5*5UQs**OpU0O7C;So{flbHNRSV80om;*juImpXTwX*OmQN2 ziWrTwNS+~^uE~ilq$rD;TlJo^Xp4(G9>|EPk{0aPN#Uj-sb)Vj5ViXZiJ|2qbl!`| zLF;>mNZfEE@12BdaC>+W;~~PD#7)m>Z}!%DQzF~-{iLQ|?Tig?syY+_y~5ET2^1On zJbTdDvnLN0tE{SWu3*PwdrYf7KEBC2>UsS7%F~W1=9OyXy`L-v!%i`{;+ivlLMpdh zYN`;^jPWq;_woADY4^IuOl7|Gqu%D+?`y+#zccpUX8(dtg>&jnT}u&ENM(hdDc7{> z*TYQb&PzF>a+i?u@^fA?{ZO+q1R^cfc2!b}W=76sQb1)bwAUe1(2l$fvsaa*WyrZe zdBC*FRJjBgYi+Q{5(*@Pg?mLmf98{oEXBqMBxp+4q0lXMr!IbmX!&FOSv-MfEH;%$ z18ukR<9xeqM+B&X^FDQ>u4zdi29KW^>0v}xXJ zjybA24|BPGtDMDgjMUK*kdTn(VW{T1hzW|Hdv6|d3yC`#x~pf3WFYhlb{64eG=Nw$ z7A4?}ZT9Z6?=jCP1TjrBvgXhZ?Quk_#{QaUqQO_E4jRW0i_tM524@u(MR-Mwglq zgjL;ewc9KoVp+yO!N%41OnMS_M=BWMNECZh%21(RiGfS0RRAG z*--#6{{Vg*HcbZUpsDaBdtG7y1%U3hySee#glTU*}9tM1b8 z;Y9T?j<~ApcYd*LzVpM$TkT?fJN>Ofnp4|7;{JN|ZO^fMynVmlFPSQ1_J56h)rWGd;Yn6+lb)2>RosGiw>GtW5Zeb&rlDy9^uI&*N7S?kl~ zEf&(f3;WQOyHTnsljKSbc9Cw1=y8-3j$N}QS5Ff}Azmpkr4a1lGNY7Ay30X#eH9CM z(iYW+tC2%DO=ky}r7`ofW29AJ8Cd%|+kq&0MoGvfR}XAg1Qo+H7EE6oZsC%NZhB?_TEIY3|L^^?NVt1K_ls` zxwpL~b9!dUC79(ZR^<{3kg`7fNxP8v)RFF#xs3O`uE&0#Q%~CV&cFWphif1AM=l~a zqwQ?%WTaLGgRfJ`q~~d%Z0g~Mo>3?7`Y-NL^E?isrD~F8e5fik^$#uRt}zKkkFS#A znv-$T%#03AO^`4_$V^VmWMTGvjhTYh+CHo883U-0hhvmi<(#qDODj_5g~2bI0NA*y`*#C*}y6Rz(LHtBZW-h$ocv@Os2 zxf+t|g1Eh6BT*{bA`k0C#i&@$Q-+}zd$)&ujG;CANw7gp3k!9*7n1tcx52l{#i9Wj zSte9WzkECO+(pldF)%AW40hh9SOO5lJlyrs1k)e^>thWT_aW3LGcz+ou3SUqgq$NJ z`Q}-7{qA^j(mZMF!~1kvBIlbDzpaBB;`bk4*|au~e8020o|9>3J&*RIJl&~&b^2Vg zd1M>LY?kR60x#Td?Bwip-EsUlZ@BJwYWjADtn2uZ~%1H^op&v zWQ7idK-iXSwD2xw+62$MDbu6A>CYW^WoFTwkKd|OUoIf*U6v;o1N9L*vMdt!C{^#q z3uHuW5m@}+`C_2rUtHyH;Aj`ijGv|kY#S4%?0z}}U>qT18IjVfUoRSVhf)po>uesg zVoKpb0SJB!PAvu|0L;bT=u=<;V9$|3x6?D}?8z*%T4h$nI)|IQ?miChY&6aCOszwl=<%T z)5}21#{yss7-0fEJ2nw{Ir+YAOy}JFdF!SR)pG#>!`a=_@wL(FL+a`mDR3AAV5}8b zJ)JX;R;Og3&5ocfesKgbt2u|OAif>hr>vB2q8r1mB)}49;{X;bmd+hviqrH5U{61++`vVQJYJD!PrrKrEMSk?e z2KCon!%q8pk^O`JvL3zDmtFj|0s~8nzMqyuZoiUhwSKLotLJy)$9nbgJlr1tS|oet z$(ibjTXZweef~Q4I%U2&NoK|wkJEdV+bp;K4X=jyxuMYY?;ynwE&YZ`! z0=W-?^6&f56b*kDa^a|)^c2}L6OVN{!iyr6N>d$HXJ;8^3Ys<;TUG$I$s+5QXvVMT z0O?vdbknIg=h?x%2xgVD^rjTkZ)&E?j2y}8Dc;2n75l?oL4ghRj%{13_ zlVrHPuWGN`%%j0%2H+abJ;V7=>oM*8czFK$^NTMBb%~IIi->pYf?oD9+bX?&E(BcP z7_O4*#^k*80dOG|fO8jkPt$#0wRYm_Z{zdli`xnR{j;6B7)pmgGS;_A8y?z#%}J~_ zZ){@?H}|Cj_2C~Nl?uRo1W4y+wde3yA!u>yeH-?j?d3hYc^=GpIjY_(W&C?(>O_eY zWY}#1Y+p~blG1(2DSNzs{^Nro5>$a)XBzmCeHN$L@!iN*&Si}I!{14TLcf1`?nY0( zI%`z`Y~utOxok}Cl)Lp7Q8s;KlMzE;I{JFQDnH!5+`gZee_#9G<6M*RS@v@Euc}q8 z*g6)U%eG2H?y|l5FD6o&=>vpaj*$(*E#o70+dh*iW#HY?Z>>^u==sIoOZC2LdgQ#G zx?Q!`n%N(fbX$_hkD63RpLpZ%`b7V4^|0@s8jR(FUbwTdtd-{7%IPtizWYp`0=^3F zzqdaA_WArZ-hcnk;`8I2r+?mO|6FRXE}N&SR>O1Bq)EPheKEJRB}wI@s>ypr+Fw;k z{<{QxWtJoV8xvgO?)i3P5=*Wb0PfpOzQ6R8|J}#VJdyVf-gsAAkN>~<>yN({SycJb zmQ&uP{%b2W`bg5`XFd07QuX|IsZ{$lNu_=dgkcm}jbRPhY^`K6$qam)c9MRhO8;tB z=1cR_^Z9PIMsNNdw~zi~?oU*u+3QFxuBwuXEWKV5SHGVV`y+&1Bq9&H2%`Sh&K3yG zQWOE>LYijDuhiT7+n3w(-@hMfch{%qyCmtUNtLWNP4!kK-IbKRHF6Hes;aL^ zz9Mv4Hlc#LuH1_F56}z=`@lv4P8`0Ast0|iulL?rPyP2Zvg^E`(`M5El++pm0<@?ucUfpfyH#G4D*Sx{U=F?z(-)-EL=DK22 zH|pSMMtS@C_tYG3%WHd>mnU&n?#gAq+BNsC38o3A(!hX}HiegVUS6H)b(m_=xqz6& zFeJJ3IzbMDgwzo+f~h7Zvjk{Nbws3cO>Lc7SKFn|VcZcptH^9Ys05&JQEn7fj0{dX zYOexnhVQfs+KgIYV z>nhPD#9>>L^sAk&>51jbrVn4;jhx$F7gbMUo5t}|Ej{+KZmfcIM;E3hA#qiC_!${l zZ9Dp(Ns+Vxv9JI@H!@W}-{k8T6#yRG6%_^(AnQ%!aJ^e>a0J4H4w~mgMc5;g9wl+e z%2icjFa;N#ZSeEzXTMBbe>c$EDy@EHk1J0ve^t%LH#bS{Nlc!mVC$QMa817K;R_GX zQtjjQbv{yys{ZQh`uYC$=Fc<7u|9M43>P-px0-5{-Ep>WvaHP2(K;t$u_%l$B&u0S zQtqiAtr^rue#@t)t#IO|5lzN~WA|&$KISAESj`f^QYa9SA&@=N%+*N6%JSR*LT@on3aUsn1+K7z zTQ9>VSyybdy;E5}7+H6!PKPQw{nuQ-zEtMxCl4ye*Q3XlPHe3&D8a>~b@bwl zxeSa~SMI8}ULQL9(%sG6HTOB&zT3OE)Z5!`j{+*obpF;&D<|q0bvwzrO2tap)73rG z#J?_bp0_CxJI3g}pJS_xbrZ!zcR+a!sfyi0P{J{GbfEq~Q2ekGTBPf`T{Ui{TX22mjB4amZ+T@J8d8YDer>9_7jFW%VM+bP1y z%r4H!o2K!kipCC({s28 zr#VXf)Rxx!jrqwq7E5e(FPXZ7xp(}YC#LC1HaR|I)iS$j^$?FS#oQi?OA047@0rup zBif}DcdBogCAO`kC=#fmYgfhaE+zXI)h8lNEw!e!E&v&AnVjsp@GP%b!w8;*H`SF> z1TCt_ZBC`qg^skk?xlXVy$I45R#&J9FRu%~=ck3B*}*skp!*m?{^{==eyWtXJ#v*z z__!NLzQeZrGGmH?D--Od?6qzlAZK*Ap3BV7IvKvcuw=k2Mi#e`5yq0OsH)^GAEBCh z)&V~J)!sxY8g!7c4tupX2@zP4A*0^bz%F!VW~r*Gsw|TLhT-HS`Fd#YtnQZA+qKoS z@$Si!ci-{Eq!TPnm50<1()!w)+T8{EVoN@0LMT$zdOy{qkf1*vvyNl(Cm_sUS=gv$;&wF+6!HGS1&jrQ8!uDs|WmK zav6XqoPq#bYAXE>r0_)n%;ag(-5xp$P!OfkWR?dJ&qQ$qN&uFKfy8>6qRDaOsp?NzOpEvWi zJne6CvkK%F>xO=P>@eWdzfAM&&Nv+KDYKRBt>+QT4$ zr@4QxW|kEun%EtsTNiJq>p}2(h0cmrA+&}9aDMcvn zRqO3--Wtu|yROa}gjOlGOF^ZZHX>s2LthBdXv8co`O3ai39-DM50OaA?WYybt9Xd{ zm3c3;sNZW+zhYFV3X)ny7AO{gaqx#}VwD_N2+J5-ks<>CKJ4}01ug)LioM?Zz@Y)) zA>SZyYH%_$GYe+brd7q9GYKHJ(@_%r^=w)CS+3pAy?B_F#3T@{^9MbV3<#l!he zdo%T|#aW=5Z??Pg64zS!m{Mx)vwL!ai8z7tsTpeKUdaVFL@(VbRMhh;0tlt5mJJc=qPtgA(QtEZ~fauQ|?BjxM_M?nHA@T{Bo$(Vjvj zdZQGTWvPuq(h~DkNz6JWa=hIp$2&KVA>*(PVOrg>T~4DJ}ja2C5Du zs>AVFFZJ$@>5+Sw^4b|C02b?I(M8%xcYzW^DVPH(FoFp12LQ0#Jon45y!AAi7-OH_ zGwMAnR#~np5h5U>Po16{1AhAPmGz;jSMXxrdyF^QKMq~Ega0|LyPP#^#Ni`Lza9Db z%|C4~m^ZmStna@#7!#gpb&BvHneB7#b2s~*e0jVN{qx*)G`06ov(FsGuGO*65%t{t z+v?Wjf}ym|5@s&HyoIjQbyqcYhD~(nx2YVQ1wYu`RGs###+Ya9^&FE?nGD6-;EsD9 z@2Ym~ihMYmj?bz#J!j~OG9-ylrjD1ANgJEM#;8&$ma0&dUU!$@iOVRlOv_{s#>D!x zg=*oEmm?Pw&9W29t5bxH?nzaeZavE2IGBs#v$R$ZGM`>H?@+x8<~cNx3*WtH)j#`9 zS^5P|J?SQcMFbdISU3*A5J^G^=?(MvV%!33-%y^iS2exTDby?(k4*p;(@bgawhTK7FAhA{mZlzGU2T~=FIf2)JBNls1>o|x zt>=AT|67||;cb-l*RcnbPv~n(dgY4*)ZQ;zB=64vRAofGFtacNyzB><5QQZ0eFNCM zJo)7C!l+@tkH`Ix|L^Dd=jX4rp8ed$YbVPLB-!kqMBXX=eqB4Fr4X%m(tP;>0c=-h zsCQeJTRiCgrOD3@J$g*0lmaU`!98EUpSQWwzn-&PTzPr-HfJv$Gnz}&GnJCOo;uw# zN0eUWqp#KSq>e5DbXjdszh#l<=)Rg!a>bI1EMl4Y@AY}g?Yut>OEnE^+f(r7;aGh6 zZ!cDp@-dpS)uidI#`Q#*6DrA<_PJ>^RernH7X^A7MyUn}0RC1n4`M(7poaYg0Pw-5 z!Z#QEkWpEB>8jjNRc3>TkP#Ylcc-Vwzm67m7EN$JMg|`1kxYF|E%okCjx+W`noD&O zoZbJ-kMFVE@z<20G{+v=A?5zt`8B)$h@a>D+H=jTuc=xD&mfJ{sf>7oPxUQ9Nn1p)x3<#LHJkZm6JgMTFVF7&8W_>=K(8sjvwEzPvr10ioTX63qMP9 zg>k=f6>~ZKSHA1z&GO>Wk(7nkTipHC&S;!`UesMlXMHgYJ{mKh_Vn=sC*tvm*Fm5D z{CvwHGwW>*qjxzqt4#ISzl{EVI(TGYqTf0AByYy53yOK6RWl`bjZLS%{qy*de342e zZ&qgBO)~?y=&9o{b638zHm3D@dQLpm)ssNAf2^s*QO{l`FQdd|Fj{Sa08iHbo_?Dc zyIlQx9lEPWy-kb1J4*@dkz*_Wrieg1!^P{eCLkFDNV14#C%LbNhMgX}^GHjq<^7QS zoCf(>UVD2Uebbm1y^N<;^3TXvsQixq)n0c|)ztq}rNVzdRY?UZ1)fZfsfH|=gu$dZ zACFCH5qW_mqnHIf+Kd`?f&1E}M6<%^q^Xr443#j50Q)f6-5HQq_x+JHOUUQW=jDI% zbf>DBk5f(0ANM{ok-u}ar^oL?gZ;SG+@nJUgc$@#K1V(_Wa_CCxyi?G&dOdt?n`@#A{g=Yz%I#JToL{an zPj;~U`dCiYn3MS$ZhN}^*0trnhcm|er!yb#HP5JX8$S1*x4NSzKL8j4oSskric-;h ztyalsTK71%_TP|K8%xNR1zZ>;jJ>_SFPcms{Hm(T5Wl_{8%r}X7jkiFytqz#wODIUS#5<9 z006%0g|Wo5V3K4D8N0VjosSqC2yn>Qj~a$84Ph88D zp6ogz_Vdq9a^IM+c5TjUv)|qAQPdps%vbuW`!Ubnrjj}@Kqqskd1~&zF3%6I)}wVV zddXpZdf((t0a2$Ft>)Neza8ydyzTRM{bQT%=Rlo>PC!rVKKf+NLjHYdqNFN$lhf6i zL$zI*Wr<;p-;@3jWDH<|y*ebt5+4->RP15Pr0%PxfJ*(63NiqaUR!=zSkZ4;Q=n!} zRn>opKmJUS3;^(ANOMsoP?UNXhTE>q%1`sIHY5i}ZXykIBzFom!K=Q2z{ti?D6*ZK zDxer+*%p>1uMz+N{`)o2M{Em75wg%rJyud(Bv~r8 zo_4udPenCddA>!{+!ZeyRo&d{*UpU&125A#d2%eaFXuu#zzdgS-*JdcdpbgcWG2ZrD?f2Wh)n0aJzJS&nnbSZ5#0jnAx>gY5 zefYbIhx4)b{rkljenlcd_L_%KRfR8+TC|mJE>6jVhn|P^T%Q|fkg#}+jD-P=L$pW+ z0Pyz!2&iN!A;5qh8CXFPfQ=FIE2&CUh17)C!&n*R1450iJ@1uN!K0yT8fi8gcR2qO zlu&tR`^OrIl_XRpbsBea8zjZL5a=c0r4#`E>!l?|Q-P8)jxuuZmL(a+q5#Oa&l;*T z5YY85beTmZF(Fy4rb>`O1T!{@M1;2RHKW*rsP z_4|qJD%v@XaL)Jp{rp-W1W)h#N6~a<#@j*&n;JK5ds)Ql`Jrw=HWG%{XiD{^#+}Eq zvs2wfL{jQE5~?EkDoGxu-cVh!k5QMtpyKxuRf&?d>o?a8u^>JG_!S_KF(57gn@Q;% z0I~$%ayBJ-?nHC5S8;p-7RZuKth5DNqw+;kDoGx_$Tk1~0RHPWMJDAJ2pOj=pm!_0 zh!`7`2oq2aeZ)`U8*~ND$$8sv5IM!hU_KDpn}9CZ2Mv+fC( z5^TH6jJcn5Q_E>@X{&qqua@d+$sb-kymI@@^yIko*M1nMrc2hFe6*FTKlMd-ompDM z_fyPO6|;}JICEdl{CeC=u+RK>eciYD{o(UGw}+3t_u04UT*j_3^ZRG{ugqBzuRprz zB>^CTjOU!HIawL=xsBfGmmzFw((rBsEgukB@GkIO)k(gyiY?+k|kRLUzUs{@Cpb?^hn;_@Y-MBe%lUDzuo)89!=bMyY?uh zQ8I%G#ZFbtW>DZ>BG;hPgzUI#7{4EH48DCdt{r@J-P!T0eScu__38F? zkM*b5hxO}vUWSMM-#%xK?N%{&bGw^Poqd1!fE>>AHjb{EW|;eJ+;+W>^%!nF<<9;f}-p=KGd(QpsoGmhV?i(d! zPVcI&83thZ<@lGGN$*WC$Mm7{Ty-M@02tdc2w&hi8Yw#c!-9k*0eU4g(68|+(`w)g zaS_lGU{zZi`>8Q!2t`F$=IK5GmH#xWB5p zp9mmfj94uU=qC^$oOMW5@&wotk2?SRH+6Xj09;ooiLvV{CaA<6U;XAkucd1+6@Yv8 z=U)u(>2K=t8DGxj@ynT-m44IN6bA#HSlSn>7wq}Je+5igF`!bu>k`z?^n7jV)4J;P z0u=xgcDS;dLJarVqdp z@Dy;r1N1*VvvT;B!eG#!y_a03(T~yU-%97xuZP?2?^iAv%M%|f{c@&UieDOO()Ok* zk;qFgJk|zWU45B}sus>(6xae?A$@6IF^5_|S{*A-U$ACivieAzLE3<34riVAhc@L&?$ zcJN4}QuVa}L`}0m<1j>E?Z*OGE1dbFath7U!{V|7|rK!B4J9_-cwKxE+}DBSc$62;|fi`#ksn3!YF&Y=d*aVpn2CCogCH`28~P|GxMq3qE|< zC$;|c>GszD$J{6H|0C75*?C%6KiHQtX(o;vsCPA0)qd>-TvJpL8AYW&jPL_2c^DG= z@_x7Q<1QC|Pw5(z5BuMkf7O+(gTKU_pFX=kxPSU^&Q$SLJKDh?7f~-i z)RszHo&maQB{T)LIS2);r&L~ILT(a}6HLDV0OWz1gQw(JN~TsN6sxMDk)zocSNGR# z?!6`Mxngt<8{?yC(Ld}~Z^fLgbMImD&yObG zm#IFwsF(BPsoryGQ}N8x=iKj$z%BbVz4x8_$q1Uv9H2YnnRJyjj%82)kF z53i@rcw4{l>8PFO^C{=;_4!>V^}Nrx;?C+Bp&7tQbtgq;=3AF@_*}BpeLVh5Hq_1d zE;>oa-2#&3(KVhS-<7I@hO8?GBS{$Bz4@@Jg177D(Oh)Bs+3Zas$X?d_eMwObw~F2 zRoA6zN~g&CN{SdGkU)qLdmo}P9kb)gt4?kOT!Ii^ScXka7chVtfY2l0`dBUOj%#d1 zk`C4Gh#gIzEX}&{?F}BRH5CE_K!F3rSyw2SEkFP~%+NrCP8UpK(4`S&5+O68p{f#` zV7^=UK3Z*<9$b!n7WKNQ9}V2el6U*o|NDA-uo5#V#_V6Nqd-o3xxN1N-gn!# z5f9H}Z*k0d-|g+(jPJMm=>PTOoNghn9A}G{m-Qv?55!*_ru^(0+MYOJFta2 zXl+)$iIa45x7Q0s2#^Hcn{^R_ZUGvg*D4(a-GVBhtjsNc;S;Cy(&&tcs4NkXtEyW3 zr@M2{R%KH^mSm_qsgeAfq3!#RMb6brsrHXtR5(0Pc(`@#Vanz(b*uL9&%M+x%X-ea zq>f?Mcj`zU>Ye}Q>;0VbIM0t;ZF5uOp1O~(9y4yen5s@^?%|S8BxsT;ALe$fmaO0I zVqE6i_rY9odmI0so4caj;6S~*8Dk%3bne!zv-Qcz6mHmc8~tYBW)Ne{{`oXc{hUXp z30@azaf3+|L^iru*d26%fr#(^CjQ&le9@FZ9Fc5((%LG=iBvoLw zQbnZ-mxAF#1Xs9Zch5!1fC^$Fo-x?*18rwTaSF{;s_uwu9<)wA1V`+m80nNTrmrsY zmj`xQEW0H>T=fNlj)2ery-*nm&<%i%6LTDK@QfTwj+CvTT2(c)=;iQ!v42gp8u97L z8}$miRoJb5ieT}FM}PYtRxcZQtmMsjtK?Iyynn~KGw@|A*XKTMFS*@Zw71LK*JjG? z;r8a$ZLZaA|Cr^==XrMTL+|pTqlnzIGsipW^I5)2WZ1(UB?^%#t8GsddAm#wH$ve zqb?qHtCdZF-39>c*DI+dFirr0*q>)K+mGnuHPy7jKJ{zHvj>)V&H zxQ{7yYMZlLA5-sVjXY)SzFNJV!9M5g+q|Do!-tcpUsH4TXP~<9KD~fZD}gG1T}>?@ zy;U8NBqZ)QvJr%Vjag5a!>$)6BfBs3+8BslL)`3L)2ov64-b|kWF!1GJoJR};q|!v z)mP`QZz7GlJ>1)6wNT1l1h# z^w3N;6;l}FF?-jGT(JyR3JlS=J7vkOBlR+T{rKziwqCj2YS%Q8MlXM=s>H}^qeBxd zlqQk@JX2hPw7U|SKz#vLrlKKd8JN#Ha5E3>UGVO5Z#nwLzc;?C?BhB)^d(t(PhOd( zN`9%V_f}=KskY)}rytI_&w1vB$4hKuMz*0$-xe#Fya0Xh3p2nUQ(ry^F7Pg`p~L0?a#K+hWt*W0$S^3ql_64 zNO1A5W(kR7M*#(t|F3pYsk|(2J$+U_9lk5K(VzZ!?D6!7$J0s@Mx(!to z_n>5Kem<7oVpBf5&+Lq|yU#gq-`frU-F)+@mxB1b6P8y$-CmS7-fZqH9_=pEr}3r6 z?cw`v+qbbVqsq>ld&EVss~Ud2r#5*ryw$ab^Elt$_IVvH#wf3Uy>T!e_hLT2*82Q= z_R~4C^23&|q@MQkZ8Z>lT-`{tgZ-BG`+UAM9lq6_$MA?6e?FgSY!2xrmsf3w%I)5x zf|nT&%B}8e^<9W}ZApUUJ;c2%2>T;2fRMpA1_ab}uP!FF&`0Qtw%;pUM|YmBA7|Iz5_)@+~8Zs(c$G<0ru0n9JnWb*}d z_Iq(bPfesI{iieE7Hc#E%~X_CMP08LAJYYsaq2l6_>yR@B^Od(0#T7jB`NtRs#wp5 zZ2)W|K1M?3W7#sF`!e!nTLvs_1U!HN9uw9{J+@Vfd`-$?^4)!g4@}o!wM=5NPuDf$ zByMTv=5Q-MQDgPHd4Z%nNl>XyL=HJNCWsV@rBVtE=>Rs{#YKlKK@cE|y=Jka$u0{3 z-Y)=vyD{~N=2RdvwtGgLV97L8C7KFEiiI3`ZX$b3T4PZ+^0rUAyN8GE_3S5G5_Pw* z+h*8tHBB^QgWJNPiuU(E^ty5E(~=dpk1h4xKV2T}XJw|HPgTC|_3%ztO}5xjQ}dgg zb7!s5P-m#()N|@$IqYVNDqW?`>=N!guzp%^WqTeCYon#M;9|U?{o}@?q)Ss~pMTw9 zW7_B3$Nk(sX&xSOdwyeYs=8Lc0NDwdS#vH9umUAC`=#n@prF=f13-;RK*Dc{G{<4I zYTh7}{Qw}@5W&Pgj;n@2Xr4h+`n z>{*4n73*r;*n}d-4~_P%n4P;4cIQqLdMLY1AjD%3hLTj}E0u^PwZ_|PR;F9!d=-2E z14Lm{U|v;jr61up0c|M+;M=tVTF33Xc}sXV`_+1OYxrTF`PNH+V@=8X1J6;t<11oo zZ%u^Q!HNJ>-yPUngN(^;5N7IcBWC7+5ZjRTHIsL|NZ)XjQ2Mf zMJvX?>)&5};ZQyIRn$i%ZUbcHR37lNuc6}X0}Q4DFq?gWn~za=AmfyY)j#%EKX2*p zxPAWZZJR&md_4OTA*iJH|9eI{-SheJ#k2ry-58m2*VRzY?%5v?ak(_ToZ$fA)VW9d z-#=b&X9@3sqKUE!#?nYVYElefzdK8`zYzKNjt;b?@!+_{R+drM1_(A}R!W zlRCz$uIowDX`<8ugyGI*B+NjsK{hhYj zPE^vS{iZibwN29d;L?v11~0BgS7!ih-=OmP>Uz^v7=3`5ff?ARfZb>IVeXZ4E-yVi zHs{~-Jlgi5E>Y5^f7OiMWfiKaTDJ96^;GpuNveKUtx9`ZbZzP?)gDg^8HDAcWAqzG zJ(;Uc6e2~L83K*la}GwXsO%9`n z)uv8q)FVHJgG;TRoCm_e`d1sKw&{2vz)7c7bT!qT8%4=vRn?US_Bz{S$nKB&{B`PYyMxNvj!#rWc@LA(?>{vI zc2PhHO-1F})oLq_+0LhN^=>eoAQx$6F2cK+afl;H5=H}$|Njqv1v-)OtA@}dvg7gn zRkvoNxps<0pRXA|{MTBsv{Kx_M4Hsdv2LW;V$`X{{|~J&TsNUxCE|+KZXB!@w$qHq z5m3;W%kj?n>|e!8$bssm4sTxk)gul-0O$p8bwVKd&;j%wQhEd`LE&WP7^AQ@m8={q zRwZuQcGr>{8+WyvY<^5Ht<25Ewv;E*sp|jh>*%2R|E_A!G3lS|^;Wa9-|MMcYBgsibZqpjyk?@m8`*BQ>p>@DWO%wlM}ZN?ey7-L;dvFNUQ z61=+FGYZj-$RN5V8ml%knr501s(1js0!3sK@~v7s=W4#FZOe{TV>#z?j)*K(AxUo( zrJy{-F-Z~(O66i|j;d}s3k0e)fh#;FTS1@;RSdQUCR(uTrn|eyB>_(IuFY!&LjU}t zRRCTLHVrljMMZ`hTCrCr7+^qz<~fP1cVm=Z#%OZI9CKC0h7ffxfA>l__vUSgN-KM; zo$`vX+6sN|;g7%j?45yNGdlFXML*ZlQ=*n!efLtDwifL$Ey`gr^sX4^RL%Zl$vP|V zk z9uOKnz4lCJxTsn)*5kji$3D%mr^_6cy|s%JZT4zarKz^85=`OhtX5OUp(NF_8~)C-0#M-#?mCBK za|3b*|IHYc-E;Jj8Bkf4Rh7U>t=O9ebi9ALlA3t zn#Od-#8&6)*MHAB`%eF#_XlI_F}5G)A7eQhC^g+PR4uC~jha>a_$Zvzm0bg4y`5Y= zUfQa-R8Gy>(CuEEi1Dy4G>aKpt2+=hm>|R<3TYE@ic}KS#+54cy{ap8SE9iljMZKj zle>jESnVI_957GNh)Dlh$qM_>4J9R^M!yS87#E*&eQ<6u(@u^Imo8JY26Gi$E6cCN zNVOWnPAXMN7#3_mGA`aZ-!%;>y8!os@FUC&6@L7UUIcqU&_kA5-1Sk!WD~GJmVV^! zv-}1@a-u9fGqE9Q7^=#S5EQ2JzFVcn#@*$?#Z)d`DNDIM8Aro0!+y6d%SNO3S^0#o zoUYBKr)xYdK9kI)IV>ujt?nzK3BjHwou0YfL#emtGI{8zuh_lxX~@AH8(lPbNSK>F z-0t)J%xR9%+xy6RzdepQ7TM!DbEoWz`$$e12x70&^wxcexX8A%3;wPjI>F8EOm{f>Y|&)(dr62wDqJC&ZPDE>GtyI{b|(Y+-YA$hOnoTY`Dp{ zT9wt%TywRn`t&*+oSP*4-wT`Rn_9B_Z9VLjYD0;{23SNck~g5l?vR_zn+iB zb?u?^pL81c>*;)Yx{sj`h;T6g09G58&SXdruvmfFFw`z&BZ!G1_$bPgUe9=W9Z&h| z=Mg^l*klxLP7nHsl};BzjBBbQE`fl-VcR=8K3v8rd+_RO&FL4K%${-NN zGoQEIk~kDF9S!3C<=Zx2FV0d^64p!WARqet=+1YJ%_!Z@^W63Q&Z~_xMm=p7$&c6d z8F!y-%>&*3<>}7%9nSB`wG7n>vzrPHW7iRE(wO~yq$Ip2jxg!Sn7|;*BEOIS^?Ush zLjBlZ3u2p;0wJ1^N>Qm&_&WVBD$5qJ0~`RdZ5%}ah)OLj8J<)1-hqmlt#jWdU`jLo zb50~ucgK1X3et-CzEkfRr_xcKOFGTA6xsr`%D+zlL|3uT({7w5o&Nw4rUI}U0Zgwa zZMAg36XjR#dod8{T&KLO6~jahL{`S~_gCl_C#^zyx&UP5T<-i9HcVq5AOdFv;Q0aE zzg@}r5k*s@%X%2Af!6SAJBpv{9m8kol3zoAQCm}4JNZ_}1Y}uVna#f1Fz*5AWherm z+1mv&Jbe7a4;$px$N9_OW=Oqe|Ey#l7K;0Gd9O<36vrNa+-<6{oTH*E0AyvdzeH8e zpK<;H*pw+C%>Z05fSswEPku&6txm;DbJU3^l*KwQf zLw8!^D7G7>e@oRR-u;|EZ})qB+sD$7^(~)7CtfR6dgPwS)N+~6$tqc^np&sp?e5aM zgxT|0)|5p$yGU#8rVBHSMxm^Z(*i28=#e3(@i?n7w{PZ{9Fw=y{-bxyMY(-D#^f+l zrv%kWx*qlA_#<_j9_QFG<|xhcL#e|ECJDPl;oBX#lTnF_^VxI;qDf3(A!w#YV?w0% z8KJi!Y5o`xS}Y_hv=xT!5FF}2STTV_h45{~=(4@18dt$7CTyoY^|6X2yQ zQDyM&ZOy$q&Ta)wV z(8XhLCSCoIf@PowzMky%XRXKj*zTC4fFLCwcmwi3tg~!TGc_t5t5Iec$&QbFJ3v{e)u;_H~hD~>1W?NP`mQ*fbgX+=g({Y zdpnCW3{(GhnOF1ndEefM{b-zV&iLW$eT?myby~a4y~E9X81wV@d^+Px|BPGZ3P(Mq z>7LR1XuqFNx2Jo~ZQR~2-_QAJJ=d>4&U`iBcE-uw+FAWr&-)O$A1pSD+{V8=U!QM( zz0?`vqko&H+|p||mPkg6Vd%iE<<6eJIjR1`sYy($ds1dX))HD#B}-ML%t_Cg9qLdM z<|u|Q(^8yfC{^l!uZDZ3zkUYL5dqxdg_myAwmY(2lq#-~xkT9Z!ObE-!CBkU-SrHl zM_pmlq7MWgozy*9ou3CUg#dnRO~ru$0HCyD5>>ixPBkrUYwhwt-peT$|LxtK-0eO>=JXZL>Ff6LqVSLXY@*@kgyA4kRgWXrz2{QBLm_uD?hSl4a;d+fclQLXCv zch@g37CV`z>STW$t7mP@HPwtWIJO<7@KL#tRVc(NO%>%H$v|1>!xqKlya1hHW6Mz0SFAHc{{ju;@Ui9J!dNJt>5w%jC3lS ztOo)O_2H_XpkfsIGcvU`S8beH+ty z9{s(KFJB+;UoPwYkQ06H8558Hc)YyT>%@t265xrdp*dtS-cHV~CUv{MbUrZc(FPwzb*V^%Rc_+_Mc3m)p1&5$CJ%|y%Bwx zu6WM~#y-_+rhjt<0KObv#u$@BAi&`}2KSa?w+I055iMNc$jQyfSTBrja8s4bRTXni z;tLJ0nza{yY?`#wY0YoAJ3Ic#F&*fB=k&^zpQ<|P{m%P~Tm3xeaDO>3z0LoAZMQkw z?~9hxsndTQzaHQ7{wvBE=l1w{j$#)x%dWYlILN)S+#bn-u1UD&6p&o=@ZXO@PiB(s*F!p(;Es&yw>PVASDTt|eEM&d`#mG~*jD;=YUJ6x-qaTB#X7kAvar^g*4N|w zIOa`m{ypPuPW`{#YVW!44|{CR^!hp(zP$PT>bB{(>c^ebT~JNGv)jME+Ra*@>ovxm zmD_orcN)DWfY&I;+{vL^+dB_gIwzz<(jOA)Sx$N4eG$#TH+1P01q#tzcdRx+o?Yo*tbYL(-#DK8?{F6;C zL<;GpnK=M$F6MI!v;!sL9F4jf?s|l%7TXtk?*2EM!__C31Gh^$)C}~AGK2&G-WyJ_ zh3o?0nB1^QHDGxp}ZIu7^PHxl49KW<$(1R51c-hn0%IcmCHF)4Q0u zZ$Hbd2P1f<=!?TIN9~b+Oo=2n+Wyavyggq%wDzx{5R%p`d-Hwqmm*=s@bWp zfAzL+uRluWe$KdzIs`-J>!$#8p!EUTsoZan>+`Pi&YV{{EwicDQ;!An!;MW14#&Bq=lMhw%@MOXr-(5j-JCPX6ku5tk-)_|86~8-bxDqmOJ)sj2#aU z;AWQVlgnna2vnXh6P-Rec{rV(I^4JZd^P*cV=J6t?)SgA+FnFtfzK(!8GdLdS`FDIyUXv_jz6Z_qtE>x*KV8 z#>Q^2j-I`H?i8El-YHHrPMV!Kyk$B#^<70wJ5XM5WYyvTJG2Sg@@U!ckU#F8UUi+aa zRq;;l=*j!j9GQrKNj&Ic#@Y;lW+b|V1BgbF7CRD445Zlx#bIgJbz?wA0x%x%`Tws4 z*Z_26PdtwN8tb124?u`Z`D4Gviz!ru|7tB%Rj!BRc?v(8e1JAVNn+2X4rOfZ=w+P-7A;=< z`t*AJ^?B|yzW?LD8Tqjcw|_80zESkvwP?kg7gw=X2i;KN5p zdlC-muk5YEp(=AYMMpU3E=Yq@?w-8%Nc7yVVqco=ve)D7@=?#lm9N4dG_mT^Y5$e?8W_zbJz^M z)Rxb2Mxb;-VDj2ox6inC88+22_M0gb0hxO3j^9L;J~0}iCrB71U-oxLyT1(yS3{}>*b`L<{hcwzgE4A=PysT| z-2}ay6IW6(H2NUX@f5}%5upMe95tzc002esi#5K1jtvOl-Lg-~O$l(fgQ_eU`tTnW|#mpz<-s1mj@$hdeoq9P9-nyT?{l(#&zG3^Z zwx8zn%xQ*k=3Ggy>+*%16uI*NrPg!1{eKq9&bgPdvmUp3jFZ(z)v!;i_>^ZfpC+e79#H@9O`4ti!D zAMNqtsNCk`*FV3>qeru9j-ckl&_mC8(;!P2TOmY>KOuTq$|~C{I~Z(`tQb22DZiyy z(lG|Gf!nYE`B*KfRHa=j$;!4P3bRI>%gu5uFc<)nK_dX@?CqdsqR`DqX6MBy73hLp z)_Gp#S$ido(9A}W{bIH9=>^ca&GaiOB~{A;1>Wn8u_qfKq6PSZxu%TC^Tb4iEcBsG z;Q6S4lY8`@5jI#-f~!h~0IH@#`=)heVR?D?B@J1dFGeoymWRVqeka4>Jf~L}`RzsZ z-~ay6ntP$MtTytwzFm}QsRq>CyQZHxsY|`^m8k@1FdItQ`rTzKon~~5(ZAK=ZN7Y; z&bhCrhcXSETCpE$pZPS#@c6J}ulK(F9AkQa-EOlYL&KdpfX0~9h}!+JeaK>JS5AIs z$VvQqC_3tdspYu$>CblIV(6@X{LYn7XulU3GO&rWj0{{1zpcsX(3cQ^41Nh=k-QsJ z_V+B5esx)uwu*F>NUIiHH&V~jwdEGZ7#WOW1)v=pXVc%8DFEYm3GIe9U?2#2-c3#A zmjSZ}LQv8+DtU}l>MI#X7!(GU1&IMZ>`iS;m*JR@)Bnt?0+vf_`MLhfj zJ>;QBVMHPChHR)R^I#Gn=WYCYX#BYP!q-_hco)Kd{PFtYKiV*sfRZ}D=ayet@4E7r z#~$nr%36K-{PxZFx69?U<5G3Vu4=2QopbF#Y;{(e7R))D@Y?u1=UnIoF0`oYD3{Ye z@4KaLPIFk%H|||TrxrjO^VIjT+n-}yV9a4}<9Yk8^i)=j>UY8V#2aJI_ml7D;W~|J z%eh|Dt=Y}xTlmy3yVaZL+T}i~>ZT_Eks%vEIL0W1HhE2ekoA|V5>=4Ym#EN2b_j4= z0)7f%T`)Ev2z^;ZCf@Gtai<+FP2hp1xy79#xajv;bdwCV) zyML|EAhN}tfC1#ofFxBVReYPOii%3Reo7Rw*98Fn3wCJ<>4J&@=+jQ@PhSOSl9_Iv?<-Zsh`%EWyHE(_^CXsvT&g1jE_wT(v z*Qe8eJ1U~25~`hVig7J_+^3UgI%|fH=dbsN&$owL4EOw8kUfoOl3`#Pt~VxUQO=a9 zR{b^uP!vyg-qkpKCv`_ZP7V|Ld1cJaKC6!#m>(lmRH1t+z5Ojh5$v;A0D#2`F4dcq zR3uejp;QT~P$mTiv;ZKhj!y5yi>9-*ISRE@s@g<})6jr5RI2rg1JB!&9ZZBb>U-yA ztm=J2xv^XDOf&7iNF6$k;K&vjgk^feKpeua!w>*qZvg=Q`;BFZ84dvO%Z;vw?F0ZG zo5jzwJm}ZBT>|I~<>xqbdVf9`zGzlSVCWkP_~dFLHk#)9FU znR{JZ{LlJ!end=>bAbHq#r@OQbu|^|;bCs$ae3=5&gJcOu^6Loc2*WmP;@a+BvkKk zfn#<*ssDi~n0d$bv#24edVrl~nySyCCU=^)J_RB$CDi*A5C~+r03itgy?_N?Y-Fqe zAv*d9zRLqDE4uP@^wz~?Hgt!ek|>BEq0@o^?P&#U*}zLg2?bklZ6n#s+yX=o>qNr{ zyt|`!)iuL;{BXZ77IYk*0=^q|X^G7z0PyN%U<|_n7r=+CoyU!Jxuels(jDC7G$^|? zvNR;B2DqxqBtVFBYX~!rr|nl}w?8F+@)sIv|D+b*mgSg3CQ6(xRUxRkbza}@@h+1Uu<60BoHth9|^L%^w(aUO+-2ekczI%@!_xtU2 z=AyZEs!{!)NrhQKl2{KCDjQF5<&xpxi`*J^uqUUZi~-uOr9blDh3Z zM|pg;d}hzxI=lkcyV>jC>W+nOyx3R90vG!ScqEi^py855frcA8~^+1jly_piQSbOQi3 zD;9ANX@Uq6gnoIjgz*3XzW@OD@yvJ%H<^bab{M^9L)?ilSXC7PX-ae0_STNJ9P(fq z&&;(KXZawOqcYVvH}1VPIzLUNrj*ishxrp8O~gBQd^Ddu^LO*#joWiucI)S}*FP9c zCA|h{o+;pYxclN)XVp>}XuZ(fT5jTPYPn3gP)HRoQ25Csl%91}u^gUmoaW;3e&*8{ zE|=`NcvwFy9&R7+V>~k1K;JDmBB_1YhO^keUdL@c-9QiL-vc^yb}xM^P0GdE$zYGNSEd(n}Dcu)&;d^ z?r3GdOM?`NvjF;g!WI-Yl&D_8x#?qyW4xf%Dx;Z|EjpXP?YodcHDy z=Xu!q$#`6^zkgEh#CHdzTppDGaBPU-+M4Uq zIW?o^i@)7xic*%kQi{$Q`K?ODRgrAjM-2f~;Tqp>_SJv=J^)dvz-Iw`s=M?4qHcRK z6Y=(Z3Z3s<^+d_~-)HrSlJa$|kTxD`om{0C2Ta@YSFNk9-3&J$U@0mDu0so^yXU-F z*-Rs|zpiupJ}RELGn%>#%Rl<(^7uaHZp(X8W7V8ezBo3n^S2*5b0VvYR8#H^r@Bo+ zl1=Y_t4?lVEpaL&cK^;1G1Ftl$kZE>5tz-X@V*h0TB7x;Crq!^JgRqyI~U#7*IUv? zMYr(1K&3~LDEq(f9Bh(ky63wDI?F{-16WW&ylcDENx(>C7mBn0008#x&BZACezI1N zyq&&3MU>2vNdehpm18bftSs`xDmbw0=)T=AhPTb)8V*PP7GL?S_Ue6ZJRw(}*xcn0 zJh*e#`mdiSi>{j=)oYivqs8Sf<}0Ur-x{q4AzC5ZOb<2JSF4NFw%-QRsI=)R6sJ{L z5V@<%b!$}xMkVJ|%Bp^so8g#S1#3-fw}>FSreMy#BBx$@jE=$L%pB-ir$$V|lt>m$ z8)uhB3#qgK+pAYhg##&SOY$n zde{-AL0<$on`aJ=))K*dy&%Op4EJ_{P9!_nfEO~mNfUr+0U~9zZ5TE-fTU>RfS_5> ze#Z_ha#L!4n6Lo;+?^H%7yy7}avePw92?-iiCQ9M*I4}~U%@DSk8F^biB;<})7kZn z{pRkB>gQlW09arYCvs9oD>w_6bjQFp zF>}b2gdjfEIVeHDZQ9kUrkG0)J^-?J^+M&UR9dPcHsWUJ4-9<}U>t!A)w*|`yKk?y z5OxQ4HFK>zAkB4`y_EuBq-@!!=0>ZIIS#}8@ zi~(Y0F29`yo}8UV205U~AVKoAjT$lowo2+PJTfVIsZxslq_@xNk;^`liK$-1J|J1= zTd0s_QK<;g1iF|O!SjNYcHP^PMyjOR*V(B20(2Nk05E7l0IBml(fEYr(cU$=oUMs? zg&4(@{yO2Kbzp+JLdZK>+%UZvqkKVioufnATaI)##&bvsrI6Zv4~<>76+{7ETy2#B z7GMC1rL`Kc8JHvrO`JJ?D1$M}LM3Zat*WY%qS40Ya&N856?CF#rCq~r9DYBxe0|nD zJ$ffEmJ+|R;_jP|j&BaM+PLM1zm7R%$NgSDT(og8`%vl1b+Ul@u^8{?aZkqFiZjNX zU(9V(PH}eeI(~k5T%8xy@ndg%?KN-n(cANs{@bE@?*p4UQ}RW<=PA7aI9)`pP&NRR zt5fl^YoMXJb^@!^W^&xFkbcYjIR?(&nPd4TMcYjumNiKs0?O@n5_qZ8n{-PN(i;NR z3iM65AQQxB#ZFYxRV$mo@H+$=Vm4?Ko(u=pM%{^lTc_I16)90fiMW<&hyBV-OEEZU z*jFB1C<^VEH<`#5*2Y_7a6~1opw3fCeMhW-kp=f@|ffs%SJy<3Q6=Lu72T?DmEx%Vs0?)5=|;U7o(k z-L1oNY;buaX=kZhkwWe=8(;n2*3wc0wlQ-vE?-?vJ-t1?-Oo_+Fl%g{5t#*MMm^_g z+ESl-`qr!U`kbu4Zj({l+_?9%(JrTEAN0cwufh|3-Iu0xM+wb{qzo*t2IG-)dwYGG zp5=KSk;yGChGY;hs_D1V^qsF-+cCU8>|f5lwcDJJh8gq%K{|ECV?ovX5|xUT475(G zVWl{sA{!Kn$il`&=v!B`ox<+gdx*U|8jZi$Ug?qmfa^33OYG31j?T(bMGhLh=1%~? z1lXD8$WqR3X&QCDyw|RUQXFg`neT`6Kn6YxUQz^;ey}u1e!tz8T2cnVC8O})_7s@o zg)DT>Le)TM4XdHDqKa9@jf;PU66d@UeCF8xI6nDPwrmt{Qd4d8GNe5-49H25>qToW1M>486WFBeEPh4 z)KRTv2*sUy%)FB`^zBwJTpky;Jx#ZMb+UjN3l|Kh^La8pz1Qivc~6X^Pmy4el^30z zlXV&2$9a2A7G=M`-RFH;UmG^ZPRus;44F001%; zC_Z|w5?I1oGbj|gG*E1<0bmeNpKgb)6e>z0jT)p^j|8Iv5CCSeuLS3y&!~evf;~J~ zdpQjd{mZ)Jd)$`49Lf@as)G8JHw9h{UdtGn3xZWfc)jMbHm+h(mB9-ikiCyKT^x@qpZHH zgEzUyeK^%_u6Rg#&Reg&ynMO^CO!kr$$UHoLruG?dL2$WJmzbEK8$yIwz}jGPU zs^Ia#7cHR9hKV#AfM1}K#j*eZb~~25N3sC(9{|A7!)nUO%jf>H zy&v*6W6;ucBQs*fVr;Lzf7P>BX?@#5%!C${IV6{z~7<2DE4D%iBT0UB{Xymfad0ps#wi~C4 z#H^oLS$?m+vbw4Xd{X`9bcX3B%zD`Q?XTS*5C8luXV#v))U&wjYjBZ=T-#S?%&3~0 z`B1kb@T_g8%`8Uiz-AUEH#h40#T!&x-Am1sHGCt-+w(j1rNNK_@EC^v zV|C{4rDjq0Pra{Xms_hpL;?*z>5b5&h=llIYzI zH=K67?smJ)VZRsB2A>aGo{(#){q$nts)e;bUA*jiv0A!Z<846YyOjfdDcrWB^P#sd}7OwZSX7)`_@Ab8+%9UV2AoD7_k@&JcNFIb7S=XJol{!wW}A&OBi&e3BtMO5XlB?VU)>cSxs1< zUptWxk!hh2QsC^Dqq|9%TC^4{KB?XO_TsMh)VcA(`_KD+e4mvsq|e%M>DN1E?dy#f zn!H~xNd|;p#^*)YwGVcFw9hg^SORh=0Bf+e8%JyhIIf*RAJS{hmnLnivt3eXbhrxZ zr0uAxPD|=4(ppWb**(yR1$^bo*mC>IiL+5|Jy8lYiBbl7{AjHmZ?MP#Ii5?K`Zjm_B! zx9-{9&R)pGB9v_9+BmWUhe2w!swv`8J{px&R3?=tS;JaTW7eOJrWA#Fcf~j{nDew|LHxW-}p$};q3%` zUnCd^yR3!d@8JUN9wC~36$FNquaoK?*ZW!Yn^XIC-@ku%ZLauf*LMovu?d2I+!+n1 z`qd`#s>YY35x=U(#rdX}2ip3Dk_Z{Z3dp_JE^q*_A4nJz_db@3_iW7;t;)-?VvU{8 zb(58g2~Y~1SrTK#a#dA1>c+jTW5YScm0zCq9#0mRss6>>C#7$x)$(Ys7_N2`D!-Bv z#`*H2dpU2PyYo3u%9PXKC}2?>_tT3E+2-EU0IPE%$2^3p>T>Gr%2d7Tz@0xKCR3!k zT5vON=pX~p0fLqFsMvwoKH7}I7;91#1`R88{YMH>g}q&q&gO=zh&n@|=*%otkJCKoJ)Q7)#;5RTCtQ>S*H!LjxsuqC){u`DF#*<-12fg91 z=_m;WWT>G%rWH{8>z6)-e(+OzsPj=Z6qaO+Km?&9RMOByt1M8>G6m3I2h2oR#&B#q zJF9y@F*IZhBA318Jao&L{e8#uLL$YvmP*6Ic{ErKdpdpn>Mzn?M3yNWO?41E5*U$0 zE|MgsQB~k5BGaV+f~L2c)M62F#?tdb-$I&@^r~y6tw>d*Pv@tk=chZFN9>D!m@weE zW~qt6)_oOFluk>fq?lNT*@z-70)g~=19uu7GaG99$69~W7<$3cn0v~3wYgje87*39 z*KY(GA%f+i!8(K~BKrpr03hWb0G$CaI+mHQtuJ;@Ii}47iYH>6dr*h&-)KMj?d#J3Y^jP<3jmlvw26oWBlp7Fj zr`0$;XpI+~ZZCFr?bItByop*M%2lFgGmX_zGbzI;kUR=nCYL@bJWDk$?<3isG@vFicmJ2@%CSU_0B*7g8;$0|zxV$P{RE^!Q zuKuYfZIV>|tkzRfDE;n=2mt^f-5#v~J{*owMA!>hf#9w#B9cNzr%c9vXa$g21{Xr2 zkCHtHSFx%}5J3TQ>)`ZrN6Gfi=vFk0?WO-^9IPxIY(GfYDTPp(X3vM|@9{daGh`-#%ED)79xneMCyX7Yx$DgPsXfk93S)TPubX?X zS8J{p%Np4!Po-S-hUCw%POF>Pxo00Oc#>t`8?ZFzcTzP=vyYKlgSw z&gd<67E}1OfSuZc*AC(qip(%EKT)<^+vn2lZYB3jUS(bxTSmzC)cP;M$cvCI%yN|q zUkU(zOiocpd4LWW{-!8mvIAIPI2V7pkeS(g#IdqsR-_U^0YlbafBL?+Ve5^1f)r3< z_IT3H+Gl?^-b_(PQj3Gw&uvY|w<0IKHZ!ZSe=MFK|Lwj`^K}fNnw~e@wMOM>y?w&~ zc6G}*=f4oDVpOVqucWJY*iNevm?2pd)k~vw8}|*gAnH^mB(Y}Pt|{k0Pd;fXYG3WO zZK7V*wt#D}VHts-!{$|%e(Cx$6o6{Jiui|L-d@n(m&NgkPn%Q0|P zG4+sh>5AFqp%p9+gpUR4o#Vt~#CCCSEe%#a0vb153j$X(!BbKFOZn+K??`6F%=NbB zA@3i;Pvw=jaFTy*0oG+nGV*gSNpHUZ0Dc_qo~3iKfMO8rt%gOjM$|`AJJ09B4f-x4 z`>@HyqbbJ0Y6x;pn72=sd(9`+IOj5>1&K}M2Dfex*YBdfz)$J%Lb8Y>GZCy!8tu{@WRc&I#L?Y<$k|VCl2GEbP-|VLr>{NXM=(z=$5k^; zvmhI=K{f&1KD1!VTV(Y63jJS`_fO4q?;QC~CJrpd*fs(H06soUuEwX#L)C+bUT@Mm zWQ(dpA*RQSJVMCe_Maxvmy(&0axu%*im@1w$quL6lf)hKv2T@-)yOv&x9nT&v$wp% z5-(rJzs0H3Fx)P>3f2dnTx(P$c+0xy!AG?&-E)6-r2<$c7tkDkt9l_lEM`asw_ zv@kM{@MWf?M=hxnj(c@=%on6cHpcE$_CY{*U!+?I!p0qxGH8pY(rTIL7iMABSyxtZoThmFB&D z-R88_>(<9+_2@GD^hc8E-z0Diu9csF2hYUi?WHnc)alwV=s+oJBYM6qCh#D6P zGVW4Ei${!V92#;uN-@AGX_lK3LIH$EVW8E{IC{;l*M3?b$cL-RxLz;JY&BhVvm!_6 zsxY^5CX+^`mjTq!JCLX;Qq@%`tC+V8LL~Gr-2=~T)UW`^mMz|kpKcceD32aLC5^1o z)uFlgU3vLY6C9BMXH@`H+tiTTy8e@4d+W~lM())_ssJ?K)Wp=zUngJotJ*uDhaiJ# z^^|Y*p2{QV3L%2+q7GzbdmUs=xAD~23y_AH0#NO=_oWn(O=(+JeNr9ot3Tj{oa3J?DOC_uz;jemI?A2nQUqk1G{&Bmf(iVI+KV7u7AG>!w z=d4S0s+wxzg(_{i(iX#dR+}Vg?xcMr?p#fh_XK2J_=w21w!k4?fQ2a|FxL;DC6@@z zycY$teL3!nvqi1#yc{^sWv*UQi}kA1U8`Ty>Un&<4!Pb<@!Xd7DnZ@~TFYgL0ssKa zVnt$*VE}-ST=gDr>h2k>^6=ahr89fwheN$@d(Tei78~eUN@i!~Tvf%Yoa`$G*FPJo zO3vuLm3`;M_Y(gn_m01hPknLrWiH>2loVOGJZMk8i8>i5ADbEF8g$K zQRCr3@lc`xRql%JAq(2UT!ca#4d{OSF zyN=pABJZZUsC4dEDjM?FH9=OFh?T%P8A)>7RCgLjxvaNnnWfIFlQ zOc)wi^T7NI2oXq>C(=w=fOO&GfE4*83jZ{>FJ*jRrb@UecKXT50GnL(Yboz&!t_kG3~ z`|RKBSxJ_R$ylJFXIZ9N5X4=u=IX`5X)p)|gZBXi^K~?ZYTLD3X;e74775jK&QW4; zwGs^bozp{gyT~#EEcAjETDwA0dWm1dUwJWbSOoByS$sAJPRnSv7t8kC? z=#F8VKqUYvgTfbIp^Bz@r6M(l!b50m6PndR#z2rNZ8|D+^1(PlrauT=Y;&9aY-9|~ z;qR?!=h&U&wH31|ARaf{vE2&vw}8tT2+m=3?k6;sgLs zXJ=CY0Dyor000000Ew+ttxf;{09Kj8$$0-T|11A4|2F?JH8?mnH8nFrIz9g=|04e} z|2zLS|1|$I|3Wu8I5sslHbh27|1dV;m>Cs9F?+hEL-JU<{$KvTB|689k>h0&5hVeH0^A~lPL+OkWS+6yeJ!D-7wmiq5uN~faIED*Gc77)#U1`<$JrR zcalm#6H=+tsYpu4IP`W*u(ByU?^fAy?cGx_Fr98W@h^aVmN{VQPz=T!Oed8Zfa8d$ z*i_f*1CnP9CKq7l7eR66wxcu+l6BWu*_d!#m95v641R1KI|VEt6ecL9mTJHN8UVN5 zKHT0|=vjKnPOw-kS5?L6c=7p_#{E~9VduavyQ>fDwi`cw4zId6^qae-MJe$=9zOQi z@b@e#LLw{Y>+7wle2$&NYZ z1Xfj56lr+Ins`6go=j+mW;%TuZQkGIT(Rfd@a?5 zn#Jp`*Dsg-Y3_0JSF%RLAAKg{ntkTOTT6bL`{1VDVh-IsJ!>`h9^37U<2F%3b@uS+ zNkI9MW8Pj`^w)W}Yu7o)aDXC_!3uFZ^zD$^3ZCWzRh(U>;^S?EdebMZBp|eHd5w@9+X_2LiWf|W zdio5CyNqjOo-AHl0k{F+`wh3!L1rHSe2@F=g8!(&TZA8!aj+UN8*M3>Bn}pRi_Mb9l{3)I;xenRoTNkJs}Syq#$1rqeS^KBDUZ3oR&@%6yBe zCDBapTE?8UB|u10bKWAPt`O>2^u|(iR!RF6-ZLjm`| z&XFZzV9r&8RaLtm{~G3u`_KPdupcc}UElxx&zc;*El0ZrcX#}3{`zerp-vdcygh8k zY?#xPolBQ>j+^5)pU1lY za2xJEZe#K|=c(!Sy&IO|mVLFQ**r^A3$5BwD4z%2-L`C!xf!1eLM##~4SnVa#~xUK6PgjO`{y#ZWd zvLnC3F^BLEfD2Rr8W7-c_k!JJ##;62vsst*D0~-gR%-~i>y^N&d7adc>tVmn<<1*K zUHwGdx-pO2et-!SAn)IR^e@cJ`g9`jdoy5gTi8Dt$m+rfsiQLqE-+1od%`i)BQWi+uu}Jr~ zG<{Q%6=xh|TN}whr)b#(d%W{6#@jX#1xSHYr{7XPbvNvvy+C+5%bWeMbcq7_IA$x7}P#2fL=3d!46#+}&_5RBwJl z@j&)BEGom$N<36iO%PB;b2qktIh?YQxC=te%iTlPIOY(5F@q zZ#7w`$r$aZ-o-i)RkF1PL5P&zHmT_6$l609QbpuEd#os;bl(BmJEpY((ZLG5;4mF0 zP$mG}5683nv(sf!7SprOvKQfGPhRY-^~@}E_DIZJRaM1YUBQ{py~fc`_iAp#eA3Bv zf~{%sr*gQqzp>rhPS@IqsT7CX<^irA|Gm7<`Ro4vk#nym)n=*5Sg=fo%St;~7Ynf5 ztA?C50t66C5JyhpD2|GB5J#3HCyeTgTDHwJE+K}g;eaV>_bf04Fq&XpR@GADhF15g zHFJchcByl9PFh^fVX!f?2w)~*VE{vh!!7zu#BrE4S&WsD#jA+fUF1Tn5aL7*2`phm zEK4CGwG2ylZik7G1zzkn-&aU zL1V|VvkptPDvDWyqkyw`}gUgJeemc()!dF0=xADG_7o zSZshBs;ZJ|Z@`+9#wXV|Zs*T_3Mc!E#D`u*uCdc~`J^``hb+cnRqNAbUS2VHc-u3# z&l#QbY4-b%b#tb1ehp*I$y$3ejk&9o?FnF=h9wE(ym0JYW6{3NiqUN*UsLjd*c4CJ zCy(>Kye+1eF^azuXjb2LMsPbNA6?MWhg|kJ$99HC<9%4NnarYIft6WD~&3<9+t8LlmMv>+pGn<{R&VCG$-6N*KpUuaV_PXXMzKs zT<&#_00H1FlUvynk^z(z_ahT8L5hQo z)1FLrRuB6Q*M_Ay_j+y6rP4Ziu_F@9j}!_q&k(TaI)wf(;XHB7~%jB9ycQ#X&kA_<9?q*&q#Tc zRB06x?MCow@008h>0%!_;{B3ECutp&@ z^O)ik+-+=59}B$;7@Z5{k3uh{N1duA6swr9DvaB4&2=)~KN%Zk8(;a3X+U`(O@QJ;zes%Cn&wt+A$Im^-u9>%b?;Xc3M(v%c{UKyLG|C9W9R)b#gUhyd|0IN$|-<$}}WZUbyBo0_b* zap-Po$>lQxfB+d2nM2%urp2hJN_v;QDJj)E)mv-7Y?FHNIt74d3iY!903IB!{)o&L zNECu$ZgW#STVzW@!se#t`dr~P8P)aEhDTe}wi)#_GgQSYXGS20*le&Nz8x6bM*TZx z!LMq%gK<5i?+&g%|AW*a9Qu)xjTQV?DH_@8Q%BP*Ew*2C)%?re4Ro$i%tDG zKQ3d}sP(QrE0py;sYfIZC^NI2 z5C8T4S)Ph9cEV4qX!_f*+BL`XOXuXwH;;FB{n=1J7iF@cr^wk~&(5(@p$y3QZ4??k*7K_snH?dGog#0aTwd1OS6;oK~AL>&eIOSVPquLgb`ZuJ_OF90yy zZSF{9iztHS?HlEzg&bUHl%s*J^YW1%HNWkaqQvoZ+~?6;SF-NtJeooE(| z9MLX2a}s7v6DV>L9X!dNmzP)L-B>PCqB2p2)aUc9f0PAilDVQyFXVIq%%$C@mnhR| zvzOxT=MI0f+2>Y@RLLNcvPOdd%O=V4*HKf^n`tVmoBWwu*;r%YbP&MI1BxG5Z zE-Yi2IFu#H^5wMF<4)(cXjg^Oxo$$5qZ#?&>J3+ULD&MJ5F*yIwe;t-(5eyXc6=?x zi_LGU+nulK-|gO+RXR{jQXQvs$E4ALr0qkoAK{(k9i!_50DdeU+cw55GHB6LAo<(; znMxDH0%2~_6i(M%{8K}tFz7z05}{&_RV)t*LaW&ghY4nM{iAPt&DA96vobV1UfuSZ z|CXys{ko;hI6wZ6W!q={;eQ(6Hlx0e{=@wL{^zCtb_|Ak9_`!n!#a1mthw5h-kNfd$tWSN)o8eUGqjT%sQ!qKnTYj$i{b`T6=Q(7I zqiaJ?*6j3xwlC+U$Gly={qsIk{fEg|=DyDv<~(vI4twpFa^D$&PjQbf+gtS&uq+x$ zD@c;`3M_~WHZoHx1pU&AaF#|REOibA`+>_aa0zx)1iC`(1F^gv!Fe)AOu!j#t#0kr=e2L#_9FO*@i!}xW9V)`j0U(Hrr0l;>#XuMKn|;h@-3kp!eQ- zmmj-bPUrF8Irp1cjw+lh30siTFu$+I*ULAH<>KrbZU9bqcIV!Mt&i_xoE2}~k{V~% z+i_tMs;eI7a3_20f3q0h?~jYI$HRQ6vppTzoZB=5P|#5Cw5k(?d4yN`UAk#K%WJ-R zf^i@rq06={0Y+GaAFv~X0E29?NZ26DM@)9W&U1B`V#S~k$V?m2JcwA)XfzG3CSyH_>p-z?Xu)S?CUJQsTRN)mWwp(}`O4|pZ z!Jq;eFVq`)(_8 z{QwLm3&69n9olX^XFr}N>-;ud^Tcn>=Q)n?`}FXd{^=+L@8&)aj}fi5w{oolRNdua zyOphhxqH|Bw>})%U`PQlFNK{=d;EP*-ZJ(-K7E_rglC%Qn!g^=piif+sL}h|y=}w+ zT;FBkd#WC*Qs4zh7-Ru>d`XKd>7&^<66ErGgP^pgK6jSR-s8Q-j1o{U>W(jxzM|MZ z*Q0FPZQ1p8T^f3FTzpmSE6gWQ2)ycw=d4{(qvoxzAMM<3HN1K{XEMOxIHgbwY588W zw}jsS!1CMBujcKaVQAKA^F`3C2MdN0Qu->$5m zk1a{gl}J)qS7=h#6*=RokXE!*GE)F#Tf_+Pt0F}ZK0t3EBVwO&gZZ~B%)g#aiy&%59XH+<4^BTr>b;1x?P=AJ;Y$|2~l6ie5!;j8%1?j0xVUj4RyM0KtRU_ zn4B{L^C5u0R;DhLx}~6w*M}-EHnnc=Pq#TU@^-EFvDT|uRjG?pQ}3$imzA;9rUUq=TTdu0_svN=nXkPyQwl^G0}902$O0O;ZK?(>JpzWdD&)=mFm1w}m>nNinZ zmdjO@%V9P$4dUa-Zl36irut4pvpF<}#{K2%BQDS0`m;$`))4c*`q7IDPbgxY$GU&D z5PB>7M+b}g_|=;a<>uI?+qj+|yW%3D$)2ZPPPxaKw48O-)4Q z#^=2_Gxrtu*_y@N={*2s*;6a`%-S`3=Pc8!lv+Iztl|G=<5AC~EBM|I-@YPEX^4504XVZDk z3Vz(}4S)dvpqM)*3_^lV55hdG*b_DqRIlgc$31zyh%3#!XO^A~k`J+pRTbmrVZYmG zxh^t%@S?-iUi;THp2&T__A3{OqQ|SuWS1NGZtnY>&!_f-am)Sk^~bmk6ZXm5j~ZXG zxnc3JyW`1}Q#m#D0&0hMhxHPLWlYs9tX|Btct#RYoV{Ee;`iUr?kSo?-7|)|#di7M zAD6fFnJ?^G?`blO`QcLU)6GoyURbag_67+k=lfXpeT z%#*VVQou~@q#*B3o44eW>L7X#RUglRVN(zFuy;K@oilIuk21z&9}F~8sJEONxR%Vy z<^kuxxH^Mj>TL?hhAH~aPIq-?!=MUQNntUsIr|ca5)&$gDhUPym5gQV7TTFD&Aa}& zF5aIPMa+RbE?^cr^*T^$Sq1!ALdVq;{IU_C(QA78#i?T?_LQSAEhwZ*32e#Q&|x1G&Y>TDOmOacz~7S)*tkXf>-DrfO?_r@{xq(MJmX^&am+heve?{o8X zqP?Fwx!el9uj!rHcjCpycPi&$!cN_vvd)2<{^wY)KD+kNOyXYbVR?BsOA$3xR|Einj8fEOY`{ZBU>Q3xGahe?z0pZ8 z*p>h=xZz^_d{cuX(+2>6i6ubsXIXbQ?WN=xt`Y@8rS}0sLD$_kOmvN5PR*aO-CLjh ztS7*Hd%8T5dk+QHO2*UgL?C-tw#0dSe(WF?{j}&9>xc82{K^-07%A*QdivG zDl#~`&hc@*)&Kx0l-bGfJ%FFD!Ff;&k!Qs2s?E)O!HofI*%$(wO=Bi9NA+L6-xCYC zNT4qwU4xbwrA#T8celPVUz+3LRvM(OvsQO?GFH73NNZ#OWM48&Z{2h)pdWxJBocTU z7x1<7{OYtN!Q#d0HZqG-!F3ZJZS|asF+!NfF^{;HH&-dZ{dIE@R8wQlzFU=?gdAV_ z>%?xdfeU1TS=Mak`wV~MT+?x`;`{QHoKq1XykomK7r4!0bRn&8NC!mU2Gd8A?c&k# z0Q4{wI6ZWNr|-R3w0HiZx(tCilr}mP!A-!~x=l(!h)87Bs_4j+UC66V08HV$S7oxU zjUoO6^f5Suz)zM)_HNsnfj2hn{j?ahu4O-;@A&KJyy+*_wd9UBvT;e3i?^1#N|H8} z-&d28dVi6z7rtr)ktl5Cm|yW-;n*Lj53r=6gaAxBaFKs+6t}HvmG}O*%kr82;PRkY5#ry{Qco`zv5hj%2RBzYlTBXVwjA@CJM0+ z+#=+V*pX#L!?lYbO0qk35)iv^QB&EM7f+ZS_eX?M>9i??3RE{8?0CD^?~dliB7*?| zf~?4~^yJ$ygkFVuyt{13ENwcSuGfHwYiC%2g$-CMkGIP_9g-mfo!Ypc z{{1w4taC5o?3uT1?#B~jnC2KywSN8c=a=X2Uz*zk#)Jj>bOB(!;*|c=Tbk9y8IgW7 z=~3S2kPN9}YhCm4V_myHCd$yi%=32NSljbyj#I|>d%l^!{@!~&N?pdomzlE-=NQ|* z>|<_6uU9TqDF9>JiEJ5qzjQdnU<5XS6-M3YTTS^B7ap#q+tjTa-68-6F9?t^#y+GO zEsYh~98+FiCs8R1KA$DoOj9Cp)szUB>iDL0GTIvZJcryoAzSoJv6q*2%(hybyIOBo zRvcoq?4M4V{b*;>5$n6<)!o}Mv(5k7)+S>2_Fmc7#U6k7(06_m z;L%ww6x{2dSub+C5pv6&-1?f;>!*wM_d~hGIS1$M;d6NaU|>aBoPX0cQ*BWiB4ubj&2#FY&|iK<__3IuV=EiX%7SLDcT|6n{PKQ^S<#|Gx=KX?SFpd z-hF5nSMPcDoc#9I`*CiUJ@;Rg5`R&NuYI`*mq(?*W&3gTYMLfZ07O}dOG&!6v{Z)r z08I$WzSsMi@VikZP+TZv+7i!#6$`BM*N5d*gTdrQNMxD5I za94={eB~X>=vS`yvb%e(RSNX-P)O{KD>jH8xG^WCby1bAroBohZH-6& zsgkNZwIvbd-0+jGOz`RcHvx2Ch9uE_(O~G-J5@2rrY)3#>kYJCW4~`a?VhK4x87D` z2dr!DUtgYB{aH%W3a4pFr>R8sOkK5FNnKT{@})|hZ}+JIWKSNCapv2VC906z){Oh@ zCCo5Gpp>%@S^F!$pDz#H`Eg!XKR=w;{tJ)i_PVJ3quQi?)hd!UXTRgcIdV)-jCOQS z77O~?MUe#{m_RR83k?99KJ);6{sI7G_M-kf**!BVG|h^YRaF&+h$4}vr^Q8l=7W3l z<}B{`cKeYecE)a_FS0GUyc*!n-4nj}=9~lVY(HOb`4bN2d%l|T+wCK1_3JIK&Fe?a zwdQ?C^Ksc0_x&2&$o8l#JW!BPrlX>GC|`3aB~mEvxXP>T@+{Rf4P;zVlXch38is{| zPHE6Rb~7n&2-Oa~S`xEY`;m0|*`_RRj*zHbBhTS@QD#aEJEKrR4C7--gW4>@q3yFx zu|_gqFsPW>q9xMObcShjaQE9Sc%qci`24li4FndS<=hio#<8k)~S#~OUZp~ui2VLTK7M%5ag98MiZ8UdXOZE@FE z7-J!*GJ@u_&gYuN&JvYgcraIvRaKia_0Eke4vh(oVY@54OQ;8l?j9@)s;_*5uUroF zyM~pWxeb2XQ?$n&5A0nAg%yg5I+jhr?4F|Z98QZ-*GYuus{xeXwv<(HO1j9r9?T(2sOaD zs$_6bL4h@4y|Hm@9auNz68~!Waxg?{jKutt{mCy}4%9!M{zJ9MkuS#Q?-w-(Ei5zI z$z@h64RX!O*VW`L7s!cea&QCbz$DhRU0vDF`u5A)CAYfI`aVE0(AJQ9V&?9j+S_st zwdly)F>$9lwWm3J5Kg#|Z5dX_2pj^M3RW@6lA$81(p=S^mr?z3sij59SWK`30Ei&) zVCYL4R?|il4OvEoq9hcn%3#Z@Yy;5wEqWRMwl2}S;ZSbq?o(nwbV~wZ`aM{rJo5>N zgJZ~4cX2lG=%EF|3Im&VXeO4SnyD8HWp078PdwF%(1=xS$k=bgVDPo6$xK{O z8h}}}CPYG7)MlodlmoLW7M)%e$W<&TgwVqU>!hnrgHx#{sT!iYoX3on1P;PL(qj3L zP?t(wib;Q14p#fi;+k!4_?hgyTJw|oyWab8%pKRe!NBCNP}QMIDX{QmwY-NGEO#78 zZo)oaXW{&iyQwgUQ%3Q;m`!#(N#pUIk~JO8F8AU$a1m z-HI|!5}H^L88b?)*6fv{F4>JR#!{(Jg$O6e3J4Th36Gi!QPIC5aEcN{D;C?Gn@y(H znB2|E?oKYL+ZkK{v9ka8Xyj|l6jaIQLQCv<4u|@biP|fJYQBD=2;tlq2Gb_MfpgZn z%41om?WzG5Yy?2!w?$WQ-7JKmqYE63Qvp6Ku9`-qiCzby9sD&;1{wg~O?vLrI%O_K zDLpeeR#J{txk?C@qlI7$Uzv%P*W=}0Yb@_fn*aTVJNMOf6KP~Uww-2CMPkAV*Y?Ln zp4-S1Lgi{66}Pq-SzhM)W7hgM#@u^soRdW+s`097Z{z3Yvv$0{?s+Ckk{X)H>8>*~ zq{bLucWdk#-_$sE9S<4n24ibL0SeFv@6AAf6AOfaaH7~kvo1EfTe3pOtnEOP078Oj z0AfKj*=C|pH~=f?nf~LVURXKeuXwL&rCqx7obZ+%{hZ~asDRMvRv_}zZ?_Oh3&@vc zc5>3v-W&M1vT56qZvS19?X5~2#xyI>XorVoyv&&sYftN|v{8I&c;EL@d`tg0L#*fagbnxG?l_ZRkD9 z!Ay?+m==ObE-wPfO51lL@m-LA<91I9>{vEfw)OVr>{i5zyQt7(qLOyFZ2k#X^mVjN zaOH)RYbY46k3IMLF6DdJM1g zF93k7J9i5Ig{uflY-DB;t4*<3F&4s^-5Jqlj~HIv-lvyG)`L$!Z4SfR@_HL)o3_QT zboy)R_HME?6}bXaANf;-u3!-jX3_I zKW7Y4Dhu6QLf1;0xT9*^lB7FR>XMMQo!@$PL3HqkfAARvd}p#BdcG}p^B#Z{r~rJ) z0oI-Tx>P6ce&q_*fsYdW6xyr8)ubJQ8JMF?KDsPtv&2|b=UVgPE*v9|>H|dJ&;sCB z4ifJ*xnH?$gbepzRnFxWF}uboyO;``6IoWGl}QVg*|)QZN}f~!Oy42hXcs1@nfseM zJtK(%W&tQC*ScbR%4hrhHm?pu6O~avLaS_5wy2Q!07J6~%yJ4ibN*A8eJpp50VuxBUg@RjDz`qeq9d;m?g?|NQk@nPfrm+Q zBzcGHD`Y zxyt3LTx4TR8qrBdPX6AsZQkC0@<77i;qdKnj((C^yKy|}M_W+@t|Kkpw(bnB9Nhli zp)0#C)5gcrZq}}>Hy_LSx;`F!=jdExNxm_Jv!EIOC|NO^nh{Mhrczux^H_x`W@ z@+NyAj>e<8?~Cjg=HoDr!S3v?qDT5M#UAGR;o+kH<#j#k%e}klfobTOhw@>LlYuvi zzIO6bYB(mhoD1q67Nr6{GhX;)imBlxEQ3y@a~7KXs3T&`48RPmFZ?pi@=Ozx~=c(4m$k4=v$oOekF zsT5F((^+^`PCMo`)t#cSn*%YX>F2U{gl(3NoK3M_1YGFCq7tn@A#F5uf`kFy%sod2 zG6^Idh8d2nbCe(wsCu-<@MtHYFqq`Rys2oHY|z)e{56#y9q7PbpyB9U!d)go4V?L91R*U_hp=P+w`a=I|V;uZ!{PT19!sEDWTMb*Cc1c_0 z+K?x{-fMlUC-=vn4}Fe#8vFY%sG;>0e+He&=RQTJdKiSp+eE~^{R$sag%a90kF#ELgTAOBSJ4Dd}{p zu1A3Mx!s*%0EBPvHt7h;0udzEx1=V>-0gUGH5cRo^paVk zkPI{z25E* z-p{UgP<@<_>UH(2+x7pj6jOIQ3$Gk(IOsk<)o9i(XP0)>27AFfbi5$jI=|UG466Udt_YxM{d5 z05l(wRHIat#5SF~(5J2&pP}V|vTqJKL$C_VfH7w3ysxA{5fDwpU6CEvk-x8JW`J%;$S?s}JAPVxJj>Cv>i)@S8I^8A-C zz4yKUO#ia~dl(T13hO{morS6Ngu2fHD*PuP>WhT7Cf{p6cGMy_~)eJ8{v7f!~ zx0`e3-1Fn6eLI}3{&zZ0ibPY}zzwXu?Q?3qw>kR@<2{8}+uDN%c7MNObH%P%zjPG) zU2h;fC~laU6&PPPwoMR*tW~-KEG!GJvR6+IiM{NmrF;1x+#yFEu~Nx8>XsAB3-9=n z>(AN9FVxiSzjkIl*dAKbHBiIeFNM9)9Hl`Wl;Fs=cp$CIz3&-_K3Fzxa}>n1iU0=y z_8OLE2_`|nxWp9um1aqji6Vl;{Mox-czw^ub#aY%?@w&c?+dPz~1f^X@AJR>5IBi!rR8Nt1Dkz=Gx2pzpr(B{PBMK zwQuUvSns)~;rl+X^<~cG80y+cowJ#_cbu-L882^)T-xln*Z=0&KR&-&=&-y_h10*f-2=*lGg*}TxPW`ge@VjDw)@8l75_9!l8W^upo9IkZ8Rx zdb%DheMPl(EtMw}aLXXB8!01F^{Rk$N^O8`FmPIt@X<=DTV}fa$pTNAy z)GAei7>}ZK0Bm2KG+Sj8C>-6Z8LidF+@cDAdzoX+slWPnczeyUUhaz z?)~w*li`YyRsaQD*`VoU>*}G$A>r9=wH-nO*;fE zuOFtDBdyoH#TyJ<;lLUFFPy3M?*sHO6*%t$XaZIS7*Q|7`S5+rUuJ(aAO4gon~XNY zb%qdr)wITj^`w4xg3FKrWZS@PxEdd;Ci(zGfeOGI&jK#`!6$FMRt!XXsjiq=FE7tJ zs(%joFI$3Y`TVRmJDS!HIW$jaXHx(Gz%4ZZ00000iLF(wPXGV_@EsH^dN)WyNIpV9 z|2h9R|26+9|0n-1|11ALG&MFhLO}m3|1|$4|2Y3A|2zLR|3x)5HaImlG(|o=JwQf8 z|119({~iA{{~iA#|0w@1G&e#-KSM}AL;o=UH2*07DE}${EdM$GI5ammF+@H=GebiE zGyg;XVE<(QQ2$wE-%t}E)irGA@crlCX|*E2V^D!Za#pe$&ho9F{iAhCH{^D{zK%D| zvsOJpZ@#x z>FKiC{PXOG@6F!kG4T-odh|3&ElY~fM(W)Z=e|+Br2s_Pv`KxHjXSA0*WK&pV5}Ju zQeX?dY!+Mk0O-Trd)&W&S>&92*~_=;x&9hlR?N&5SHnA}?R?UXdVZgI$V9{^ligb}!1Q3B!xSVEK`n0HSL)>R$-IhRxc zTFaHyzy$&mU~SbRpI}7b0PHVu{`30Bi8uFewf{W(xcWoe)%8!-W4!5Izu+6_u`x2c zn3=Pxs>-EQ>J6D7cf(N~9_}(_HHMs3Y-#MEd2+X8+Eq$Bq*vQ|>>uNthjZ@h+K;wz z%sS7P<~+@AGRi%WGn}te9>6BE7bxUH^X6&k`JD4{8^_dt`jT5Qx50gq@7Z7e_;hMN zd=j_3ex7fC{C9c&de5-U@$j&ocWRgjR)E~gGGchTrbwonX;(Kh*HRVETu^3NyUB53 zRVI6y+pr@LGB|+SU$?_CzxIwXzo@`+NsBZ($UsCW%LeHnJJdKgiw;%cYv58qOudj0 ztrSBR3^JU$5R}~&{JKxSY1?1iaT9eFpcM#3GHgf#^_u3sTmN{y!J0dD2_zR?7RXyN zUhGY^f~8>qti4>P8weVbC9rngAE*&VwqiU4Pu%QTAMq8SEDbElS&q4?N+9(^8@;_) zqvW)+>3)1q?*8@s?~~q;x;N#%LJr0%&j;OS~NQG4^L$JhRxW9}PqrdZXLj^q3!v(L%djMWxU+qfC)AFIE8 zNhLq`b`D_vr_}t`FDEceo%`N%9v_==n*(z1W5%WD@po_RjkT-EpfFT>b?Qbm(r5iupP%8`(Vf$n?=76?@fOfh=PhL#?9 zMwqb93hFV>&THysrR@aAOa^_XHkGo-ZSHC9bBydcm`EFN2}wk)r5I|wR;csy(czO}^!2g&P7vARiIqbfSvGmjus-YrP$<@Kv4c48@>Hc@~vHir-+#){nD+L@IQ8n)+wTAS|Hs9?{r_!njWtfE&iVF`uht_=acQVyW&{Z{erx9#sP0XmsXBRttPOBs0Z zIsli1Y%G?o&`s}jMd}pp<==Dwt3qsqY*5uD1SH#$j0`{;rV^e5TD@@RlDo|pfoI4R z2{WrK3jiaPi(S~$ilFF%+G=jEz)i*&2+wo9F-MuNz3j~NLEwJzUqnbkFwFitF6oHL z3v?L3uy^)jN4-jCr+(f zHu_T`P)i&txf|%ljIR-<$qc zgE5$Mp>YqRpKP+OyHYa}W~TC*s}nE{0Ii|CCR44%26&L{iprlU?BQr_5C$28E=vZC zB?|&yN!4nrLQ-*!Lz28RE&l4a@A6e4v5EHu6vjv-Bf*OiCC5`d)ZoesnzWw`SUKY1 zQu>pWGyc`3m%19hyiT@vAM<4ISSkTlc}szyYyf^tp34%E9nd!@(A%wg2}7c|fa$R# z$|t|)E*I`9u#8w{rZ_dAswza)9$rVsVfeq*k2XUz@yY?;b|v?p zdXjpcovaNVXOlqEJvDD7!|9y8-n2IeK#~)SHnsEX4yQ<>*182U7BUawlBLT4GH^V( zN7huKYK9JJNKDHgVHu#Pgo++Itx=AiTT&IX;G#m?n(6GO*;zDNGx0kW%i{Y57}}P} zu0Voi4!Nj}(gU_CUQF)wjLjCC0yyrjZVq`M=&@0nJ}fVjjL~BA7^h<$4|=jsZ1g3P ztkr<3s*+dCTibo)8)GEwCA~27`=vH{e~K(UuM&*Snf>PB2J6LL-b!_87%vxn6Bb=< z2G-5_*vEYM^lNdRjWG{5>(`HEqLay;PA{1HcmLe`eqAm1vVf|BdP@o2w6$q9JRUOa zV7=LFynRfj``BB?!Ej(b{vp23TI~5YM>0)2&8~sg)Ro!ldDc<-%X3mQ6VvEvqAy~4 z28J1+q1f1q> zgit4Rija~LpUZvtz?m@W+TQkVMdBj~?0xTqj)BJV+i=FiL)Ng7!jbGL_T-8ggC>_? zLI7S&Uh0vQEs_N_3LJx%vWK+DGG1B~xy{;}y|fHEdm2zo%2iba?t|lJQ?udQb*E+9 z`o+y(j_2^idF;QR(j$Gn9&NLx9aWy3w&Fgq8zt^lxbMrQu{b*@QUVV`JriGi_nWRoP zmjV`)g@2FtKmTX$ynGKzVANAhOX`?5^0+?Vd(-=vkE|!XOzCdJh@_yPoo=t|KdOr^ zNdf@HIWDa8LZD^jY$!>jdYh!kgGTbNfij89HIUHGNfxtTfh(*>&?$%pl8}SWIHpA| zI+I4-F%YGeyE^O|4VmhkDo*5 z!7d%K*>ZIjP~Z;$U_7p`j@EU5>W?=gxsV?hu-j4^jWpO$QmiUR0J#<^BQl|m>>tWG z)*2_`bNG+19m%Nsk}#?KX-Eu&CN1wPu=Ily=RIQ11A|@X?Vhvu`Mm!8)PL-s2K3(P z#kGt6bg8m_p9IF7|6cyv^UQ~_2kS9MA3dyek)DrwD|2ZoUEQ8FK{QbB#;)6(pRZQW z`YgPnlK@2n_F!j>T4evM+xt^J`QVs&n8xZa8Ya4%<1v@H@^)TFmCu_~>the5lJ02` z_3-xHT4p3{guHiruU9X;<5++U1`*Br&wVKiD`BND)N23$00%K5SkQHwpJ-a>v{j`j zfm4az(U5mRMBwkSJ--neOWI`B`7IH5eKpebUJ~|hA^&aQ=wbo*UWNtn8USSFUF!9! z@Cp@RAE3dY0?=3>nBR3`_SH^250|Z$YLAhhrnEAy&bbt+z`<~iPZ^-N7XWN$Yb^JK zPjN)_1N1NzfW`#+?s#i(a~ZLzF8k)rsOxnKLb_Dvj!Fr)z7CSJXV@cuCDkeV81@87;1Yh;g_oFwmb~fbDt-SVbkg=4o zvHwMv=gzb1Cs$0}J#;>@-^~8oYva-DUNMbACDxgFeeG=ya@htWjhZSH1{T2XAXMCQ zM{yGOYg_ae{c09ZRfDQg{bzHrpZhG*I}HVj1B!B5$O@zIjgX_lRxFERR#<_`5~W0; z3Rxv&VA4=YNy`%9mMA9%<8&hkg&m?gX}i|5s7g1!q*GPZLe;WO6G~CNN=b!Zg}2Yb z00^x0XokB0I7WepR_i^%zQD)JHz2Xv(cX2Mqs8W%0F=xLz$jueyO`@6=7<^QU5K`b zNwRaI5UJA@y;%aj%w0PGzyN?}?XgfW3068JOYrCo0}jXMxUdr#ZP_F0m>02Ftg1NI zoc?YfY&F%@SG~Efv=n!|)?WWs{(rPHGc|k^?i_8czkk zw@hcAG>?xT%ZJ}T4|DcM?IAYj_U7{|V{czyH>0(0_4#l-l>6wYQh|a2fr_@o-VjIQ_Hz{_cH`z4vBusnjqesHj}h zq|4M*-gaNl7;D3*vjO0?j2AE+>=ALt5hOHL5&&6KDO zB7Ffzgd*&*D#W|#5ShSDCR%KZPJ5*5O9ELWWO{(spuu-;&@V`XCIbS)>R^R-G}x__ zRx}qv4+5TyojU*nm;fY)_a;G_Ku|G|+_wytvy4Jn=nmJAlyg-TtJoVqiKJAv=*=JC zr>^Rk%l`S~d#CID&!cygQhJYl^>vld7&coMyjq&z5sn#|m>0aA|4{|eZPkvs%eO}1?d^Q$4wHuLp z^WaurJaLyO4Rlr0EhX#wQ3Jnn)U0upo!!8-P)cPJFA$r@PA==#aQ1QRA^{OtfSKG$ z12Fb-%R<^&4{W4oAStk&Ll!^;0vJ%TXhBkt(wjg_xnzAi_yjjR)SY+R(m?&#@9vchzxUSG+}>ur-q!o!?VPV>=DIs%8a>(f9v%00qp1Vkcrt)%mZuTUbM`IhtapoN7jQ8X5Oj7hJ z#H_oiK{u@%DBk7HLL8zB2w;}!N9zhNwCkJ zmr~a`hq+i`lS85Au0z*0(6raM4aS3RC#MeshZw`-vuft51YSJey#XVSrm2M_rMG-N zng-~gOC%}s!SPiDp(Q}Ua??F;^tNPN0D8hzxvHwtbvM^)9PF?Ax7Iaut@r=av$xyY z-Z=ZP?aP4k-|b&Hjdt3};>&mljI#Q(mlZ+WZkq%pNk z&bd@EZrixz%i=e+wDz#=y;zi-OQRzYX?hx1t#>%p{`y?A|M>6{=Kufznncji5Y_#T z;qFqzNz^R;Gw0q9&-*eK5}i!l>YSPESxHYu;F+RDlhp}<0mRIl!B`9%pk^Z*au$DR z#@cewMeWi&aUi=bE&_|;0VtB`hVN~;64~jm3}=r6KLs2qaiOL?xFwmUW(b=@(;Emk zbaZq9ZTGaDJ`I2CKY``cU6@f`OkR2i%a0~tT!0K8zbTl{oDLDJzsJh9}PY|7^D5ae1s*4zmCn1a{p+C zZ@+qb|KG(KW&DtH|MpYuecNZBbH-lx_WxX6y+4#wN1Zv&%~To+k|t)=T>t-{&DX0M zWFLIE-MN)+of^DZJokT}>r55^N{RPH- z>CDi<(S*JC^;I3jDhvp~S`H|`L{$W)vJ%BYcrjQu+j=YkMcSlt^$IFXd(1hyVK0|7 zr5)-`!Ja7HzUJe*?iA1Yo)t1r0KQz__%QxY?@sbB^0WrrX|o?yMj>g9k_3eM01b?dx_N(N~}IQd2YqP$VX&?Yw!3yYKU2UX9yrnr3x=O>>Gp9rMui zq1GU#XfmOECD?T4p67b=rUB?Y-JXjvNFI9JYE?m+p&Ul8eO@YHA;}9!wn0{m4M3NT z+^YisLiL?sOeG~j+D@f94nyNQZg@F)=Q}_K7g$4>a}H#nL&qg-&oEX{}=_6n*3J6$N6!O)N24qU!NNs>CkKbEmKtyH$!fVxqa>@ z_5AM7`{SbfboEd_YM;xPORJ=d>F$$J^?E*kUHwvCPbuo>uxoC>sP`K;hgesBg3UdU z-ej+%CUfjvmwBnTeQ3V+n%gmEu_nb#(oIL_ROjicDKe|*A}v<1?UX z+bwod3(aW!3&qIk-NH@b%eb||jvDUB(fm_cR*?wOD~dKr;J{7ZXKnd-_G{~-1xd!5 z@g9G)0qd`_uG#$Eo_J={J#{6Smbs8avn$2}0DS2?kh^Oe^Mm_-b?PyDCy5k*tEE?g z^~cBEI5RQ+1%2ti$GKRaGlOdVzKdEWHL7?!*A-;rO(1-$u>A{=2Oz>A3qZ{lkiPfS zfV;J^w)_KgQY`CECa!Yti9Q6r<08A%cyQ~q7+nQy>-Bsu>gGOo$31Ivj}~igFbEld z{zrXDE9B_2LeZl?Nz}3G#9d26rbHpKJ|hTjQ|+^x3{2^5%D*jbjVgLi0tSN$z~2!- z_ot5S*fuo0+F$=d9Yw#Mr&EuM+eg;>?ZF*&$Q`a~&!lZP0BqsSD1WN!A+ZY&z+kcf zocjQ`sZ8r*I;n{MmawSGBjUiTmEcdxhdxI*qU>!CK;Cg-jNY~^BOCi;dQ-Mjz| zrULNBXMnz29sb?ZYU5vlem66x>E`p7bJjvagNOxkw_~mH!%jC1Wa}d%Fan<5Ck|5L*Fl?Hug8x zZ}ooB8!wc%Z>@Lq?L+`{;rJfcV_3tzzU6$j6p=$SD&TOUgxvjleX_{u?Nl{wN*0|q z{Wi4+j24viR-@M+hqY8mx~qz&o5J)AjAI=+_l?Pt{{foGQlN>1CbimnkEm(Wt&hc< zE9o6+V~xzR2611#&<0JrY*SK6Eh`aE^<#C+99h5Q4TR^WCo>Mq^|q<=@&XZrS*Q#g zFU>t!qlk<0;m>(7!}irB=0Wzhz!sTs^A(i}rAJ0CZg>A-%Rp z5QqE#O`jnHV+tsl=M8VaNG8pz`-{(ux3_b?{NvZ#TSeNV@M(2f4xd9m{PE8r(o%YS zd~7^#ZO=Qu+BrCER|K$m^+XlL`?2n@(JVY9n3{T@#;DH2dRDjjFuSO)vql77#*$ax zJ>a(ef3=lxZv3a$YEx}WQcJ3)<%uS%C8rG9`sFkYg251>m%8ONih;0#M0CFZ0P|pb zs>k8NUeG&(TE+;-RasR<9A_0mF&WUCEl)0@^r>l_u!#M<7B`PrcQ1aN_T$K1njW{A zt}~xfI>(G7J{(wd{lJarm~N${Xqsq}f#Jii-`NL8Us6%yxh>f+ zV70;lzz*BbZD6ha-@e-Z=y{k(fPB%G3s^?`m@zi*`%M0j#=9NZ2N@Xt-ZAoF2#&&e z^3>0~l5&oM6#N2A0X`g-l?It0=*?tt#b4QIzyUqfa1W0qBqeTQAqQQu^op^V%T?tF zf_}r)bA~l>cV+gzyu@TYU&hW!7Yn_Ic5Wv`yHlyz^mUzHcSb$*N*4|kQf{4VNs?q_ zoGq1Sie9VefrSR4e*JpcwxPy)+U6ehFt&GB7(0-s^PFy-kf9gId%kMMunIwAq2+0y z7O6whjd3_jjnmM^ii9Bm(@dhc1SqnuQY=PVk{aVIdrumuE^rB*3L^{_A!-X{S!q)k z#`4(<%(5+sMw66qMF;dWDZSl%wX*}G;1&iEB`M}Nsrg*tj^i8<{zCE!YQnl6B@=rr zq3D&=^&<~um&~R;c;@y;-v2I(&Qx4$SqWFsm;qh{9xT?81~Wm@Ll%7O^$7=?AgPe$ z9&>=fPvPhEUg**oLrlu$sw{~Bp}T9mAu^Izx>GqvcTV4(9BdQwlb^Dktrh~8WW_|! zR=HrEJk#4_$z2LvvT}u1x|6ESX7y^H#Pja%UChjQlq!>`B_c_GQn@s(MfUpII=6 zF;cN7^X6K{`wm7R+p7p6G}F0Ypf0&>%K-zxP!YM>wH~Kf3r<$sssw*!`Xi7G1bDH8 zI~Aj0!1O1V^YG$u44WSj{%j(uf9tEtj1-dIs7SO7h09`L5uPRplSo|&gUoWs+SV7~ z9~0z|QtP(zg#@g&BUAiI%aUXvE!h-btUzszE|?=pKnP3uxkOn zJnl(GS#|&=_A$6dnXm-{@a7sc?CfJ?Pga!`bGa&-toDYdqSv;8_{P*wwd`@S;*$~# zrbp)At8&>O^?dP&PJGX?3gy$@Mla7k{LpkCWoGBCFAw-$Yo@O^>dy1k<#|z?Vv79w zF?P-#RpU6`MDKT?k~EMgCB5y@ABRZHS?lMsG3O;y_VL;wM6W4z>Qvy7XFl;vuG&;kS@e;<)Hpb$(^d%i6*r`3BdSkO7w zgJI~K^=+cDsRyM^@Aamq+Q+3=WX;jYubu~gn%q{p`YMo4`Ex(JN_6C@CYpGHVtbvr zEXbm`wtC)CbY(p}U(Ay`GTng>QjQItEN)c?c>sXjuQoctWCEBz^t?+LYh2XPu!p1@ zHIA7%=$^rt%P})oRRQ^W{tb1n7*6v3Znk|Yt!|cP=lR$3U0%7=$@O+%`L2ZCcfWis zUTIzwwZ$WwUX;wqkji(^f4(MpEHs%}W--C{0l>zCSTb^7YYzsO>7*!!YP#qe9p%9D ziSAL?7}K#&Vb15}tQ@U5&FrcaYCnhH;iiFi>?#5!W!(d-sD9zP|7w6qy(n$LoIdo1>!)~SpnJ&hN1AF!W zejKjV2XR0GVTQrQxr96bFq{k15lV0A97C=oXK|IQq8@GVBlVjt4b|k1a*wu#eSuGW%s>3et5$fYw(T5t*{~x#!x9SQ4H3%x@s#K&ztsnlK zS+(w1`HQlGlx`a$le_KeC-M+6SF*p(e4PXJ_A;ojfjjb-4qdf-OK3-|)3fKZa8Vu^Osd3d_Aef~yRLbE%-4aXjh zW%V3LaG3Tt2DO?1Ma6`bDp~o51vIs7qNuEPmyO`CnNT-_g>cT$yFO`Wyh>z>u%0Cedjt?}Jirw_dV z{i2M3t4L7Nl8bKk(pK&Hs4{y!03x#9X5=hwh zu{9y81mDWL#CMMltJdcObYB+62fHuIP{jiH-!)pKS#7Jm>LQKDN1azQ{fCZy-H!ugS)h=)t}FxPe1MruA+b|{w|^V_ zK4>4l^fFhR*Ts)T+h2bBl-rj@|LOiXertPWWhIeZ%L_ECNwDhm+i{@bY9e=&vmb&*1oo9AxYYi=}@3xaw1?S@_E$@lm5`uY3xeJuJb9w$=d>Ocumg8DYT?LoIn zI!%X#amAlH-8y7nL?OAlgoH{yz=WzGvBkE4Zu#jC?`dB=WVvYiY1gxp2jkoKr}qrn z7ur^U)X}$PRizSn&}mhb^h1&sHSbbn6?)4x6$3T_AicF)=>=dd7{L8uVZ?{@X$kpEeKtT=@a zKPI1i=grgqr?m$@Jsxtn*y8M`aBF&`Rxk6_`>r|r=EC?%SzS5X)1rGaQc+#*_Hdre z$A{e?Ka6wkQzTOMaDHc&bZWGttE0(@s+2hes;p&jN-fIVc2+-MIZ5EFL9X_K3fAeE zT4n{97AbW%F?LTktcGQ!JIjm}K~K6P2_a&YiCC;eMM*v&oxUM)#gf6=)Kw+*;fggu z5M@KGHW-%suD#Ew_p8wgL%|9d`tPw&UiU2=UB7Lj5ZehHsxcuT7~?ExbX~!Mo2>0@ zw&slj?Ilwtnr}wl4UTqF&0N9Gx4A zLxWYt67+B0ZGZpXCwGRHbG^QEVs*Gj^6PXf?Wmg@d!O_?T(E3PJ^p!rUC)dY zxqZE#v-jL*c*)+wZI-&rI>&UcPW<(6Jhfy3XO8=S>HRTp&$+3ID!B%F-X-Dq=4|t1 zuA=|rW7q2?bL|*d_ZR0rw8m8`UyZw2;TZ_c#seZ@W?<2`$< zUAug&Ug|2NObCldfRO;{0K2?KCl^SW`7}=nwJb80Er+O{o>-=hf-3#uNP57xlAsts z$YK?6iUJ+bSO&`o3y2crT2!KRDT+&+)iJvI*~v|TVKlaOmhBSPF0e~+W!dRLo-!X9 z>e`(5i5CMQ2nzt7j2#nz4gkO~wnYIh0Rx1%X<6(MqjQ&tlv%P8RaM25nB&W))Yv?W zb|t%+TUYYWo8A6%YUKoHJHF}DSS__u^0qFv4o-hPzRl`?^EAKMx6l7P_p2`##^dI_ z*__8m$Nkh<+K$WQlc~y{g)d0v{XB4#46+XHP8J%v&#jko$5*u~o|*V)=21;MDTAoi zh}6`AgA+!R5vaA2DJEY#|4R;I?(!1Py;P~2p#cB^MhL~7 zDuh%3>QK*!TW~|{_R8*aXQK#oC?nw-`Qa#R3~1}z>w-i$_UBcH{Yczn00w@1ovHvN zAb>E#)lv;00017-;|6xP0HwjmY#E&_I4oLKRmr=TUn}WCv!xw%`Bg86)xDE^Z-4n_ z`5yHrAx}$7=0E|w4D7;}z&EcQC) znc!1l_WG9@XUsG2>by1VCRKDJx^_1UTBGZzII93Vdtkac5i;02sJHeW$g#&PdHL@p zGacwP19C)BGC3^H&^K6LcH2A2Rm@>lOx3InD70kjvQ0h`sHC@5Ny!KiBLoKOy_%B1 z75&F<&l6(+VF7Dkao^eiKp3nQ0eD)ZBI?SiF~UANc-EN3TCGGC0yzq_hLn~8;}V{R zO{$?SGwlH1%pvE_2A}(-=~7E}V~@0`diD8n0zM3$YXp-f0DQ;br4^9u2q1;_p)W6R zC_krX*_nlvtXjFMDycu5yKit0ts6V5vwrsdv;1@S)6@;khI;G0_I#cnJpB2!;X$cA zdVBHoJoQb^>g)X-V>jw=?GLeqK09}t@v)mp_h>MB)$298zl-2@>V?sRf$W0PnGF5aqf>l*j+<}#J zIacod;PBc*n9liiz@L5WY%csBZfI_)nTLC~{-d^&kN&3Ke)H*L>~Y)m`tW_Nb{~?i zegYDrsFEZaCwQQX9M*=oLK13cf7R$iyYJ7{*ONV}ZnM&~f9uq_XXdp(Wq&Loz2`C) z^+s>&$(RrNuP*tyAN@>zwfi#(G4HCgoCkl_{Un*AK{;MC-shmyN@<<(qBIw-6*!JL z`;ZIi>{1fQmL!v;QXf8&D$2y@LB{00Tbu4$CEq847XwLEUDaGCwOih*{US1eh!G%$ z7Pk)Q1mo?5+158r+P91-V4U*oZ=Tl15Dc=6I`DEhWRjVFz;MItkg9VuQZ9I#nVmfV z9vog$i%g0Puy4IZ_do%_^kHZHNICZVpb%xWk9L-lSq6#4c0(dmu>>-&UTwc;u0{D~ z<8SYJygdEC@|Pgrrq*C{d;R5C=QdEjDZknOobz;>AD8ppZSI?dCg1+AbKY8#??X|Z zv)$QwyWb6c2y*DNc&~rk`xy_9>p9QVH>#*Sc>sF+Ol6;Q-{-rrlkt^5ikzmW0AT)< z`t-btA#*w!28v_{sjumrLnOGmn{l&N$O9k-o*x z#NG?*R7w(&s`upbnOk#bKzgV8CI<-}fAU(T0a}tx7BV6NPXLGw0n*0mrbGi6{r~{P0I)z$zq6-&duJbR(#_a6_mOEjqr@^Z#45|NDwc#$ z>{STS(_xPI`IhFkJ|JOsw*)be)GsdR^a+j~?J#WwM{rj#n?iQkKxLQo*oViXv zE)VXrKflh$%UBEFnWhOF4h0IiQL_0lPpSehbV0WlN;5`&vD=Uh6W>bbvbLDvyy)uG z;j6>|y|`yw|96u;k0n_q6hcCaY-DMmI60BdI*!!E0o5cbUDLq~$uWDDK1cSn9RPt- zXcfxc3KGJE0Yl~qG_64Wc)X=G(4@@0N;{kx$bl$M3kjh!rY8CTA{iRYLj8{Y{sWbz zQosrTTwk4ZGJUm2`U5lpQ~;*y2YhUn>e%o~oBKawzHOO1%f)b4n|lFnTR<9;`k=2O z=PV>eY-58oTZPFZ^8iEv6d(Y%b_XNhefVjud-sI&F6OF8@z)pcSJv!kGD$*&YsPf) zR_GnM&NT{TZoWOe0r~cM07-0AMkw09-!=`0v7OS^C&Wbv@PPiPl3mGuyFZL97g@ z+cF1p8!QK0VLi#;%5~x$zW@`bQUKNl(2{jDXtd{nr3KapFM2-<{{QxId#W+D4!o}JYEq$pqW@Wc_|=n~N-5#vstwhSI$YhdPI&j#cBuzonM@h@TmV10 zjk5j3`sFT3$_a@MmkPElJ}xfia$VZe<|^q%sif)IXxt$pA9{+vN9m2r{Q^YW*(v&~ zZ8tmhA0P@;;I{`PZ4Q>*d*y@tRV^|{VZpTQR0ot36N1d&6h1GqGjuuZ3tZWT9jk%a zwPt4?A0Q1?V&`$dXO9A{`)B$NjLVwd)i%gAi0!ucV6k)cR8^@ab)_lQ%D#?GrL&CJ z-{C4wRaNyCbk|to$Ztyqr=HViN0+*GXhC2+@^8^yuGDv*6%5*_`h*z_Ud}t;l;E3wf6Y4 zHyat{`s=OLgdz+`~fC!P?_~KezKV-s)lOlUuKBD#4xY#UQ*im4hjqB$St! zf{3(=YE@V*BIv?`$~>`D`xn*Uw|#%#8KY83krzYcJTAA|c{?a)%TDw~KFe3#06QBJ zJIcBjl5Qs)C}LHi`HZ)1PO>EhVC4pYzyI7_rlcT5SqS!W(PtvH#uk&Eii!606Ro5VBC;A zI}etb?X#TW=8MneDcx%3u{phzHeKRC5=#h4odXCHN=x?mue zsPP7khUVjs$BNP*n8QGmt16e7(}go-mYnnq^zzeV|1v%Ni}qAa%Sv=nV{oPM*uCFs zsX6Q;CCH!ug*U26e?NVEsd+!O9>%!evn##-x1)~9>RrC4rT`kBf~V9YCpIlpvRk9D zTka=!(f;*G|F3hC1-``094=oD{YxI(k@NAenK`G)zGzB z$}}Iwz8SYKKWgmxW{fOuUz#nG@H3`;pGh;fp&PpLZug4 z6M6&5;TXAR-JQKn6hOT+004mW!WRHga|*spPD=_lK^857EWAu^y@X*w6cKaPv!Z5M zpKq7A?(6IBRmNv1yD^Ku0hGNdK{Ue}a>XPWRP{y`yKMdZ^ub8}cuBig7zTSTJinjr z-NWwn-R#_0B;B02>3Fs}?&EVCN(X?>l)Sxg-#P9sy^XVylfP&NGCFhi!_%DOFisgd zIjN(+8*R!H9WbZyQ2U?%`{zRc_2l#B@3&)PlF-7zZhSu8nir2e_^?z`TXmYAXcUVv z_n-4VPhEcfcD?uCf9%Z9YK2-I2iJ|%L5A#`{W){6ZwqJr%?W^Y%YXqCNmWtx1df+# z2ts3<7}nOiAS?jP3)tSTyub#)m%)~+r6|^EUQhWDk+uslfSgkRC$vB znx;am761V1%hw06J$@W6$wZ`yA?p>xW3e|SA0HZI8NvL>a%s>Ma9`jga^$Ry&EPWk zT`R$rfR7faI2}IUldaip7!GmKUalI9{lhQqZKq`o_e{*#()d!Is@0uR8uIzN{^D}- z^XzUlw-k%=!bz8#~gkQG`s-|e{#pPGK{&(-2S#e~J`SxjA{`&2V$L4;gE0awQ z$p8Zh>GXZDe$Hoi9@$KDs<(Ovs>V#_e$2Og{kHapmtP;>&X0f4axY%=1Asgxd+7fC z+L0SgSoPa>t- zC?ysEx*-PfIg8s6K4CT%H6D}|+cPwMio0002^ z)w=)ye(bG<#pFyVatSkW4O{Gu$wae*CYFpSOPbTU;=b00zknP$JF$fz39{Cys$>bG zNPX|P|HhW`Js17#KAm4@xB0z1-}obg{njExtDm$d_it&}7>)k^4<+ZNx%+)qd)hh$ zuGbMAU(0;Zn~l^e$dEMd)~_G^_3f?3VVYyknf~kO?Z3`JZJ7OWlY;5@Qk71x+81oz1b__~qgHj7p<&XWor1$=f8`1|kUNd^dlS+ex{hn$ zlho>iLMa$PfF$dBMimNA{X~up007X$hjC(_{H;X>D@e%j6?SK6ah;Wq*ya9VP)bAcsm3FjkF^r+z-EwkJclCIOOy+4xy;@5HI`jVZ2uaE-&%SB={UcCF2?eI8 z0;u{w$Q2-!0wl1(kxXD}HULPHt05gFMWJb*RfSs)MJxcocXIKcbrdNi0cyS`10XoF zRlsWm7#joY-qra4#P0`yAxdTav!qmcK!=-Sjo88f*tB5(g)|7tu-LrO+R|4jct|408l z|4aWv|5X29|7k-%Lqa}D|0Vx2{~!M#|2+RH|0MrEJ3K={LPGy2|1bY8|0@3}{~!M? z|2O|SH#s&lJx2dB|2qFO|1|$M|0(}5|2Q==G(ti^JO3m9BmX-8Dn8t;iN@rFptg)q zO<3G5UPfevEQTs6fiv>Mpg|rAhh3n=SaP$9qO) z%rj3$Z7Af$`nj$NHjpgO9nCzM^$71r{^a>Y%nWq|z%>^Kn1;b?uTiFP+zN9Y6ys z^@nq9fA4e2rS|PVJ)IAmE1SCT*Fa7kHE@QE&bIHPMu_{vA74M!0BAh2H61LU8ixI~ z`T`-7RyYm)9gStn#sU$+Ska9E3`j44Rt#9S^hP;BfB_iY5ws}ygdrdsTBMEG>5vWd8Tq??g|vHAO#mpr2a}F$3ak%*k!?r^WGe=Y z0b+lV3{O=+No+ve005DO52_Xb!T^X@23E^8g@Ls%SY^b$*e#2)%<|wt)=3uJk6vBB z$JvYO{nlvz`LnThKRuEAzj2ks$TC~!0;SO{WSCRsayU`_a_={bD=bp4v}!Y7Pe1$g zj5TeXd^Ao^>!E9`>|fseAKG?`r}35&`VHAEIb65KNvnDN+-O?^R|<2R`?zo4Kkq^B z(^>cLkFTpg?(^Jp%$;$loQ2QThpH;7r>^_Hr|R2Fb@Swv9H z#3@zvrU3~Fgx1dnPyktCWvxvCKmb_M>QIG3enm}FlM7Y#v#QZ%brm5j1GXa_oURxF z9~;@&KLG&70Fv-00&e@xado2u8cmC8^0+>QG9IJGg#alOk$4IYxdL2vz2yUnp z001OjyFfBFfU)A+sDdI(lh7QP<^x<=F(p=2Sol@Uy#NWL7H|?9EMCW!PcxEQ-S3%_ zds{l>{v)r>@#pZqkBY<`qeah4kxrYukxKilvK>TM6F^#3xlXYD08;}8_`U~Vhou8W zomK_r#>3nB=zm&DzWm+J?d?nMKW;DIKB}54RftJ7+U0wyeqL4Sb@PzYzE?d*1H0v_8aPk3$PS*jS9|77Iy1Eq4?v`HuSiRhK=j)eU z-;c|mzy0;+{cXLgbqQ$=Rki9%RaNEV2>IFe>oL%_bUX|dZwXXYWKnFY;4cpQ576dZ z1-yC$&L3Ug^}`f9dtY4L$NSr#J>34DXC&sa!=!pX7*~oExp(3{Rpv#8B=uZnzY+4` zGOo4`R8>@hh@#X6f#nBi*vqwPt~)zzB$-@dp5)ee74>d|E3X z`*^y(bXJ`XddbGp8<-%2n-Z!j#zbU9o{;xpsqxCz_KTSg>(6uZVQ!TBjRkYnlD7v_ zhxYOb_Uv!#y?g!HUh{~f_UAS0k8%IFzr4qsZx8E9#=hr17FX~0TZJ^CilNWSt~z}Q62##!ozkfJJ5k*fO1qSjdvwlV&xlK`-dY~n9F zV4Y48V`%~heC0TTOJhsUoCm?=L@i^$SLtmWwsK|!ZAzL(G{?vg6&ZfqtsMXW00d*b z0nh*dxC;1&+*kvv`|fzM^b0qh?jw9G+l3`1R8>`;Eq8Ohk>&Y@4P*H?k)knHl5B`+ zyiJx@5?(D$pY1H4y=-~gwqFlBY@8NpHy_?t`p2GZqT~9@+Q9qmvPNkG;U=&DOe2+4 zZ@1@iQ=L;Ts9&1ABZ#?oF6b@|N%ufHE;N9x|Casub&i|Yx-Iu#mpSLyd)y76pmTZy zy*ikVYyI|h%<<_uz4gpo7_WOO==rSxa|AMnzPdyF8$aaki^ZcwRvupwo-*c zLfi>}494PHf|~Awbu|?YRs35@6ns@l^;cF`t>Bsf0f0gO$m4q;DgK(-dm)G|eSZk* z_NsaeA@i*z#XjNOb#=13tqpS6_jZiYr)YKB9Y|~*DlXz^9qkvg=|>=rFaIUF0bZP~ zBLoHjfMaT`02}~-N6v5pijIYX^KS}%aw(1Fl!YLN)v&5+#nh5VwoTmZ#`;TZM?2&3 z+{kS|oa}#B_ifn=OKHO-;XAfbdo5=sYmeRhF!#3^f=({&!2#;@b(!qZ_~%pYw|(q+?prllb}_sCK=b^&KF`zpL4Q7j zQ5SS6jLOvb*3qJrdF~}YFXg=#<4(z?E&Sra0R^}Ua5@VycmIk00&^_J^O;4(XtTE@ zPtiL76vzM;;YiQ*M!p20L6R}#T;7u+C?u&@Dkb&uT7mbHh$>|;pr^z4R8^{?io|9x zmRIqR1{-Sy0LdWGeU%7Q3KjJ*e9i0#=9rw~ZN5~vp|8vc4NUT41WcN1^v|iDkfKm< zCGC(H7a~K0jL`vpT&)!X79FSiF7qU1hl{rv! z<`)PY8euAj0*sRYz4dPZ00M9fb`z;Wa_LR1qiqtDx+=*kfl{f}R74m631lylWQ%tr zV~2h18$bdhR>^tBVNeW!40O3jw1Tm~0O%0q*RZy@9k^t5M8UBM(V&jC^Vs>24X`KT znXE_bwszvqDE;f6sLOR8tgQtDSqBk>*5GcD0$P593PRsiSiWJ0zI2hqo4nBlmTat{ zEa2oaC6_=*)G*|#D&}Hqnp_@J->^Kl;dfS4<&eYOZ2!ZbGbM_T2aoofYlYbMY5BBU zJDn`MKluwSnQ7wr*2W9h``OgFF^|#u<@q_}GH){Lz3w}5Pt8A`ow-Tg{Oxfo>V#$# zW?D00<&0 z)FJ{l;;w=S^<2o7cx44LB0N2&W4!WZ1PH)Dc#1>?tx~3Yv4sHubOHtdA^})ttMh1x zJ`ByVbIA=fpDnoiq7LbMNxdyb9Cib$ zA0gB}ddP=h@yQuETjMUF%^4;-$;_v+8Y)TBII_FGE=QFgzBn0djl4GR=Og!O#h7;E zWzp;Y(h1Fnj@`EFx0DQZQZrjiH~gw}_hAF=?)=~^x4ucz+d=6MrrZ0Oc)Pz%^^cG2 zF-|!5*R{;z@WuTFWokIn@W0yee9!qu*>8D49a;nOnlUr?{;(`8xINuJ*MEEAHq|0^ z)R{};k$d{h3}w@K0HT=eV#?E107Lv&oB*_6sl=3A1K@QMK8xq#vyos??BFNHi?M_d z0x1acr2?=46G^%()GQQ0{P-s&+kTvZ0C6Dz5aFhmc)@`2Qz6h(!S>e?4X^~kgZq#m z7T<2PUPGXjcrX!c00A+;kqsc-6c2hutIsaxe88ipMIQ*i1gS@)@-+ay%T19+8bVM( z&<1lyjUxsFJ&4*5FGgIl$M9322)aHaMxE{0Y!J-NW*AO`4LJ^lat!7kUz_jJ+1KB# zU8S$${f*Vha-#Hayl(@PMVnHOe7)In|3z(a>-J0KJgzF!q_p{qwL!w@06skxe7i zH;sS*q(By0d6Jf11YhtgFb4k1?S)2W209hNH=A{sg%m*UP{^o{c?jQ7$RnB?Ui1>J zQ7DU;jXsDD59>7K8Xz-aguQ#_Z9l!QKBD}*qz~Qxe?Qjq|I+mwO=IzE)0ATR9odL4 z5%R+m%RA*E?Cp%4%Gh@u{p7{l?cA~oYE z1PGAcTC?s*045Yq2Mrd;7RU}SSAWs1N|6frt16zfI+7oJ1%NT2brIk%0|2NwPJ1(0ps@C;WDFpyxkpW9a*hByrzmg>b0001B9%BFi z05Ez1_Ud(o){ERxbRgQPTg`A!S)lXi!21ONIDPlIMAoO2zJ{`ZJqAJIv4lhIowOh^ znA_^d+F!?Fj7vwj{AM;Cc%$G>(~41s;eLTWUumk;@D=fyYaL# z=YvNcTXuTamAdO}rM*a>|Aq5bZ=Fs*q(A#jq`IySX7bXHS&+y5=@`kb88R-4CEHx9 z;jI6@JoeX5i+{N-1P5k5Zm3Rxti=L&$<5%c^>(wb*SAlq<%9I6r8z#&{cvAAkWyfA zb8fNUUmWi9xxa@o7c&!_x9zFl2jtg~qEu=qA)B8N$Of5e*k`E#snyURU4V@`pF<#m zq(D{j*Q0os0c=!H1wPX^FaiJwEdfHHzvZgbLlPe;NvaB}1pJclgPx*DGTltA%Z`{n za66j>MQESOfczL~1raLwK&dJK2moEL?LN{Xd8_p=sQ_U*!gGHL9LoRz0D$`6&o|=$ zWLvn*BvBOs4?e(T2pRZ>2jJ(fL$YKZr{lkc*DvY+`F))8@#nm~c2>-NADwCL6I!MhhW#G_`1_s}K z-T!#|_Rs&$yDYl>hR~55Pm^A$O4@o)TPeqPG2zr|k4aIL>c>-70DR@0!tpjmJ|3=-C%9&HUzTcJ1cUqr?WO6~3vD`8Nj0ga|JTZzPQ_Mk{9KnRMnNttV=5+$j$kl|1DbrCqUGZByk%8AaDp zz9if=W$kX8E~9)W&3gCFIm%$JM@Gg}ZLcWEMBu;x!sfs$3 zY0hkUZUZ{^4g3KLV;i2kWsv}zUQ`umce%nNNPMUO?Jb|&XXGAZlvwsAmvdIGNEPeA z!i4MK7v5j}4b&6!)~%tt|DTJ~->h@x!poP3wY=z&nCR8Y7bEMN-1u^N{`%_{jn=G_ z`CxriKk=N{<1O>;BWhse?AY?p^RB(CeVP5a*k_*6AIs|3VvaJ5gbAs0CM?N=XP2Ql&~;mZ~b{3^tYN*bZybgS~oWcWwg$R$p9938%nY#pQS9u!Qnb`g^|LCyjCdB3wWP}(bQJ4>u1 zgoZ^{5TGCa`_&Ew2puR!8_e~QOg2Dt0PS1GvIx6>gOejm@1?M+ELT-U(iRO#=cSib z%lb;S$?fg226|kz{r7T6EvN+pX;p03cXp9n?;Wq7f%8ft@qcbXtf8 zLebS=Y&fT&!9hecy_5Q1GhheI8?fwn3Vz#~H-pXFWt{=eIo<4i> zeSZk`PH@C6pVzs|u zU|vzDRc7C^6bgrBu$ZH&Dm1-SQAAa!YI;e8g;R(C93o**c}`ma{)(<6Oeg@Nd)sV+ zvfJ9QlGO+4Rvp$+WA=bd@l5u=eN}0Phw4EN^-$W-UMHJoHORaM2eE<+!wVb|nJUl2hv#8CBrjc>ZcpvTD z=UgIvqH3I^cadXqKmSv+c^h_jcNhKhr`zTJw!S!<-OnB)C-ddCU4nN$|2p+6nTXai zv#W=-kS5n?Epk``c;1A=S^Ie=vWkGmSZS066`Sf=7O!iv%yALprDVT(xKz$jsl$4z z)m^G)NvhJe?P_4-OQkb>WxR?sytbhc%TEwG#t_0M_<@#$qG>(*Aq%h_t4^A}Z0~}% zS@RXYCz5uwLOXzM2rTsyV~EZGnUGdC(1=!_nFs`t5C{WR^;q@sku097s$DXY?UAG2 zKl`lw&9Dk41ONbD%&mr|r-=)_L}bCeTrXKf)*$Na$XFjqItV5>qm0ZFksK?FRWZR4 z(E78M$ytuAeZSvNJ>Q0j#O$P;M+;r#kj@%h{789uIX`?(waoUl+W26g@&ZZ^Xp6!& zxwNM}Z_l@r&+|pQ9?HH=dv8{oUfXMQGH1OJJy=H# z7Uk>}}Byz})&8~M# z!{0dg1&6oUtbUa9qP7UP?zeuP>nU|d_KGLzpGk~Gy&vCo-bHBg-nB5TU!7TYEl690ar5Iv4 z&5~-tos1f8!Uqf0gneV#F6v<-qS!e=PG+f6x}|hVv+S9&uF}b}R&u%irf3001iTBf zaQd}KOICw-2xYv0N<8z)p~{!t{w^cDmZz z@890DPY?fy)`@=45N|?`+wC3(VV7(~nXF<=gsMs)VD}HN53M<&%1O>55AS<#E6s!U z>*<6^uY?)zei5o!b3L0VGcM& zQ)gysXhl~?Z2?tfc2w%YjO(IhweP9Pwqj35Ra63#2!jbl;BMxqqAv+!sd2{wNnhOA z#oKj4T3nU_vwn_d7$iPZweiQdqZ9`Q01yshA_)u_;0! zDOOjLD&N@%=PaNU~p)GB90(j%(Lkt_|-`kC)_%eCY7SC)@MP zf=>@kvs%~lt1!c%g_P*sdn9p+(7$n@Sc6$ER#oN7 zt{Bp}dOZESGgq%y&+Hv@v}irO2%E1DLT~P2`UdCKDu;Ae@>B_qYOlEY!o43ZYC+D0 z3@b+c(3?H?+;i=)ohWvh>#H#tRfLKIqcSe%iN;BW%VYFsibx=-Vj95P(_ep~`C&(% zm#GMS`p<#Bv9Lgnj5MB6*8;V}Q6J3?Ep7K`m|UErXz$;Qj=g1P)(?2?3VZKp4gYZ7 zN5giH8;yn`r$T@zf`GJLtbY$hmmwxri+48FIuN3}(O3|kyd4V$66io8DBhMRKw3Zs zxbGuV^zgqb)v~_^e;=V=kRZ-hm~&W?6nhDM>EK2Hq{=#9DHQ^ zH`=+1@i_fyy_X6%ev6IAbBaY-=eNGcv(B8ObpKJ8H_CK^P~CYR=&q^8{btqVa%svw z9y+WSxAN|(cT)+dauz3Nj5$6%{GD_5$GXOtj|OCB5knaVbM=!es;oSCI86UKZH|le zJ@yoL0Yw8HFr|En#TbaweXXH!ra5-ZDcZXt#gR_;kQSmp5by2GL29)(fvPkuG7hv_ zp)3L3Pq0XW z9h`&Hkl9f?3Z1yZmhNpEyKUDN_FWB~0)CwBi2@b?p!hm@1~!4J2MKO%Qx%K$7>ttH zAmt%z<*F(s_u^9n(tnIT@^H-I>1`1U@#gf;L$L$|7Jw#CW$^C^r^8U! z4p$W^bZ1DdR)G|RuIJq@>Bf<7=yNUuZe6^1F-$K*1{N0zvJz`~UeSSYLd za6DS^nkP?>uYUOp5C9%*ElvUw0JAW~)8q{R0KgpHWM?UTls#;aLeWa+!MFSvk9`+AZQX7Tca%>KOH`nSzEy9%;HcVe>6ll{%-%EjoPt0`KWoLc)xXnMz1mLPR7?up-;CN3>KS3bMcmVDVe*=?)W4WZj5I=&cj$PWsW0t6XO<_KSH| zX$UIMNvWVP8#faTrzxVyY!-tzb|hhK13BRAK#+n5yIo+K`*T9rRL}hb_dxCJ@?Hg= z+?`^CFcTRh5?X_`HANtG&;$38dxr+;!cD%=Gozi2Kq$u{p{lAzzLJgd;{W;Wr1`xQ zsVu!@*2dl6$HUV2X=p%v9$vnG0m0m^7IQO?U-@S3QZ_laHjtlY+)~ZYjE9}*DOpU?IASmq>pTH zPR|oc)z60Y)_^+a0E(u%DDJgYg7y}f?YNjTWbbvkdN3SgqOv%~MS%=ZCFNQvsfuiD zkmcBTUS6avtMUItdpjzOz2bKAX07Tx7GNe+Rsb+y+w0@**W?Yz0s{c6b(vA`P@&K{ zKn1cn_e&#XXgMI<90El!b_V2aXF>EO*8ARmnGcwSe#ZemEFOJ|$sowUfBfye##jgd z@7|fEa(avrWhR!Zs;bJq-0949qQ4WY$!=Ip_NzOpoKJ*1`cCq)6G|<$McV08eso>f zl)BgB&9~2A^+VRvWjW}J#q=~@=NPyC{`~dv)6UY9k{EJtlUb;T`YoB=XZ@zyS$eXh zZWaoq{wIq#9+PB-niqLKdHj)cd)zhTr{+KZ=^v!gpJ={rYb6h-5@&e!EJ0L6#4}wq zs%jXx3#CY*j!sbw(OtAoY2b}>m}+{v%At(|;&CZUn60`8%0p3G2BHp!;yFaQS=wp8>kxs##4 zk>7K1;|u%gDV`jjY752yU=M>^sY&vH0FvBdRmVp-J;un9SqLmvRfkAHqf=)ie|CD% zG}|0&$)8lo`dgp*uzRYP`37V1VGEK8?%jW^b*s>}Tud*7|zCOb>pH;pcqK z3;DjgRadjC8G1}t)YQIaP7XaE)Sp&J&z{@3WLo~xIO3}2jyc(^!7f(ecnrdYXH^BTt6GkOzKH6la(go z$X4pErJr%;#W{x2Hhd<#5oPa$#ZI^-o!PM!$#V)6r758Q91e2tdfDtF06Ysg0NxBf z#uDrW6+=+$ZMBCq0f2`Y8a5Ulju%jYB}-;@lE4A6p;irpf^d@(+5t;6%hl5BbMKbg z_HabT&$s&OaBZqn~S6;VIruiP!=i+s!BbU5%KHB->6U^$_em7ta?@W7qwd}n5}(r$Qaj>yd3ZI^M*gLySFpr#uu5=MAEb{SMk2&vw% z!um}BAdFaLm-&e>#oGr!bXOIms_Ngc$5u~voeaE<$%I0ohb}K;sg9i$gA`d9Y&yJ6 z|9Ze`*syRKF?Ss*NU4(NO2P9^d%8|$Vsv#Y4(OxIsHYS!_c9}xw-oB?p* zLmS%weBDq-_WI^H>W|-hkLPiv(G*f(u>Trg`(N!Ct*FKA>nFK>fJ#phIH~hfm*mJ`zbj>*l|jiN5eH z>MWy^5p-GIf!J;vbLhCQyGJ+}CQ&IcwjXV)-%s0KZ#4aymurO;_q^3P$Dw3})jpHd z2HN&M=eIwL-gD1(E&_aClrc37>xk@GotJ#(9LTRAbm9i-*tEWBz>> zFU)>j=2^XcTS+TiM@k(hD$9l@?y9$h0(w-^P@O9pI$K390RRBBQb}C^DS-s{^f9K+ zOx_tkuDp5o?T&T#nyc&Vn|pyQnVD5tPH?WO8t{5c9xs2QbG7)-%Hdt2?N&!k`d_qq zcHVxgxb|SyEZ227V?3X5um;J6Cgx?Kq^+jomM>Z@-Cu-j^QJ*w zO0_-KYcrw~Sg`>az={?G`G~ezl);U34#S?LU2r_4XHM#_?wEJ1jl`qdK|cEyTf%|8 zL722C8v`O$9u>ZI^(c~f7Q=5SB_*k16+S%GrGN!A0EVSHRSZ@<-?po$x0$wJ@7=+O*#VrI9fss~63;1$(UnJ?{8TwU~yniU7zrOG) z_m3#4MvIW%(ym@o%`#L{Mp^3}YdnGh2*(#yk?9bQ1qHq|o%*F739}wgy#qAU_?PJ1 zbc_SUq6gR%qnJyHj-A^yW~8<9jGyaVoC03VEu}$b7U&Cj!CsSQknEVCINwcw>SXQ) z${9De0x}NVBx&JTRaJ%fc)mR!cz0goeYsx``oGxnRj$o+s%pVcvbq{He-U}2;Dc7O zwi300{(M35Vf*_3pI!awTRRrZUK4q{GFoTaXFP1#?ev??WervA3|iSj_8ecnn~p@l-A!kNr5{4>+YovE|(?*q)vJH?=! z@k{jEHjJv3n|JQ+?@(I)tMnr z5=i)&Dd^Sne!;8@%m@9r=OQxze%vi-jj#d8FdTbhTVsu*$QUp^>~x(_8=MjwJ2MHK zs$#W-m6K)W*jt@6eGM+{`cB%FyHy?B9oS5`jhB4ZX)~vN_RH?WQZZBBG&=nBN?F0J zfqXh(?xaa_vywQo`+t008rCaNcFi@}9K*{ar?7V{ zlGp6B^ZdM6gVvBawlR#ecz<#X%2~62(5^L~wVR@a(=;O$%~XLJZkOw4nXLbvc^G;o zhgln-l4}}SLZEb)RhAF{UJN1eF5?JdDgg}Gg21sbcrmtwq^6bjA-xd!VZod8u-Mh& zwFG8IJ{xI%1zF83%Sb^k5d^r9-p3AwVOzksyysW_Grb^Vt+Fg*Rd}x?6ct&4?7u9_ z1lrrqQAP4K0AK+AXi)&3>@D>OW&!}k;Fi{qPmnX?lFYphYvGiUZI*}(LqmDUZ7N3~ z?3f>qzuT{o%idI44Q$bVw8~RDtM>lsuakBLy^Y!oA?cR0eoV#1+^0hbi^!3p| zZGhHuga8<^b?v41p((W|lXFz+Wc=@IYV?bJBC{CZd(Z#hYqaXhU0__85!r$j7^uPT%-*4_7roB!X`{Dr|+U}-zfKCa^-YE?=V z)RVW>p4-GWVa(TMIJ)<9gYX6JK|QI4ll33Rw0P4EWE%&7y$A{6&<=Iynd>hN03Ix^ zevOm|^cj*2gWI?!&nJonP*ShoSWG5yxp$mzl*xilk^lMgNUI^&9HLC+?jFv(Ote>K2Lkv699Um zU9f>>PS2vI58jKL?wbC*0-6VyCQ%oa4|_a6{TzGL9&?VFQ0YEHgege8wm?EgHS27b zlmv9w7+>pvgfYGWVPpg#z9f5j8VGz}1B3*zwfpJWL8L-eP|FIoBS1(Ps{SM2{c;@G zPRy}rkzG`b9r&zjz<0*z`8F-sX+aMXe8zY>tKKwaJ3Wm z*p?&V`0N*P-5$PUxz&ANPvqz*m&fzg3eqrZLqdV9F#*z-K>!Qo-dho|W<#y~xxirDLP zC@LYAmHI+}3>Zs6iv#bw_*{2us`gs)0ssh*#e%>nKu$5@rDB;V6`1s{4)qw8dz;S; zyJc+>n*>X1ZN3m`!*)2w3Vn?V9b@Pd3}hLYI>CDnH8n_d#z{y3TwC2Y7Hw;NV-G-t zK?UIAJ2Fo>%xdg>{XRl8Kjy?u>Z*lP&z~9{=xPa6*V5-_x}LCN^#CjZ zD*)vIHkqxrZY_6D6=J4q7xk9k>63@N&)jKY`_TB>gT5V1XlJ5SSIseVUAGOb@AdSt zXRs8a5a>Gh{dTI%#mD2t^Ro4vKm6_fw0?eGoKJt$*IgOmvn1?m;73r#oa)X2`FIKYUyYomw>K- z^%nqOj^7-ZUg?w^NoON~0|r!8RU(Qc1F-kq#v9&x&9D9=+tc#vAd>e41{?b1Zg;$l zJw@kE)fv4uc>M0_-zYke%H6Kjlk0CS9(_nxS4yOJ^*9KZN=MPZS*tGvm2;y5a-e--3f73txBZs z?4-d#BOK#DQi^3X3g9$rrRGN+oiBFLV&Dj611D>sDCe%36>M8?>E%d_KMtlZm29yo-Xs@Sx_gYP;YS?8d51* z*b$0F_v@Rv*!$QB16hMZuci(%t@ne|<>=nIV3V|FCwAb7ov9Ku?Xs1oG4a)HVh~6S zBt%#VfIut*L`h*`PzXRQe+gIA^d##T<9XnaO^;Wwy?y8g42pz$P6ei!QqjQ;?aU^O zunZCagyVqO9<6?w4fdje<5@Cf_;3vO%6mWz%46dpgid7QkpWOIEY}sq8X7MNe z+^)1=H{Zv*Jg5V0$o^lxNqExh4t`Qn(ohHuO4TZqT5Xl8CJcaKl>l+L?FpV>_Eu=t~yjw zsZ>ZvVUWmh`S~W?Oh$!pg^-9L&_V)V<(5N+V>K}Mas>dAuwf0zxir*TU%G8)Ufk{7 z0m1k=_(3F{aQ<+X^1I-x> z(EVM`^Tu!6RmsXU#)W~3k}@U>_8rb>X{V#?ENb9QngMXH!hkWU`x*?EE5$m*vRG_3 zEe=Grq`v+0dQMR!SJx^i0t5YhiVKu_P5}V@$9vAkQ;ZWOR|HW6PM12fjyM1npgXD` z#g@2k#OV{&@V5>UPSmg)C}nM08eLUQvd)!i#7lN0001qtyQg2 z0002`z9qJV|0w@3|2h9dHZwOjH#I~zK0ZD~L;oQED*q+_9seZ%DgPn=KQuQtMnFkN zM*k}RF8?3@B>yb`9{(@@F*i6iH8x2+Ks7@}|2#J|H8?m%M*mU&NdGziHvcpKSWQVv zPCZRY|33df|1SSDH#RmmI5|i}|3Lpa|2O|gKR`l3K}r81Uc4P^1Vg74P>5UH9eabs z1YKm7*f;&GaY`IG9C8^+B^3w6swzYv*645^CNmLj*1m^bG*lP#yoRQGopoo8#;LctOsyPj<^nWe5B=h0m|+@o#~EX+Ec4^) zzF*HC*^U}h0*r2Wq8Jnbp@tRSjG+3^(OI7b+RH>hC<|3etbV*VC8_LYnxW{5wy_g0 z*$dvgPJuu-r7r+#nS?}R>ldlrJZH@on;)6Z;e6Yh95kOjQv=nh^HE?1OavH6Z7HSM z0p~7W2zGO_g-wMqodtl!A`AdN>|J{SYaXzmkl_3Ej;Vt&Kcu}8}(n3 zvCKhJLrGbdS5+m2>H6VlCy#F1;Lm-OWoUbO@_OoP#V9{_G@okld&M1jdUCb!ZdA^@X`*QEinfoMRWA!yl>Q519B{7VS zW~Nt44P`vqlQIuCU|9g-WZ=RhU0TPPzLT;wRi$c~D2jY-J>;q(6KYFiczI-*HglBj z1cdHS8ekrsa@9yhq$(w|V~5$Ud5El(t(Pg8TmW8Z91|`jtOMIIG`3yd_13?3p6_DJ zib`)E0JQyL(FVT!UB@+GAf$@qR1EHAkJW=|iPa?RX-)y$Xmy2Htc;NzizVe;4VDNB z>JLp@8>f@n#93nAS8cQJ?w8z~XOB0fT`oD(26l~5`TMSZ%qgv{A++0%`tI8Q?N6%9 z$?>Gj1pFJ8)U`~bkHcbNGR>uRH0~j%SfHV!R`xfO@5)Q**VehRIgl7&4(vKp_OI;Q z{4w6X?dSVL91~;4joa<@-5A{GJYzAudGPq~@t#S4K0c0#X}q)TOzJ76swy4q{Hia1 zGGg2Da~>nitwC!72qVWLJoHAvEBw^(BNFPyJ52-1K8~cmh63B}& zSD@P!i}(gW1pqb+c4-f?fxsBNev6qi42fnz4w2+5E~}HZ@4vjC*&mwKOL2VXZ62PV zM>BLM896J3S|r4k6B2Tsf~ z=6M*42KQxGeHme0nPNO>F&JY6h*DBTJy8hI25~xQeggoJWo(S5h9-KL>hiHDqGY;C zDUyWMqJIJ3RUM8F`;eYmv<9JKuUhq=~b2%;Ejg zxW-GnMhIdVj0FZ*g=N6r9}EQmOx2X*_Ue+y*xetvA2~=Ev;aukRX1ic_QlNp+B&`} zeP6GRt&$`cj z{3bHqZ?!mammyNUs4eW8FRKZz4@}pRAMfazc1(SMgsH$co&y5hamMM>*YBJ7b`~RZ ze+-J_t+$L*040>i-@xVWzf?Jq$9B+)50QB2#g6T}Zd6i5X=Tmy}MExtO>!C-!# zh^btLt^Zqj_d>_<<}m;T`_HXbss7}HYEukcN@~>2DRTX^Ug6-)yHt1w}r^+&rO@+Kh+2-{*d!EHf z>@l7wT|KmE4(B=XyLTn4sw(xDc>hpVn^l7XWLX4I+^!tZ!3RiF#lSNM&K?geDhjq~ zsy*i^&mZ>*!hUMMFh^&7cPt}SscOD-D=*hIl~gVkv`PI;rT_MFCx=o1TvHC8jIt^U zy}Dp31ZcBgx*n zx-i;KGxSq$^v<sZo7EbD(J3E${5aG&&R8pjgTs%wlW>lPzpGfm8wg*K z+VD`^8XJpj8iy$Cwt*ZN3i7vx@O5Iqu+il;T&{uG;0@lZl?4Im0UglwZdt>~!~=*5 z(_QIhfbfq#AFDy`anb5nETC<(WbZYga=EIC(XmE1y*2#zcVf5Az24(+T~7?)nEKW-JuFpiN)!;&B<-c{8&! zt+z;t^M~hb6F9_-aKncUB;W(S>y-uutDut+*HFP+7eOS942n@hdpOV)*tddPyTjFD z86`&#Im=~Pm8&9%a2Q=VKiuDcbK4bx-sGBHTIYJKVKp^ZYc24M3sf^PE`Ke`&EvN(ZaYTR?2j+K6n7I*>L|Wh zr*2QqxO|z%7%G%;wNMZPRUM_25Jw(rVhokqC+RO+duA!-a%je`h2DPkYbuN0vF<;{ zggCR5W(u%l2iSp?Q?7!PNmT9C=UMr2M4*H~AbU$NcrAPv9cZ>WaJC%ujorb;cBydH z2*2>I1rR2FfPBz=U@jUV+&fcW{cOZ`zh+Rh@^0nDg)`j!4@dLQ?$8lyG>Ob(_m0WvaSU|pDTG6$X} zbB`EDf2_+M?A~=3qM{;GafWHnL>&xeQ6kPdsuC6}7MUsyS)`gQD?bxxE#Jflt4$G_ z>5drb%Mg--a(yPJH0Sert(eEK?x*ND1#@+@y=Rt4_4eYA+e|MM-NFHnx?LVGAPDv^BIv>UyntQXS;8nh)|rh5Q>{B2$&(nPQ76=SO1QYixk=pduM3Ab+zPhBI@ z?M;b3>m^6wvdS@6t_Bg1Q~Ndi6H@nf2Gb4ppN-!6M)KH`GxP26){4h<{^=^iahhjS zHsN^BoL|(Nk;taTdCwP`&vSO}UZJST+H+`A>r5ZeQnHJ|tUV-?U$#{-Cl$}@911Sy z#FuhtiDZ&00TG}Ya#qiFe{l3}CBy~5Fjy9#l43=a75!~W`jtgzjHapL&-?eRP?T7iT8^RDV)7spL%#Lkz&zzQ93Q4wN0C|F5?I8WKzxf1F$Hy{iSWw z4T|}i#xmuNdg7K5eW!Ke@Y~+ofmtmHJb~Khc2{$QG8Hj@_St)x?xg=L)btKlORP2k z007?0)!IeP1jPcw?>0FZHIvj^^s0~rJw)+=AWgFSD0KGDv0|~RID?3gWHFPjxbgLC zTsN*&J%PV89WtC6_6Jc*nZqBicPqA*yp|r8p0WQqE?51JWND8Xd%I7+t+sMjjdnD9 zE&z9t2j$jZTi*Y%XC9yOu!pnBo~NWD!3_ESPuM;G&9iGdKrn^XWja3vgk6_26Iv0< zvYxLBsgO6B0i(FE{e8DvDwaXDkg*Wxb^x|w8)Qq;BTEJV0B~OHP1OYs0E~LK+Q+C| zKnK&qS#bnfxak6V&!m&aisgo+Do4`n{+KuXtsRU9e=l-FFuR^no4RE7nP2XVf!w*W z^uo>C^&#hzkOR`WWaMj?ZEv<)t*MNv$Y?xyCp-G4vhb)CA6 zXt<Wu96Z%dc8<)EiN#`;<#IU} z0miP3-8Ul``QC8$(--?|*3tKjsGS(6R6hk=>Uy@mVgF%G-b#PdQaFG6lz+~tfgUc} zx-I7VpO16JzwbYqdD-^jA`@1uN1CZP4<{jWCMRu_xARAHpL@SI+M1RAHjmBjEd+v@ zrKwxmzlGelJ@%@X1+g$r7)9-Av0zl)k>2^JW~^(D`*_`_&KQoJ%=_aUnzJHnYMh8W zu0)m83%$(hX@+VraS5#i>P$sjLYOdcv=uG72di>;t;y+iej6A`BFpsy6%M7TJVm9W z&?TZVRl!BG(D7ABJXMbNOkWu(Wm}zgwachqd7C(~-s?)zElS1iwANo;nzq|XGsCxC z?93a7B0I#!f39=6o*LhIRn}YqeB~&93# z=k>Kk%0$^gh|#+>__;6R3Wu=Q52yn?*&2~Sv#?zl_W>GA1wP*$xX8Yn%O~}>FTO0# zypQwdPkI-R(>b-$6>%ja1-)+R`)M?nM+8jSw1TUAw$*^C4=@860-y7c&}HLk^U(UL z=WO?V*Tct`KYM<8yS({4uFu8JdiU$9suj)ZYRWV3UiYe@{dJDDckYgTWL4x4cwOND zIM3f5OQe}hA(-#_*)wPAg84h{;ra5^U+j0!i#_jqY2^t?S=CKd)v8wEI{z=8IU*2O z%51eVOjTw{NitQ-!Z<%byHG~N-eH5>wBB#l&7Yq1@OFMZ{&88%=X<+8%O7iAOk!## zSjol}S5no1_7zHhZmY3wEA&>=Ca!8l05oTM3!22$g@ec!VCV>m{np{Y;IFRtOuufJ z-k+u>)yC!Z>#ya*V)^s$-Rx1fkN0S~@33k#FQ?R1RMg%-hP?kqbx215Ol4*xf-+_K z4sk!g!el`(|Ezw%J2U&Jo_%)sl{pu?zK)m9Zf{e(JNG?$`)Q8qsL^Vxoq3Onv`r;V zuIzK#yXX5`p#d6;g$@H`05H5(v7rFD0>JdK`soGU|Kj?Kyxi|(mhnIMK*M{*_`AvL zkpYa7v0ggnT)ARZmF?W=8d&PxP{fbP{_fj-+332r%ZAG#>eupHui=hsNy=f5-us_= zdN9|zsF(KZ9F_LG_Py>p@_d@Jhqry^eQuT2QB8M@(wV(`&xw2HwBzwn_7yzO{A`=vlFl0NN3=4Mk7njA= z;;g$Q3yy4MNVJg_TQY>Dz}X6T5R}NV6!cy@Rk0YSJ8##<-Ajl5Htdw*Jpre@$3J@N$p1Qgxb?JF zg5HM=yltobuBsC|Jw8azdw%-n`gr(nSMxC*cK`qL{$Olgj@KD|uC3WQfD|>w?qOCf z&skDde=g=IgKsnHtJ@epsns37%DwmN)BDH67&-fK8PH-$ia*a!VBx?QaL&rz)}8wiL3t-z#(1((9^~ z?9)=V{%?w>t+)Q_*>-Z>!@c~Iq%Jo*UmeaOk6&xir|$iuibI#4tCre*-8CIXGjun> z*QBdqmcAoVVK3+RC_EZ|JX=%e|og}x=bdxm_Gqh^IFs<9U z`7)`!lfB>V%oX0NO&Fn|T%Bj!`Bn}~6lbAWz<+gpR)dlbtCc8is( zDwknr>$Kaw=V1lzqWZuc2kmE{e1)!~HFK=JZtTKS+b^^$(9X|qU++kl<0(UGeH#o{ z5C6L-OPs|p$;r(E z2qtoMH`Jt$J2W~826|kq*F;k?Rjh_-($EVd6Vb{-+R$6`IH^GUs&gMjN)Ck=NG}GW zNe76S$F*wvof$cI21ZTKUv}czw<`)b`{4$*74vK*Ml9KaTUXcA9&g=QGEcdyW(4 z^Xz}-L{RcnS`#G~acX)64C>pw3o#m1~d<=C?E$7CqPFAW|#ionYlG=Eq8@zWbpHJtRoTBw< zI(`&BpN&1!3Je)_U$N*a!ik!wdWt+rX3;kN()sOV8aS!pX`X9?ecub4`^UZFG0)B| zi=4B!UD-cV>e%Hl;m4}>nLO_I*#f8l=8Vi`uiU9Q`;YUs*M^Tf%}rI0+oS0}-|oY- zZCiMzBBwAKCTZ#%ED-+dCqEq1{4ug z&%D=>Oh?ZT=|C!|!Y2I!NRR~(0S+uqL!WkL&l~i%Ayk6BX{I$t%boa93$!UWjwK~W z0NxswU<@z-ykBs0W7IOJzG3HCUm;xwSvNsq+aAK^gR?IQOi7lkLdTnc) zb$vI~6j^$@e9-lT(BE!WdXPUn*z>eusaAd27@zJRtDgV#FdtQGD(4_&(aDF90=QL-w+|3#B_JEUA z(-u5^`8&~T}0m8xaG0+Dz1_b&QAqJcZp%VZ$`lVnB)&O9S zauJw=Q~4$EaQ19i&9Uh?4JB=y;Uyg zfn@7EJ)F(lr@T&=`8=;cpU6e#s?8pNrlJ1Pe0TgXoiU&G+rz`y!=ZZBR54IysPd8* z^t5(k4)`JWhq~Rc>K6C6=GIY#-N zopCwn&<>1N4x|H}bj0QUOn6E-viP0lVd*%HZv>dC3S$mr*HB|qWz$|>KL7**MF3om z1KRuO98AfaR^=;h?)WQp=N7%PhW$`6vW=gs^VK<0>xa+Cdj(8cO*ax{YyJj30I8G# zxP1)xpkk}l<8S6wzD=h>=v)@af6v^bzTb~-HI;h4pQQdB!kgB?YynK+kRy|QwLh&N zfGAJ_cz1Ihb9sVfoHxZPrgrm?)bR(K3(%Fzhb0izO`gz70EU!^=O9D1yothlzyH$ zo9LZUeq1Bhh%gm+Rt`f<0wtDV)=rg@=h$^X87 z{rdIm*RS_9BL>xev{gI@Lg3WyEvVBM-Rdl@_x{7K{#dPk)2SZ2 zvsY(x(mTo%)T&ae%B3&rJWpx!dcNx_blF&v=(4(^{y3a3*A8YfE#TU<;)<$pCJI(x zR#!@;w_nBL_31WO3oq1{s!EZjw@pc44 zhZQnk;&Li4W^(4T-;VoYaki`V<+AtL7pLwIzbIcm?Xib0WWs+%wXo1<(y<%Mcp0 z1LjOd3t~A zygax4uoJMpo{c3ar8hYV8X;&|c8@7!VO;=ZV`Gl;4?q;Cz*-$h^Yp=@xi^$4O?_3X za6Q3CP0&e@EXc;xmak7w{GgBP)HZd4Y~i#5wq2NT7}E!!!JqSG}Y$08H~eA`%#lG`@5pyvZb0aD;p0;y^Zas%7< zMECjD+p<*^pw0Dmck0h2Tj*~>`!C8DRTISxFS6;|Waad!1iEr)&*Kl!<_szDlQF>Y zTc1xX@mrj|-Nwq!;%LvuKYl#i=1(=0_XmTukEEJtl~YN{YU-a%zl>kCTF;IKJ$+o; zv|{qznC#x%J9Xp%{e*bHJlFQ8$8fo@-!( zWtNLoVoW$F7AeAH1nvBvankVMWb)DTUyl#TLmlaC_C9#yLVw@yxVhR@g2_9$20r+I zv}yCULmOZI|LO5KQ$H)_3vy2FITy2R89(Q&!v$`3l^U(@<79bR<8e-$hiBh0L#{(} zs_uJk@2@t^!`S=B+kMV6dcV$mdHG(!`>qwlPmyy}p8NO9f$C0xGi+nbpAVP`pDbWQ zXTRumE9*hEGTO-SJlp22>u}tkN>9j4l1!-?ExfVv@ZhP)IE824&J{QP-q9;_{`w(T zXufwd5m*8NNU{frthZ8&2~-&-+j0a-yJ+fBXsgST@db6!Eoa=E*}p@X<6K?(4+V^j zWlM@NNj!Oyil)A#RKMzl=jQ8!)Jrd@zkoj7a#kN^1Ycyh~D zmz-hs;CK6T~VhN*T>>v)nyp$n%mc5KE9rT-sJdu zb7$4h%XW5IXE>%&vhs2sXBK&8#>vI|e05IykNcg?Mg*&?Ch0lT*H`yb7vnaQ_u5Sj zs%n$m&*RrIYd^fX@3U{}OU<44cEj$|`R6*dZZ}8$JI{UJMr~z^uHp*~y+p}<3Iqbl zS*c-_w31j~f_NJ5e%#kINNMK&fN0vmz&`|){aA=%$Rl7y`P%sN#4tDa_LgOHJ= ziyj&njI751a190k0N_E3=<{&Z9`?{>d^zqYY=LVnBE3n?`$>p^=eKaIkp+^#jyQ}q zn#~4&t7S$6)5wzKh#MeFzj8^+qNzZVQOcoj*z4H)(eK?4;bO}`GfK(MNP=@iLsc=$ zBtV!L@oEKk@Q&ne@8ye@#h7*Uw_NOv`_<~hUA+3d-rsvM4g7xjyciarKG(XLFUMtX za|{pV`}r73c8qbi&p(dI%c!0tgh<_3=kwnFX2N9c9am;Q&E)mD_G6fN+-HAUEI$^g zA;p-fXZOZUW+g1U5{B_`#y)bN!@m!ZyUN9!2X>Fw^YPYod_VL1U-h`xw|VxL8Z2`n z^ED^$?8AMFd@d_+2q^rt0tQD8!2(!OMcVQ|`KYHl2+KXSiZ@KA`fbNH04By@M0A=) z?z{PyC>Q`F@FyToa3>%bhEgYA|D2#H&9cjZBJ6G0d&ICn8Qi^*cKas#Z*^Bv5L>v~ zhXMdT%=JlzbU>3ZKo0b)m7YfA1wyPCNDjM+aI>?}nRLYR&~B(ITbKl3P!_K*qE9Nig!s``$NgDjf5z{K&umto`Tep7VNSmp| zY4-O{T{O%n^==;_ADU(8rO5F*_Wk9@{`m254iBTsgK(;4_^$WPGhXWJnnsMN)aQ*) z(NyoZNfL54jALn_-|5ccK3f|-+0{GQJq$e8v~q#d12?tTB~g?EXDbiYjU6N(Cr4@M z6#j#4E1M9G<9TXP#zL|YTAb{QD9Iz0zu~hI)z;Ta>T|081{oOv#_&KkcNYu-WBhg5 zLum3x=t}<9RQttN1OGW?y z9?UgKMy82|06FmPR!SHh3PjbIQkH$l-EIng7#C)sm(sJOhFGgaC^is8fX~y9O$k4< z*VRSB|NmPVh@Kzkuz9j$zP#Ps>)LWx7EZet@^&hpY-f891+Qs2S$zemuC9(P?-!+YDL&s zu>YoQ>IX}grm&q9WV6`l6_QL?5B;>$CgGNgxW2rIc>wMsyw9FOK}q}gA5eAOQkjOP z5{xZugS-F;fXKoEXi<%pb@~zu83?hGEm1dj9^BHhBHac=u0k!7uq_h-000*2g-!=^ zKoJZp=Rm1jj>3pMK$DFbFw6Y`0Azc%zmRWS_wJqUZoV)75Yw|{W(J4~pUSaHlFUH_ zM6UD@u5|{dU)S!VgrDEJX^y{ccI-93e5#MDkMjSoX2+L5#+*K;?pybAfBWm+toqHj zdb=E`x6Mfn<;A#rUf*)QR_}2?9VKhcuZb!rc~e7G$-tzlDmwFf5_V;^-7|gH%uMI! zUHtR2x6d`lV!kcD4**RDbJzK9H;(HoA;khSBZC>%aUCDXJcL!#Jaq90G|l>K)Rj-x ziG#_9^NuN92|du2)4U`Y2Y&z%D5y_WJ(q$gr?r!ldh`l|L?|!ns;Y>nym@-{z63J^ zlHNeJWB|lE#Z$||Qow*Ij3T;i-=@VP|4TYVoB}u_-O1k)eKl2F2Hya~HFVgGR1>KB zXeyEZk9(p>LKP_K$bZ2ET8$+z2%!}K094u1$gwQTRh)c)e#>Y8cy!r9hL7v7*SnX6 z|9*WMUYo0a*M~=k4XHCfB!99Q^ZhAQ6ZAsc^2Mo7jjboVC5`qf$;Y)^tt`!7)c`zQ zVVBudRnSdVA7Jh1GMO^)6RCyrFg>+R9|khGW$Mul*RqMlZSODrb2`qI^V)olv~9j7 z*OSP9zp7&P777K?UxZ6b8;=1*RbdwlrYS8sS-b#CXc&U|bV*?J57!^NbAM}g?rCMs zr{nqJ-hT``@f8oZ`}_XixSb9GOG;P%B}GY9zEp{(Z#0QC*SWXS4P0SeIl8W59jbo; zmXsxlT_3=xfWp}MX7`Lut1Yj)?tb*c&Hwc4O)$nEx2L!9wZ02Wq>^vHHfgI;@2%ib zJM$bm;$4x(Uw>&!)eBEV*{+J}QcVd|TE+Y!wAt&UzMSldi&A@RSj;`3~9rd;NGw zNgbR$bbWK*8+^id_g{bIvH$ikJGpKUsgJ6x+~Hd^zqiIOipQ!dU(+<-q-y0y3v5-U z!e*{3wt)Nq%VdhcJk6zrjnlsVcVz>C)BBir-6Nl0B)Z!7vr1qnlzaxMZW4y{o_5+FAjkQ#12dQqMInw$3Vc=N&8 zr|Wj%oA-;j+;nwAFQX^jG45DZRW9c`e^@by-uvVe|E@O@CYMc%hnamOt-tJ#bH4lC zrn~m3?`4%rXlj~oYduguKC)e2Ry~}@+G=bkUp~^EF;KqlU3sipnQR^xjyQY0xQ(~> z+t~IwXR&8&dv0ZpC$rsSF(2#m>kG~{=f3e&k1w28K8@B|Fwo6Xz@SDm=QCdkChyt| z8X8@n3w8G}hf-3`vs_m^^9t4(490w#Z+p+$OhjngmO*RfqB=hZX+28&iQ7R7kg zgaje5SA!A!bqjAO>9F_fUUv^l!>5oV+6r?d6iq%EEQC$eqn3O>VA!?SjUGV7BmhxF z1f=bv@SwWE2(e~~?F`kr0;0P)CC&qW%qy&s!HOHjY+&=u2O#=DLpj^efoWEE^Ha&^)essbCJOOvL@ztjF+drV4yvDqIti48JA?*^W4p5sDhWo zu69yhX(urE6z)jA_IXO%;OK02H{%rBVYxlLR3S49G)2 zT!0RgZYZrrT&?+}URD z{_oG(EApbQlBdoi%275&yUs5Id*thUxSf`n+6Cu%PkwwlbG{kJS&Wk!eW$+u_^~Vd z@zle6I-uS9r`_Ze9tf^;?V+tdrIdA^&gd<3@6Y}4X^%2Knwpw|EOPz@%^&`E->pGV zOt)>Jom-%Kwylm&*EB2(fjgQwm@3-WdEOL71>^tvF^pPtwtQJ9+GR1w)?ZR!n^RoH zdF@C(IpC5{=RT(U&Cb5&Kv7p&-y`98~&8CCvky*^~c%(0XO+Zz-} zzBL3e-9b4y>CgQ|s`1XA6=Yk!f*^Y01tK4S1g-)fA24`VBCt4CzlZ1BME8POvghu+ z)qQT`R|A*uJ3G_fRkU$-E4u8C&05sx#(W!BW`6vP zMZcyfzwd;pB+p4=l|v|CbL7mFGc?t11TtGxC_%*oFj=6$j}c&Q$LO0L-t4NJ?^|6; zF7FRNF2mf@@%#AM0G+ z0AyEP5u0U8KsUz+4tI70{h<(nxkht+sdzu$(JZCZ+2U!WsP<`k8B@-GE>n_fG_~47 z=y!Z)zCG?|uPJHCbEGXe0NVN$P9U=3M;5WC+_rK#Lu0Z9qf|o%%*h|J{<#-pMo}I< zw5~75-qEp3eR{7~Ncr%+v8*t%WHz$!CRbIJ?A5&M@P>4^G6Ot+yT5jG^ZozJy*`hz z-jeNKWbN5%IGTRl&p5_KrJA2-Pp0b!xVE0T4QGm`2I~pyxflTCfx8#R`u1!6mRECr zu5~V(PLfo0DWC;Y7sE+-rb&Uw>2o?-bgnO1%z;jKuSG< zQsR;F4+xO403k)B`o%v3fju9~K`=J}9vp5}Hu(@J0(Q!~H!C$wjSc7^OWzzExKMVd zsFc!Zl+v`RY_MXrh=9M5!-b^vp8eYPV~Ff@x-j>5yK<6pQC>kWuQ0#%SN0wYm!kjm zcP+Qu?XA68-fk;j=RGaz4Eew7#C4wY_&B%mdKl&YQ~BQqQZKk1F_lEJL`jjr%3`?~ zIJk2HlS#);`q)-Fd-+;Gum!?^zW^{Re?PNo=Sg+WY9?J2-#BO>RCcsE5Oa()UD-xf z3cqslt2Y4FWnl|2X|n9CL<+|g0P#!$e*EoS$EE`!D2;-*&e3Qx01VLHbXoW7!m&zZ ztk8WVo)RkNl4{5#fJoBonZxkz(8Ue$Yk&GX&i%*v%00X!oP?b!FZSQ?cb1pWd{V_P z{$pje_u=v5^XuX=F7t724bwSJp0~e|O1 zU?kfZ%-exdw!}5U935*TGO}W}Ioqe$eU;vCV=Nq2aHBBX^3gFyqy(ssL}^)JRM?S2 zt2{3ZcUY&nGXTg~wjY}uk%xfF?i2Rvh0cX+K?2s+Ez%-b2WrLu-!A|_ebwi$kMlz3 zE;L50^c+-6RYO&*974_|5zS2Jh1$>2=hIWc9bVq}?UGmYZ|Q5a&qsZZrC#)U>HOaD z>eP}mnw4ewz0?0s4o-YHM)vyO&kwIZ#vg6n&%%(qX;fD3liT>3F>&obw~5MZgM)8g0Jo<{Q9b~D?hV4>)oDpTvb);+w|7h+$386ttp$6+f`fpR!iLv+bBPC!8ey!!p)bL#?dat z8eR5!FEZ|9@5Q`&-lW;hvd6fLQ5(yYnr}7K+u?M@j-gG(_`omvt5( zK!oOp4d>%^iQ8`U(#RaRadSML+g&Z_fE?{51c5esnsW@>Je6g#GfvRwx|tR601gojv~)LGntyIxJBlrp%6-w2IgnjI=IKJe^w6(uJgy7D$i&QHK zCq$h0ST0L?qW}R|*r07+^@llf)#HTYr#h@}JC92qIxBx~N6hX@K=>OYJv}ZbQ2j`& zdtcy-w8r>=kVk?(G_DCE7H|N6eqIZbQVu7!&BdTUxcXKD;nztX?H zBTn7gWCKu5d%m^Y%Zw=~v1=MGzm9h1yq%QaB_49sJ>BL#z;K6iSTSUvoVG}Nm88hUrgkaX0tTq>HE&CkH zWKd&1{575i>7eRN{KH;hL<9lop@w!du50XGO3z*f$KtB0axB3-`aklCL&uMkt0#AF z)34T4{wE)tTpvwvw3r9HHL!ZsD<3}*Mz`nrR`Tt&onxF+S6A!(`ZcF9KT;Qy!zE`8 z3X*n1@f?`Q)XdDlf@AKyzCNw1f98iagL8iN!Ez0H8UzoPhD9nt=Mg(nzdn_RUPBhw4RIpsfk2n{MaI6tPykw5)P<2 zjiaiXZp!sekW!_U-l(9KNRny^R0es8pP1A?xyIE};hfyHd8O&9ABCR?LxC%laBmy? zn3wNSGn*ElNF>VPU8A#O2NS6ryW8!+S>PiWSCPb?=QzETMkyJLImWE263k2j1nIUh=fnJZJ}<4> zI_tArk&9{Y)%qS*uUJY?mGS9hIQXD)TBPLlJb?OoFjRJbY+RpaZDwsQBTI8OE~L1R zsPth9g;UHcfC8|$uk(0I_v^fC1{%PfzQ%jsZ{^e3W1su;@bhckF81Y&aZH1jAZ5%* zI8m>;JcjIJ9AjUVip>NG!+43neP-Uy#bs^R`O>On0BKE76N9n{Wm^aXV2D7nh+^mH zdhMHwLX@Vj2=GJH1h&D^de~U+-QVUG1e%s-F4q$QPc(E$)yNP-tXt3n6{E_VRw2b< zqlBIBI-YT?Z5Bf8AOL~Z6=Z-;ry9AEyvUY9Vfo|~0ABp{PDj`Y=wRCAVy4q*K!uF_ zu+?*c#f5D_q08vesH9?5Rhb0n%luU1C+XhB^zhE%PFBVk-m*mUL^UD`3ILpId%Ci> zF&Wvpe|qjUpXkjA2D@p0~d z2mt>3HO7Q=0D$CfN;;$o0Mi@el|q>J6uEoJo|!h4z^YXum`MQj?UJs(Z`0nr7mKY* z>&=LBWLU+m+O*!ZM*XmQwL8bj@%mf!efqa~SznF*dp~hIeW6ad=#S*~MAKa}tSqY` zDAWlyfOVVdk8Sra?~hOCq1HA)CS#T&A0X;NM~%5!HD7Nhb4*`J5FdDj`fET(uu4$kt8ZC>8Y~V~Xc)ThBpcjM)u!N1mNsV2&mv+&V-V}s-x@}h| ztU9H*r?)%ua&9@l^n+v(E&xJ-7P7e>$Tv~rojr2MHLow+)Rogm@$T?hy;fy1%`%5* z-oH~NRTa^zQo8&6Ho5jb>z-o2_DfG-3>buB+t{)eOTb2!w=V0^0Co!IfDc@d0b;w* zn52Ayh%u&L003uR5A~AUwTc*7de2A|>SZf5`4Zd(pbhC#zH8;EK0e=Ck_=+6srAT)yh$`H_RQ04N@OEH`{};C|TW_3ioA zy3O_d>dUij*2LVlch1W67(qd`x8kiLSh9x}38F&bugt~XXFk`Sqs|%k zu_t{S4O0g^J*d6QxSx-lIT%o81Z2|pj4ayZ{v}K=zDvyprX_0Rp?T6H`e!x0Cx|b% zSxjp3g!qfWN>0Mj53POnfLrg55^m1-=?!XrGxB*;9*5UDQN0?f5Ggg1_UF>YAMwV3 z0ULYOF(c6}xK{k8#LVt<@{+r=cDp9tdz3o6!b^NzF5lh@-*qI_*E(`WIx+~L0EA;J zc*M4@u6yN>6iii%+JoY{aPTphnSFYqM>i$QlMppoA z;XEz3g$-N&eN%gIy=X8MfHg|{Ve5N)oPHc*{qRN9JojXG3Xr|49(mULO4{-6N8fE+ zW$iRC`)YfbeSig=QVPKHX8{Yf_;fxt=(YO=Km1s?Pt#)cQTnGh%cpw0s+;;Pg&T6@ zzUYy6xwu4)7*x-<4|HD*ca~)}-SoZqZ|%LCCN{^@)Cj@c$NFmhx4!ph`}M}<`Snx( z-@Uk%+sfw!Kb2@sYQIUPRFi9^s=QvV-y((3PW>PjTvtq}s=6zXT7Q5h1Q~(3pAFFP zigm|yu}pjIc7MAyPnYx1+dKc=Eg8p4It(HZ=!oy>4|eSJ1vzD?$I|w;S8YxFDr8mk zk=(ZF#V3xh%rrmfVF^(ovBep3Ubctze#0jmyc`_y-68woUaxa?*J1((!E4!_S4&I$ zR_FPyu}f}ud)rF209yJbfdr%gD@fd1FDnKx4tk8ZzW@NIFFNO6H&uBn7|H0=lJbqq-e{An@L`&CV&mCdj0@E+I8E(g@8 z>)%P!Av${UP2*tNC-*w_EEjM0u@}C~+iuQ$y>!m{dSleVWfv@v;E}a8B8VdtYLCJo zKH+!x&6*n{wZ~j8_Sw!Nm72Mn`DIK)L0hdA+FH){r)l)Rgl9KSR8b4F_{T?5mu-QR<~0hJ`C-hD`JEMgoOe?t0ij{!ZJ2+`F?g<)(RBd zQEV}U7Fs&Hio+|56J;pQw_Oee5Z~G4p&>X2A)JcK`)cj4>S0FIqLooHvU37X?EgrJZZ11^T~aM|9|`Zv$5_s56+$0 zx;ZUgQ9D%Ox3aFM^6=_0=2ud@>K+tqq zP$#2lip0CQSL9Gkb$z33HXAot}CM%l8fR7|T<71Im8ob8E0BtQvp zrP+;p}bAQ#j)~vO!bcR=V)7{zmu#`C~rwOMv?`Wpr_(erh0Akc%*8AQI zH@zm9O=nTWt_PW~_qE;!h zM|96WjZjLZRV$MUx^uPEmVMveu0;-fGHg&SOW5uE>EPUEQgy-e*u`@W6Vh{=MnH`L zF3Ku|B-M%A6!I0g;_x9tR{2afQ?DI30018uUU7)gWTc@e zmFz5|9T^e0a4}b|%CX#i8Ncj#e>hi}QypP`=XKj1J)M0W)sG$xKBJ?1%HRCF?7aWx z&cWH7b^AQ)$Nae0ef0nT=lDIXTOQ_J$?o#&;UzuPD9RkFxn?N+s&Vew=U?V?I`=U- zY^MD%=UI8X^~ad6&-2Td@6-M=>d$j-z4MGuCzsNn&aE)DKG5Jyb74L_oEiDD_SWCN zG7dX|(A9Al(6vlvy7H6GYQ}1cp1d?kF&S1iWo{7vW}hu13k-5>>223^h^@6H7E8hc zTT!X2h=h)oQA!+G{c)GcX7AmM%3!2Z#fYhEw^&UjgxDmZ8$Bl5a|Z%N7dp4=7mUd> z`_K!7%VAPRTXoxKXPc>NcF1M*V}h-A^cA~$?;$$Rjx+qboqqaWZKoN(_IkAI z%YIN-Yja!0lzmh#hjYBiw~l!q>z!2H$5SsVAWbGUGffUl@7HgOqM=`BQ{^=ok`&Zcz3^G;tJ_sbMax;WAohm|G_k?@wFOB4@({yuhNz-CRf)EHU=HPuDqndFw0uF~7 zyPa=07iKSwAf2+l(3=+lKI>(m0CWI&$J}lrM1DX8-rLdo7suy()~{h_Vf3C|LXMfa zs;ac$!x+5Ndkp)_!8+egB@=zQSo+Jwz_|J%Z+!GL?c241Ipx&hQtd5Y`-`#nkNtH$ zzI=MDsx)^wui~!UN{3w0kU5Z3pM2`T49zfp)Z5#7{b|1a_qaOl9J{ZDrtKZw>+R!y z+1}QFeBI;AkJtVGAN%&uyXV7exufj!Z*mVn+xNSN^YeB;)4tCbA!-_^gidBN#c=A) zdMAwYs;aXRJV7;Cyq~u-PvqS8Lscy&F_y7t!=BTrW0!Zg|M=a=1`A0L5B}BOkMndY zLORu8iovNaJ)LBiQesib zfJIe9l`w#&)5-gX1M0W(@A{|e?qRq8cx7>G8%^=Dmk)9-uYCEwOGn>-wy58_@wacc zA8*^wdi~*izkOcUzS)y6JyX}W_+HP8!@;ak6V_i(gPt*5x4G`Wxz!%;e|#EmDL()l zvL`q7Yo5g^^Oojej{eFlf6kzpsk}N

g1yU-idxnQ)bcI_-@KDdYC=Y?x680KN} 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

PWNy1@ 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�vowp_#>+$xtIL5B-9 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 z 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%0AyL_ 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%0DJ)O7k7=3!9Xy8H>YrPXQXP=YjpXls>?Yk-^X;L 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 E0ELZOHvj+t literal 0 HcmV?d00001 diff --git a/Resources/Audio/Misc/tension_session.ogg b/Resources/Audio/Expedition/tension_session.ogg similarity index 100% rename from Resources/Audio/Misc/tension_session.ogg rename to Resources/Audio/Expedition/tension_session.ogg diff --git a/Resources/Prototypes/SoundCollections/expeditions.yml b/Resources/Prototypes/SoundCollections/expeditions.yml index 665ac12c696..526a16f3c2c 100644 --- a/Resources/Prototypes/SoundCollections/expeditions.yml +++ b/Resources/Prototypes/SoundCollections/expeditions.yml @@ -1,4 +1,5 @@ - type: soundCollection id: ExpeditionEnd files: - - /Audio/Misc/tension_session.ogg + - /Audio/Expedition/tension_session.ogg + - /Audio/Expedition/deadline.ogg From 7ffa74abd009650de3868d47c95b45ef4a18ea9c Mon Sep 17 00:00:00 2001 From: exincore Date: Sun, 5 May 2024 22:52:35 -0500 Subject: [PATCH 57/78] fix(ui): Fix shuttle control radius marking text vertical spacing (#27695) --- Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs index 284c6681905..8774c1dfb5c 100644 --- a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs +++ b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs @@ -100,7 +100,7 @@ protected void DrawCircles(DrawingHandleScreen handle) var textDimensions = handle.GetDimensions(Font, text, UIScale); handle.DrawCircle(origin, scaledRadius, color, false); - handle.DrawString(Font, ScalePosition(new Vector2(0f, -radius)) - new Vector2(0f, textDimensions.Y), text, color); + handle.DrawString(Font, ScalePosition(new Vector2(0f, -radius)) - new Vector2(0f, textDimensions.Y), text, UIScale, color); } const int gridLinesRadial = 8; From 1ecc36b04945169e42ad42de56d7af69092aa447 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 6 May 2024 03:52:40 +0000 Subject: [PATCH 58/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1f9de153397..fc226c55225 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,18 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Carpets can now be printed at the uniform printer. - type: Add - - message: Carpets can be collected from the floor and buthered into fabric. - type: Add - - message: New white and cyan carpets. - type: Add - - message: Carpets can now be placed on wooden tables to get beautiful new tables - with tablecloths. - type: Add - id: 6035 - time: '2024-02-26T23:11:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25562 - author: SlamBamActionman changes: - message: Added new noses for humans and dwarves. @@ -3873,3 +3859,10 @@ id: 6534 time: '2024-05-06T01:12:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27541 +- author: DogZeroX + changes: + - message: 'Added a new salvage song: Deadline by Bolgarich' + type: Add + id: 6535 + time: '2024-05-06T03:51:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27707 From c7a5587e0710f6d4b8a959bb54fbcd9e9631a96f Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Mon, 6 May 2024 05:59:01 +0200 Subject: [PATCH 59/78] Dock device link port (#27646) * Add dock device link port * SpawnAndDeleteAllEntitiesInTheSameSpot moment * The fuck is TryStopNukeOpsFromConstantlyFailing?? Do we have a new test that can randomly fail? --- .../DockingSignalControlComponent.cs | 14 ++++++++++ .../Systems/DockingSignalControlSystem.cs | 28 +++++++++++++++++++ .../machine-linking/transmitter_ports.ftl | 3 ++ .../Prototypes/DeviceLinking/source_ports.yml | 5 ++++ .../Structures/Doors/Airlocks/shuttle.yml | 7 +++-- 5 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 Content.Server/Shuttles/Components/DockingSignalControlComponent.cs create mode 100644 Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs diff --git a/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs new file mode 100644 index 00000000000..43612650802 --- /dev/null +++ b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.DeviceLinking; +using Robust.Shared.Prototypes; + +namespace Content.Server.Shuttles.Components; + +[RegisterComponent] +public sealed partial class DockingSignalControlComponent : Component +{ + ///

+ /// Output port that is high while docked. + /// + [DataField] + public ProtoId DockStatusSignalPort = "DockStatus"; +} diff --git a/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs new file mode 100644 index 00000000000..34cade7f1c1 --- /dev/null +++ b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs @@ -0,0 +1,28 @@ +using Content.Server.DeviceLinking.Systems; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; + +namespace Content.Server.Shuttles.Systems; + +public sealed class DockingSignalControlSystem : EntitySystem +{ + [Dependency] private readonly DeviceLinkSystem _deviceLinkSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDocked); + SubscribeLocalEvent(OnUndocked); + } + + private void OnDocked(Entity ent, ref DockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: true); + } + + private void OnUndocked(Entity ent, ref UndockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: false); + } +} diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index c685cc8fb78..1d879fcee9d 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -19,6 +19,9 @@ signal-port-description-right = This port is invoked whenever the lever is moved signal-port-name-doorstatus = Door status signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door finishes closing. +signal-port-name-dockstatus = Dock status +signal-port-description-dockstatus = This port is invoked with HIGH when docked and LOW when undocked. + signal-port-name-middle = Middle signal-port-description-middle = This port is invoked whenever the lever is moved to the neutral position. diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 18b9b831e6b..1988f29e45c 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -45,6 +45,11 @@ description: signal-port-description-doorstatus defaultLinks: [ DoorBolt ] +- type: sourcePort + id: DockStatus + name: signal-port-name-dockstatus + description: signal-port-description-dockstatus + - type: sourcePort id: OrderSender name: signal-port-name-order-sender diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index 5d6b1088f12..43d1228a408 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -6,6 +6,11 @@ description: Necessary for connecting two space craft together. components: - type: Docking + - type: DockingSignalControl + - type: DeviceLinkSource + ports: + - DoorStatus + - DockStatus - type: Fixtures fixtures: fix1: @@ -75,7 +80,6 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi snapCardinals: false @@ -127,7 +131,6 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi snapCardinals: false From 3b3cc0e66cd03d71c27ba65810f876001923fcfa Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 6 May 2024 04:00:07 +0000 Subject: [PATCH 60/78] 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 fc226c55225..8bc5961c6ca 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: Added new noses for humans and dwarves. - type: Add - id: 6036 - time: '2024-02-26T23:15:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25557 - author: MACMAN2003 changes: - message: Added a NanoTrasen balloon toy. @@ -3866,3 +3859,10 @@ id: 6535 time: '2024-05-06T03:51:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27707 +- author: '0x6273' + changes: + - message: Shuttle docks now have a "dock status" device link port + type: Add + id: 6536 + time: '2024-05-06T03:59:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27646 From 13dbb95d45d02ba2638ed7fca5aff4e00d9d0ff1 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 6 May 2024 14:22:59 +1000 Subject: [PATCH 61/78] Update submodule to 222.1.0 (#27714) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 4500669f658..970da5f717c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 4500669f6582898a2a0f06b56c9256e87339a5f2 +Subproject commit 970da5f717c921bfa110aa5dc31e74edb96dcf99 From b8d03b814b1ede3a53874efe2d8d46f3ef8dbd6c Mon Sep 17 00:00:00 2001 From: T-Stalker <43253663+DogZeroX@users.noreply.github.com> Date: Mon, 6 May 2024 02:26:18 -0300 Subject: [PATCH 62/78] Update license of deadline.ogg (#27715) --- Resources/Audio/Expedition/attributions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Audio/Expedition/attributions.yml b/Resources/Audio/Expedition/attributions.yml index a0bc137a012..8bafcc6f112 100644 --- a/Resources/Audio/Expedition/attributions.yml +++ b/Resources/Audio/Expedition/attributions.yml @@ -4,6 +4,6 @@ source: "https://www.youtube.com/@qwertyquerty" - files: ["deadline.ogg"] - license: "CC-BY-3.0" + license: "CC-BY-4.0" copyright: "Bolgarich" source: "https://www.youtube.com/watch?v=q7_NFEeeEac" From c1aae2398b5e4510b9b07ea7af877fc5760dd5c3 Mon Sep 17 00:00:00 2001 From: Kara Date: Mon, 6 May 2024 00:33:30 -0700 Subject: [PATCH 63/78] Round event frequency simulation command (#27718) --- .../BasicStationEventSchedulerSystem.cs | 59 ++++++++++++++++++- .../StationEvents/EventManagerSystem.cs | 17 +++--- 2 files changed, 68 insertions(+), 8 deletions(-) diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index efa9cc096dd..7e32f546bed 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Administration; +using Content.Server.GameTicking; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules; using Content.Server.GameTicking.Rules.Components; @@ -22,6 +23,9 @@ public sealed class BasicStationEventSchedulerSystem : GameRuleSystem private void ResetTimer(BasicStationEventSchedulerComponent component) { - component.TimeUntilNextEvent = _random.Next(3 * 60, 10 * 60); + component.TimeUntilNextEvent = _random.NextFloat(MinEventTime, MaxEventTime); } } @@ -66,6 +70,59 @@ private void ResetTimer(BasicStationEventSchedulerComponent component) public sealed class StationEventCommand : ToolshedCommand { private EventManagerSystem? _stationEvent; + private BasicStationEventSchedulerSystem? _basicScheduler; + private IRobustRandom? _random; + + /// + /// Estimates the expected number of times an event will run over the course of X rounds, taking into account weights and + /// how many events are expected to run over a given timeframe for a given playercount by repeatedly simulating rounds. + /// Effectively /100 (if you put 100 rounds) = probability an event will run per round. + /// + /// + /// This isn't perfect. Code path eventually goes into , which requires + /// state from . As a result, you should probably just run this locally and not doing + /// a real round (it won't pollute the state, but it will get contaminated by previously ran events in the actual round) + /// and things like `MaxOccurrences` and `ReoccurrenceDelay` won't be respected. + /// + /// I consider these to not be that relevant to the analysis here though (and I don't want most uses of them + /// to even exist) so I think it's fine. + /// + [CommandImplementation("simulate")] + public IEnumerable<(string, float)> Simulate([CommandArgument] int rounds, [CommandArgument] int playerCount, [CommandArgument] float roundEndMean, [CommandArgument] float roundEndStdDev) + { + _stationEvent ??= GetSys(); + _basicScheduler ??= GetSys(); + _random ??= IoCManager.Resolve(); + + var occurrences = new Dictionary(); + + foreach (var ev in _stationEvent.AllEvents()) + { + occurrences.Add(ev.Key.ID, 0); + } + + for (var i = 0; i < rounds; i++) + { + var curTime = TimeSpan.Zero; + var randomEndTime = _random.NextGaussian(roundEndMean, roundEndStdDev) * 60; // *60 = minutes to seconds + if (randomEndTime <= 0) + continue; + + while (curTime.TotalSeconds < randomEndTime) + { + // sim an event + curTime += TimeSpan.FromSeconds(_random.NextFloat(BasicStationEventSchedulerSystem.MinEventTime, BasicStationEventSchedulerSystem.MaxEventTime)); + var available = _stationEvent.AvailableEvents(false, playerCount, curTime); + var ev = _stationEvent.FindEvent(available); + if (ev == null) + continue; + + occurrences[ev] += 1; + } + } + + return occurrences.Select(p => (p.Key, (float) p.Value)).OrderByDescending(p => p.Item2); + } [CommandImplementation("lsprob")] public IEnumerable<(string, float)> LsProb() diff --git a/Content.Server/StationEvents/EventManagerSystem.cs b/Content.Server/StationEvents/EventManagerSystem.cs index 1a26417b057..c8552895aff 100644 --- a/Content.Server/StationEvents/EventManagerSystem.cs +++ b/Content.Server/StationEvents/EventManagerSystem.cs @@ -61,7 +61,7 @@ public string RunRandomEvent() /// Pick a random event from the available events at this time, also considering their weightings. ///

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�Jay|vcyUt(*Flz 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

av5VTM}u{>U4w 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

[DataField] - public float Chance = 0.001f; + public float Chance = 0.004f; } diff --git a/Resources/Prototypes/GameRules/cargo_gifts.yml b/Resources/Prototypes/GameRules/cargo_gifts.yml index 799805272d6..3787f4e6034 100644 --- a/Resources/Prototypes/GameRules/cargo_gifts.yml +++ b/Resources/Prototypes/GameRules/cargo_gifts.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startDelay: 10 duration: 120 earliestStart: 20 @@ -24,11 +24,10 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 2 startDelay: 10 duration: 240 - minimumPlayers: 50 - earliestStart: 40 + earliestStart: 20 - type: CargoGiftsRule description: cargo-gift-pizza-large sender: cargo-gift-default-sender @@ -44,7 +43,7 @@ noSpawn: true components: - type: StationEvent - weight: 4 + weight: 5 startDelay: 10 duration: 240 earliestStart: 30 @@ -90,7 +89,7 @@ noSpawn: true components: - type: StationEvent - weight: 8 + weight: 6 startDelay: 10 duration: 120 minimumPlayers: 30 @@ -132,7 +131,7 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 4 startDelay: 10 duration: 120 earliestStart: 10 @@ -154,7 +153,7 @@ noSpawn: true components: - type: StationEvent - weight: 3 + weight: 4 startDelay: 10 duration: 120 earliestStart: 20 @@ -174,7 +173,7 @@ noSpawn: true components: - type: StationEvent - weight: 2 + weight: 3 startDelay: 10 duration: 120 earliestStart: 20 diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 6692efb3f5f..e8519d3fbb1 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 8 startDelay: 30 duration: 35 - type: AnomalySpawnRule @@ -15,7 +15,7 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 8 startDelay: 30 duration: 35 - type: BluespaceArtifactRule @@ -26,7 +26,7 @@ noSpawn: true components: - type: StationEvent - weight: 1 + weight: 2 reoccurrenceDelay: 5 earliestStart: 1 duration: 1 @@ -38,7 +38,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 1 minimumPlayers: 15 - type: BreakerFlipRule @@ -51,7 +51,7 @@ - type: StationEvent startAnnouncement: station-event-bureaucratic-error-announcement minimumPlayers: 25 - weight: 5 + weight: 3 duration: 1 - type: BureaucraticErrorRule @@ -73,7 +73,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 duration: 1 minimumPlayers: 10 - type: RandomEntityStorageSpawnRule @@ -85,10 +85,10 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 6.5 duration: 1 - earliestStart: 45 - reoccurrenceDelay: 60 + earliestStart: 40 + reoccurrenceDelay: 20 minimumPlayers: 20 - type: RandomSpawnRule prototype: SpawnPointGhostDragon @@ -99,11 +99,11 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 6 duration: 1 earliestStart: 30 - reoccurrenceDelay: 60 - minimumPlayers: 40 + reoccurrenceDelay: 20 + minimumPlayers: 30 - type: NinjaSpawnRule - type: entity @@ -119,15 +119,16 @@ - type: RandomSpawnRule prototype: MobRevenant -- type: entity - id: FalseAlarm - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - weight: 15 - duration: 1 - - type: FalseAlarmRule +# disabled until event is rewritten to be more interesting +#- type: entity +# id: FalseAlarm +# parent: BaseGameRule +# noSpawn: true +# components: +# - type: StationEvent +# weight: 15 +# duration: 1 +# - type: FalseAlarmRule - type: entity id: GasLeak @@ -139,9 +140,7 @@ startAudio: path: /Audio/Announcements/attention.ogg endAnnouncement: station-event-gas-leak-end-announcement - earliestStart: 10 - minimumPlayers: 5 - weight: 10 + weight: 8 startDelay: 20 - type: GasLeakRule @@ -153,7 +152,7 @@ - type: StationEvent earliestStart: 15 minimumPlayers: 15 - weight: 5 + weight: 7 startDelay: 50 duration: 240 - type: KudzuGrowthRule @@ -187,9 +186,8 @@ startAudio: path: /Audio/Announcements/attention.ogg startDelay: 10 - earliestStart: 30 - minimumPlayers: 35 - weight: 5 + earliestStart: 15 + weight: 6 duration: 50 - type: VentCrittersRule entries: @@ -203,7 +201,7 @@ prob: 0.001 specialEntries: - id: SpawnPointGhostRatKing - prob: 0.005 + prob: 0.008 - type: entity id: CockroachMigration @@ -215,7 +213,7 @@ startAudio: path: /Audio/Announcements/attention.ogg startDelay: 10 - weight: 5 + weight: 6 duration: 50 - type: VentCrittersRule entries: @@ -230,7 +228,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startAnnouncement: station-event-power-grid-check-start-announcement endAnnouncement: station-event-power-grid-check-end-announcement startAudio: @@ -248,8 +246,9 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 6 duration: 1 + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it startAudio: path: /Audio/Announcements/attention.ogg - type: RandomSentienceRule @@ -260,7 +259,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 8 startAnnouncement: station-event-solar-flare-start-announcement endAnnouncement: station-event-solar-flare-end-announcement startAudio: @@ -299,31 +298,6 @@ duration: 60 - type: VentClogRule -- type: entity - id: VentCritters - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - startAnnouncement: station-event-vent-creatures-start-announcement - startAudio: - path: /Audio/Announcements/attention.ogg - startDelay: 10 - earliestStart: 15 - minimumPlayers: 15 - weight: 5 - duration: 60 - - type: VentCrittersRule - entries: - - id: MobMouse - prob: 0.02 - - id: MobMouse1 - prob: 0.02 - - id: MobMouse2 - prob: 0.02 - - id: MobMouseCancer - prob: 0.001 - - type: entity id: SlimesSpawn parent: BaseGameRule @@ -377,8 +351,8 @@ path: /Audio/Announcements/attention.ogg startDelay: 10 earliestStart: 20 - minimumPlayers: 15 - weight: 1 + minimumPlayers: 20 + weight: 1.5 duration: 60 - type: VentCrittersRule entries: @@ -392,8 +366,8 @@ components: - type: StationEvent earliestStart: 50 - minimumPlayers: 15 - weight: 3 + minimumPlayers: 30 + weight: 2 duration: 1 - type: ZombieRule - type: AntagSelection @@ -425,10 +399,9 @@ noSpawn: true components: - type: StationEvent - earliestStart: 45 - weight: 5 + earliestStart: 35 + weight: 5.5 minimumPlayers: 20 - reoccurrenceDelay: 30 duration: 1 - type: LoadMapRule mapPath: /Maps/Shuttles/striker.yml @@ -461,9 +434,9 @@ components: - type: StationEvent earliestStart: 25 - weight: 15 + weight: 8 minimumPlayers: 15 - reoccurrenceDelay: 60 + reoccurrenceDelay: 30 startAnnouncement: station-event-communication-interception startAudio: path: /Audio/Announcements/intercept.ogg @@ -485,9 +458,10 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 150 maxDuration: 300 + reoccurrenceDelay: 30 - type: MassHallucinationsRule minTimeBetweenIncidents: 0.1 maxTimeBetweenIncidents: 300 @@ -504,9 +478,9 @@ startAnnouncement: station-event-immovable-rod-start-announcement startAudio: path: /Audio/Announcements/attention.ogg - weight: 5 + weight: 3.5 duration: 1 - earliestStart: 45 + earliestStart: 30 minimumPlayers: 20 - type: ImmovableRodRule rodPrototypes: @@ -541,7 +515,7 @@ id: IonStorm components: - type: StationEvent - weight: 10 + weight: 8 reoccurrenceDelay: 20 duration: 1 - type: IonStormRule @@ -554,5 +528,6 @@ - type: StationEvent earliestStart: 0 minimumPlayers: 20 + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it weight: 5 - type: MobReplacementRule From 8fa7ea7cf9c03ea3273882708d31092a0c6e2eb9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 6 May 2024 10:11:18 +0000 Subject: [PATCH 69/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 27c86b3e8ce..a920abbe55f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Added a new T2 industrial technology "Space Scanning"! It includes a - mass scanner console board, a Borg GPS module, and a new handheld mass scanner. - type: Add - - message: GPS borg module now have handheld mass scanner. - type: Add - id: 6038 - time: '2024-02-26T23:19:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25526 - author: Sphiral changes: - message: NT has finally perfected methods for infusing Plasma/Uranium into Glass! @@ -3866,3 +3856,12 @@ id: 6537 time: '2024-05-06T08:17:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27717 +- author: mirrorcult + changes: + - message: Event weights have been tweaked across the board, and some events removed + (such as false alarm) to hopefully allow for a more interesting and varied slate + of random occurrences per round. + type: Add + id: 6538 + time: '2024-05-06T10:10:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27721 From aaabd5e9141e2e51b81c0dacd32e7e849826204d Mon Sep 17 00:00:00 2001 From: Kara Date: Mon, 6 May 2024 04:25:11 -0700 Subject: [PATCH 70/78] Fix `TryFindRandomTile` grid weighting (#27724) --- .../Rules/GameRuleSystem.Utility.cs | 21 +++++++++++++------ .../Random/Helpers/SharedRandomExtensions.cs | 5 +++-- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs index 27a9edbad71..cbd981e99e6 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs @@ -1,7 +1,10 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules.Components; using Content.Server.Station.Components; +using Content.Shared.Random.Helpers; +using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -82,17 +85,23 @@ protected bool TryFindRandomTileOnStation(Entity station, targetCoords = EntityCoordinates.Invalid; targetGrid = EntityUid.Invalid; - var possibleTargets = station.Comp.Grids; - if (possibleTargets.Count == 0) + // Weight grid choice by tilecount + var weights = new Dictionary, float>(); + foreach (var possibleTarget in station.Comp.Grids) + { + if (!TryComp(possibleTarget, out var comp)) + continue; + + weights.Add((possibleTarget, comp), _map.GetAllTiles(possibleTarget, comp).Count()); + } + + if (weights.Count == 0) { targetGrid = EntityUid.Invalid; return false; } - targetGrid = RobustRandom.Pick(possibleTargets); - - if (!TryComp(targetGrid, out var gridComp)) - return false; + (targetGrid, var gridComp) = RobustRandom.Pick(weights); var found = false; var aabb = gridComp.LocalAABB; diff --git a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs index dcdc9d61d98..20e57e94212 100644 --- a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs +++ b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs @@ -57,7 +57,8 @@ public static string Pick(this IWeightedRandomPrototype prototype, IRobustRandom throw new InvalidOperationException($"Invalid weighted pick for {prototype.ID}!"); } - public static string Pick(this IRobustRandom random, Dictionary weights) + public static T Pick(this IRobustRandom random, Dictionary weights) + where T: notnull { var sum = weights.Values.Sum(); var accumulated = 0f; @@ -74,7 +75,7 @@ public static string Pick(this IRobustRandom random, Dictionary w } } - throw new InvalidOperationException($"Invalid weighted pick"); + throw new InvalidOperationException("Invalid weighted pick"); } public static (string reagent, FixedPoint2 quantity) Pick(this WeightedRandomFillSolutionPrototype prototype, IRobustRandom? random = null) From ddb07d5f6362de11832f6b2085c4f6e8abfa625c Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 6 May 2024 11:26:17 +0000 Subject: [PATCH 71/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a920abbe55f..0f90f0c32b3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Sphiral - changes: - - message: NT has finally perfected methods for infusing Plasma/Uranium into Glass! - Windoors now have such varients! And Uranium Slim Windows exist! - type: Add - id: 6039 - time: '2024-02-26T23:25:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25501 - author: Whisper changes: - message: Bleed wounds will no longer heal so fast they do not need to be treated. @@ -3865,3 +3857,12 @@ id: 6538 time: '2024-05-06T10:10:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27721 +- author: mirrorcult + changes: + - message: Tile weighting for many events and variation rules (messes, dragons, + revenants, kudzu, gasleak, rods, etc) has been fixed. They will now no longer + spawn disproportionately often on smaller grids. + type: Add + id: 6539 + time: '2024-05-06T11:25:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27724 From b58d8a02b6e0d0a8b546fc0d1e437cb0b4f147bf Mon Sep 17 00:00:00 2001 From: Ygg01 Date: Mon, 6 May 2024 17:02:50 +0200 Subject: [PATCH 72/78] Remove duplicate liar word id. Again (#27727) Missed one translation --- Resources/Locale/en-US/speech/speech-liar.ftl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/en-US/speech/speech-liar.ftl b/Resources/Locale/en-US/speech/speech-liar.ftl index e07ab625a1a..4f157d2e236 100644 --- a/Resources/Locale/en-US/speech/speech-liar.ftl +++ b/Resources/Locale/en-US/speech/speech-liar.ftl @@ -125,8 +125,8 @@ liar-word-replacement-41 = bad liar-word-42 = bad liar-word-replacement-42 = good -liar-word-42 = want -liar-word-replacement-42 = "don't want" +liar-word-43 = want +liar-word-replacement-43 = "don't want" -liar-word-43 = not -liar-word-replacement-43 = "" +liar-word-44 = not +liar-word-replacement-44 = "" From 7d23d014458180fe26b3ec847417a99120cf6ef5 Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Mon, 6 May 2024 15:19:57 -0500 Subject: [PATCH 73/78] Half the amount of bleed rate cauterized by burn damage (#27726) half --- Resources/Prototypes/Damage/modifier_sets.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 0db13274311..02223b6a9fe 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -242,7 +242,7 @@ Piercing: 0.2 Shock: 0.0 Cold: 0.0 - Heat: -1 # heat damage cauterizes wounds, but will still hurt obviously. + Heat: -0.5 # heat damage cauterizes wounds, but will still hurt obviously. Poison: 0.0 Radiation: 0.0 Asphyxiation: 0.0 From 7794ab86094d1c406fbb888ae3ed2a489348af9c Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Mon, 6 May 2024 15:20:19 -0500 Subject: [PATCH 74/78] Reduce the amount of burn damage from touching lights (#27728) * chilled * external --- .../Structures/Lighting/base_lighting.yml | 32 +++++++++---------- .../Structures/Lighting/ground_lighting.yml | 6 ++-- .../Structures/Lighting/strobe_lighting.yml | 4 +-- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 167b3762141..436eaa2697f 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -91,7 +91,7 @@ bulb: Tube damage: types: - Heat: 5 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -132,7 +132,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 5 + Heat: 2 - type: AmbientOnPowered - type: AmbientSound volume: -15 @@ -151,7 +151,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 2.5 + Heat: 1 #LEDs don't get as hot - type: PointLight radius: 15 energy: 1 @@ -173,19 +173,19 @@ - type: entity id: PoweredlightExterior description: "A light fixture. Draws power and produces light when equipped with a light tube." - suffix: Blue + suffix: Exterior parent: Poweredlight components: - type: PoweredLight hasLampOnSpawn: ExteriorLightTube damage: types: - Heat: 5 + Heat: 4 #brighter light gets hotter - type: entity parent: AlwaysPoweredWallLight id: AlwaysPoweredLightExterior - suffix: Always Powered, Blue + suffix: Always Powered, Exterior components: - type: PointLight radius: 12 @@ -204,7 +204,7 @@ hasLampOnSpawn: SodiumLightTube damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 10 energy: 2.5 @@ -291,7 +291,7 @@ bulb: Bulb damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -330,7 +330,7 @@ hasLampOnSpawn: LedLightBulb damage: types: - Heat: 2.5 + Heat: 1 - type: entity id: PoweredSmallLight @@ -345,7 +345,7 @@ hasLampOnSpawn: LightBulb damage: types: - Heat: 5 + Heat: 2 #Emergency Lights - type: entity @@ -400,7 +400,7 @@ hasLampOnSpawn: LightTubeCrystalCyan damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -427,7 +427,7 @@ hasLampOnSpawn: LightTubeCrystalBlue damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -454,7 +454,7 @@ hasLampOnSpawn: LightTubeCrystalPink damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -481,7 +481,7 @@ hasLampOnSpawn: LightTubeCrystalOrange damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -508,7 +508,7 @@ hasLampOnSpawn: LightTubeCrystalRed damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -535,7 +535,7 @@ hasLampOnSpawn: LightTubeCrystalGreen damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index 34a6f08294e..2afde4ef3fc 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -79,7 +79,7 @@ bulb: Tube damage: types: - Heat: 20 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -124,7 +124,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 20 + Heat: 2 - type: StaticPrice price: 25 - type: AmbientOnPowered @@ -153,7 +153,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 20 + Heat: 1 - type: StaticPrice price: 25 - type: AmbientOnPowered diff --git a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml index 8eceb76b639..72f54396469 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml @@ -89,7 +89,7 @@ on: false damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -145,4 +145,4 @@ volume: 0 range: 10 sound: - path: "/Audio/Effects/Lightning/strobeepsilon.ogg" \ No newline at end of file + path: "/Audio/Effects/Lightning/strobeepsilon.ogg" From 008f6ef94a65a48d8bc2e89c80774d1ac6c624b3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 6 May 2024 20:21:25 +0000 Subject: [PATCH 75/78] Automatic changelog update --- Resources/Changelog/Changelog.yml | 39 ++++++++++++------------------- 1 file changed, 15 insertions(+), 24 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0f90f0c32b3..6b55aaf094c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,28 +1,4 @@ Entries: -- author: Whisper - changes: - - message: Bleed wounds will no longer heal so fast they do not need to be treated. - Please see the medical guidebook. - type: Tweak - - message: Decreased passive bleed wound clotting by 60% (now 0.33u per 3 seconds). - type: Tweak - - message: Decreased all bloodloss damage (as a result of bleeding) by 50%. - type: Tweak - - message: Health analyzers will report if your patient is bleeding. - type: Add - id: 6040 - time: '2024-02-26T23:26:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25434 -- author: Velcroboy - changes: - - message: Tweaked wallmounted objects can not be interacted with through thindows - or windoors. - type: Tweak - - message: Fixed NanoMed vendor not being accessible from all directions. - type: Fix - id: 6041 - time: '2024-02-26T23:28:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25451 - author: Lank changes: - message: Diona can no longer split or reform to cure themselves of a zombie infection. @@ -3866,3 +3842,18 @@ id: 6539 time: '2024-05-06T11:25:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27724 +- author: Blackern5000 + changes: + - message: Burn damage is now half as effective at cauterizing wounds as it was + previously + type: Tweak + id: 6540 + time: '2024-05-06T20:19:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27726 +- author: Blackern5000 + changes: + - message: Active lights now deal significantly less burn damage when touched. + type: Tweak + id: 6541 + time: '2024-05-06T20:20:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27728 From 8b733c0045041dbe8acfa9ff99029ee4cb360249 Mon Sep 17 00:00:00 2001 From: Morb0 <14136326+Morb0@users.noreply.github.com> Date: Tue, 7 May 2024 01:25:26 +0300 Subject: [PATCH 76/78] Update locale --- .../entities/mobs/player/reptilian.ftl | 3 +- .../objects/consumable/drinks/drinks.ftl | 18 ++++ .../entities/objects/fun/whistles.ftl | 2 + .../structures/lighting/base_lighting.ftl | 4 +- .../ss14-ru/prototypes/gamerules/events.ftl | 6 +- .../ru-RU/accessories/vox-facial-hair.ftl | 2 +- .../Locale/ru-RU/accessories/vox-hair.ftl | 17 +++- Resources/Locale/ru-RU/chat/emotes.ftl | 1 - .../components/solution-scanner-component.ftl | 1 + .../ru-RU/commands/toolshed-commands.ftl | 1 + .../Locale/ru-RU/flavors/flavor-profiles.ftl | 6 ++ .../machine-linking/transmitter_ports.ftl | 2 + .../Locale/ru-RU/markings/vox_tattoos.ftl | 8 ++ .../meta/consumable/drink/alcohol.ftl | 12 +++ Resources/Locale/ru-RU/speech/speech-liar.ftl | 89 +++++++++++++++++++ .../entities/mobs/player/reptilian.ftl | 1 + .../objects/consumable/drinks/drinks.ftl | 18 ++++ .../reinforcement_teleporter.ftl | 2 + .../entities/objects/fun/whistles.ftl | 2 + .../objects/power/portable_recharger.ftl | 2 +- .../ss14-ru/prototypes/gamerules/events.ftl | 6 +- .../ru-RU/station-events/events/intercept.ftl | 1 + Resources/Locale/ru-RU/traits/traits.ftl | 2 + 23 files changed, 188 insertions(+), 18 deletions(-) create mode 100644 Resources/Locale/ru-RU/markings/vox_tattoos.ftl create mode 100644 Resources/Locale/ru-RU/speech/speech-liar.ftl create mode 100644 Resources/Locale/ru-RU/station-events/events/intercept.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl index 47cfbb9cc23..98264db63fd 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl @@ -1,2 +1,3 @@ -ent-MobReptilian = Urisst' Mzhand +ent-MobReptilian = Urist McScales + .suffix = Urisst' Mzhand .desc = { ent-BaseMobReptilian.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 238ad595905..f7e9940974a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -75,12 +75,18 @@ ent-DrinkBooger = { ent-DrinkGlass } ent-DrinkBraveBullGlass = { ent-DrinkGlass } .suffix = brave bull .desc = { ent-DrinkGlass.desc } +ent-BudgetInsulsDrinkGlass = { ent-DrinkGlass } + .suffix = budget insuls + .desc = { ent-DrinkGlass.desc } ent-DrinkCarrotJuice = { ent-DrinkGlass } .suffix = carrot juice .desc = { ent-DrinkGlass.desc } ent-DrinkChocolateGlass = { ent-DrinkGlass } .suffix = chocolate .desc = { ent-DrinkGlass.desc } +ent-RubberneckGlass = { ent-DrinkGlass } + .suffix = rubberneck + .desc = { ent-DrinkGlass.desc } ent-DrinkCoconutRum = { ent-DrinkGlass } .suffix = coconut rum .desc = { ent-DrinkGlass.desc } @@ -180,6 +186,9 @@ ent-DrinkIceGlass = { ent-DrinkGlass } ent-DrinkIceCreamGlass = { ent-DrinkGlass } .suffix = ice cream .desc = { ent-DrinkGlass.desc } +ent-IrishBoolGlass = { ent-DrinkGlass } + .suffix = irish bool + .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCarBomb = { ent-DrinkGlass } .suffix = irish car bomb .desc = { ent-DrinkGlass.desc } @@ -368,6 +377,9 @@ ent-DrinkVodkaGlass = { ent-DrinkGlass } ent-DrinkVodkaMartiniGlass = { ent-DrinkGlass } .suffix = vodka martini .desc = { ent-DrinkGlass.desc } +ent-DrinkVodkaRedBool = { ent-DrinkGlass } + .suffix = vodka red bool + .desc = { ent-DrinkGlass.desc } ent-DrinkVodkaTonicGlass = { ent-DrinkGlass } .suffix = vodka tonic .desc = { ent-DrinkGlass.desc } @@ -376,6 +388,9 @@ ent-DrinkWaterJug = water jug ent-DrinkWatermelonJuice = { ent-DrinkGlass } .suffix = watermelon juice .desc = { ent-DrinkGlass.desc } +ent-DrinkWatermelonWakeup = { ent-DrinkGlass } + .suffix = watermelon wakeup + .desc = { ent-DrinkGlass.desc } ent-DrinkWhiskeyColaGlass = { ent-DrinkGlass } .suffix = whiskey cola .desc = { ent-DrinkGlass.desc } @@ -391,6 +406,9 @@ ent-DrinkWhiteRussianGlass = { ent-DrinkGlass } ent-DrinkWineGlass = { ent-DrinkGlass } .suffix = wine .desc = { ent-DrinkGlass.desc } +ent-XenoBasherGlass = { ent-DrinkGlass } + .suffix = xeno basher + .desc = { ent-DrinkGlass.desc } ent-DrinkShakeBlue = blue milkshake .desc = { ent-DrinkGlassBase.desc } ent-DrinkShakeEmpty = shakeempty diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl index 5d40be7d818..9afda65e472 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl @@ -1,5 +1,7 @@ ent-BaseWhistle = whistle .desc = Someone forgot to turn off kettle? +ent-Whistle = { ent-BaseWhistle } + .desc = { ent-BaseWhistle.desc } ent-SecurityWhistle = { ent-BaseWhistle } .desc = Sound of it make you feel fear. ent-SyndicateWhistle = trench whistle diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl index 71241f2630a..6efa8c5b8b1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl @@ -14,9 +14,9 @@ ent-AlwaysPoweredLightLED = { ent-AlwaysPoweredWallLight } .desc = { ent-AlwaysPoweredWallLight.desc } ent-PoweredlightExterior = { ent-Poweredlight } .desc = A light fixture. Draws power and produces light when equipped with a light tube. - .suffix = Blue + .suffix = Exterior ent-AlwaysPoweredLightExterior = { ent-AlwaysPoweredWallLight } - .suffix = Always Powered, Blue + .suffix = Always Powered, Exterior .desc = { ent-AlwaysPoweredWallLight.desc } ent-PoweredlightSodium = { ent-Poweredlight } .desc = A light fixture. Draws power and produces light when equipped with a light tube. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl index 12467ed2b27..f2ecc77f76c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl @@ -18,8 +18,6 @@ ent-NinjaSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-RevenantSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-FalseAlarm = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-GasLeak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-KudzuGrowth = { ent-BaseGameRule } @@ -38,8 +36,6 @@ ent-SolarFlare = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-VentClog = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-VentCritters = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SlimesSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SpiderSpawn = { ent-BaseGameRule } @@ -50,6 +46,8 @@ ent-ZombieOutbreak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-LoneOpsSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } +ent-SleeperAgentsRule = { ent-BaseGameRule } + .desc = { ent-BaseGameRule.desc } ent-MassHallucinations = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-ImmovableRodSpawn = { ent-BaseGameRule } diff --git a/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl b/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl index 78629e10387..f8f273a4e9c 100644 --- a/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl @@ -2,4 +2,4 @@ marking-VoxFacialHairColonel = Вокс Полковник marking-VoxFacialHairFu = Перья Фу marking-VoxFacialHairNeck = Шейные перья marking-VoxFacialHairBeard = Перьевая борода -marking-VoxFacialHairRuffBeard = Грубая борода +marking-VoxFacialHairMane = Vox Beard (Mane) diff --git a/Resources/Locale/ru-RU/accessories/vox-hair.ftl b/Resources/Locale/ru-RU/accessories/vox-hair.ftl index 2cf71696921..e5945776628 100644 --- a/Resources/Locale/ru-RU/accessories/vox-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/vox-hair.ftl @@ -1,13 +1,22 @@ marking-VoxHairShortQuills = Вокс Короткие перья +marking-VoxHairBraids = Vox Braids +marking-VoxHairCrestedQuills = Vox Crested Quills +marking-VoxHairEmperorQuills = Vox Emperor Quills +marking-VoxHairFlowing = Vox Flowing +marking-VoxHairHawk = Vox Hawk marking-VoxHairKingly = Вокс Королевская +marking-VoxHairKeelQuills = Vox Keel Quills +marking-VoxHairKeetQuills = Vox Keet Quills marking-VoxHairAfro = Вокс Афро +marking-VoxHairLongBraid = Vox Long Braid marking-VoxHairMohawk = Вокс Могавк -marking-VoxHairYasuhiro = Вокс Ясухиро marking-VoxHairHorns = Вокс Рога marking-VoxHairNights = Вокс Ночная +marking-VoxHairRazorClipped = Vox Razor (Clipped) +marking-VoxHairRazor = Vox Razor +marking-VoxHairSortBraid = Vox Short Braid marking-VoxHairSurf = Вокс Сёрфер -marking-VoxHairCropped = Вокс Короткая -marking-VoxHairRuffhawk = Вокс Руфхавк -marking-VoxHairRows = Вокс Ряды +marking-VoxHairTielQuills = Vox Tiel Quills +marking-VoxHairYasu = Vox Yasuhiro marking-VoxHairMange = Вокс Лишай marking-VoxHairPony = Вокс Пони diff --git a/Resources/Locale/ru-RU/chat/emotes.ftl b/Resources/Locale/ru-RU/chat/emotes.ftl index d446cda4edd..19c3eb1ec38 100644 --- a/Resources/Locale/ru-RU/chat/emotes.ftl +++ b/Resources/Locale/ru-RU/chat/emotes.ftl @@ -55,6 +55,5 @@ chat-emote-msg-cough = кашляет chat-emote-msg-catmeow = мяукает chat-emote-msg-cathisses = шипит chat-emote-msg-monkeyscreeches = кричит -chat-emote-msg-robotbeep = издаёт бип chat-emote-msg-yawn = зевает chat-emote-msg-snore = храпит diff --git a/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl b/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl index e58b5bf43cf..34d78d4ec29 100644 --- a/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl +++ b/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl @@ -3,3 +3,4 @@ scannable-solution-verb-message = Изучить химический соста scannable-solution-main-text = Содержит следующие химические вещества: scannable-solution-empty-container = Не содержит химических веществ. scannable-solution-chemical = - { $amount }ед. [color={ $color }]{ $type }[/color] +scannable-solution-temperature = Solution temperature: { $temperature }K diff --git a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl index 6ccb81c506c..ef971d86131 100644 --- a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl +++ b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl @@ -39,3 +39,4 @@ command-description-solution-adjreagent = Adjusts the given reagent on the given command-description-mind-get = Grabs the mind from the entity, if any. command-description-mind-control = Assumes control of an entity with the given player. command-description-addaccesslog = Adds an access log to this entity. Do note that this bypasses the log's default limit and pause check. +command-description-stationevent-simulate = Simulates N number of rounds in which events will occur and prints the occurrences of every event after. diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index df48b275f98..8c77313dc59 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -248,6 +248,12 @@ flavor-complex-gin-tonic = как крепкая газировка с лимо flavor-complex-screwdriver = как крепкий апельсиновый сок flavor-complex-cogchamp = как латунь flavor-complex-themartinez = как фиалки и лимонная водка +flavor-complex-vodka-red-bool = like a heart attack +flavor-complex-irish-bool = caffine and Ireland +flavor-complex-xeno-basher = like killing bugs +flavor-complex-budget-insuls-drink = like door hacking +flavor-complex-watermelon-wakeup = like a sweet wakeup call +flavor-complex-rubberneck = like synthetics flavor-complex-irish-car-bomb = как шипучая пенка колы ### This is exactly what pilk tastes like. I'm not even joking. I might've been a little drunk though diff --git a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl index 85e40764d02..80bc4ce0d8a 100644 --- a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl @@ -12,6 +12,8 @@ signal-port-name-right = Направо signal-port-description-right = Этот порт задействуется всякий раз, когда рычаг перемещается в крайнее правое положение. signal-port-name-doorstatus = Статус шлюза signal-port-description-doorstatus = Этот порт задействуется с высоким уровнем, когда с устройством взаимодействуют, и низким уровнем в закрытом состоянии. +signal-port-name-dockstatus = Dock status +signal-port-description-dockstatus = This port is invoked with HIGH when docked and LOW when undocked. signal-port-name-middle = Середина signal-port-description-middle = Этот порт задействуется всякий раз, когда рычаг перемещается в нейтральное положение. signal-port-name-timer-trigger = Таймер-триггер diff --git a/Resources/Locale/ru-RU/markings/vox_tattoos.ftl b/Resources/Locale/ru-RU/markings/vox_tattoos.ftl new file mode 100644 index 00000000000..e5e9f494e70 --- /dev/null +++ b/Resources/Locale/ru-RU/markings/vox_tattoos.ftl @@ -0,0 +1,8 @@ +marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl index 0d8567019c0..5b200b32544 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl @@ -174,3 +174,15 @@ reagent-name-whiskey-soda = виски-содовая reagent-desc-whiskey-soda = Невероятно освежающе! reagent-name-white-russian = белый русский reagent-desc-white-russian = Но это только твоё мнение, чувак. +reagent-name-vodka-red-bool = vodka red bool +reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. +reagent-name-xeno-basher = xeno basher +reagent-desc-xeno-basher = The perfect drink before an expedition. +reagent-name-irish-bool = irish bool +reagent-desc-irish-bool = Like a bool in a Ireland shop. +reagent-name-budget-insuls = budget insuls +reagent-desc-budget-insuls = A tider's preferred drink. +reagent-name-watermelon-wakeup = watermelon wakeup +reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. +reagent-name-rubberneck = rubberneck +reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. diff --git a/Resources/Locale/ru-RU/speech/speech-liar.ftl b/Resources/Locale/ru-RU/speech/speech-liar.ftl new file mode 100644 index 00000000000..b0f9c6b012a --- /dev/null +++ b/Resources/Locale/ru-RU/speech/speech-liar.ftl @@ -0,0 +1,89 @@ +liar-word-1 = yes +liar-word-replacement-1 = no +liar-word-2 = no +liar-word-replacement-2 = yes +liar-word-3 = yeah +liar-word-replacement-3 = nah +liar-word-4 = nah +liar-word-replacement-4 = yeah +liar-word-5 = yep +liar-word-replacement-5 = nope +liar-word-6 = nope +liar-word-replacement-6 = yep +liar-word-7 = sure +liar-word-replacement-7 = nah +liar-word-8 = was +liar-word-replacement-8 = wasnt +liar-word-9 = wasnt +liar-word-replacement-9 = was +liar-word-10 = was +liar-word-replacement-10 = wasnt +liar-word-11 = is +liar-word-replacement-11 = isnt +liar-word-12 = will +liar-word-replacement-12 = wont +liar-word-13 = dont +liar-word-replacement-13 = "" +liar-word-14 = can +liar-word-replacement-14 = cant +liar-word-15 = cant +liar-word-replacement-15 = can +liar-word-16 = should +liar-word-replacement-16 = shouldnt +liar-word-17 = dead +liar-word-replacement-17 = alive +liar-word-18 = alive +liar-word-replacement-18 = dead +liar-word-19 = does +liar-word-replacement-19 = doesnt +liar-word-20 = did +liar-word-replacement-20 = didnt +liar-word-21 = didnt +liar-word-replacement-21 = "" +liar-word-22 = nothing +liar-word-replacement-22 = something +liar-word-23 = something +liar-word-replacement-23 = nothing +liar-word-24 = somebody +liar-word-replacement-24 = nobody +liar-word-25 = nobody +liar-word-replacement-25 = somebody +liar-word-26 = can +liar-word-replacement-26 = "can't" +liar-word-27 = "can't" +liar-word-replacement-27 = can +liar-word-28 = should +liar-word-replacement-28 = "shouldn't" +liar-word-29 = do +liar-word-replacement-29 = "don't" +liar-word-30 = "don't" +liar-word-replacement-30 = "" +liar-word-31 = does +liar-word-replacement-31 = "doesn't" +liar-word-32 = did +liar-word-replacement-32 = "didn't" +liar-word-33 = "didn't" +liar-word-replacement-33 = did +liar-word-34 = ye +liar-word-34-2 = ya +liar-word-replacement-34 = na +liar-word-35 = na +liar-word-replacement-35 = ye +liar-word-36 = yuh +liar-word-replacement-36 = nuh +liar-word-37 = nuh +liar-word-replacement-37 = yuh +liar-word-38 = love +liar-word-replacement-38 = hate +liar-word-39 = hate +liar-word-replacement-39 = love +liar-word-40 = like +liar-word-replacement-40 = don't like +liar-word-41 = good +liar-word-replacement-41 = bad +liar-word-42 = bad +liar-word-replacement-42 = good +liar-word-43 = want +liar-word-replacement-43 = "don't want" +liar-word-44 = not +liar-word-replacement-44 = "" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl index d4adc9de9bc..9c059239bf5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl @@ -1,2 +1,3 @@ ent-MobReptilian = Урист МакХэндс Унатх .desc = { ent-BaseMobReptilian.desc } + .suffix = Urisst' Mzhand diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 2fe22c6b653..92931a4c64f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -75,12 +75,18 @@ ent-DrinkBooger = { ent-DrinkGlass } ent-DrinkBraveBullGlass = { ent-DrinkGlass } .suffix = Храбрый бык .desc = { ent-DrinkGlass.desc } +ent-BudgetInsulsDrinkGlass = { ent-DrinkGlass } + .suffix = budget insuls + .desc = { ent-DrinkGlass.desc } ent-DrinkCarrotJuice = { ent-DrinkGlass } .suffix = Морковный сок .desc = { ent-DrinkGlass.desc } ent-DrinkChocolateGlass = { ent-DrinkGlass } .suffix = Горячий шоколад .desc = { ent-DrinkGlass.desc } +ent-RubberneckGlass = { ent-DrinkGlass } + .suffix = rubberneck + .desc = { ent-DrinkGlass.desc } ent-DrinkCoconutRum = { ent-DrinkGlass } .suffix = coconut rum .desc = { ent-DrinkGlass.desc } @@ -180,6 +186,9 @@ ent-DrinkIceGlass = { ent-DrinkGlass } ent-DrinkIceCreamGlass = { ent-DrinkGlass } .suffix = Мороженое .desc = { ent-DrinkGlass.desc } +ent-IrishBoolGlass = { ent-DrinkGlass } + .suffix = irish bool + .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCarBomb = { ent-DrinkGlass } .suffix = Ирландская автомобильная бомба .desc = { ent-DrinkGlass.desc } @@ -368,6 +377,9 @@ ent-DrinkVodkaGlass = { ent-DrinkGlass } ent-DrinkVodkaMartiniGlass = { ent-DrinkGlass } .suffix = Водка-мартини .desc = { ent-DrinkGlass.desc } +ent-DrinkVodkaRedBool = { ent-DrinkGlass } + .suffix = vodka red bool + .desc = { ent-DrinkGlass.desc } ent-DrinkVodkaTonicGlass = { ent-DrinkGlass } .suffix = Водка-тоник .desc = { ent-DrinkGlass.desc } @@ -376,6 +388,9 @@ ent-DrinkWaterJug = кувшин воды ent-DrinkWatermelonJuice = { ent-DrinkGlass } .suffix = Арбузный сок .desc = { ent-DrinkGlass.desc } +ent-DrinkWatermelonWakeup = { ent-DrinkGlass } + .suffix = watermelon wakeup + .desc = { ent-DrinkGlass.desc } ent-DrinkWhiskeyColaGlass = { ent-DrinkGlass } .suffix = Виски-кола .desc = { ent-DrinkGlass.desc } @@ -391,6 +406,9 @@ ent-DrinkWhiteRussianGlass = { ent-DrinkGlass } ent-DrinkWineGlass = { ent-DrinkGlass } .suffix = Вино .desc = { ent-DrinkGlass.desc } +ent-XenoBasherGlass = { ent-DrinkGlass } + .suffix = xeno basher + .desc = { ent-DrinkGlass.desc } ent-DrinkShakeBlue = голубой молочный коктейль .desc = { ent-DrinkGlassBase.desc } ent-DrinkShakeEmpty = пустой бокал коктейля diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl index c7dc899045e..f9ee8579d1b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl @@ -14,4 +14,6 @@ ent-ReinforcementRadioSyndicateCyborgAssault = { ent-ReinforcementRadioSyndicate .suffix = радио подкрепления штурмового киборга Синдиката .desc = Призовите хорошо вооружённого штурмового киборга, немедленно! .suffix = Ядерные оперативники + # Corvax-HiddenDesc-End + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl index 42970d5adf3..90c4e1ffccd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl @@ -1,5 +1,7 @@ ent-BaseWhistle = свисток .desc = Кто-то забыл выключить чайник? +ent-Whistle = { ent-BaseWhistle } + .desc = { ent-BaseWhistle.desc } ent-SecurityWhistle = { ent-BaseWhistle } .desc = Его звук внушает вам ужас. ent-SyndicateWhistle = траншейный свисток diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl index bee94006a02..0d65f2b78c2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl @@ -1,2 +1,2 @@ -ent-PortableRecharger = переносной зарядник +ent-PortableRecharger = переносной зарядник .desc = Высокотехнологичное зарядное устройство, адаптированное для мобильности. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl index e67763b3211..6bfa4450d1a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl @@ -18,8 +18,6 @@ ent-NinjaSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-RevenantSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-FalseAlarm = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-GasLeak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-KudzuGrowth = { ent-BaseGameRule } @@ -40,12 +38,12 @@ ent-VentClog = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SlimesSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-VentCritters = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SpiderSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SpiderClownSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } +ent-SleeperAgentsRule = { ent-BaseGameRule } + .desc = { ent-BaseGameRule.desc } ent-ZombieOutbreak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-LoneOpsSpawn = { ent-BaseGameRule } diff --git a/Resources/Locale/ru-RU/station-events/events/intercept.ftl b/Resources/Locale/ru-RU/station-events/events/intercept.ftl new file mode 100644 index 00000000000..f6867479cf7 --- /dev/null +++ b/Resources/Locale/ru-RU/station-events/events/intercept.ftl @@ -0,0 +1 @@ +station-event-communication-interception = Attention! Enemy communication intercepted. Security level elevated. diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index 1f01cdd0286..5827288f6b8 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -25,3 +25,5 @@ trait-southern-name = Диалект юга США trait-southern-desc = У вас другая манера речи. Работает только с английским. trait-snoring-name = Храп trait-snoring-desc = Вы храпите во время сна. +trait-liar-name = Pathological liar +trait-liar-desc = You can hardly bring yourself to tell the truth. Sometimes you lie anyway. From 78df79639e1bad34951ebd542c2dfe37d9c2114d Mon Sep 17 00:00:00 2001 From: XsenonDash <57865696+XsenonDash@users.noreply.github.com> Date: Tue, 7 May 2024 02:00:25 +0300 Subject: [PATCH 77/78] [Maps] Ishimura update (#2101) --- Resources/Maps/corvax_ishimura.yml | 226672 ++++++++------- Resources/Prototypes/Corvax/Maps/ishimura.yml | 11 +- 2 files changed, 122496 insertions(+), 104187 deletions(-) diff --git a/Resources/Maps/corvax_ishimura.yml b/Resources/Maps/corvax_ishimura.yml index 9ba981e3c99..549f3ec9aa1 100644 --- a/Resources/Maps/corvax_ishimura.yml +++ b/Resources/Maps/corvax_ishimura.yml @@ -3,6 +3,7 @@ meta: postmapinit: false tilemap: 0: Space + 20: FloorArcadeBlue 3: FloorArcadeRed 5: FloorAsteroidIronsand 6: FloorAsteroidIronsandUnvariantized @@ -10,11 +11,15 @@ tilemap: 8: FloorAsteroidSandDug 9: FloorAsteroidSandRed 10: FloorAsteroidSandUnvariantized + 15: FloorAstroGrass + 28: FloorAstroIce 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit + 11: FloorCarpetClown 25: FloorClown 26: FloorConcrete + 39: FloorConcreteMono 29: FloorDark 30: FloorDarkDiagonal 31: FloorDarkDiagonalMini @@ -22,12 +27,14 @@ tilemap: 33: FloorDarkMini 34: FloorDarkMono 35: FloorDarkOffset + 19: FloorDarkPavement 37: FloorDarkPavementVertical 38: FloorDarkPlastic 40: FloorDirt 42: FloorElevatorShaft 44: FloorFreezer 45: FloorGlass + 21: FloorGold 47: FloorGrass 48: FloorGrassDark 50: FloorGrassLight @@ -43,6 +50,9 @@ tilemap: 62: FloorLino 64: FloorMetalDiamond 65: FloorMime + 4: FloorMiningDark + 23: FloorMiningLight + 24: FloorMowedAstroGrass 70: FloorOldConcrete 71: FloorOldConcreteMono 73: FloorPlanetDirt @@ -51,14 +61,19 @@ tilemap: 78: FloorReinforcedHardened 79: FloorRockVault 80: FloorShowroom + 2: FloorShuttleBlack 82: FloorShuttleBlue + 36: FloorShuttleGrey 84: FloorShuttleOrange 86: FloorShuttleRed 87: FloorShuttleWhite 91: FloorSteel + 13: FloorSteelBurnt + 12: FloorSteelDamaged 96: FloorSteelDiagonal 97: FloorSteelDiagonalMini 98: FloorSteelDirty + 18: FloorSteelHerringbone 102: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 @@ -71,228 +86,247 @@ tilemap: 115: FloorWhiteMono 119: FloorWhitePlastic 120: FloorWood + 1: FloorWoodLarge 122: FloorWoodTile 123: Lattice 124: Plating 125: PlatingAsteroid + 22: PlatingBurnt + 27: PlatingDamaged entities: - proto: "" entities: - - uid: 89 + - uid: 1 + components: + - type: MetaData + name: USG_Ishimura + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: BecomesStation + id: Ishimura + - type: NavMap + - uid: 2 components: - type: MetaData name: "" - type: Transform - parent: 6561 + parent: 1 - type: MapGrid chunks: -1,-1: ind: -1,-1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMgAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAPAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAWwAAAAAAWwAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: IQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWwAAAAAADwAAAAAADwAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAPAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADwAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAADwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAADwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAADwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAdwAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAIQAAAAAAagAAAAAAagAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: WwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAAAHgAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAIQAAAAAAagAAAAAAagAAAAAAIQAAAAAAIQAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAALQAAAAAAdwAAAAAAfAAAAAAAdwAAAAAALQAAAAAALQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: WwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALQAAAAAACwAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 1,0: ind: 1,0 - tiles: fAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAHwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAA + tiles: fAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAJwAAAAAANQAAAAAANQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAHwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAA version: 6 2,0: ind: 2,0 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAALQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAANQAAAAAAfAAAAAAALQAAAAAAHQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAATgAAAAAAYAAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAALQAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAA + tiles: fAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAATgAAAAAAOQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAOQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAOQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: ewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAQAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAQAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: ewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAEwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAEgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIgAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAEgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAIQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: agAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAfAAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAA + tiles: agAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAADgAAAAAALQAAAAAADgAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAOQAAAAAATgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: fAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAbgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAagAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAagAAAAAA + tiles: FwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAbgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAagAAAAAAfAAAAAAAagAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAagAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: PgAAAAAAPgAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAfAAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: PgAAAAAAPgAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAALQAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAfAAAAAAAawAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAfAAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAFgAAAAAAFgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA + tiles: eAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAFgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA version: 6 -4,0: ind: -4,0 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAALQAAAAAAeAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: MwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAALQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAKAAAAAAAKAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAKAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAagAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAA version: 6 -2,1: ind: -2,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAA + tiles: AgAAAAAAWwAAAAAAWwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAawAAAAAAawAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAA version: 6 -3,1: ind: -3,1 - tiles: awAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: awAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAALQAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAA version: 6 -5,1: ind: -5,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAA version: 6 -6,0: ind: -6,0 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAWwAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAYgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAA version: 6 -6,1: ind: -6,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAA version: 6 -4,2: ind: -4,2 - tiles: fAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAA + tiles: fAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAA version: 6 -4,3: ind: -4,3 - tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: IwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAIwAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAIwAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: fAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAA + tiles: fAAAAAAAfAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: LQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAATQAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAYgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: fAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAA + tiles: FgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAA version: 6 -7,0: ind: -7,0 - tiles: TwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAATwAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFQAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,1: ind: -7,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAEQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAEQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,0: ind: -8,0 - tiles: TQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: TQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAegAAAAAAegAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAA version: 6 -8,1: ind: -8,1 - tiles: fAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAZgAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAEQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA version: 6 0,1: ind: 0,1 - tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAATAAAAAAATAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAA + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAA version: 6 1,1: ind: 1,1 - tiles: fAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAGgAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: fAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAcgAAAAAAYAAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA version: 6 2,1: ind: 2,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAHAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAIQAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -300,19 +334,19 @@ entities: version: 6 0,2: ind: 0,2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAQAAAAAAAQAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANAAAAAAAMwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARgAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAARgAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAARwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAANAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAANAAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAAMwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAARwAAAAAANQAAAAAARgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAANAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAMwAAAAAARwAAAAAANAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANAAAAAAAMwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARgAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAARgAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAARwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAANAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAANAAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAAMwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAARwAAAAAANQAAAAAARgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAOQAAAAAANAAAAAAANAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAMwAAAAAARwAAAAAANAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 3,-2: ind: 3,-2 @@ -320,31 +354,31 @@ entities: version: 6 4,1: ind: 4,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAA version: 6 -9,-1: ind: -9,-1 - tiles: fAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKgAAAAAAFgAAAAAAGwAAAAAAKgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAAGwAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATwAAAAAAfAAAAAAAfAAAAAAA version: 6 -9,0: ind: -9,0 - tiles: fAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAA version: 6 -9,1: ind: -9,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,-2: ind: -8,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,3: ind: -6,3 @@ -352,7 +386,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: ewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 @@ -368,75 +402,47 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAMgAAAAAAMgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAACQAAAAAACQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: fAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,0: ind: -10,0 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -10,-1: ind: -10,-1 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: TgAAAAAATAAAAAAATAAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATAAAAAAATAAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAA version: 6 -9,-2: ind: -9,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -9,-3: - ind: -9,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -8,-3: - ind: -8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -10,-2: ind: -10,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,-2: - ind: -11,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,-1: - ind: -11,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,0: - ind: -11,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAARgAAAAAAMwAAAAAARwAAAAAANAAAAAAARgAAAAAAfAAAAAAAGgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAARgAAAAAAMwAAAAAARwAAAAAANAAAAAAARgAAAAAAfAAAAAAAGgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 @@ -469,280 +475,280 @@ entities: color: '#DE3A3A96' id: 1 decals: - 3477: 44.999012,-12.258719 - 3486: 44.983387,-16.75872 + 2457: 44.999012,-12.258719 + 2466: 44.983387,-16.75872 - node: color: '#DE3A3A96' id: 2 decals: - 3478: 45.967762,-12.243094 - 3487: 45.967762,-16.75872 + 2458: 45.967762,-12.243094 + 2467: 45.967762,-16.75872 - node: color: '#DE3A3A96' id: 3 decals: - 3479: 46.983387,-12.258719 - 3488: 46.983387,-16.75872 + 2459: 46.983387,-12.258719 + 2468: 46.983387,-16.75872 - node: color: '#DE3A3A96' id: 4 decals: - 3480: 47.952137,-12.227469 - 3489: 47.936512,-16.75872 + 2460: 47.952137,-12.227469 + 2469: 47.936512,-16.75872 - node: color: '#DE3A3A96' id: 5 decals: - 3481: 48.920887,-12.227469 - 3490: 48.967762,-16.743095 + 2461: 48.920887,-12.227469 + 2470: 48.967762,-16.743095 - node: color: '#DE3A3A96' id: 6 decals: - 3482: 49.952137,-12.243094 - 3491: 49.983387,-16.774345 + 2462: 49.952137,-12.243094 + 2471: 49.983387,-16.774345 - node: color: '#DE3A3A96' id: 7 decals: - 3483: 50.983387,-12.243094 - 3492: 50.999012,-16.774345 + 2463: 50.983387,-12.243094 + 2472: 50.999012,-16.774345 - node: color: '#DE3A3A96' id: 8 decals: - 3484: 51.983387,-12.258719 - 3485: 51.999012,-16.72747 + 2464: 51.983387,-12.258719 + 2465: 51.999012,-16.72747 - node: color: '#FFFFFFFF' id: Bot decals: 22: -23,-20 - 345: -60,-12 - 346: -60,-13 - 347: -60,-11 - 348: -61,-10 - 349: -61,-11 - 350: -61,-12 - 351: -61,-13 - 352: -61,-14 - 353: -62,-13 - 354: -62,-12 - 355: -62,-11 - 408: -67,-11 - 409: -66,-11 - 410: -66,-10 - 411: -65,-11 - 412: -65,-12 - 413: -66,-12 - 414: -67,-12 - 415: -67,-13 - 416: -66,-13 - 417: -66,-14 - 418: -65,-13 - 557: -21,6 - 558: -19,5 - 559: -17,6 - 583: -44,1 - 684: -89,14 - 685: -87,12 - 723: -59,8 - 724: -61,7 - 745: 7,-11 - 758: -62,22 - 759: -60,20 - 764: -12,-15 - 765: -11,-15 - 766: -10,-15 - 767: -9,-15 - 828: -85,15 - 1143: 13,-1 - 1144: 14,-1 - 1145: 10,-3 - 1146: 10,-2 - 1437: -92,-11 - 1438: -91,-11 - 1439: -91,-10 - 1440: -92,-10 - 1441: -92,-9 - 1442: -91,-9 - 1677: -65,36 - 1678: -65,35 - 1679: -65,34 - 1680: -65,33 - 1681: -65,32 - 1682: -63,33 - 1683: -63,34 - 1684: -63,35 - 1685: -61,28 - 1686: -60,28 - 1687: -59,28 - 1688: -58,28 - 1689: -68,41 - 1690: -68,42 - 1691: -68,43 - 1692: -68,44 - 1693: -63,45 - 1694: -62,45 - 1695: -61,45 - 1784: -87,35 - 1785: -87,34 - 1786: -87,33 - 1787: -87,32 - 2339: 14,-4 - 2340: 15,-4 + 373: -12,-15 + 374: -11,-15 + 375: -10,-15 + 376: -9,-15 + 430: -85,15 + 654: 13,-1 + 655: 14,-1 + 656: 10,-3 + 657: 10,-2 + 1048: -65,36 + 1049: -65,35 + 1050: -65,34 + 1051: -65,33 + 1052: -65,32 + 1053: -63,33 + 1054: -63,34 + 1055: -63,35 + 1056: -61,28 + 1057: -60,28 + 1058: -59,28 + 1059: -58,28 + 1060: -68,41 + 1061: -68,42 + 1062: -68,43 + 1063: -68,44 + 1064: -63,45 + 1065: -62,45 + 1066: -61,45 + 1084: -87,35 + 1085: -87,34 + 1086: -87,33 + 1087: -87,32 + 1400: 14,-4 + 1401: 15,-4 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2613: 17,-3 - 2614: 18,-3 - 2615: 19,-3 + 1614: 17,-3 + 1615: 18,-3 + 1616: 19,-3 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Bot decals: - 1991: -64,43 - 1992: -63,43 - 1993: -62,43 + 1161: -64,43 + 1162: -63,43 + 1163: -62,43 - node: color: '#52B4E996' id: BotGreyscale decals: - 2728: 31,19 - 2729: 33,19 - 2730: 32,19 - 3057: 34,19 + 1727: 31,19 + 1728: 33,19 + 1729: 32,19 + 2044: 34,19 - node: color: '#52B4E99E' id: BotGreyscale decals: - 3009: 11,16 - 3010: 11,16 - 3011: 10,16 - 3012: 10,16 + 1996: 11,16 + 1997: 11,16 + 1998: 10,16 + 1999: 10,16 - node: - color: '#BD3CABFF' - id: BotGreyscale - decals: - 2575: -6,-33 - 2576: -7,-33 - 2577: -5,-33 - - node: - color: '#D381C996' - id: BotGreyscale - decals: - 2611: 1,-39 - 2612: 2,-39 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotLeft - decals: - 405: -67,-10 - 406: -65,-14 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 404: -65,-10 - 407: -67,-14 - 1434: -91,-8 - 1435: -92,-12 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight + color: '#500003FF' + id: Box decals: - 358: -62,-14 + 678: 8,8 - node: color: '#FFFFFFFF' - id: BotRight + id: Box decals: - 356: -62,-10 - 359: -60,-14 - 1433: -92,-8 - 1436: -91,-12 + 3724: 1,-39 + 3725: 2,-39 + 3726: 2,-40 + 3727: 1,-40 + 3728: 0,-40 + 3729: 0,-39 + 3730: -1,-39 + 3731: -8,-33 + 3732: -9,-33 + 3733: -10,-33 + 3734: -7,-33 + 3735: -6,-33 + 3736: -5,-33 + 3942: -148,-15 + 3943: -151,-12 + 3944: -151,-4 + 3945: -148,-1 + 3946: -140,-1 + 3947: -140,-15 + 3948: -137,-4 + 3949: -137,-12 + 4369: -96,-13 + 4370: -97,-13 + 4371: -103,-15 + 5117: 29,5 + 5118: 28,5 + 5119: 27,5 + 5120: 26,5 + 5121: 25,5 + 5122: 26,9 + 5123: 28,9 + 5124: 27,9 + 5125: 29,9 + 5126: 30,9 + 5141: -107,2 + 5142: -106,2 + 5143: -105,2 + 5144: -104,2 + 5145: -111,-3 + 5146: -111,1 + 5147: -111,6 + 5148: -102,9 + 5149: -106,-2 + 5150: -106,-1 + 5151: -104,0 + 5152: -103,0 + 5153: -102,0 + 5154: -101,0 + 5155: -99,-2 + 5156: -99,-3 + 5157: -99,-4 + 5176: -91,-7 + 5177: -91,-6 + 5178: -91,-5 + 5179: -91,-8 + 5180: -91,-9 + 5181: -91,-10 + 5182: -97,-10 + 5183: -97,-9 + 5184: -111,10 + 5185: -116,8 + 5186: -117,8 + 5187: -117,10 + 5188: -116,10 + 5189: -116,-1 + 5190: -117,-1 + 5191: -117,-3 + 5192: -116,-3 + 5193: -122,-4 + 5194: -123,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: BotRight - decals: - 357: -60,-10 - - node: - color: '#500003FF' id: Box decals: - 1177: 8,8 + 348: -80,-15 + 349: -80,-17 + 350: -80,-19 - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Box + color: '#334E6DFF' + id: BoxGreyscale decals: - 426: -80,-15 - 427: -80,-17 - 428: -80,-19 + 5127: 25,7 - node: color: '#52B4E996' id: BoxGreyscale decals: - 2786: 6,12 - 2787: 6,13 - 2788: 7,13 - 2789: 8,12 - 2790: 7,12 - 2791: 8,13 - 2792: 9,13 - 2793: 9,12 - 2794: 10,12 - 2795: 10,13 + 1785: 6,12 + 1786: 6,13 + 1787: 7,13 + 1788: 8,12 + 1789: 7,12 + 1790: 8,13 + 1791: 9,13 + 1792: 9,12 + 1793: 10,12 + 1794: 10,13 - node: color: '#52B4E99E' id: BoxGreyscale decals: - 2990: 9,18 - 2991: 10,18 - 2992: 11,18 + 1977: 9,18 + 1978: 10,18 + 1979: 11,18 - node: - color: '#BD3CABFF' + color: '#8C347FFF' id: BoxGreyscale decals: - 2572: -10,-33 - 2573: -9,-33 - 2574: -8,-33 + 5130: 28,7 - node: color: '#D381C996' id: BoxGreyscale decals: - 2609: 0,-45 - 2610: -6,-45 + 1612: 0,-45 + 1613: -6,-45 + - node: + color: '#DE3A3AFF' + id: BoxGreyscale + decals: + 5129: 27,7 + - node: + color: '#EFB341FF' + id: BoxGreyscale + decals: + 5128: 26,7 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 1158: 5,8 - 1159: 5,7 - 1160: 5,6 - 1161: 6,5 - 1162: 7,5 - 1163: 8,5 - 1164: 9,5 - 1165: 10,9 + 659: 5,8 + 660: 5,7 + 661: 5,6 + 662: 6,5 + 663: 7,5 + 664: 8,5 + 665: 9,5 + 666: 10,9 - node: color: '#52B4E99E' id: BrickTileDarkCornerNe decals: - 2975: -11,14 - 2976: -11,14 - 2977: -11,14 + 1962: -11,14 + 1963: -11,14 + 1964: -11,14 - node: color: '#D381C9FF' id: BrickTileDarkCornerNe decals: - 2522: -8,-28 + 1560: -8,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -751,22 +757,22 @@ entities: 155: 57,10 200: 52,-4 264: 38,16 - 3774: 61,11 - 3775: 58,12 - 3816: 53,-1 - 3835: 50,1 + 2752: 61,11 + 2753: 58,12 + 2794: 53,-1 + 2811: 50,1 - node: color: '#52B4E99E' id: BrickTileDarkCornerNw decals: - 2972: -12,14 - 2973: -12,14 - 2974: -12,14 + 1959: -12,14 + 1960: -12,14 + 1961: -12,14 - node: color: '#D381C9FF' id: BrickTileDarkCornerNw decals: - 2517: -10,-28 + 1555: -10,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -775,23 +781,23 @@ entities: 154: 54,10 197: 59,-4 263: 30,16 - 3762: 58,-1 - 3776: 53,12 - 3777: 50,11 - 3784: 47,8 - 3833: 47,1 + 2740: 58,-1 + 2754: 53,12 + 2755: 50,11 + 2762: 47,8 + 2809: 47,1 - node: color: '#52B4E99E' id: BrickTileDarkCornerSe decals: - 2981: -11,12 - 2982: -11,12 - 2983: -11,12 + 1968: -11,12 + 1969: -11,12 + 1970: -11,12 - node: color: '#D381C9FF' id: BrickTileDarkCornerSe decals: - 2518: -8,-30 + 1556: -8,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -800,22 +806,22 @@ entities: 136: 60,0 158: 52,12 254: 38,11 - 3760: 58,-4 - 3761: 61,-3 - 3788: 50,7 - 3801: 53,9 + 2738: 58,-4 + 2739: 61,-3 + 2766: 50,7 + 2779: 53,9 - node: color: '#52B4E99E' id: BrickTileDarkCornerSw decals: - 2978: -12,12 - 2979: -12,12 - 2980: -12,12 + 1965: -12,12 + 1966: -12,12 + 1967: -12,12 - node: color: '#D381C9FF' id: BrickTileDarkCornerSw decals: - 2519: -10,-30 + 1557: -10,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -824,54 +830,53 @@ entities: 128: 54,-2 169: 59,12 262: 30,11 - 3785: 47,7 - 3802: 58,9 - 3823: 53,-4 - 3826: 50,-3 - 3834: 47,0 + 2763: 47,7 + 2780: 58,9 + 2801: 53,-4 + 2810: 47,0 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 3806: 58,11 - 3814: 53,-3 - 3837: 50,-1 + 2784: 58,11 + 2792: 53,-3 + 2813: 50,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3780: 53,11 - 3781: 50,8 - 3807: 61,-1 - 3813: 58,-3 + 2758: 53,11 + 2759: 50,8 + 2785: 61,-1 + 2791: 58,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 133: 57,0 - 3792: 50,9 - 3799: 53,11 - 3840: 58,-3 + 2770: 50,9 + 2777: 53,11 + 2816: 58,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3800: 58,11 - 3805: 61,9 - 3838: 50,0 - 3839: 53,-3 + 2778: 58,11 + 2783: 61,9 + 2814: 50,0 + 2815: 53,-3 - node: color: '#52B4E99E' id: BrickTileDarkLineE decals: - 2984: -11,13 - 2985: -11,13 - 2986: -11,13 + 1971: -11,13 + 1972: -11,13 + 1973: -11,13 - node: color: '#D381C9FF' id: BrickTileDarkLineE decals: - 2521: -8,-29 + 1559: -8,-29 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -892,57 +897,45 @@ entities: 267: 38,13 268: 38,12 280: 36,10 - 316: 39,5 - 317: 39,6 - 318: 39,7 - 319: 39,7 - 320: 39,8 - 360: -63,-10 - 361: -63,-11 - 362: -63,-11 - 363: -63,-12 - 364: -63,-12 - 365: -63,-13 - 366: -63,-14 - 391: -68,-14 - 392: -68,-13 - 393: -68,-12 - 394: -68,-11 - 395: -68,-10 - 3747: 61,10 - 3748: 61,9 - 3749: 61,8 - 3750: 61,7 - 3751: 61,6 - 3752: 61,5 - 3753: 61,4 - 3754: 61,3 - 3755: 61,2 - 3756: 61,1 - 3757: 61,0 - 3758: 61,-1 - 3759: 61,-2 - 3789: 50,8 - 3793: 53,10 - 3815: 53,-2 - 3836: 50,0 + 312: 39,5 + 313: 39,6 + 314: 39,7 + 315: 39,7 + 316: 39,8 + 2725: 61,10 + 2726: 61,9 + 2727: 61,8 + 2728: 61,7 + 2729: 61,6 + 2730: 61,5 + 2731: 61,4 + 2732: 61,3 + 2733: 61,2 + 2734: 61,1 + 2735: 61,0 + 2736: 61,-1 + 2737: 61,-2 + 2767: 50,8 + 2771: 53,10 + 2793: 53,-2 + 2812: 50,0 - node: color: '#52B4E99E' id: BrickTileDarkLineN decals: - 3001: 11,17 - 3002: 11,17 - 3003: 10,17 - 3004: 10,17 - 3005: 9,17 - 3006: 9,17 - 3007: 8,17 - 3008: 8,17 + 1988: 11,17 + 1989: 11,17 + 1990: 10,17 + 1991: 10,17 + 1992: 9,17 + 1993: 9,17 + 1994: 8,17 + 1995: 8,17 - node: color: '#D381C9FF' id: BrickTileDarkLineN decals: - 2523: -9,-28 + 1561: -9,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -969,33 +962,27 @@ entities: 259: 33,16 260: 32,16 261: 31,16 - 334: 40,3 - 367: -62,-15 - 368: -61,-15 - 369: -60,-15 - 387: -65,-15 - 388: -66,-15 - 389: -67,-15 - 3741: 55,12 - 3742: 54,12 - 3743: 56,12 - 3744: 57,12 - 3745: 59,11 - 3746: 60,11 - 3763: 59,-1 - 3764: 60,-1 - 3778: 51,11 - 3779: 52,11 - 3782: 49,8 - 3783: 48,8 - 3809: 57,-3 - 3810: 56,-3 - 3811: 55,-3 - 3812: 54,-3 - 3817: 52,-1 - 3818: 51,-1 - 3831: 49,1 - 3832: 48,1 + 330: 40,3 + 2719: 55,12 + 2720: 54,12 + 2721: 56,12 + 2722: 57,12 + 2723: 59,11 + 2724: 60,11 + 2741: 59,-1 + 2742: 60,-1 + 2756: 51,11 + 2757: 52,11 + 2760: 49,8 + 2761: 48,8 + 2787: 57,-3 + 2788: 56,-3 + 2789: 55,-3 + 2790: 54,-3 + 2795: 52,-1 + 2796: 51,-1 + 2807: 49,1 + 2808: 48,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1019,52 +1006,46 @@ entities: 272: 33,11 273: 32,11 274: 31,11 - 374: -62,-9 - 375: -61,-9 - 376: -60,-9 - 396: -67,-9 - 397: -66,-9 - 398: -65,-9 - 3786: 48,7 - 3787: 49,7 - 3790: 51,9 - 3791: 52,9 - 3794: 54,11 - 3795: 55,11 - 3796: 56,11 - 3797: 57,11 - 3803: 59,9 - 3804: 60,9 - 3819: 54,-4 - 3820: 55,-4 - 3821: 56,-4 - 3822: 57,-4 - 3824: 52,-3 - 3825: 51,-3 - 3829: 49,0 - 3830: 48,0 - 3841: 59,-3 - 3842: 60,-3 + 2764: 48,7 + 2765: 49,7 + 2768: 51,9 + 2769: 52,9 + 2772: 54,11 + 2773: 55,11 + 2774: 56,11 + 2775: 57,11 + 2781: 59,9 + 2782: 60,9 + 2797: 54,-4 + 2798: 55,-4 + 2799: 56,-4 + 2800: 57,-4 + 2802: 52,-3 + 2803: 51,-3 + 2805: 49,0 + 2806: 48,0 + 2817: 59,-3 + 2818: 60,-3 - node: color: '#52B4E99E' id: BrickTileDarkLineW decals: - 2987: -12,13 - 2988: -12,13 - 2989: -12,13 - 2993: 7,16 - 2994: 7,16 - 2995: 7,17 - 2996: 7,17 - 2997: 7,18 - 2998: 7,18 - 2999: 8,18 - 3000: 8,18 + 1974: -12,13 + 1975: -12,13 + 1976: -12,13 + 1980: 7,16 + 1981: 7,16 + 1982: 7,17 + 1983: 7,17 + 1984: 7,18 + 1985: 7,18 + 1986: 8,18 + 1987: 8,18 - node: color: '#D381C9FF' id: BrickTileDarkLineW decals: - 2520: -10,-29 + 1558: -10,-29 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1098,1362 +1079,3263 @@ entities: 277: 30,13 278: 30,12 279: 34,10 - 377: -59,-10 - 378: -59,-11 - 379: -59,-12 - 380: -59,-13 - 381: -59,-14 - 382: -64,-10 - 383: -64,-11 - 384: -64,-12 - 385: -64,-13 - 386: -64,-14 - 3765: 61,0 - 3766: 61,1 - 3767: 61,2 - 3768: 61,3 - 3769: 61,4 - 3770: 61,5 - 3771: 61,6 - 3772: 61,7 - 3773: 61,8 - 3798: 58,10 - 3808: 58,-2 - 3827: 50,-2 - 3828: 50,-1 - 3843: 50,10 - 3844: 50,9 + 2743: 61,0 + 2744: 61,1 + 2745: 61,2 + 2746: 61,3 + 2747: 61,4 + 2748: 61,5 + 2749: 61,6 + 2750: 61,7 + 2751: 61,8 + 2776: 58,10 + 2786: 58,-2 + 2804: 50,-1 + 2819: 50,10 + 2820: 50,9 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 2757: 28,20 + 1756: 28,20 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 2758: 24,20 + 1757: 24,20 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2756: 24,11 + 1755: 24,11 - node: color: '#52B4E99E' id: BrickTileSteelInnerNe decals: - 2935: -14,6 + 1924: -14,6 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerNe + decals: + 3129: 15,-9 + 3178: 5,-5 + 3186: 8,-6 + 3192: 3,-11 + 3226: 11,-6 + 3228: 5,-12 + 3229: 9,-10 + 3248: 27,-9 + 3254: 36,-6 + 3278: 43,-6 + 3288: 41,-10 + 3361: 0,-11 + 3362: 0,-13 + 3392: 39,-23 + 3410: 40,-21 + 3411: 40,-19 + 3429: 40,-14 - node: color: '#52B4E99E' id: BrickTileSteelInnerNw decals: - 2936: -11,6 + 1925: -11,6 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerNw + decals: + 3179: 5,-5 + 3185: 8,-5 + 3193: 5,-11 + 3207: 2,-13 + 3212: 3,-11 + 3213: 11,-10 + 3225: 11,-6 + 3245: 7,-12 + 3247: 26,-9 + 3253: 36,-6 + 3260: 39,-6 + 3355: 38,-15 + 3391: 39,-23 + 3394: 34,-24 + 3395: 34,-26 + 3407: 38,-21 + 3426: 38,-17 + 4767: -15,10 + 4768: -15,7 - node: color: '#52B4E99E' id: BrickTileSteelInnerSe decals: - 2933: -14,9 + 1922: -14,9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerSe + decals: + 3156: 5,-7 + 3177: 5,-3 + 3190: 3,-9 + 3220: 12,-11 + 3221: 16,-11 + 3222: 19,-11 + 3223: 22,-11 + 3224: 25,-11 + 3227: 5,-12 + 3230: 9,-10 + 3250: 27,-7 + 3258: 37,-7 + 3277: 43,-4 + 3281: 43,-6 + 3289: 41,-10 + 3342: 28,-11 + 3363: 0,-13 + 3364: 0,-11 + 3393: 36,-23 + 3408: 39,-21 + 3412: 40,-19 + 3428: 40,-14 + 3431: 41,-7 - node: color: '#52B4E99E' id: BrickTileSteelInnerSw decals: - 2934: -11,9 + 1923: -11,9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerSw + decals: + 3128: 11,-7 + 3176: 5,-3 + 3184: 8,-3 + 3191: 5,-9 + 3206: 2,-11 + 3214: 11,-10 + 3215: 19,-11 + 3216: 22,-11 + 3217: 25,-11 + 3218: 16,-11 + 3219: 12,-11 + 3246: 7,-12 + 3249: 26,-7 + 3259: 39,-7 + 3341: 28,-11 + 3356: 38,-15 + 3396: 34,-26 + 3397: 34,-24 + 3398: 38,-23 + 3409: 39,-21 + 3427: 38,-17 + 3430: 38,-13 + 3433: 40,-7 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2741: 28,12 - 2742: 28,13 - 2743: 28,14 - 2744: 28,15 - 2745: 28,16 - 2746: 28,17 - 2747: 28,18 - 2748: 28,19 + 1740: 28,12 + 1741: 28,13 + 1742: 28,14 + 1743: 28,15 + 1744: 28,16 + 1745: 28,17 + 1746: 28,18 + 1747: 28,19 - node: color: '#52B4E99E' id: BrickTileSteelLineE decals: - 2939: -11,7 - 2940: -11,8 + 1928: -11,7 + 1929: -11,8 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 3130: 15,-8 + 3131: 15,-7 + 3132: 15,-6 + 3150: 8,-5 + 3154: 5,-8 + 3155: 5,-9 + 3161: 6,-3 + 3162: 6,-2 + 3163: 6,-1 + 3172: 8,-3 + 3173: 8,-2 + 3174: 8,-1 + 3180: 5,-4 + 3183: 8,-4 + 3194: 5,-10 + 3197: 3,-10 + 3198: 5,-11 + 3199: 5,-13 + 3200: 5,-14 + 3231: 9,-11 + 3232: 9,-12 + 3233: 9,-13 + 3234: 9,-9 + 3251: 27,-8 + 3272: 46,-3 + 3273: 46,-4 + 3279: 43,-5 + 3280: 43,-7 + 3284: 41,-8 + 3285: 41,-9 + 3311: 49,-9 + 3312: 49,-10 + 3358: 0,-14 + 3359: 0,-12 + 3360: 0,-10 + 3377: 40,-23 + 3378: 40,-24 + 3379: 40,-26 + 3380: 40,-25 + 3381: 40,-27 + 3382: 36,-28 + 3383: 37,-27 + 3384: 36,-27 + 3385: 36,-26 + 3386: 36,-25 + 3387: 36,-24 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 2749: 25,20 - 2750: 26,20 - 2751: 27,20 - 2830: 0,12 - 2831: 1,12 - 2838: 2,12 - 2839: 3,12 - 2840: -1,12 - 2841: -2,12 + 1748: 25,20 + 1749: 26,20 + 1750: 27,20 + 1829: 0,12 + 1830: 1,12 + 1837: 2,12 + 1838: 3,12 + 1839: -1,12 + 1840: -2,12 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 3109: 22,-9 + 3110: 21,-9 + 3111: 20,-9 + 3112: 18,-9 + 3113: 19,-9 + 3114: 17,-9 + 3115: 16,-9 + 3133: 15,-6 + 3134: 14,-6 + 3135: 13,-6 + 3136: 12,-6 + 3137: 10,-6 + 3138: 7,-5 + 3139: 6,-5 + 3140: 4,-5 + 3141: 3,-5 + 3142: 4,-11 + 3164: 2,-1 + 3165: 3,-1 + 3166: 5,-1 + 3167: 6,-1 + 3168: 4,-1 + 3175: 8,-1 + 3188: 9,-6 + 3205: 2,-11 + 3210: 1,-11 + 3211: 1,-13 + 3235: 9,-9 + 3236: 8,-9 + 3237: 7,-9 + 3255: 37,-6 + 3256: 38,-6 + 3264: 39,-3 + 3265: 40,-3 + 3266: 41,-3 + 3267: 42,-3 + 3268: 43,-3 + 3269: 44,-3 + 3270: 45,-3 + 3271: 46,-3 + 3293: 42,-10 + 3303: 43,-9 + 3304: 44,-9 + 3305: 45,-9 + 3306: 46,-9 + 3307: 47,-9 + 3308: 47,-9 + 3309: 48,-9 + 3310: 49,-9 + 3348: 23,-9 + 3349: 24,-9 + 3350: 25,-9 + 3351: 37,-15 + 3352: 36,-15 + 3365: 40,-23 + 3366: 36,-23 + 3367: 35,-23 + 3368: 34,-23 + 3389: 37,-23 + 3390: 38,-23 + 3414: 41,-21 + 3415: 42,-21 + 3416: 41,-19 + 3417: 43,-19 + 3422: 43,-19 + 3423: 43,-21 + 3424: 41,-21 + 3425: 41,-19 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 2832: 0,12 - 2833: 1,12 - 2842: -2,12 - 2843: -1,12 - 2844: 2,12 - 2845: 3,12 + 1831: 0,12 + 1832: 1,12 + 1841: -2,12 + 1842: -1,12 + 1843: 2,12 + 1844: 3,12 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 3116: 21,-11 + 3117: 20,-11 + 3118: 18,-11 + 3119: 17,-11 + 3120: 15,-11 + 3121: 14,-11 + 3122: 13,-11 + 3123: 11,-11 + 3127: 10,-7 + 3151: 8,-7 + 3152: 7,-7 + 3153: 6,-7 + 3157: 4,-3 + 3158: 3,-3 + 3159: 2,-3 + 3160: 6,-3 + 3187: 9,-7 + 3189: 4,-9 + 3201: 5,-14 + 3202: 4,-14 + 3203: 3,-14 + 3204: 2,-14 + 3208: 1,-13 + 3209: 1,-11 + 3238: 9,-13 + 3239: 8,-13 + 3240: 7,-13 + 3257: 38,-7 + 3274: 46,-4 + 3275: 45,-4 + 3276: 44,-4 + 3282: 43,-7 + 3283: 42,-7 + 3290: 41,-10 + 3291: 40,-10 + 3294: 42,-10 + 3295: 43,-10 + 3296: 44,-10 + 3297: 45,-10 + 3298: 46,-10 + 3299: 47,-10 + 3300: 48,-10 + 3301: 49,-10 + 3343: 29,-11 + 3344: 27,-11 + 3345: 26,-11 + 3346: 23,-11 + 3347: 24,-11 + 3353: 36,-15 + 3354: 37,-15 + 3388: 37,-23 + 3399: 38,-27 + 3400: 39,-27 + 3401: 40,-27 + 3402: 36,-28 + 3403: 35,-28 + 3404: 34,-28 + 3405: 40,-21 + 3406: 38,-21 + 3413: 41,-21 + 3418: 42,-21 + 3419: 42,-19 + 3420: 43,-19 + 3421: 43,-21 + 3432: 39,-7 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 2733: 24,19 - 2734: 24,18 - 2735: 24,17 - 2736: 24,16 - 2737: 24,15 - 2738: 24,14 - 2739: 24,13 - 2740: 24,12 + 1732: 24,19 + 1733: 24,18 + 1734: 24,17 + 1735: 24,16 + 1736: 24,15 + 1737: 24,14 + 1738: 24,13 + 1739: 24,12 - node: color: '#52B4E99E' id: BrickTileSteelLineW decals: - 2937: -14,8 - 2938: -14,7 + 1926: -14,8 + 1927: -14,7 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 3124: 11,-11 + 3125: 11,-9 + 3126: 11,-8 + 3143: 2,-12 + 3144: 2,-14 + 3145: 3,-5 + 3146: 3,-6 + 3147: 3,-7 + 3148: 3,-8 + 3149: 3,-9 + 3169: 2,-1 + 3170: 2,-3 + 3171: 2,-2 + 3181: 5,-4 + 3182: 8,-4 + 3195: 5,-10 + 3196: 3,-10 + 3241: 7,-13 + 3242: 7,-11 + 3243: 7,-10 + 3244: 7,-9 + 3252: 26,-8 + 3261: 39,-5 + 3262: 39,-4 + 3263: 39,-3 + 3286: 40,-8 + 3287: 40,-9 + 3292: 40,-10 + 3302: 43,-9 + 3357: 36,-15 + 3369: 34,-23 + 3370: 34,-25 + 3371: 34,-27 + 3372: 34,-28 + 3373: 38,-27 + 3374: 38,-26 + 3375: 38,-25 + 3376: 38,-24 + - node: + color: '#52B4E9A5' + id: BrickTileWhiteBox + decals: + 5209: 11,12 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1997: -52,48 + 1167: -52,48 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 3183: 21,23 + 2164: 21,23 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerNe decals: - 3424: -0.5136709,8.494518 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerNe - decals: - 2562: -5,-28 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 638: -6,-16 - 710: -12,-22 - 843: 2,-39 + 2404: -0.5136709,8.494518 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerNe decals: - 2443: -129,17 - 2446: -128,13 - 2516: -98,9 - 2524: -105,15 - 2543: -116,6 - 2544: -116,2 - 2547: -120,-1 + 1490: -129,17 + 1493: -128,13 + 1554: -98,9 + 1562: -105,15 + 1581: -116,6 + 1582: -116,2 + 1585: -120,-1 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1264: -99,0 + 701: -99,0 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1994: -57,48 + 1164: -57,48 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3182: 16,23 + 2163: 16,23 - node: color: '#52B4E9D8' id: BrickTileWhiteCornerNw decals: - 3205: -3.5071917,8.508477 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerNw - decals: - 2561: -7,-28 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 644: -17,-16 - 698: -23,-16 - 842: -8,-39 + 2186: -3.5071917,8.508477 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerNw decals: - 2442: -133,17 - 2509: -113,0 - 2510: -114,5 - 2512: -113,10 - 2515: -100,9 - 2526: -110,15 - 2540: -119,4 - 2541: -117,6 + 1489: -133,17 + 1547: -113,0 + 1548: -114,5 + 1550: -113,10 + 1553: -100,9 + 1564: -110,15 + 1578: -119,4 + 1579: -117,6 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 1263: -106,0 + 700: -106,0 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1996: -52,47 + 1166: -52,47 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2755: 28,11 - 3184: 21,21 + 1754: 28,11 + 2165: 21,21 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerSe decals: - 3325: -0.51731133,5.4969463 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerSe - decals: - 2563: -5,-33 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 628: -12,-20 - 635: -6,-19 - 711: -12,-24 + 2305: -0.51731133,5.4969463 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerSe decals: - 2445: -128,11 - 2506: -108,-20 - 2514: -98,2 - 2525: -105,13 - 2545: -116,1 - 2546: -116,5 - 2548: -120,8 - 2554: -120,-4 + 1492: -128,11 + 1552: -98,2 + 1563: -105,13 + 1583: -116,1 + 1584: -116,5 + 1586: -120,8 + 1590: -120,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1262: -99,-6 + 699: -99,-6 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 1995: -57,47 + 1165: -57,47 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3185: 16,21 + 2166: 16,21 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerSw decals: - 3328: -3.5224001,5.4813213 + 2308: -3.5224001,5.4813213 - node: - color: '#BD3CABFF' + cleanable: True + color: '#EFB34195' id: BrickTileWhiteCornerSw decals: - 2564: -7,-33 + 1491: -133,11 + 1546: -113,-3 + 1549: -114,2 + 1551: -113,7 + 1577: -119,3 + 1580: -117,1 - node: - color: '#D381C996' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 693: -20,-24 + 698: -106,-6 - node: - cleanable: True - color: '#EFB34195' - id: BrickTileWhiteCornerSw + color: '#334E6DC8' + id: BrickTileWhiteInnerNe decals: - 2444: -133,11 - 2507: -110,-20 - 2508: -113,-3 - 2511: -114,2 - 2513: -113,7 - 2539: -119,3 - 2542: -117,1 + 3882: -59,45 - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw + color: '#3EB388FF' + id: BrickTileWhiteInnerNe decals: - 1261: -106,-6 + 4449: -93,-5 + 4450: -95,-5 + 4451: -93,-12 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNe + decals: + 5061: 10,34 + 5062: 13,34 + 5063: 6,34 + 5072: 11,29 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2725: 30,18 + 1724: 30,18 - node: - color: '#D381C996' + color: '#52B4E9FF' + id: BrickTileWhiteInnerNe + decals: + 4792: 24,3 + 4793: 31,3 + 4817: 41,1 + 5074: -12,4 + 5085: -10,3 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerNe + decals: + 4963: -21,-11 + 4964: -23,-11 + 4978: -40,-5 + 4979: -40,-12 + 4980: -18,-12 + 4981: -7,-12 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNe + decals: + 3692: -2,-39 + - node: + color: '#DE3A3AFF' id: BrickTileWhiteInnerNe decals: - 703: -19,-22 + 3803: -56,45 + 3805: -55,44 + 3806: -55,40 + 3809: -56,35 + 3813: -60,33 + 3814: -60,35 + 3848: -63,18 + 3877: -60,21 + 3878: -60,30 + 4650: -60,10 + 4651: -63,8 + 4691: -85,16 + 4692: -85,13 + 4693: -86,10 + 4721: -44,-1 + 4725: -45,1 + 4745: -20,9 + 4746: -17,7 + 4769: -23,3 + 4781: 19,3 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNe + decals: + 4832: -98,8 + 4838: -125,-6 + 4862: -132,-6 + 4867: -94,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 3883: -57,45 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerNw + decals: + 4447: -93,-5 + 4448: -96,-5 + 4452: -93,-12 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNw + decals: + 5059: 8,30 + 5060: 9,34 + 5064: 6,34 + 5065: 13,34 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteInnerNw + decals: + 4789: 24,3 + 4790: 30,3 + 4791: 24,3 + 4818: 38,8 + 4819: 34,3 + 5073: -13,4 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerNw + decals: + 4961: -28,-12 + 4962: -28,2 + 4965: -23,-11 + 4966: -21,-11 + 4982: -7,-12 + 4983: -2,-12 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 3691: -2,-39 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerNw + decals: + 3810: -57,36 + 3811: -58,35 + 3812: -58,33 + 3832: -53,36 + 3846: -64,21 + 3847: -63,18 + 3872: -58,18 + 4648: -61,8 + 4649: -60,10 + 4686: -86,14 + 4687: -86,10 + 4688: -83,10 + 4689: -83,13 + 4690: -83,16 + 4694: -86,16 + 4719: -42,-1 + 4720: -45,1 + 4744: -20,9 + 4748: -18,9 + 4780: 19,3 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNw + decals: + 4824: -96,0 + 4828: -96,8 + 4866: -94,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 3880: -59,44 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerSe + decals: + 4440: -95,-10 + 4441: -93,-10 + 4442: -95,-3 + 4443: -93,-3 + 4446: -88,-2 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSe + decals: + 5066: 8,32 + 5067: 10,41 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2726: 30,20 + 1725: 30,20 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteInnerSe + decals: + 4967: -20,1 + 4968: -18,1 + 4972: -30,3 + 4973: -40,3 + 4977: -40,-5 + - node: + color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 629: -12,-19 + 3687: -2,-37 + 3723: 1,-42 + 3744: -1,-18 + 3745: -3,-18 + 3764: -19,-14 + 3765: -9,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerSe + decals: + 3804: -55,44 + 3807: -55,40 + 3808: -56,35 + 3815: -60,33 + 3816: -60,35 + 3871: -66,24 + 3873: -63,20 + 3876: -60,21 + 3879: -60,38 + 3891: -56,38 + 4646: -63,8 + 4647: -60,12 + 4685: -85,13 + 4716: -45,3 + 4717: -44,-1 + 4749: -17,7 + 4770: -17,10 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSe + decals: + 4831: -98,7 + 4839: -125,-9 + 4865: -134,-12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 3894: -57,44 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerSw + decals: + 4438: -93,-10 + 4439: -95,-11 + 4444: -93,-3 + 4445: -96,-3 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSw + decals: + 5068: 9,41 + 5069: 8,32 + 5070: 13,32 + 5071: 13,29 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteInnerSw + decals: + 4814: 38,1 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerSw + decals: + 4969: -20,1 + 4970: -18,1 + 4971: -28,3 + 4974: -38,3 + 4984: -2,1 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 3688: -2,-37 + 3722: 1,-42 + 3746: -3,-18 + 3747: -1,-18 + 3763: -21,-14 + 3766: -12,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerSw + decals: + 3817: -58,33 + 3818: -58,35 + 3868: -58,24 + 3869: -63,20 + 3870: -64,21 + 4644: -61,8 + 4645: -60,12 + 4681: -86,12 + 4682: -83,13 + 4683: -83,16 + 4684: -86,16 + 4714: -45,3 + 4715: -44,-1 + 4718: -42,3 + 4722: -42,-1 + 4765: -15,7 + 4766: -15,10 + 4823: -83,19 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSw + decals: + 4830: -96,7 - node: cleanable: True color: '#00BEBE93' id: BrickTileWhiteLineE decals: - 2589: -108,-15 - 2590: -108,-13 - 2591: -108,-11 - 2592: -108,-9 - 2599: -108,-19 + 1606: -108,-9 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineE + decals: + 3313: 49,-6 + 3314: 49,-7 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineE + decals: + 4417: -88,-3 + 4418: -91,-5 + 4419: -91,-6 + 4420: -91,-7 + 4421: -91,-8 + 4422: -91,-9 + 4423: -91,-10 + 4424: -95,-11 + 4453: -93,-11 + 4456: -96,-4 + 4464: -108,-10 + 4465: -108,-11 + 4466: -108,-12 + 4467: -108,-13 + 4468: -108,-14 + 4475: -108,-9 + 4476: -108,-14 + 4478: -110,-14 + - node: + color: '#439909FF' + id: BrickTileWhiteLineE + decals: + 4987: 14,24 + 4988: 14,25 + 4989: 14,27 + 4992: 14,28 + 4993: 14,29 + 4994: 14,30 + 4997: 14,31 + 4998: 14,32 + 4999: 14,33 + 5000: 14,34 + 5032: 8,31 + 5033: 8,30 + 5034: 8,29 + 5035: 11,30 + 5036: 10,35 + 5037: 10,36 + 5038: 10,37 + 5039: 10,38 + 5040: 10,39 + 5041: 10,40 + 5050: 11,42 + 5051: 11,41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2727: 30,19 - 2806: 5,12 - 2807: 5,13 - 2917: -7,9 - 3194: 21,22 + 1726: 30,19 + 1805: 5,12 + 1806: 5,13 + 1906: -7,9 + 2175: 21,22 - node: color: '#52B4E9CC' id: BrickTileWhiteLineE decals: - 3418: -0.51358485,6.518468 - 3419: -0.51358485,7.502843 + 2398: -0.51358485,6.518468 + 2399: -0.51358485,7.502843 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 2565: -5,-32 - 2566: -5,-30 - 2567: -5,-29 + 4815: 41,2 + 4816: 41,3 + 5076: -12,5 + 5086: -10,4 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteLineE + decals: + 4945: -30,2 + 4946: -40,1 + 4947: -40,0 + 4948: -40,-1 + 4949: -40,-2 + 4950: -40,-2 + 4951: -40,-3 + 4952: -40,-4 + 4953: -40,-6 + 4954: -40,-7 + 4955: -40,-8 + 4956: -40,-9 + 4957: -40,-10 + 4958: -40,-11 + 4959: -18,-11 + 4976: -40,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineE + decals: + 3678: -1,-34 + 3679: -1,-35 + 3680: -1,-36 + 3681: -1,-37 + 3689: -2,-38 + 3718: 2,-42 + 3719: 2,-41 + 3720: 2,-40 + 3721: 2,-39 + 3737: 0,-17 + 3738: 0,-18 + - node: + color: '#DE3A3AFF' id: BrickTileWhiteLineE decals: - 636: -6,-18 - 637: -6,-17 - 700: -19,-19 - 701: -19,-20 - 702: -19,-21 - 838: 2,-40 - 839: 2,-41 + 3773: -60,31 + 3774: -60,32 + 3775: -60,34 + 3776: -60,36 + 3777: -60,37 + 3778: -56,36 + 3779: -56,34 + 3780: -56,33 + 3781: -56,32 + 3782: -52,34 + 3783: -52,35 + 3784: -52,37 + 3785: -52,36 + 3786: -55,39 + 3787: -55,41 + 3788: -55,42 + 3789: -55,43 + 3790: -55,45 + 3791: -59,38 + 3792: -58,39 + 3793: -59,40 + 3794: -59,41 + 3795: -59,42 + 3796: -59,43 + 3797: -59,39 + 3802: -56,46 + 3844: -60,20 + 3845: -60,22 + 3867: -66,23 + 3874: -63,19 + 3889: -55,38 + 3892: -56,37 + 4619: -59,10 + 4620: -59,9 + 4621: -60,11 + 4622: -59,8 + 4623: -59,7 + 4624: -63,11 + 4625: -63,10 + 4626: -63,9 + 4627: -63,7 + 4652: -85,12 + 4653: -85,14 + 4654: -85,15 + 4655: -85,17 + 4698: -44,1 + 4699: -44,0 + 4700: -44,-2 + 4736: -17,5 + 4737: -17,6 + 4738: -17,8 + 4739: -17,9 + 4762: -23,6 + 4763: -23,5 + 4764: -23,4 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineE decals: - 2415: -122,-6 - 2416: -122,-7 - 2417: -122,-8 - 2418: -122,-9 - 2419: -121,6 - 2420: -121,5 - 2421: -121,4 - 2422: -121,3 - 2423: -121,2 - 2424: -121,1 - 2439: -129,16 - 2440: -129,15 - 2441: -129,14 - 2463: -108,-16 - 2464: -108,-14 - 2465: -108,-12 - 2466: -108,-10 - 2467: -108,-6 - 2468: -108,-7 - 2469: -108,-8 - 2470: -108,-3 - 2471: -108,-2 - 2472: -108,-1 - 2473: -108,0 - 2474: -108,6 - 2475: -108,7 - 2476: -108,8 - 2477: -108,12 - 2478: -108,11 - 2479: -108,10 - 2480: -108,9 - 2487: -108,1 - 2501: -98,3 - 2502: -98,4 - 2503: -98,5 - 2504: -98,6 - 2549: -121,7 - 2550: -121,0 - 2551: -122,-5 - 2552: -122,-10 - 2555: -120,-3 - 2556: -120,10 - 2557: -120,11 + 1466: -121,6 + 1467: -121,5 + 1468: -121,4 + 1469: -121,3 + 1470: -121,2 + 1471: -121,1 + 1486: -129,16 + 1487: -129,15 + 1488: -129,14 + 1506: -108,-14 + 1507: -108,-6 + 1508: -108,-7 + 1509: -108,-8 + 1510: -108,-3 + 1511: -108,-2 + 1512: -108,-1 + 1513: -108,0 + 1514: -108,6 + 1515: -108,7 + 1516: -108,8 + 1517: -108,12 + 1518: -108,11 + 1519: -108,10 + 1520: -108,9 + 1527: -108,1 + 1541: -98,3 + 1542: -98,4 + 1543: -98,5 + 1544: -98,6 + 1587: -121,7 + 1588: -121,0 + 1591: -120,-3 + 1592: -120,10 + 1593: -120,11 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1274: -99,-5 - 1275: -99,-4 - 1276: -99,-3 - 1277: -99,-2 - 1278: -99,-1 + 711: -99,-5 + 712: -99,-4 + 713: -99,-3 + 714: -99,-2 + 715: -99,-1 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineE + decals: + 4382: -92,10 + 4383: -92,9 + 4384: -92,8 + 4385: -92,7 + 4386: -92,7 + 4387: -92,6 + 4388: -92,5 + 4389: -92,4 + 4390: -92,3 + 4391: -92,2 + 4392: -92,1 + 4393: -92,0 + 4836: -125,-5 + 4837: -125,-10 + 4847: -129,-9 + 4848: -129,-10 + 4849: -129,-11 + 4850: -129,-12 + 4855: -133,-1 + 4856: -133,-2 + 4857: -132,-3 + 4858: -132,-4 + 4859: -132,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 3896: -58,45 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2578: -106,5 - 2579: -105,5 - 2580: -104,5 - 2581: -102,5 + 1597: -106,5 + 1598: -105,5 + 1599: -104,5 + 1600: -102,5 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1998: -55,48 - 1999: -54,48 - 2000: -53,48 + 1168: -55,48 + 1169: -54,48 + 1170: -53,48 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineN + decals: + 3315: 49,-6 + 3316: 48,-6 + 3317: 47,-6 + 3318: 46,-6 + 3319: 45,-6 + 3320: 45,-6 + 3321: 44,-6 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineN + decals: + 4406: -91,-5 + 4407: -92,-5 + 4408: -94,-5 + 4432: -97,-5 + - node: + color: '#439909FF' + id: BrickTileWhiteLineN + decals: + 5001: 14,34 + 5002: 12,34 + 5003: 11,35 + 5004: 11,34 + 5005: 8,34 + 5006: 7,34 + 5007: 5,34 + 5046: 8,42 + 5047: 9,42 + 5048: 10,42 + 5049: 11,42 + 5056: 5,30 + 5057: 6,30 + 5058: 7,30 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2722: 31,18 - 2723: 32,18 - 2724: 33,18 - 2810: 6,11 - 2811: 7,11 - 2812: 8,11 - 2813: 9,11 - 2814: 10,11 - 2826: -1,11 - 2827: 0,11 - 2828: 1,11 - 2829: 2,11 - 2846: -2,11 - 2847: 3,11 - 3186: 17,23 - 3187: 18,23 - 3188: 19,23 - 3189: 20,23 + 1721: 31,18 + 1722: 32,18 + 1723: 33,18 + 1809: 6,11 + 1810: 7,11 + 1811: 8,11 + 1812: 9,11 + 1813: 10,11 + 1825: -1,11 + 1826: 0,11 + 1827: 1,11 + 1828: 2,11 + 1845: -2,11 + 1846: 3,11 + 2167: 17,23 + 2168: 18,23 + 2169: 19,23 + 2170: 20,23 - node: color: '#52B4E9CC' id: BrickTileWhiteLineN decals: - 3425: -1.5030482,8.494518 - 3426: -2.5030482,8.494518 + 2405: -1.5030482,8.494518 + 2406: -2.5030482,8.494518 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 4782: 23,3 + 4783: 25,3 + 4784: 27,3 + 4785: 28,3 + 4786: 26,3 + 4787: 29,3 + 4788: 32,3 + 4799: 34,8 + 4800: 36,8 + 4801: 37,8 + 4802: 38,9 + 4803: 39,9 + 5077: -15,4 + 5078: -14,4 + 5079: -11,4 + 5080: -10,4 + 5081: -9,3 + 5082: -8,3 + 5083: -7,3 + 5084: -6,3 + - node: + color: '#9FED58FF' id: BrickTileWhiteLineN decals: - 2568: -6,-28 + 4868: -18,-11 + 4869: -19,-11 + 4870: -20,-11 + 4871: -22,-11 + 4872: -24,-11 + 4873: -25,-11 + 4874: -26,-11 + 4875: -27,-11 + 4876: -28,-11 + 4877: -29,-12 + 4878: -30,-12 + 4879: -31,-12 + 4880: -32,-12 + 4881: -34,-12 + 4882: -33,-12 + 4883: -35,-12 + 4884: -36,-12 + 4885: -37,-12 + 4886: -38,-12 + 4887: -17,-12 + 4888: -16,-12 + 4889: -15,-12 + 4890: -14,-12 + 4891: -13,-12 + 4892: -12,-12 + 4893: -11,-12 + 4894: -10,-12 + 4895: -9,-12 + 4896: -8,-12 + 4897: -6,-12 + 4898: -4,-12 + 4899: -3,-12 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 639: -7,-16 - 640: -13,-16 - 641: -14,-16 - 642: -15,-16 - 643: -16,-16 - 699: -22,-16 - 704: -18,-22 - 705: -17,-22 - 706: -16,-22 - 707: -15,-22 - 708: -14,-22 - 709: -13,-22 - 830: -7,-39 - 831: -6,-39 - 832: -5,-39 - 833: -4,-39 - 834: -3,-39 - 835: -1,-39 - 836: 0,-39 - 837: 1,-39 + 367: -13,-16 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 3676: -1,-34 + 3677: -3,-34 + 3693: 0,-39 + 3694: -1,-39 + 3695: 0,-39 + 3696: 1,-39 + 3697: 2,-39 + 3698: -8,-39 + 3699: -7,-39 + 3700: -6,-39 + 3701: -5,-39 + 3702: -4,-39 + 3703: -3,-39 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineN + decals: + 3767: -55,45 + 3768: -58,36 + 3769: -56,30 + 3770: -57,30 + 3771: -58,30 + 3772: -59,30 + 3829: -53,37 + 3830: -52,37 + 3831: -54,36 + 3833: -60,22 + 3834: -61,22 + 3835: -62,22 + 3836: -63,22 + 3837: -64,22 + 3849: -62,18 + 3850: -61,18 + 3851: -59,18 + 3852: -60,18 + 3853: -64,18 + 3854: -65,18 + 4632: -62,5 + 4633: -61,5 + 4634: -60,5 + 4635: -59,5 + 4636: -58,5 + 4637: -61,10 + 4638: -59,10 + 4639: -62,8 + 4670: -85,17 + 4671: -86,17 + 4672: -87,14 + 4673: -88,14 + 4674: -89,14 + 4675: -89,10 + 4676: -88,10 + 4677: -87,10 + 4678: -85,10 + 4679: -84,10 + 4703: -46,1 + 4704: -44,1 + 4724: -43,-1 + 4740: -17,10 + 4741: -18,10 + 4742: -19,9 + 4743: -21,9 + 4751: -16,7 + 4756: -16,3 + 4757: -17,3 + 4758: -18,3 + 4759: -19,3 + 4760: -20,3 + 4761: -21,3 + 4771: -16,10 + 4773: 15,3 + 4774: 17,3 + 4775: 16,3 + 4776: 18,3 + 4777: 20,3 + 4778: 21,3 + 4779: 22,3 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineN decals: - 2432: -132,17 - 2433: -131,17 - 2434: -130,17 - 2481: -108,15 - 2482: -107,15 - 2483: -106,15 - 2496: -107,5 - 2497: -101,5 - 2505: -99,9 - 2528: -111,10 - 2529: -113,5 - 2530: -112,5 - 2533: -112,0 - 2538: -118,4 + 1479: -132,17 + 1480: -131,17 + 1481: -130,17 + 1521: -108,15 + 1522: -107,15 + 1523: -106,15 + 1536: -107,5 + 1537: -101,5 + 1545: -99,9 + 1566: -111,10 + 1567: -113,5 + 1568: -112,5 + 1571: -112,0 + 1576: -118,4 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1279: -105,0 - 1280: -104,0 - 1281: -103,0 - 1282: -102,0 - 1283: -101,0 - 1284: -100,0 + 716: -105,0 + 717: -104,0 + 718: -103,0 + 719: -102,0 + 720: -101,0 + 721: -100,0 - node: - cleanable: True - color: '#EFB34196' + color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 2582: -119,-12 - 2583: -118,-12 + 4378: -96,10 + 4379: -95,10 + 4380: -93,10 + 4381: -92,10 + 4825: -97,0 + 4826: -97,8 + 4840: -135,-1 + 4841: -134,-1 + 4842: -134,-1 + 4843: -133,-1 + 4844: -131,-6 + 4845: -130,-6 + 4846: -129,-6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 3881: -58,44 + 3895: -58,44 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2001: -55,47 - 2002: -56,47 - 2003: -54,47 - 2004: -53,47 + 1171: -55,47 + 1172: -56,47 + 1173: -54,47 + 1174: -53,47 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 3322: 44,-7 + 3323: 45,-7 + 3324: 46,-7 + 3325: 47,-7 + 3326: 48,-7 + 3327: 49,-7 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineS + decals: + 4405: -79,-10 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineS + decals: + 4409: -97,-3 + 4410: -94,-3 + 4411: -88,-3 + 4412: -89,-3 + 4413: -90,-3 + 4414: -91,-3 + 4415: -92,-3 + 4433: -97,-11 + 4434: -96,-11 + 4435: -94,-10 + 4436: -92,-10 + 4437: -91,-10 + - node: + color: '#439909FF' + id: BrickTileWhiteLineS + decals: + 5020: 5,29 + 5021: 6,29 + 5022: 7,29 + 5023: 8,29 + 5024: 9,32 + 5025: 10,32 + 5026: 11,32 + 5027: 12,32 + 5028: 7,32 + 5029: 6,32 + 5030: 5,32 + 5052: 8,41 + 5053: 11,41 + 5054: 11,29 + 5055: 10,29 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2719: 31,20 - 2720: 32,20 - 2721: 33,20 - 2752: 25,11 - 2753: 26,11 - 2754: 27,11 - 2815: 6,14 - 2816: 7,14 - 2817: 8,14 - 2818: 9,14 - 2819: 10,14 - 2822: -1,13 - 2823: 0,13 - 2824: 1,13 - 2825: 2,13 - 2848: -2,13 - 2849: 3,13 - 3190: 17,21 - 3191: 18,21 - 3192: 19,21 - 3193: 20,21 + 1718: 31,20 + 1719: 32,20 + 1720: 33,20 + 1751: 25,11 + 1752: 26,11 + 1753: 27,11 + 1814: 6,14 + 1815: 7,14 + 1816: 8,14 + 1817: 9,14 + 1818: 10,14 + 1821: -1,13 + 1822: 0,13 + 1823: 1,13 + 1824: 2,13 + 1847: -2,13 + 1848: 3,13 + 2171: 17,21 + 2172: 18,21 + 2173: 19,21 + 2174: 20,21 - node: color: '#52B4E9CC' id: BrickTileWhiteLineS decals: - 3329: -1.5075154,5.4969463 + 2309: -1.5075154,5.4969463 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 2571: -6,-33 + 4806: 34,1 + 4807: 35,1 + 4808: 36,1 + 4809: 37,1 + 4810: 38,0 + 4811: 39,0 + 4812: 40,0 + 4813: 41,0 - node: - color: '#D381C996' + color: '#9FED58FF' id: BrickTileWhiteLineS decals: - 630: -11,-19 - 631: -10,-19 - 632: -9,-19 - 633: -8,-19 - 634: -7,-19 - 647: -14,-20 - 648: -13,-20 - 686: -13,-24 - 687: -14,-24 - 688: -15,-24 - 689: -16,-24 - 690: -17,-24 - 691: -18,-24 - 692: -19,-24 + 4912: -3,1 + 4913: -4,1 + 4914: -6,1 + 4915: -7,1 + 4916: -9,1 + 4917: -8,1 + 4918: -10,1 + 4919: -11,1 + 4920: -13,1 + 4921: -12,1 + 4922: -14,1 + 4923: -15,1 + 4924: -16,1 + 4925: -17,1 + 4926: -19,1 + 4927: -21,1 + 4928: -23,1 + 4929: -24,1 + 4930: -25,1 + 4931: -26,1 + 4932: -27,1 + 4933: -28,1 + 4934: -30,2 + 4935: -31,2 + 4936: -32,2 + 4937: -33,2 + 4938: -34,2 + 4939: -35,2 + 4940: -36,2 + 4941: -37,2 + 4942: -38,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 3685: -1,-37 + 3686: -3,-37 + 3708: -8,-42 + 3709: -6,-42 + 3710: -5,-42 + 3711: -4,-42 + 3712: -3,-42 + 3713: -2,-42 + 3714: -2,-42 + 3715: -1,-42 + 3716: 0,-42 + 3717: 2,-42 + 3741: -4,-18 + 3742: -2,-18 + 3743: 0,-18 + 3748: -8,-14 + 3749: -7,-14 + 3750: -6,-14 + 3753: -5,-14 + 3754: -18,-14 + 3755: -13,-14 + 3756: -14,-14 + 3757: -15,-14 + 3758: -16,-14 + 3759: -17,-14 + 3760: -22,-14 + 3761: -23,-14 + 3762: -24,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineS + decals: + 3798: -59,38 + 3799: -59,33 + 3800: -59,35 + 3801: -55,35 + 3820: -58,32 + 3821: -57,32 + 3822: -56,32 + 3823: -54,34 + 3824: -52,34 + 3825: -53,34 + 3840: -64,20 + 3841: -62,20 + 3842: -61,20 + 3843: -60,20 + 3860: -59,24 + 3861: -60,24 + 3862: -61,24 + 3863: -62,24 + 3864: -64,24 + 3865: -65,24 + 3866: -63,24 + 3890: -55,38 + 4640: -62,8 + 4641: -61,12 + 4642: -59,12 + 4643: -58,12 + 4666: -85,12 + 4667: -87,12 + 4668: -88,12 + 4669: -89,12 + 4701: -44,-2 + 4705: -46,-1 + 4706: -45,-1 + 4707: -46,3 + 4708: -44,3 + 4723: -43,-1 + 4731: -21,5 + 4732: -20,5 + 4733: -19,5 + 4734: -18,5 + 4735: -17,5 + 4750: -16,7 + 4772: -16,10 + 4820: -84,19 + 4821: -85,19 + 4822: -86,19 + 5087: -61,7 + 5088: -60,7 + 5089: -59,7 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineS decals: - 2435: -132,11 - 2436: -131,11 - 2437: -130,11 - 2438: -129,11 - 2462: -109,-20 - 2484: -107,13 - 2485: -106,13 - 2486: -107,2 - 2488: -106,2 - 2489: -105,2 - 2490: -104,2 - 2491: -103,2 - 2492: -102,2 - 2493: -101,2 - 2494: -99,2 - 2495: -100,2 - 2527: -112,7 - 2531: -113,2 - 2532: -112,2 - 2534: -111,-3 - 2537: -118,3 - 2553: -121,-4 + 1482: -132,11 + 1483: -131,11 + 1484: -130,11 + 1485: -129,11 + 1524: -107,13 + 1525: -106,13 + 1526: -107,2 + 1528: -106,2 + 1529: -105,2 + 1530: -104,2 + 1531: -103,2 + 1532: -102,2 + 1533: -101,2 + 1534: -99,2 + 1535: -100,2 + 1565: -112,7 + 1569: -113,2 + 1570: -112,2 + 1572: -111,-3 + 1575: -118,3 + 1589: -121,-4 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1268: -100,-6 - 1269: -101,-6 - 1270: -102,-6 - 1271: -103,-6 - 1272: -105,-6 - 1273: -104,-6 + 705: -100,-6 + 706: -101,-6 + 707: -102,-6 + 708: -103,-6 + 709: -105,-6 + 710: -104,-6 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineS + decals: + 4827: -97,7 + 4833: -122,-4 + 4834: -123,-4 + 4835: -124,-4 + 4851: -130,-12 + 4852: -131,-13 + 4853: -132,-13 + 4854: -133,-12 - node: cleanable: True color: '#00BEBE93' id: BrickTileWhiteLineW decals: - 2593: -110,-15 - 2594: -110,-13 - 2595: -110,-11 - 2596: -110,-9 - 2597: -110,-17 - 2598: -110,-19 + 1607: -110,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 3884: -57,46 + 3897: -57,46 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineW + decals: + 4416: -97,-3 + 4425: -97,-11 + 4426: -97,-10 + 4427: -97,-9 + 4428: -97,-8 + 4429: -97,-7 + 4430: -97,-6 + 4431: -97,-5 + 4454: -93,-11 + 4455: -96,-4 + 4469: -110,-14 + 4470: -110,-13 + 4471: -110,-12 + 4472: -110,-11 + 4473: -110,-10 + 4474: -110,-9 + 4477: -108,-14 + - node: + color: '#439909FF' + id: BrickTileWhiteLineW + decals: + 4985: 13,27 + 4986: 13,25 + 4990: 13,24 + 4991: 13,28 + 4995: 13,30 + 4996: 13,31 + 5008: 9,38 + 5009: 9,37 + 5010: 9,36 + 5011: 9,35 + 5012: 5,34 + 5013: 5,33 + 5014: 5,33 + 5015: 5,32 + 5016: 5,30 + 5017: 5,29 + 5018: 10,29 + 5019: 10,30 + 5031: 8,31 + 5042: 9,39 + 5043: 9,40 + 5044: 8,41 + 5045: 8,42 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2808: 11,12 - 2809: 11,13 - 2918: -7,9 - 2920: -8,11 - 3195: 16,22 + 1807: 11,12 + 1808: 11,13 + 1907: -7,9 + 1909: -8,11 + 2176: 16,22 - node: color: '#52B4E9D8' id: BrickTileWhiteLineW decals: - 3206: -3.5228167,7.508477 - 3207: -3.5228167,6.492852 + 2187: -3.5228167,7.508477 + 2188: -3.5228167,6.492852 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 2569: -10,-32 - 2570: -10,-31 + 4794: 34,4 + 4795: 34,6 + 4796: 34,5 + 4797: 34,7 + 4798: 34,8 + 4804: 38,9 + 4805: 38,0 + 5075: -13,5 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteLineW + decals: + 4900: -2,-11 + 4901: -2,-10 + 4902: -2,-9 + 4903: -2,-8 + 4904: -2,-7 + 4905: -2,-6 + 4906: -2,-5 + 4907: -2,-4 + 4908: -2,-3 + 4909: -2,-2 + 4910: -2,-1 + 4911: -2,0 + 4943: -28,1 + 4944: -28,2 + 4960: -28,-11 + 4975: -38,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 3682: -3,-37 + 3683: -3,-35 + 3684: -3,-34 + 3690: -2,-38 + 3704: -8,-39 + 3705: -8,-40 + 3706: -8,-41 + 3707: -8,-42 + 3739: -4,-17 + 3740: -4,-18 + 3751: -4,-16 + 3752: -4,-15 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineW + decals: + 3819: -58,32 + 3826: -54,34 + 3827: -54,36 + 3828: -53,37 + 3838: -64,22 + 3839: -64,20 + 3855: -58,20 + 3856: -58,19 + 3857: -58,21 + 3858: -58,22 + 3859: -58,23 + 3875: -63,19 + 3885: -57,43 + 3886: -57,42 + 3887: -57,39 + 3888: -57,38 + 3893: -57,37 + 4628: -61,10 + 4629: -60,11 + 4630: -61,9 + 4631: -61,7 + 4656: -86,17 + 4657: -86,15 + 4658: -89,14 + 4659: -89,13 + 4660: -89,12 + 4661: -83,12 + 4662: -83,14 + 4663: -83,15 + 4664: -83,17 + 4665: -83,18 + 4680: -83,11 + 4695: -46,1 + 4696: -46,0 + 4697: -46,-1 + 4702: -44,-2 + 4709: -42,2 + 4710: -42,1 + 4711: -42,0 + 4712: -42,-2 + 4713: -42,-3 + 4726: -21,9 + 4727: -21,8 + 4728: -21,7 + 4729: -21,6 + 4730: -21,5 + 4747: -18,10 + 4752: -15,6 + 4753: -15,8 + 4754: -15,9 + 4755: -15,11 + - node: + cleanable: True + color: '#DE3A3AFF' id: BrickTileWhiteLineW decals: - 645: -17,-17 - 646: -17,-18 - 694: -20,-22 - 695: -23,-19 - 696: -23,-18 - 697: -23,-17 - 840: -8,-40 - 841: -8,-41 + 3935: -57,40 + 3936: -57,41 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineW decals: - 2425: -122,4 - 2426: -122,3 - 2427: -133,12 - 2428: -133,13 - 2429: -133,15 - 2430: -133,16 - 2431: -133,14 - 2447: -110,11 - 2448: -110,12 - 2449: -110,13 - 2450: -110,14 - 2451: -111,6 - 2452: -113,-1 - 2453: -110,-4 - 2454: -110,-5 - 2455: -110,-6 - 2456: -110,-7 - 2457: -110,-8 - 2458: -110,-10 - 2459: -110,-12 - 2460: -110,-14 - 2461: -110,-16 - 2498: -100,8 - 2499: -100,7 - 2500: -100,6 - 2535: -117,5 - 2536: -117,2 + 1472: -122,4 + 1473: -122,3 + 1474: -133,12 + 1475: -133,13 + 1476: -133,15 + 1477: -133,16 + 1478: -133,14 + 1494: -110,11 + 1495: -110,12 + 1496: -110,13 + 1497: -110,14 + 1498: -111,6 + 1499: -113,-1 + 1500: -110,-4 + 1501: -110,-5 + 1502: -110,-6 + 1503: -110,-7 + 1504: -110,-8 + 1505: -110,-14 + 1538: -100,8 + 1539: -100,7 + 1540: -100,6 + 1573: -117,5 + 1574: -117,2 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1265: -106,-1 - 1266: -106,-2 - 1267: -106,-3 + 702: -106,-1 + 703: -106,-2 + 704: -106,-3 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2584: -114,-9 - 2585: -114,-8 - 2586: -114,-7 - 2587: -114,-6 - 2588: -114,-5 - 2600: -110,-18 - 2604: -113,8 + 1601: -114,-9 + 1602: -114,-8 + 1603: -114,-7 + 1604: -114,-6 + 1605: -114,-5 + 1608: -113,8 - node: - color: '#FFFFFFFF' - id: Bushd1 + color: '#EFB341FF' + id: BrickTileWhiteLineW decals: - 337: -6.026865,-9.094334 + 4394: -96,10 + 4395: -97,9 + 4396: -96,6 + 4397: -96,5 + 4398: -96,4 + 4399: -96,3 + 4400: -96,2 + 4401: -96,1 + 4402: -97,0 + 4403: -97,-1 + 4404: -97,-2 + 4829: -96,9 + 4860: -135,-1 + 4861: -135,-2 + 4863: -127,-6 + 4864: -127,-5 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: Caution + id: BushCThree decals: - 1301: -127,20 + 4457: -93,-15 - node: - angle: -1.5707963267948966 rad - color: '#FF0000FF' - id: CautionGreyscale + color: '#FFFFFFFF' + id: Caution decals: - 2622: -79,-20 + 3075: 40,-5 - node: angle: 1.5707963267948966 rad - color: '#FF0000FF' - id: CautionGreyscale + color: '#FFFFFFFF' + id: Caution decals: - 2623: -83,-12 + 738: -127,20 - node: - angle: 3.141592653589793 rad + angle: -1.5707963267948966 rad color: '#FF0000FF' id: CautionGreyscale decals: - 585: -85,-20 + 1623: -79,-20 - node: color: '#EFB34196' id: CheckerNWSE decals: - 3412: 2,8 - 3413: 2,7 - 3414: 2,6 - 3415: 3,6 - 3416: 3,7 - 3417: 3,8 + 2392: 2,8 + 2393: 2,7 + 2394: 2,6 + 2395: 3,6 + 2396: 3,7 + 2397: 3,8 - node: color: '#9C2020FF' id: ConcreteTrimCornerNe decals: - 3909: 28,-1 - 3944: 34,-13 - 3962: 40,-12 - 3987: 38,-9 - 4162: 43,-3 - 4163: 45,-4 + 2871: 28,-1 + 2904: 34,-13 + 2913: 40,-12 + 2935: 38,-9 - node: color: '#9C2020FF' id: ConcreteTrimCornerNw decals: - 3883: 21,-2 - 3889: 17,-5 - 3908: 25,-1 - 3945: 30,-13 - 3979: 34,-6 - 4168: 39,-3 + 2845: 21,-2 + 2851: 17,-5 + 2870: 25,-1 + 2905: 30,-13 + 2927: 34,-6 - node: color: '#9C2020FF' id: ConcreteTrimCornerSe decals: - 3897: 23,-7 - 3911: 28,-7 - 3941: 34,-15 - 4164: 45,-5 - 4165: 44,-10 + 2859: 23,-7 + 2873: 28,-7 + 2901: 34,-15 - node: color: '#9C2020FF' id: ConcreteTrimCornerSw decals: - 3891: 17,-7 - 3910: 25,-7 - 3940: 30,-15 - 3961: 36,-13 - 4166: 40,-10 + 2853: 17,-7 + 2872: 25,-7 + 2900: 30,-15 + 2912: 36,-13 - node: color: '#9C2020FF' id: ConcreteTrimInnerNe decals: - 3991: 37,-9 - 3992: 37,-9 - 3993: 38,-12 - 4181: 43,-4 + 2939: 37,-9 + 2940: 37,-9 + 2941: 38,-12 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerNe + decals: + 4107: -71,-16 + 4108: -74,-16 + 4118: -71,-6 + 4119: -70,-7 + 4120: -63,-5 + 4121: -59,-7 + 4122: -56,-6 + 4123: -59,-9 + 4124: -55,-10 + 4125: -48,-13 + 4133: -55,-14 + 4134: -55,-17 + 4143: -70,-11 + 4232: -70,0 + 4233: -59,0 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerNe + decals: + 4258: -57,-13 + 4259: -56,-13 + 4260: -55,-13 + 4261: -52,-10 + 4262: -51,-10 + 4263: -50,-10 + 4264: -49,-10 + 4265: -48,-10 + 4266: -47,-10 + 4267: -53,-10 + 4268: -49,-16 + 4314: -48,-19 + 4315: -48,-17 + 4316: -48,-16 + 4317: -48,-14 + 4318: -48,-12 + 4319: -47,-11 + 4320: -55,-14 + 4321: -55,-15 + 4322: -55,-16 + 4323: -55,-17 + 4324: -55,-18 + 4332: -51,-18 + 4333: -51,-17 + 4334: -51,-16 + 4335: -51,-15 + 4336: -47,-18 + 4337: -48,-15 + 4343: -48,-19 + 4347: -47,-18 + 4348: -48,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 3588: 45,-30 + 2566: 45,-30 - node: color: '#9C2020FF' id: ConcreteTrimInnerNw decals: - 3922: 25,-2 - 3994: 34,-9 + 2884: 25,-2 + 2942: 34,-9 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerNw + decals: + 4106: -71,-16 + 4109: -74,-16 + 4110: -68,-7 + 4111: -57,-7 + 4112: -57,-9 + 4113: -53,-14 + 4114: -53,-17 + 4115: -48,-16 + 4116: -56,-6 + 4117: -64,-5 + 4142: -68,-11 + 4146: -72,-11 + 4230: -57,0 + 4231: -68,0 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerNw + decals: + 4236: -53,-10 + 4237: -52,-10 + 4238: -51,-10 + 4239: -50,-10 + 4240: -49,-10 + 4241: -48,-10 + 4242: -47,-10 + 4243: -49,-16 + 4244: -53,-12 + 4245: -53,-13 + 4246: -53,-14 + 4247: -48,-16 + 4248: -53,-15 + 4249: -53,-16 + 4250: -53,-17 + 4251: -53,-18 + 4252: -57,-18 + 4253: -57,-17 + 4254: -57,-16 + 4255: -57,-15 + 4256: -57,-14 + 4257: -57,-13 + 4311: -49,-18 + 4312: -49,-17 + 4313: -48,-19 + 4325: -56,-13 + 4326: -55,-13 + 4342: -48,-19 + 4349: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 3587: 50,-30 + 2565: 50,-30 - node: color: '#9C2020FF' id: ConcreteTrimInnerSe decals: - 3925: 23,-3 - 4182: 44,-5 + 2887: 23,-3 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerSe + decals: + 4105: -71,-14 + 4126: -48,-13 + 4131: -55,-14 + 4132: -55,-17 + 4135: -59,-9 + 4138: -59,-7 + 4139: -70,-7 + 4144: -70,-11 + 4147: -63,-18 + 4149: -60,-18 + 4183: -56,-4 + 4186: -59,-2 + 4187: -60,-3 + 4190: -63,-3 + 4191: -67,-3 + 4194: -70,-2 + 4197: -70,-4 + 4198: -71,-4 + 4235: -70,3 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerSe + decals: + 4289: -55,-19 + 4290: -55,-18 + 4291: -55,-17 + 4292: -55,-16 + 4293: -55,-15 + 4294: -55,-14 + 4295: -55,-13 + 4296: -51,-14 + 4297: -50,-14 + 4298: -49,-14 + 4299: -48,-14 + 4300: -48,-16 + 4301: -48,-17 + 4302: -48,-13 + 4303: -48,-12 + 4304: -47,-11 + 4305: -47,-10 + 4306: -51,-15 + 4307: -51,-16 + 4308: -51,-17 + 4309: -51,-18 + 4310: -47,-18 + 4330: -52,-18 + 4331: -53,-18 + 4338: -48,-15 + 4341: -48,-19 + 4344: -48,-18 - node: color: '#9C2020FF' id: ConcreteTrimInnerSw decals: - 3924: 25,-3 - 3959: 30,-11 - 3995: 36,-12 - 4028: 38,-13 - 4183: 40,-7 + 2886: 25,-3 + 2910: 30,-11 + 2943: 36,-12 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerSw + decals: + 4104: -71,-14 + 4127: -48,-14 + 4128: -48,-18 + 4129: -53,-17 + 4130: -53,-14 + 4136: -57,-9 + 4137: -57,-7 + 4140: -68,-7 + 4141: -68,-11 + 4145: -72,-11 + 4148: -61,-18 + 4150: -64,-18 + 4182: -56,-4 + 4184: -57,-2 + 4188: -60,-3 + 4189: -64,-3 + 4192: -67,-3 + 4193: -68,-2 + 4199: -71,-4 + 4234: -57,3 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerSw + decals: + 4269: -53,-12 + 4270: -53,-13 + 4271: -53,-14 + 4272: -53,-15 + 4273: -53,-16 + 4274: -53,-17 + 4275: -53,-18 + 4276: -52,-18 + 4277: -51,-18 + 4278: -49,-18 + 4279: -48,-18 + 4280: -49,-17 + 4281: -49,-16 + 4282: -57,-18 + 4283: -57,-17 + 4284: -57,-16 + 4285: -57,-15 + 4286: -57,-14 + 4287: -57,-13 + 4288: -57,-19 + 4327: -50,-14 + 4328: -49,-14 + 4329: -48,-14 + 4339: -48,-15 + 4340: -48,-19 + 4345: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 3586: 50,-24 + 2564: 50,-24 - node: color: '#9C2020FF' id: ConcreteTrimLineE decals: - 3898: 23,-6 - 3899: 23,-5 - 3900: 23,-4 - 3915: 28,-6 - 3916: 28,-5 - 3917: 28,-4 - 3918: 28,-3 - 3919: 28,-2 - 3943: 34,-14 - 3970: 40,-20 - 3971: 40,-18 - 3972: 40,-17 - 3973: 40,-16 - 3974: 40,-15 - 3975: 40,-13 - 3988: 38,-10 - 3989: 38,-11 - 3990: 37,-8 - 4170: 44,-6 - 4171: 44,-7 - 4172: 44,-8 - 4173: 44,-9 + 2860: 23,-6 + 2861: 23,-5 + 2862: 23,-4 + 2877: 28,-6 + 2878: 28,-5 + 2879: 28,-4 + 2880: 28,-3 + 2881: 28,-2 + 2903: 34,-14 + 2919: 40,-20 + 2920: 40,-18 + 2921: 40,-17 + 2922: 40,-16 + 2923: 40,-15 + 2924: 40,-13 + 2936: 38,-10 + 2937: 38,-11 + 2938: 37,-8 + - node: + color: '#A46106FF' + id: ConcreteTrimLineE + decals: + 3962: -59,-8 + 3963: -59,-18 + 3964: -59,-17 + 3965: -59,-15 + 3966: -59,-16 + 3967: -59,-14 + 3968: -59,-6 + 3969: -59,-5 + 3970: -70,-14 + 3971: -70,-13 + 3972: -70,-12 + 3973: -70,-10 + 3974: -55,-6 + 3975: -47,-10 + 3976: -47,-11 + 3977: -48,-12 + 3978: -48,-14 + 3979: -48,-16 + 3980: -48,-17 + 3981: -47,-18 + 3982: -48,-19 + 3983: -55,-18 + 3984: -55,-16 + 3985: -55,-15 + 3986: -55,-13 + 3987: -51,-18 + 3988: -51,-17 + 3989: -51,-16 + 3990: -51,-15 + 3998: -55,-19 + 4011: -56,-5 + 4014: -71,-5 + 4023: -59,-13 + 4024: -59,-12 + 4025: -59,-11 + 4026: -59,-10 + 4027: -70,-6 + 4028: -70,-8 + 4091: -55,-7 + 4092: -55,-8 + 4093: -55,-9 + 4102: -71,-15 + 4151: -63,-19 + 4152: -63,-20 + 4153: -63,-21 + 4154: -63,-22 + 4155: -60,-20 + 4156: -60,-21 + 4157: -60,-22 + 4158: -60,-19 + 4185: -59,-3 + 4195: -70,-3 + 4196: -70,-4 + 4212: -70,1 + 4213: -70,2 + 4229: -59,1 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 3581: 45,-29 - 3582: 45,-28 - 3583: 45,-27 - 3584: 45,-26 - 3585: 45,-25 + 2559: 45,-29 + 2560: 45,-28 + 2561: 45,-27 + 2562: 45,-26 + 2563: 45,-25 - node: color: '#9C2020FF' id: ConcreteTrimLineN decals: - 3886: 20,-5 - 3887: 19,-5 - 3888: 18,-5 - 3901: 22,-2 - 3902: 23,-2 - 3907: 24,-2 - 3920: 26,-1 - 3921: 27,-1 - 3946: 31,-13 - 3947: 33,-13 - 3948: 25,-9 - 3949: 24,-9 - 3950: 23,-9 - 3976: 39,-12 - 3977: 35,-6 - 3978: 37,-6 - 3980: 32,-9 - 3981: 31,-9 - 3982: 30,-9 - 3983: 29,-9 - 3984: 28,-9 - 4002: 33,-9 - 4100: 42,-19 - 4159: 40,-3 - 4160: 41,-3 - 4161: 42,-3 - 4169: 44,-4 + 2848: 20,-5 + 2849: 19,-5 + 2850: 18,-5 + 2863: 22,-2 + 2864: 23,-2 + 2869: 24,-2 + 2882: 26,-1 + 2883: 27,-1 + 2906: 31,-13 + 2907: 33,-13 + 2925: 39,-12 + 2926: 35,-6 + 2928: 32,-9 + 2929: 31,-9 + 2930: 30,-9 + 2931: 29,-9 + 2932: 28,-9 + 2950: 33,-9 + 2988: 42,-19 + - node: + color: '#A46106FF' + id: ConcreteTrimLineN + decals: + 4040: -70,-6 + 4041: -66,-5 + 4042: -68,-5 + 4043: -65,-5 + 4044: -62,-5 + 4045: -61,-5 + 4046: -59,-5 + 4047: -57,-6 + 4048: -55,-6 + 4049: -53,-10 + 4050: -51,-10 + 4051: -52,-10 + 4052: -50,-10 + 4053: -49,-10 + 4054: -48,-10 + 4055: -47,-10 + 4056: -49,-16 + 4057: -54,-17 + 4058: -54,-14 + 4059: -57,-13 + 4060: -56,-13 + 4061: -55,-13 + 4062: -70,-10 + 4063: -71,-10 + 4064: -72,-10 + 4065: -70,-16 + 4066: -72,-16 + 4067: -73,-16 + 4068: -75,-16 + 4070: -69,-7 + 4095: -54,-10 + 4096: -58,-7 + 4099: -58,-9 + 4100: -69,-11 + 4200: -59,1 + 4201: -60,1 + 4202: -61,1 + 4203: -62,1 + 4204: -63,1 + 4205: -64,1 + 4206: -65,1 + 4207: -66,1 + 4208: -67,1 + 4209: -68,1 + 4211: -69,0 + 4228: -58,0 + 4346: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 3569: 46,-30 - 3570: 47,-30 - 3571: 48,-30 - 3572: 49,-30 + 2547: 46,-30 + 2548: 47,-30 + 2549: 48,-30 + 2550: 49,-30 - node: color: '#9C2020FF' id: ConcreteTrimLineS decals: - 3892: 18,-7 - 3893: 19,-7 - 3894: 20,-7 - 3895: 21,-7 - 3896: 22,-7 - 3923: 24,-3 - 3937: 31,-15 - 3938: 33,-15 - 3939: 32,-15 - 3951: 23,-11 - 3952: 24,-11 - 3953: 26,-11 - 3954: 27,-11 - 3955: 28,-11 - 3956: 29,-11 - 3957: 35,-12 - 3963: 37,-13 - 3968: 38,-21 - 3969: 40,-21 - 4101: 42,-21 - 4167: 39,-7 - 4174: 43,-10 - 4175: 42,-10 - 4176: 41,-10 + 2854: 18,-7 + 2855: 19,-7 + 2856: 20,-7 + 2857: 21,-7 + 2858: 22,-7 + 2885: 24,-3 + 2897: 31,-15 + 2898: 33,-15 + 2899: 32,-15 + 2908: 35,-12 + 2914: 37,-13 + - node: + color: '#A46106FF' + id: ConcreteTrimLineS + decals: + 4069: -69,-7 + 4071: -70,-8 + 4072: -71,-8 + 4073: -70,-14 + 4074: -72,-14 + 4075: -68,-18 + 4076: -67,-18 + 4077: -66,-18 + 4078: -65,-18 + 4079: -62,-18 + 4080: -59,-18 + 4081: -53,-18 + 4082: -52,-18 + 4083: -51,-18 + 4084: -49,-18 + 4085: -47,-18 + 4086: -49,-14 + 4087: -50,-14 + 4088: -55,-11 + 4089: -56,-11 + 4090: -57,-11 + 4094: -54,-11 + 4097: -58,-7 + 4098: -58,-9 + 4101: -69,-11 + 4167: -72,-4 + 4168: -70,-4 + 4169: -69,-2 + 4170: -59,-3 + 4171: -61,-3 + 4172: -62,-3 + 4173: -65,-3 + 4174: -66,-3 + 4175: -68,-3 + 4179: -58,-2 + 4180: -55,-4 + 4181: -57,-4 + 4214: -69,3 + 4215: -68,3 + 4216: -67,3 + 4217: -66,3 + 4218: -65,3 + 4219: -64,3 + 4220: -63,3 + 4221: -62,3 + 4222: -60,3 + 4223: -61,3 + 4224: -59,3 + 4225: -58,3 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 3573: 46,-24 - 3574: 47,-24 - 3575: 48,-24 - 3576: 49,-24 + 2551: 46,-24 + 2552: 47,-24 + 2553: 48,-24 + 2554: 49,-24 - node: color: '#9C2020FF' id: ConcreteTrimLineW decals: - 3884: 21,-3 - 3885: 21,-4 - 3890: 17,-6 - 3912: 25,-6 - 3913: 25,-5 - 3914: 25,-4 - 3942: 30,-14 - 3958: 30,-12 - 3964: 38,-16 - 3965: 38,-18 - 3966: 38,-19 - 3967: 38,-20 - 3985: 34,-8 - 3986: 34,-7 - 4026: 38,-15 - 4027: 38,-14 - 4157: 39,-5 - 4158: 39,-4 - 4177: 40,-9 - 4178: 40,-8 - - node: - color: '#FFFFFFFF' + 2846: 21,-3 + 2847: 21,-4 + 2852: 17,-6 + 2874: 25,-6 + 2875: 25,-5 + 2876: 25,-4 + 2902: 30,-14 + 2909: 30,-12 + 2915: 38,-16 + 2916: 38,-18 + 2917: 38,-19 + 2918: 38,-20 + 2933: 34,-8 + 2934: 34,-7 + 2951: 38,-14 + - node: + color: '#A46106FF' id: ConcreteTrimLineW decals: - 3577: 50,-26 - 3578: 50,-25 - 3579: 50,-28 - 3580: 50,-29 + 3991: -57,-13 + 3992: -57,-14 + 3993: -57,-15 + 3994: -57,-16 + 3995: -57,-18 + 3996: -57,-17 + 3997: -57,-19 + 3999: -49,-18 + 4000: -49,-17 + 4001: -49,-16 + 4002: -53,-18 + 4003: -53,-16 + 4004: -53,-15 + 4005: -53,-12 + 4006: -53,-13 + 4007: -57,-11 + 4008: -57,-10 + 4009: -57,-8 + 4010: -57,-6 + 4012: -56,-5 + 4013: -71,-5 + 4015: -68,-18 + 4016: -68,-17 + 4017: -68,-16 + 4018: -68,-15 + 4019: -68,-14 + 4020: -68,-13 + 4021: -68,-12 + 4022: -68,-10 + 4029: -71,-6 + 4030: -71,-7 + 4031: -71,-8 + 4032: -68,-6 + 4033: -68,-5 + 4034: -68,-9 + 4035: -68,-8 + 4036: -72,-10 + 4037: -72,-12 + 4038: -72,-13 + 4039: -72,-14 + 4103: -71,-15 + 4159: -64,-19 + 4160: -64,-20 + 4161: -64,-21 + 4162: -64,-22 + 4163: -61,-19 + 4164: -61,-20 + 4165: -61,-21 + 4166: -61,-22 + 4176: -68,-3 + 4177: -57,-4 + 4178: -57,-3 + 4210: -68,1 + 4226: -57,2 + 4227: -57,1 - node: - color: '#FF0000FF' - id: Delivery + color: '#FFFFFFFF' + id: ConcreteTrimLineW decals: - 1184: -93,-10 + 2555: 50,-26 + 2556: 50,-25 + 2557: 50,-28 + 2558: 50,-29 - node: cleanable: True color: '#FFFFFFC0' id: Delivery decals: - 2558: -131,0 - 2559: -131,7 - 2560: -131,6 + 1594: -131,0 + 1595: -131,7 + 1596: -131,6 - node: color: '#FFFFFFFF' id: Delivery decals: - 390: 30,-2 - 560: -17,5 - 561: -17,9 - 562: -21,9 - 563: -21,8 - 580: -44,-2 - 581: -46,-1 - 582: -44,0 - 590: -92,-6 - 594: -91,-6 - 674: -89,12 - 675: -88,12 - 676: -85,12 - 725: -59,9 - 726: -59,10 - 727: -61,10 - 741: 9,-13 - 742: 9,-9 - 743: 8,-9 - 760: -63,22 - 761: -64,22 - 762: -64,20 - 829: -85,14 - 1147: 10,-4 - 1528: -94,12 - 1536: -93,17 - 1759: -55,39 - 1760: -53,37 - 1761: -52,37 - 1762: -52,36 - 1763: -52,35 - 1764: -52,34 + 339: 30,-2 + 658: 10,-4 + 916: -94,12 + 923: -93,17 + 1082: -52,35 + 3076: 43,-4 + 3077: 42,-4 + 3078: 42,-3 + 3079: 43,-3 + 3080: 44,-3 + 3081: 44,-4 + 3082: 45,-4 + 3083: 45,-3 + 3084: 46,-3 + 3085: 46,-4 + 3086: 40,-8 + 3087: 43,-9 + 3088: 44,-9 + 3898: -53,37 + 3899: -52,37 + 3900: -52,36 + 3901: -52,35 + 3902: -52,34 + 3903: -54,34 + 3904: -54,36 + 3937: -140,-12 + 3938: -148,-12 + 3939: -148,-4 + 3940: -140,-4 + 3941: -140,-12 + 3957: -145,-9 + 3958: -145,-7 + 3959: -143,-7 + 3960: -143,-9 + 4372: -105,-13 + 4373: -104,-13 + 4374: -103,-13 + 4375: -92,9 + 4376: -92,10 + 4377: -92,8 + 5131: 25,9 + 5132: 24,9 + 5133: 32,9 + 5134: 32,5 + 5135: 32,6 + 5136: 32,7 + 5137: 31,7 + 5138: 30,7 + 5139: -110,-1 + 5140: -110,0 + 5158: -99,-5 + 5159: -102,-11 + 5160: -101,-11 + 5161: -100,-11 + 5162: -94,-8 + 5163: -98,-13 + 5164: -85,-12 + 5165: -86,-12 + 5166: -89,-12 + 5167: -89,-11 + 5168: -89,-10 + 5169: -89,-9 + 5170: -86,-10 + 5171: -86,-9 + 5172: -85,-9 + 5173: -85,-10 + 5174: -85,-11 + 5175: -86,-11 + 5205: 31,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 430: -99,-16 - 431: -98,-16 - 432: -97,-16 + 351: -99,-16 + 352: -98,-16 + 353: -97,-16 - node: color: '#52B4E99E' id: DeliveryGreyscale decals: - 2970: -13,15 - 2971: -12,15 - 3026: 22,34 - 3027: 22,37 - 3028: 23,43 - 3029: 25,29 - 3030: 25,30 - 3031: 23,30 - 3032: 23,29 + 1957: -13,15 + 1958: -12,15 + 2013: 22,34 + 2014: 22,37 + 2015: 23,43 + 2016: 25,29 + 2017: 25,30 + 2018: 23,30 + 2019: 23,29 - node: color: '#F9801DFF' id: DeliveryGreyscale decals: - 3298: 1,7 - 3299: 2,9 - 3300: 3,9 - 3301: 2,5 - 3302: 3,5 + 2278: 1,7 + 2279: 2,9 + 2280: 3,9 + 2281: 2,5 + 2282: 3,5 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 1166: 8,8 - 1529: -96,14 - 1530: -96,15 - 1531: -91,14 - 1532: -96,12 + 667: 8,8 + 917: -96,14 + 918: -96,15 + 919: -91,14 + 920: -96,12 - node: color: '#2D72307C' id: DiagonalCheckerAOverlay decals: - 3122: 7,36 - 3123: 5,36 - 3124: 6,36 - 3125: 6,37 - 3126: 5,37 - 3127: 7,37 - 3128: 12,37 - 3129: 12,36 - 3130: 13,36 - 3131: 14,37 - 3132: 13,37 - 3133: 14,36 + 2109: 7,36 + 2110: 5,36 + 2111: 6,36 + 2112: 6,37 + 2113: 5,37 + 2114: 7,37 + 2115: 12,37 + 2116: 12,36 + 2117: 13,36 + 2118: 14,37 + 2119: 13,37 + 2120: 14,36 - node: color: '#2D72307C' id: DiagonalCheckerBOverlay decals: - 3070: 6,32 - 3071: 5,32 - 3072: 5,33 - 3073: 6,33 - 3074: 6,34 - 3075: 5,34 - 3076: 7,34 - 3077: 7,33 - 3078: 7,32 - 3079: 8,33 - 3080: 8,34 - 3081: 9,34 - 3082: 9,33 - 3083: 9,32 - 3084: 9,35 - 3085: 9,36 - 3086: 9,37 - 3087: 9,38 - 3088: 10,38 - 3089: 10,37 - 3090: 10,36 - 3091: 10,35 - 3092: 10,34 - 3093: 10,33 - 3094: 10,32 - 3095: 11,32 - 3096: 11,33 - 3097: 11,34 - 3098: 12,34 - 3099: 12,33 - 3100: 12,32 - 3101: 13,32 - 3102: 13,33 - 3103: 13,34 - 3104: 14,34 - 3105: 14,33 - 3106: 14,32 - 3107: 14,30 - 3108: 13,30 - 3109: 13,29 - 3110: 14,29 - 3111: 8,32 + 2057: 6,32 + 2058: 5,32 + 2059: 5,33 + 2060: 6,33 + 2061: 6,34 + 2062: 5,34 + 2063: 7,34 + 2064: 7,33 + 2065: 7,32 + 2066: 8,33 + 2067: 8,34 + 2068: 9,34 + 2069: 9,33 + 2070: 9,32 + 2071: 9,35 + 2072: 9,36 + 2073: 9,37 + 2074: 9,38 + 2075: 10,38 + 2076: 10,37 + 2077: 10,36 + 2078: 10,35 + 2079: 10,34 + 2080: 10,33 + 2081: 10,32 + 2082: 11,32 + 2083: 11,33 + 2084: 11,34 + 2085: 12,34 + 2086: 12,33 + 2087: 12,32 + 2088: 13,32 + 2089: 13,33 + 2090: 13,34 + 2091: 14,34 + 2092: 14,33 + 2093: 14,32 + 2094: 14,30 + 2095: 13,30 + 2096: 13,29 + 2097: 14,29 + 2098: 8,32 - node: color: '#822328FF' id: Dirt decals: - 1815: -80,0 - 1816: -80,1 - 1817: -79,1 - 1818: -79,0 - 1819: -78,1 - 1820: -78,0 - 1821: -78,0 - 1822: -78,1 - 1823: -79,1 - 1824: -79,0 - 1825: -80,0 - 1826: -80,1 - 1827: -80,0 - 1828: -80,1 - 1829: -79,1 - 1830: -79,0 - 1831: -78,0 - 1832: -78,1 - 1833: -76,1 - 1834: -76,0 - 1835: -75,1 - 1836: -75,0 - 1837: -74,0 - 1838: -74,1 - 1839: -74,1 - 1840: -74,0 - 1841: -75,0 - 1842: -75,1 - 1843: -76,1 - 1844: -76,0 - 1845: -76,0 - 1846: -76,1 - 1847: -75,1 - 1848: -75,0 - 1849: -74,0 - 1850: -74,1 + 1106: -80,0 + 1107: -80,1 + 1108: -79,1 + 1109: -79,0 + 1110: -78,1 + 1111: -78,0 + 1112: -78,0 + 1113: -78,1 + 1114: -79,1 + 1115: -79,0 + 1116: -80,0 + 1117: -80,1 + 1118: -80,0 + 1119: -80,1 + 1120: -79,1 + 1121: -79,0 + 1122: -78,0 + 1123: -78,1 + 1124: -76,1 + 1125: -76,0 + 1126: -75,1 + 1127: -75,0 + 1128: -74,0 + 1129: -74,1 + 1130: -74,1 + 1131: -74,0 + 1132: -75,0 + 1133: -75,1 + 1134: -76,1 + 1135: -76,0 + 1136: -76,0 + 1137: -76,1 + 1138: -75,1 + 1139: -75,0 + 1140: -74,0 + 1141: -74,1 - node: color: '#FF0000FF' id: Dirt decals: - 4210: -78,-1 - 4211: -78,-2 - 4212: -77,-2 - 4213: -77,-1 - 4214: -76,-1 - 4215: -76,-2 - 4216: -79,-3 - 4217: -80,-3 - 4218: -80,-2 - 4219: -79,-2 - 4220: -79,-1 - 4221: -80,-1 - 4222: -81,-3 - 4223: -81,-4 - 4224: -80,-4 - 4225: -79,-4 - 4226: -78,-4 - 4227: -78,-3 - 4228: -77,-3 - 4229: -77,-4 - 4230: -76,-4 - 4231: -76,-3 - 4232: -75,-3 - 4233: -75,-4 - 4234: -74,-4 - 4235: -74,-3 - 4236: -74,-2 - 4237: -74,-1 - 4238: -75,-1 - 4239: -75,-2 - 4255: -77,0 - 4256: -77,1 + 3028: -78,-1 + 3029: -78,-2 + 3030: -77,-2 + 3031: -77,-1 + 3032: -76,-1 + 3033: -76,-2 + 3034: -79,-3 + 3035: -80,-3 + 3036: -80,-2 + 3037: -79,-2 + 3038: -79,-1 + 3039: -80,-1 + 3040: -81,-3 + 3041: -81,-4 + 3042: -80,-4 + 3043: -79,-4 + 3044: -78,-4 + 3045: -78,-3 + 3046: -77,-3 + 3047: -77,-4 + 3048: -76,-4 + 3049: -76,-3 + 3050: -75,-3 + 3051: -75,-4 + 3052: -74,-4 + 3053: -74,-3 + 3054: -74,-2 + 3055: -74,-1 + 3056: -75,-1 + 3057: -75,-2 + 3073: -77,0 + 3074: -77,1 - node: cleanable: True color: '#FFFFFF6A' id: Dirt decals: - 3401: -6,42 - 3402: 1,41 - 3403: 3,44 - 3404: 2,40 + 2381: -6,42 + 2382: 1,41 + 2383: 3,44 + 2384: 2,40 - node: color: '#FFFFFF85' id: Dirt decals: - 3377: -30,32 + 2357: -30,32 - node: color: '#FFFFFFD3' id: Dirt decals: - 3386: -34,20 + 2366: -34,20 - node: cleanable: True color: '#FFFFFFD3' id: Dirt decals: - 3389: 1,35 - 3390: -1,37 - 3396: -2,26 - 3399: -5,43 - 3400: -3,39 + 2369: 1,35 + 2370: -1,37 + 2376: -2,26 + 2379: -5,43 + 2380: -3,39 - node: color: '#FFFFFFFF' id: Dirt decals: - 299: 48,4 + 296: 48,4 + 3905: -50,43 + 4488: -85,-19 + 4489: -87,-18 + 4490: -82,-17 + 4491: -81,-17 + 4492: -90,-20 + 4493: -94,-18 + 4494: -85,-13 + 4495: -89,-13 + 4496: -101,-14 + 4497: -101,-19 + 4498: -106,-17 + 4499: -108,-18 + 4500: -103,-19 + 4501: -95,-9 + 4502: -93,-9 + 4503: -92,-7 + 4504: -93,-9 + 4505: -94,-9 + 4506: -94,-9 + 4507: -94,-9 + 4508: -101,-10 + 4509: -103,-10 + 4510: -105,-10 + 4511: -102,-18 + 4512: -109,-17 + 4513: -113,-20 + 4514: -115,-18 + 4515: -115,-19 + 4516: -114,-19 + 4517: -115,-20 + 4518: -114,-20 + 4519: -115,-19 + 4520: -115,-19 + 4521: -115,-18 + 4522: -115,-18 + 4523: -116,-15 + 4524: -115,-15 + 4525: -114,-15 + 4526: -112,-15 + 4527: -113,-16 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 2134: 30,2 - 2135: 28,1 - 2136: 36,1 - 2137: 34,5 - 2138: 40,2 - 2139: 41,0 - 2153: 16,3 - 2154: 9,3 - 2155: 10,1 - 2156: 3,2 - 2157: 2,1 - 2158: 21,2 - 2261: 0,-7 - 2262: 0,-5 - 2263: 1,-5 - 2264: 0,-10 - 2265: -4,-3 - 2266: 0,0 - 2292: -42,-6 - 2293: -37,-14 - 2294: -32,-12 - 2295: -25,-13 - 2296: -20,-11 - 2297: -16,-12 - 2298: -19,-14 - 2299: -10,-14 - 2300: -4,-9 - 2301: -3,-15 - 2302: -1,-15 - 2317: -22,3 - 2318: -21,2 - 2319: -6,3 - 3284: 23,25 - 3292: 7,36 - 3362: -7,23 - 3366: 11,26 - 3367: 19,25 - 3411: -7,41 - 3589: 45,-30 - 3590: 43,-28 - 3591: 43,-25 - 3592: 46,-23 - 3593: 48,-24 - 3594: 50,-24 - 3595: 45,-22 - 3596: 45,-21 - 3597: 49,-32 - 3598: 49,-33 - 3599: 44,-33 - 3600: 43,-33 - 3601: 42,-31 - 3602: 43,-28 - 3603: 49,-29 - 3604: 47,-27 - 3605: 51,-25 - 3606: 50,-24 - 3607: 54,-27 - 3608: 53,-26 - 3609: 53,-24 - 3610: 54,-24 - 3711: 35,-20 - 3712: 35,-20 - 3714: 36,-20 - 3715: 35,-20 - 3716: 35,-21 + 1251: 30,2 + 1252: 40,2 + 1261: 10,1 + 1262: 3,2 + 1263: 2,1 + 1264: 21,2 + 1351: 0,-7 + 1352: 0,-5 + 1353: 1,-5 + 1354: -4,-3 + 1355: 0,0 + 1374: -42,-6 + 1375: -37,-14 + 1376: -32,-12 + 1377: -25,-13 + 1378: -16,-12 + 1379: -3,-15 + 1387: -22,3 + 1388: -21,2 + 2265: 23,25 + 2273: 7,36 + 2342: -7,23 + 2346: 11,26 + 2347: 19,25 + 2391: -7,41 + 2567: 45,-30 + 2568: 43,-28 + 2569: 43,-25 + 2570: 46,-23 + 2571: 48,-24 + 2572: 50,-24 + 2573: 45,-22 + 2574: 45,-21 + 2575: 49,-32 + 2576: 49,-33 + 2577: 44,-33 + 2578: 43,-33 + 2579: 42,-31 + 2580: 43,-28 + 2581: 49,-29 + 2582: 47,-27 + 2583: 51,-25 + 2584: 50,-24 + 2585: 54,-27 + 2586: 53,-26 + 2587: 53,-24 + 2588: 54,-24 + 2689: 35,-20 + 2690: 35,-20 + 2692: 36,-20 + 2693: 35,-20 + 2694: 35,-21 + 3095: 46,-10 + 3096: 45,-10 + 3097: 44,-10 + 3098: 43,-10 + 3099: 45,-10 + 3100: 45,-10 + 3101: 48,-10 + 6524: -6,-40 + 6525: -7,-41 + 6526: 0,-41 + 6527: -4,-39 + 6528: -1,-41 + 6529: 0,-40 + 6530: -2,-35 + 6531: -2,-35 + 6840: 53,-3 + 6841: 53,-4 + 6842: 56,-5 + 6843: 62,-4 + 6844: 61,-2 + 6845: 59,-5 + 6846: 61,-1 + 6847: 61,2 + 6848: 61,4 + 6849: 61,7 + 6850: 60,9 + 6851: 58,9 + 6852: 63,11 + 6853: 61,13 + 6854: 57,13 + 6855: 55,14 + 6856: 53,10 + 6857: 52,9 + 6858: 51,9 + 6859: 56,12 + 6860: 60,11 + 6861: 50,7 + 6862: 51,8 + 6863: 44,8 + 6864: 44,9 + 6865: 43,7 + 6866: 45,7 + 6867: 45,8 + 6868: 42,9 + 6869: 45,6 + 6870: 45,4 + 6871: 43,4 + 6872: 48,13 + 6873: 47,14 + 6874: 46,13 + 6875: 47,12 + 6876: 48,11 + 6877: 49,11 + 6878: 46,14 + 6879: 46,14 + 6880: 46,14 + 6881: 46,14 + 6882: 46,14 + 6883: 46,14 + 6884: 42,12 + 6885: 43,13 + 6886: 43,14 + 6887: 44,12 + 6888: 41,17 + 6889: 42,16 + 6890: 41,16 + 6891: 37,12 + 6892: 34,11 + 6893: 33,13 + 6894: 35,15 + 6895: 37,14 + 6896: 33,16 + 6897: 30,15 + 6898: 32,13 + 6899: 32,12 + 6900: 31,13 + 6901: 33,10 + 6902: 36,12 + 6903: 36,15 + 6904: 38,15 + 6905: 35,6 + 6906: 35,4 + 6907: 36,1 + 6908: 39,1 + 6909: 39,2 + 6910: 38,7 + 6911: 38,7 + 6912: 38,3 + 6913: 40,2 + 6914: 43,1 + 6915: 43,2 + 6916: 44,0 + 6917: 29,1 + 6918: 28,2 + 6919: 24,2 + 6920: 24,1 + 6921: 28,1 + 6922: 25,3 + 6923: 24,3 + 6924: 23,1 + 6925: 20,1 + 6926: 13,-3 + 6927: 13,-2 + 6928: 11,-3 + 6929: 11,-4 + 6930: 13,-7 + 6931: 12,-7 + 6932: 14,-9 + 6933: 15,-10 + 6934: 15,-10 + 6935: 21,-10 + 6936: 21,-10 + 6937: 27,-10 + 6938: 27,-9 + 6939: 30,-11 + 6940: 33,-9 + 6941: 35,-10 + 6942: 37,-12 + 6943: 39,-13 + 6944: 40,-18 + 6945: 39,-18 + 6946: 39,-21 + 6947: 38,-21 + 6948: 44,-25 + 6949: 17,-10 + 6950: 14,-10 + 6951: 13,-7 + 6952: 12,-5 + 6953: 9,-6 + 6954: 6,-7 + 6955: 4,-5 + 6956: 4,-8 + 6957: 4,-12 + 6958: 3,-13 + 6959: 3,-12 + 6960: 4,-14 + 6961: 0,-16 + 6962: -1,-16 + 6963: -3,-15 + 6964: -3,-13 + 6965: -2,-11 + 6966: 0,-11 + 6967: 0,-9 + 6968: -1,-6 + 6969: 0,-1 + 6970: -1,2 + 6971: -3,3 + 6972: -8,2 + 6973: -10,3 + 6974: -11,1 + 6975: -12,3 + 6976: -14,3 + 6977: -15,1 + 6978: -15,2 + 6979: -17,1 + 6980: -21,3 + 6981: -20,1 + 6982: -24,2 + 6983: -26,3 + 6984: -28,4 + 6985: -29,1 + 6986: -33,3 + 6987: -37,2 + 6988: -37,4 + 6989: -34,4 + 6990: -33,2 + 6991: -33,10 + 6992: -31,10 + 6993: -31,13 + 6994: -33,15 + 6995: -31,16 + 6996: -33,18 + 6997: -30,21 + 6998: -31,23 + 6999: -31,27 + 7000: -31,29 + 7001: -30,28 + 7002: -30,33 + 7003: -30,31 + 7004: -31,31 + 7005: -30,25 + 7006: -30,24 + 7007: -31,23 + 7008: -37,17 + 7009: -40,17 + 7010: -41,19 + 7011: -44,16 + 7012: -44,16 + 7013: -44,17 + 7014: -49,17 + 7015: -48,14 + 7016: -50,13 + 7017: -51,12 + 7018: -52,14 + 7019: -51,14 + 7020: -55,13 + 7021: -56,17 + 7022: -59,17 + 7023: -64,16 + 7024: -67,17 + 7025: -67,12 + 7026: -68,12 + 7027: -67,9 + 7028: -65,8 + 7029: -69,7 + 7030: -75,9 + 7031: -73,13 + 7032: -74,16 + 7033: -60,9 + 7034: -61,8 + 7035: -60,8 + 7036: -60,11 + 7037: -59,10 + 7038: -74,9 + 7039: -77,8 + 7040: -80,8 + 7041: -81,9 + 7042: -83,6 + 7043: -82,8 + 7044: -85,8 + 7045: -87,7 + 7046: -89,9 + 7047: -88,8 + 7048: -89,5 + 7049: -87,5 + 7050: -87,6 + 7051: -88,4 + 7052: -88,1 + 7053: -91,-1 + 7054: -92,-1 + 7055: -93,-2 + 7056: -90,-3 + 7057: -93,-2 + 7058: -95,-2 + 7059: -95,1 + 7060: -94,3 + 7061: -95,5 + 7062: -95,8 + 7063: -94,10 + 7064: -93,9 + 7065: -93,7 - node: color: '#00AC887F' id: DirtHeavy decals: - 815: -41,31 - 816: -41,26 - 817: -37,28 - 818: -37,27 - 819: -37,28 + 424: -41,31 + 425: -41,26 + 426: -37,28 + 427: -37,27 + 428: -37,28 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 1864: -71.00598,-1.0109639 - 1865: -72,-2 - 1866: -70,-1 + 1155: -71.00598,-1.0109639 + 1156: -72,-2 - node: color: '#FFFFFF85' id: DirtHeavy decals: - 3378: -29,20 - 3382: -31,23 - 3383: -30,30 + 2358: -29,20 + 2362: -31,23 + 2363: -30,30 - node: cleanable: True color: '#FFFFFFD3' id: DirtHeavy decals: - 3391: 3,35 - 3392: -3,40 - 3397: -7,26 - 3398: 0,43 + 2371: 3,35 + 2372: -3,40 + 2377: -7,26 + 2378: 0,43 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2462,221 +4344,1105 @@ entities: 10: -35,-18 11: -32,-16 21: -44,-5 - 313: 35,13 - 1215: -97,-1 - 1216: -97,0 - 1222: -113,9 - 1223: -112,10 - 2881: -13,-5 + 309: 35,13 + 690: -113,9 + 691: -112,10 + 1870: -13,-5 + 4528: -112,-18 + 4529: -113,-18 + 4530: -107,-18 + 4531: -105,-18 + 4532: -105,-17 + 4533: -107,-17 + 4534: -106,-20 + 4535: -105,-20 + 4536: -108,-13 + 4537: -108,-12 + 4538: -110,-11 + 4539: -110,-12 + 4540: -108,-11 + 4541: -108,-10 + 4542: -98,-19 + 4543: -94,-20 + 4544: -92,-18 + 4545: -89,-17 + 4546: -86,-19 + 4547: -85,-18 + 4548: -82,-19 + 4549: -83,-15 + 4550: -84,-13 + 4551: -87,-13 + 4552: -89,-16 + 4553: -95,-16 + 4554: -97,-14 + 4555: -93,-13 + 4556: -89,-14 + 4557: -85,-18 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 567: -35,0 - 891: -33,17 - 892: -30,11 - 899: -28,6 - 919: -63,13 - 920: -64,14 - 921: -65,8 - 922: -65,10 - 923: -63,11 - 924: -63,9 - 925: -63,7 - 926: -67,7 - 927: -70,10 - 928: -69,12 - 929: -69,14 - 930: -67,14 - 931: -65,13 - 932: -61,14 - 933: -58,14 - 934: -59,12 - 935: -58,12 - 936: -60,12 - 937: -71,4 - 938: -77,3 - 939: -79,5 - 940: -65,-2 - 941: -62,0 - 942: -61,-2 - 943: -62,-3 - 944: -63,0 - 945: -65,1 - 946: -67,0 - 947: -67,-2 - 948: -70,-3 - 949: -71,-4 - 950: -70,-4 - 951: -71,2 - 952: -67,3 - 953: -68,4 - 954: -66,5 - 955: -63,4 - 956: -59,3 - 957: -60,4 - 958: -50,3 - 959: -52,4 - 960: -56,2 - 961: -57,0 - 962: -56,-2 - 963: -56,-4 - 964: -57,-4 - 965: -57,-2 - 966: -59,-2 - 967: -60,0 - 1285: -111,3 - 1312: -50,21 - 1313: -53,23 - 1314: -54,25 - 1315: -53,32 - 1331: -77,15 - 1346: -77,13 - 1351: -89,21 - 1364: -92,28 - 1388: -100,25 - 1389: -99,25 - 1393: -106,17 - 1398: -98,14 - 1415: -131,22 - 1416: -132,23 - 1417: -129,20 - 1418: -121,20 - 1419: -117,21 - 1420: -117,18 - 1421: -113,17 - 1422: -112,12 - 1453: -88,8 - 1454: -89,2 - 1455: -82,8 - 1456: -82,12 - 1457: -79,9 - 1458: -74,10 - 1459: -72,12 - 1460: -73,16 - 1461: -68,16 - 1462: -82,15 - 1494: -55,17 - 1495: -52,17 - 1502: -46,17 - 1503: -49,18 - 1523: -97,-4 - 1524: -92,-2 - 1525: -93,8 - 1526: -95,2 - 1527: -95,10 - 1549: -96,15 - 1550: -96,1 - 1552: -94,-4 - 1553: -88,-3 - 1554: -89,-1 - 1555: -100,2 - 1557: -105,2 - 1558: -111,5 - 1580: -106,8 - 1584: -103,11 - 1632: -125,-6 - 1633: -123,-7 - 1634: -120,-7 - 1635: -123,-10 - 1636: -121,-11 - 1637: -116,-14 - 1781: -53,40 - 1782: -54,35 - 1783: -58,33 - 2120: 34,4 - 2121: 31,3 - 2141: 7,2 - 2255: -3,-4 - 2256: 0,-2 - 2267: -4,-14 - 2268: -2,-16 - 2314: -13,4 - 2315: -17,2 - 2316: -10,1 - 2910: -18,-2 - 3285: 21,21 - 3359: 16,15 - 3361: -16,24 - 3368: 21,25 - 3408: -8,44 + 362: -35,0 + 478: -33,17 + 479: -30,11 + 486: -28,6 + 504: -63,13 + 505: -64,14 + 506: -65,8 + 507: -65,10 + 508: -63,11 + 509: -63,9 + 510: -63,7 + 511: -67,7 + 512: -70,10 + 513: -69,12 + 514: -69,14 + 515: -67,14 + 516: -65,13 + 517: -61,14 + 518: -58,14 + 519: -59,12 + 520: -58,12 + 521: -60,12 + 522: -71,4 + 523: -77,3 + 524: -79,5 + 525: -65,-2 + 526: -62,0 + 527: -61,-2 + 528: -63,0 + 529: -70,-3 + 530: -71,-4 + 531: -70,-4 + 532: -71,2 + 533: -67,3 + 534: -68,4 + 535: -66,5 + 536: -63,4 + 537: -59,3 + 538: -50,3 + 539: -52,4 + 540: -56,2 + 541: -57,0 + 542: -56,-2 + 543: -56,-4 + 544: -57,-4 + 545: -57,-2 + 546: -59,-2 + 547: -60,0 + 722: -111,3 + 749: -50,21 + 750: -53,23 + 751: -54,25 + 752: -53,32 + 768: -77,15 + 783: -77,13 + 788: -89,21 + 801: -92,28 + 825: -100,25 + 826: -99,25 + 830: -106,17 + 835: -98,14 + 852: -131,22 + 853: -132,23 + 854: -129,20 + 855: -121,20 + 856: -117,21 + 857: -117,18 + 858: -113,17 + 859: -112,12 + 860: -89,2 + 861: -82,12 + 862: -79,9 + 863: -74,10 + 864: -72,12 + 865: -73,16 + 866: -68,16 + 893: -55,17 + 894: -52,17 + 901: -46,17 + 902: -49,18 + 915: -95,2 + 935: -96,15 + 937: -89,-1 + 938: -100,2 + 939: -105,2 + 940: -111,5 + 961: -106,8 + 965: -103,11 + 1005: -125,-6 + 1006: -123,-7 + 1007: -120,-7 + 1008: -123,-10 + 1009: -121,-11 + 1253: 7,2 + 1345: -3,-4 + 1346: 0,-2 + 1356: -4,-14 + 1357: -2,-16 + 1386: -10,1 + 1899: -18,-2 + 2266: 21,21 + 2339: 16,15 + 2341: -16,24 + 2348: 21,25 + 2388: -8,44 + 3089: 40,-4 + 3090: 40,-3 + 3091: 40,-3 + 6017: -86,12 + 6018: -85,14 + 6019: -88,14 + 6020: -89,13 + 6021: -100,-5 + 6022: -100,-3 + 6023: -104,-2 + 6024: -105,-1 + 6025: -103,-1 + 6026: -100,-3 + 6027: -102,-4 + 6028: -103,-4 + 6029: -101,-10 + 6030: -105,-9 + 6031: -104,-9 + 6056: -103,10 + 6057: -105,10 + 6058: -105,11 + 6059: -104,11 + 6060: -102,8 + 6061: -96,4 + 6062: -96,4 + 6063: -96,0 + 6064: -81,14 + 6065: -81,16 + 6066: -83,18 + 6067: -83,14 + 6068: -83,13 + 6069: -81,14 + 6070: -81,18 + 6071: -81,20 + 6072: -83,20 + 6073: -84,20 + 6074: -81,21 + 6075: -81,16 + 6076: -87,24 + 6077: -86,25 + 6078: -86,22 + 6079: -84,27 + 6080: -84,29 + 6081: -86,30 + 6082: -86,27 + 6083: -86,33 + 6084: -86,35 + 6085: -86,32 + 6086: -86,31 + 6087: -87,33 + 6088: -87,34 + 6089: -84,35 + 6090: -84,32 + 6091: -88,38 + 6092: -88,42 + 6093: -88,41 + 6094: -89,44 + 6095: -88,44 + 6096: -89,39 + 6097: -88,39 + 6098: -89,35 + 6099: -89,32 + 6100: -89,34 + 6101: -89,33 + 6102: -84,44 + 6103: -84,43 + 6104: -84,41 + 6105: -84,40 + 6106: -86,42 + 6107: -86,44 + 6108: -86,41 + 6109: -86,39 + 6110: -86,41 + 6111: -86,43 + 6112: -74,16 + 6113: -74,14 + 6114: -74,13 + 6115: -74,12 + 6116: -73,11 + 6117: -73,10 + 6118: -72,8 + 6119: -74,9 + 6120: -74,9 + 6121: -74,12 + 6122: -73,14 + 6123: -73,12 + 6124: -68,10 + 6125: -69,13 + 6126: -64,11 + 6127: -63,9 + 6128: -64,9 + 6129: -66,10 + 6130: -68,17 + 6131: -64,17 + 6132: -61,17 + 6133: -58,17 + 6134: -56,17 + 6135: -61,19 + 6136: -62,18 + 6137: -60,18 + 6138: -61,18 + 6139: -64,18 + 6140: -64,21 + 6141: -63,21 + 6142: -61,21 + 6143: -60,21 + 6144: -63,20 + 6145: -63,21 + 6146: -61,21 + 6147: -62,13 + 6148: -62,13 + 6149: -62,13 + 6150: -52,13 + 6151: -50,13 + 6152: -53,14 + 6153: -52,13 + 6154: -51,13 + 6155: -55,13 + 6156: -50,14 + 6157: -49,14 + 6158: -48,16 + 6159: -49,17 + 6160: -52,17 + 6161: -54,16 + 6162: -51,18 + 6163: -50,18 + 6164: -49,17 + 6165: -49,16 + 6166: -46,17 + 6167: -44,17 + 6168: -42,15 + 6169: -39,17 + 6170: -39,17 + 6171: -38,16 + 6172: -37,18 + 6173: -39,18 + 6174: -37,17 + 6175: -39,18 + 6176: -36,18 + 6177: -33,19 + 6178: -32,17 + 6179: -33,16 + 6180: -32,15 + 6181: -31,16 + 6182: -30,16 + 6183: -30,14 + 6184: -30,13 + 6185: -32,14 + 6186: -31,11 + 6187: -31,11 + 6188: -30,8 + 6189: -31,7 + 6190: -32,8 + 6191: -33,8 + 6192: -32,11 + 6193: -32,13 + 6194: -30,11 + 6195: -33,4 + 6196: -35,4 + 6197: -37,4 + 6198: -37,2 + 6199: -35,2 + 6200: -32,2 + 6201: -35,2 + 6202: -42,1 + 6203: -42,1 + 6204: -40,1 + 6205: -40,-3 + 6206: -40,-5 + 6207: -40,-7 + 6208: -40,-4 + 6209: -40,-2 + 6210: -42,-1 + 6211: -42,-2 + 6212: -42,-4 + 6213: -42,-5 + 6214: -42,-8 + 6215: -42,-10 + 6216: -42,-10 + 6217: -42,-14 + 6218: -40,-14 + 6219: -40,-13 + 6220: -40,-11 + 6221: -40,-9 + 6222: -40,-7 + 6223: -40,-5 + 6224: -40,-2 + 6225: -40,0 + 6226: -42,3 + 6227: -45,3 + 6228: -47,3 + 6229: -49,3 + 6230: -51,3 + 6231: -53,3 + 6232: -53,3 + 6233: -54,3 + 6234: -55,0 + 6235: -55,-1 + 6236: -55,-3 + 6237: -56,-1 + 6238: -57,-1 + 6239: -57,-2 + 6240: -63,0 + 6241: -65,1 + 6242: -63,-3 + 6243: -65,-2 + 6244: -67,-2 + 6245: -66,0 + 6246: -67,-8 + 6247: -65,-8 + 6248: -62,-8 + 6249: -63,-8 + 6250: -63,-10 + 6251: -63,-11 + 6252: -64,-13 + 6253: -63,-13 + 6254: -63,-15 + 6255: -66,-16 + 6256: -62,-16 + 6257: -62,-16 + 6258: -66,-17 + 6259: -64,-15 + 6260: -61,-16 + 6261: -61,-18 + 6262: -65,-16 + 6263: -68,-15 + 6264: -68,-13 + 6265: -71,-11 + 6266: -71,-13 + 6267: -71,-13 + 6268: -70,-11 + 6269: -70,-13 + 6270: -71,-14 + 6271: -55,-17 + 6272: -53,-14 + 6273: -50,-14 + 6274: -49,-13 + 6275: -51,-13 + 6276: -52,-12 + 6277: -51,-14 + 6278: -49,-14 + 6279: -52,-15 + 6280: -52,-17 + 6281: -53,-16 + 6282: -52,-13 + 6283: -53,-11 + 6284: -49,-14 + 6285: -50,-11 + 6286: -50,-11 + 6287: -50,-11 + 6288: -48,-11 + 6289: -49,-10 + 6290: -49,-12 + 6291: -48,-12 + 6292: -48,-19 + 6293: -48,-17 + 6294: -49,-17 + 6295: -49,-16 + 6296: -48,-18 + 6297: -48,-18 + 6298: -52,-14 + 6299: -53,-13 + 6300: -56,-9 + 6301: -57,-8 + 6302: -56,-10 + 6303: -55,-11 + 6304: -55,-7 + 6305: -56,-7 + 6306: -56,-9 + 6307: -56,-10 + 6308: -61,-8 + 6309: -60,-8 + 6310: -59,-7 + 6311: -46,5 + 6312: -48,5 + 6313: -51,5 + 6314: -43,1 + 6315: -44,-1 + 6316: -46,0 + 6317: -46,0 + 6318: -45,-1 + 6319: -45,-1 + 6320: -45,1 + 6321: -44,0 + 6322: -44,-1 + 6323: -40,-2 + 6324: -41,-3 + 6325: -41,-5 + 6326: -42,-5 + 6327: -42,-4 + 6328: -40,-7 + 6329: -40,-9 + 6330: -41,-11 + 6331: -40,-13 + 6332: -40,-13 + 6333: -36,-13 + 6334: -35,-14 + 6335: -33,-14 + 6336: -30,-13 + 6337: -31,-12 + 6338: -28,-13 + 6339: -25,-12 + 6340: -26,-12 + 6341: -33,-12 + 6342: -37,-12 + 6343: -33,-12 + 6344: -33,-14 + 6345: -34,-14 + 6346: -30,-14 + 6347: -28,-14 + 6348: -36,-12 + 6349: -35,-12 + 6350: -25,-8 + 6351: -26,-7 + 6352: -27,-8 + 6353: -22,-8 + 6354: -21,-9 + 6355: -20,-8 + 6356: -22,-3 + 6357: -23,-5 + 6358: -21,-7 + 6359: -24,-6 + 6360: -23,-7 + 6361: -20,-9 + 6362: -18,-7 + 6363: -19,-4 + 6364: -20,-4 + 6365: -21,-5 + 6366: -19,-5 + 6367: -20,-2 + 6368: -21,-1 + 6369: -19,-1 + 6370: -19,-3 + 6371: -18,-5 + 6372: -15,-4 + 6373: -15,-4 + 6374: -16,-5 + 6375: -16,-3 + 6376: -14,-2 + 6377: -13,-4 + 6378: -14,-5 + 6379: -15,-6 + 6380: -12,-5 + 6381: -12,-2 + 6382: -12,-5 + 6383: -13,-9 + 6384: -14,-10 + 6385: -15,-9 + 6386: -13,-8 + 6387: -14,-9 + 6388: -15,-9 + 6389: -16,-8 + 6390: -16,-10 + 6391: -14,-10 + 6392: -14,-9 + 6393: -15,-8 + 6394: -15,-8 + 6395: -15,-8 + 6396: -16,-14 + 6397: -18,-14 + 6398: -20,-14 + 6399: -21,-14 + 6400: -12,-14 + 6401: -10,-15 + 6402: -10,-15 + 6403: -11,-15 + 6404: -10,-14 + 6405: -11,-12 + 6406: -13,-12 + 6407: -17,-12 + 6408: -21,-12 + 6409: -19,-11 + 6410: -20,-11 + 6411: -22,-11 + 6412: -24,-11 + 6413: -26,-12 + 6414: -27,-12 + 6415: -21,-20 + 6416: -21,-20 + 6417: -23,-17 + 6418: -22,-19 + 6419: -22,-20 + 6420: -20,-20 + 6421: -19,-23 + 6422: -17,-22 + 6423: -14,-23 + 6424: -12,-23 + 6425: -8,-24 + 6426: -9,-22 + 6427: -9,-22 + 6428: -9,-23 + 6429: -8,-24 + 6430: -5,-25 + 6431: -6,-23 + 6432: -7,-22 + 6433: -6,-25 + 6434: -4,-25 + 6435: -1,-25 + 6436: -2,-26 + 6437: -3,-26 + 6438: 2,-25 + 6439: 3,-25 + 6440: 2,-26 + 6441: 3,-19 + 6442: 1,-21 + 6443: -1,-21 + 6444: -2,-20 + 6445: -2,-21 + 6446: -2,-22 + 6447: -2,-23 + 6448: -1,-22 + 6449: -7,-18 + 6450: -9,-18 + 6451: -11,-18 + 6452: -11,-19 + 6453: -12,-19 + 6454: -15,-17 + 6455: -14,-18 + 6456: -13,-19 + 6457: -15,-18 + 6458: -16,-18 + 6459: -1,-16 + 6460: -3,-15 + 6461: -1,-15 + 6462: 0,-16 + 6463: -1,-17 + 6464: -3,-16 + 6465: -7,-13 + 6466: -8,-12 + 6467: -10,-12 + 6468: -4,-12 + 6469: -3,-12 + 6470: -3,-13 + 6471: -4,-16 + 6472: -15,-14 + 6473: -11,-14 + 6474: -11,-15 + 6475: -11,-15 + 6476: -9,-32 + 6477: -6,-30 + 6478: -7,-29 + 6479: -5,-32 + 6480: -9,-31 + 6481: -7,-32 + 6482: -2,-31 + 6483: -2,-28 + 6484: -3,-29 + 6485: -2,-31 + 6486: -1,-32 + 6487: -1,-29 + 6488: -2,-28 + 6489: -2,-30 + 6490: -1,-32 + 6491: -3,-32 + 6492: -2,-36 + 6493: -3,-36 + 6494: -2,-34 + 6495: -1,-35 + 6496: -2,-38 + 6497: -6,-36 + 6498: -6,-36 + 6499: -8,-36 + 6500: -8,-37 + 6501: -7,-37 + 6502: -6,-36 + 6503: -6,-36 + 6504: -6,-36 + 6505: -8,-41 + 6506: -8,-40 + 6507: -6,-41 + 6508: -6,-40 + 6509: -4,-40 + 6510: -4,-41 + 6511: -2,-40 + 6512: -2,-41 + 6513: 0,-40 + 6514: 0,-41 + 6515: 2,-41 + 6516: 1,-39 + 6532: 3,-29 + 6533: 2,-29 + 6534: 4,-29 + 6535: 4,-29 + 6536: 2,-28 + 6537: 1,-28 + 6538: 2,-29 + 6539: 2,-22 + 6540: 3,-20 + 6541: 2,-20 + 6542: 3,-22 + 6543: 3,-22 + 6544: 0,-7 + 6545: 0,-5 + 6546: 1,-8 + 6547: 1,-10 + 6548: 0,-13 + 6549: -1,-14 + 6550: -4,-14 + 6551: 3,-12 + 6552: 4,-14 + 6553: 2,-11 + 6554: 2,-13 + 6555: 3,-13 + 6556: 4,-11 + 6557: 5,-13 + 6558: 5,-13 + 6559: 8,-10 + 6560: 8,-11 + 6561: 9,-12 + 6562: 8,-12 + 6563: 7,-11 + 6564: 4,-8 + 6565: 3,-6 + 6566: 4,-5 + 6567: 7,-6 + 6568: 7,-6 + 6569: 5,-7 + 6570: 5,-8 + 6571: 8,-2 + 6572: 8,-1 + 6573: 8,-2 + 6574: 8,-3 + 6575: 3,-3 + 6576: 3,-3 + 6577: 4,-1 + 6578: 2,-1 + 6579: 5,-3 + 6580: 5,-3 + 6581: 6,-7 + 6582: 10,-7 + 6583: 12,-7 + 6584: 11,-6 + 6585: 13,-7 + 6586: 13,-9 + 6587: 12,-10 + 6588: 15,-10 + 6589: 16,-9 + 6590: 18,-10 + 6591: 18,-9 + 6592: 19,-11 + 6593: 22,-10 + 6594: 23,-9 + 6595: 23,-11 + 6596: 26,-10 + 6597: 26,-9 + 6598: 28,-10 + 6599: 29,-10 + 6600: 28,-9 + 6601: 30,-10 + 6602: 29,-9 + 6603: 25,-14 + 6604: 25,-12 + 6605: 24,-14 + 6606: 24,-14 + 6607: 21,-13 + 6608: 21,-15 + 6609: 22,-13 + 6610: 18,-14 + 6611: 18,-15 + 6612: 19,-15 + 6613: 19,-13 + 6614: 19,-13 + 6615: 28,-13 + 6616: 28,-13 + 6617: 28,-13 + 6618: 28,-15 + 6619: 28,-15 + 6620: 27,-14 + 6621: 33,-12 + 6622: 31,-11 + 6623: 32,-9 + 6624: 35,-10 + 6625: 35,-11 + 6626: 37,-12 + 6627: 37,-10 + 6628: 36,-9 + 6629: 36,-8 + 6630: 37,-7 + 6631: 36,-6 + 6632: 35,-7 + 6633: 36,-8 + 6634: 37,-10 + 6635: 41,-6 + 6636: 41,-6 + 6637: 39,-7 + 6638: 41,-7 + 6639: 40,-6 + 6640: 40,-8 + 6641: 41,-10 + 6642: 40,-3 + 6643: 42,-4 + 6644: 42,-6 + 6645: 39,-15 + 6646: 39,-14 + 6647: 39,-16 + 6648: 38,-17 + 6649: 40,-18 + 6650: 40,-18 + 6651: 39,-20 + 6652: 38,-19 + 6653: 37,-13 + 6654: 32,-15 + 6655: 29,-14 + 6656: 32,-14 + 6657: 34,-15 + 6658: 34,-13 + 6659: 31,-13 + 6660: 30,-14 + 6661: 30,-15 + 6662: 26,-6 + 6663: 27,-5 + 6664: 28,-2 + 6665: 25,-2 + 6666: 25,-3 + 6667: 27,-4 + 6668: 24,-3 + 6669: 23,-4 + 6670: 22,-6 + 6671: 22,-3 + 6672: 21,-5 + 6673: 23,-6 + 6674: 23,-7 + 6675: 19,-6 + 6676: 17,-6 + 6677: 17,-7 + 6678: 19,-7 + 6679: 19,-6 + 6680: 21,-5 + 6681: 20,-7 + 6682: 21,-7 + 6683: 24,-7 + 6684: 43,-15 + 6685: 43,-13 + 6686: 44,-15 + 6687: 43,-16 + 6688: 49,-15 + 6689: 48,-16 + 6690: 46,-16 + 6691: 47,-14 + 6692: 49,-14 + 6693: 51,-16 + 6694: 49,-17 + 6695: 51,-14 + 6696: 48,-12 + 6697: 45,-12 + 6698: 43,-12 + 6699: 42,-15 + 6700: 42,-16 + 6701: 43,-16 + 6702: 48,-16 + 6703: 51,-17 + 6704: 49,-15 + 6705: 47,-14 + 6706: 45,-20 + 6707: 45,-21 + 6708: 44,-25 + 6709: 42,-25 + 6710: 44,-28 + 6711: 46,-29 + 6712: 51,-26 + 6713: 49,-24 + 6714: 50,-31 + 6715: 46,-32 + 6716: 50,-32 + 6717: 50,-31 + 6718: 44,-30 + 6719: 42,-32 + 6720: 41,-30 + 6721: 40,-32 + 6722: 41,-32 + 6723: 44,-31 + 6724: 39,-22 + 6725: 38,-23 + 6726: 39,-26 + 6727: 40,-26 + 6728: 38,-27 + 6729: 39,-24 + 6730: 38,-27 + 6731: 35,-27 + 6732: 34,-24 + 6733: 34,-25 + 6734: 34,-26 + 6735: 35,-27 + 6736: 36,-26 + 6737: 35,-24 + 6738: 36,-24 + 6739: 36,-25 + 6740: 35,-26 + 6741: 35,-26 + 6742: 35,-25 + 6743: 35,2 + 6744: 34,4 + 6745: 34,5 + 6746: 34,6 + 6747: 34,7 + 6748: 36,7 + 6749: 37,8 + 6750: 34,8 + 6751: 34,8 + 6752: 39,6 + 6753: 35,10 + 6754: 35,11 + 6755: 32,12 + 6756: 31,11 + 6757: 35,11 + 6758: 37,12 + 6759: 37,15 + 6760: 36,16 + 6761: 32,15 + 6762: 31,15 + 6763: 31,13 + 6764: 32,13 + 6765: 38,2 + 6766: 37,1 + 6767: 40,0 + 6768: 41,0 + 6769: 41,1 + 6770: 39,3 + 6771: 38,5 + 6772: 38,7 + 6773: 44,1 + 6774: 43,0 + 6775: 43,0 + 6776: 43,2 + 6777: 45,1 + 6778: 48,1 + 6779: 49,1 + 6780: 51,0 + 6781: 52,1 + 6782: 51,3 + 6783: 52,5 + 6784: 52,5 + 6785: 52,7 + 6786: 49,8 + 6787: 48,8 + 6788: 51,8 + 6789: 52,10 + 6790: 44,8 + 6791: 43,9 + 6792: 43,7 + 6793: 45,7 + 6794: 51,7 + 6795: 48,7 + 6796: 49,7 + 6797: 51,11 + 6798: 53,12 + 6799: 55,12 + 6800: 57,11 + 6801: 59,11 + 6802: 57,12 + 6803: 55,13 + 6804: 54,14 + 6805: 59,14 + 6806: 58,13 + 6807: 58,12 + 6808: 60,12 + 6809: 63,12 + 6810: 64,13 + 6811: 64,12 + 6812: 62,11 + 6813: 60,10 + 6814: 60,10 + 6815: 62,8 + 6816: 62,9 + 6817: 59,9 + 6818: 59,7 + 6819: 60,7 + 6820: 61,6 + 6821: 60,3 + 6822: 58,3 + 6823: 62,4 + 6824: 62,2 + 6825: 61,0 + 6826: 60,-1 + 6827: 59,-1 + 6828: 62,-3 + 6829: 61,-3 + 6830: 58,-3 + 6831: 58,-2 + 6832: 63,-3 + 6833: 64,-4 + 6834: 58,-4 + 6835: 57,-5 + 6836: 55,-5 + 6837: 53,-4 + 6838: 55,-5 + 6839: 59,-5 - node: cleanable: True color: '#FFFFFFD3' id: DirtHeavyMonotile decals: - 3388: -2,29 + 2368: -2,29 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3906: -53,40 + 3907: -53,39 + 3908: -52,39 + 3909: -52,41 + 3910: -57,44 + 3911: -56,45 + 3912: -56,43 + 3913: -59,45 + 3914: -59,42 + 3915: -62,41 + 3916: -62,36 + 4558: -89,-14 + 4559: -84,-15 + 4560: -84,-18 + 4561: -88,-19 + 4562: -82,-19 + 4563: -80,-19 + 4564: -83,-14 + 4565: -85,-12 + 4566: -83,-19 + 4567: -82,-20 + 4568: -86,-20 + 4569: -90,-20 + 4570: -92,-17 + 4571: -96,-19 + 4572: -98,-19 + 4573: -98,-15 + 4574: -97,-14 + 4575: -96,-15 + 4576: -97,-17 + 4577: -100,-19 + 4578: -101,-17 + 4579: -102,-15 + 4580: -106,-18 + 4581: -107,-20 + 4582: -111,-19 + 4583: -108,-17 + 4584: -104,-19 + 4585: -115,-20 + 4586: -116,-16 + 4587: -115,-16 + 4588: -113,-18 + 4589: -113,-20 + 4590: -113,-18 + 4591: -114,-16 + 4592: -118,-20 + 4593: -119,-18 + 4594: -120,-18 + 4595: -119,-20 + 4596: -118,-20 + 4597: -92,-8 + 4598: -92,-7 + 4599: -92,-9 + 4600: -95,-7 + 4601: -95,-7 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2914: -18,-9 - 3296: -19,7 - 3297: -11,15 - 3357: 3,16 - 3358: 5,11 - 3364: 3,23 - 3409: -9,42 - 3410: -6,39 - 3625: 43,-24 - 3626: 43,-26 - 3627: 47,-24 - 3628: 51,-24 - 3629: 51,-21 - 3630: 53,-21 - 3631: 54,-20 - 3632: 53,-26 - 3634: 53,-27 - 3636: 54,-27 - 3638: 51,-26 - 3639: 44,-32 - 3640: 44,-33 - 3641: 44,-34 - 3642: 40,-33 - 3643: 40,-31 - 3644: 42,-30 - 3646: 44,-33 - 3648: 45,-33 - 3649: 48,-32 - 3650: 51,-32 - 3651: 51,-30 - 3652: 48,-30 - 3702: 36,-21 - 3703: 35,-21 - 3704: 36,-20 - 3705: 36,-21 - 3706: 36,-21 - 3707: 36,-20 - 3708: 35,-20 - 3709: 35,-21 - 3719: 35,-21 - 3720: 35,-20 - 3721: 36,-20 - 3722: 36,-21 - 3723: 35,-21 - 3724: 35,-20 - 3725: 36,-21 + 1903: -18,-9 + 2276: -19,7 + 2277: -11,15 + 2337: 3,16 + 2338: 5,11 + 2344: 3,23 + 2389: -9,42 + 2390: -6,39 + 2603: 43,-24 + 2604: 43,-26 + 2605: 47,-24 + 2606: 51,-24 + 2607: 51,-21 + 2608: 53,-21 + 2609: 54,-20 + 2610: 53,-26 + 2612: 53,-27 + 2614: 54,-27 + 2616: 51,-26 + 2617: 44,-32 + 2618: 44,-33 + 2619: 44,-34 + 2620: 40,-33 + 2621: 40,-31 + 2622: 42,-30 + 2624: 44,-33 + 2626: 45,-33 + 2627: 48,-32 + 2628: 51,-32 + 2629: 51,-30 + 2630: 48,-30 + 2680: 36,-21 + 2681: 35,-21 + 2682: 36,-20 + 2683: 36,-21 + 2684: 36,-21 + 2685: 36,-20 + 2686: 35,-20 + 2687: 35,-21 + 2697: 35,-21 + 2698: 35,-20 + 2699: 36,-20 + 2700: 36,-21 + 2701: 35,-21 + 2702: 35,-20 + 2703: 36,-21 + 3092: 43,-4 + 3093: 43,-6 + 3094: 44,-10 + 3917: -56,42 + 3918: -56,44 + 3919: -57,44 + 3920: -56,44 + 3921: -52,44 + 3922: -52,43 + 3923: -52,43 + 3924: -53,43 + 3925: -52,44 + 3926: -52,45 + 3927: -51,44 + 3928: -51,43 + 3929: -51,44 + 3930: -52,44 + 3931: -53,44 + 3932: -53,43 + 3933: -53,45 + 3934: -52,45 + 5921: -93,0 + 5944: -95,15 + 5945: -93,14 + 5946: -93,14 + 5947: -95,12 + 5948: -96,13 + 5949: -94,12 + 5950: -92,12 + 5951: -93,15 + 5952: -95,16 + 5953: -92,16 + 5954: -92,16 - node: cleanable: True color: '#FFFFFF6A' id: DirtLight decals: - 3406: -7,46 + 2386: -7,46 - node: color: '#FFFFFF85' id: DirtLight decals: - 3379: -32,20 + 2359: -32,20 - node: cleanable: True color: '#FFFFFFD3' id: DirtLight decals: - 3393: -8,32 - 3394: -2,29 - 3395: -3,25 + 2373: -8,32 + 2374: -2,29 + 2375: -3,25 - node: color: '#FFFFFFFF' id: DirtLight @@ -2695,549 +5461,567 @@ entities: 17: -25,-17 19: -44,-9 20: -45,-7 - 289: 38,7 - 290: 36,4 - 291: 37,2 - 292: 52,2 - 293: 60,-5 - 294: 64,-2 - 295: 57,5 - 300: 56,0 - 301: 58,2 - 303: 59.246502,10.244531 - 304: 60.746502,-1.7587038 - 308: 44,9 - 309: 45,7 - 310: 44,13 - 311: 31,12 - 1217: -105,-1 - 1218: -105,14 - 1224: -122,3 - 1225: -122,-8 - 1229: -1,23 - 1533: -67,38 - 1534: -61,35 - 1535: -66,29 - 1537: -61,30 - 1538: -66,26 - 1539: -62,25 - 1542: -65,34 - 1544: -60,40 - 1548: -61,44 - 1551: -57,34 - 1556: -52,39 - 1696: -85,43 - 1697: -87,35 - 1698: -85,32 - 1699: -84,24 - 1700: -84,21 - 1701: -86,20 - 1702: -86,38 - 1703: -89,39 - 2879: -15,-2 + 286: 38,7 + 287: 36,4 + 288: 37,2 + 289: 52,2 + 290: 60,-5 + 291: 64,-2 + 292: 57,5 + 297: 56,0 + 298: 58,2 + 300: 59.246502,10.244531 + 301: 60.746502,-1.7587038 + 304: 44,9 + 305: 45,7 + 306: 44,13 + 307: 31,12 + 685: -105,-1 + 686: -105,14 + 692: -122,3 + 696: -1,23 + 921: -67,38 + 922: -61,35 + 924: -61,30 + 925: -66,26 + 928: -65,34 + 930: -60,40 + 934: -61,44 + 936: -57,34 + 1067: -85,43 + 1068: -87,35 + 1069: -85,32 + 1070: -84,24 + 1071: -84,21 + 1072: -86,20 + 1073: -86,38 + 1074: -89,39 + 1868: -15,-2 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 564: -35,-2 - 565: -38,-1 - 568: -34,0 - 569: -34,0 - 844: -37,4 - 845: -35,2 - 846: -37,5 - 847: -34,4 - 848: -33,2 - 849: -31,5 - 863: -25,1 - 864: -26,3 - 865: -24,4 - 866: -24,6 - 867: -23,3 - 868: -23,2 - 869: -24,2 - 870: -26,6 - 871: -27,5 - 872: -31,4 - 873: -33,4 - 874: -33,3 - 875: -34,3 - 876: -36,4 - 877: -34,8 - 878: -34,7 - 879: -33,7 - 880: -32,6 - 881: -32,12 - 882: -32,10 - 883: -33,11 - 884: -31,11 - 885: -31,15 - 886: -32,15 - 887: -33,14 - 888: -33,16 - 889: -31,16 - 890: -31,18 - 894: -38,5 - 895: -24,8 - 896: -25,8 - 897: -28,6 - 898: -28,5 - 905: -69,13 - 906: -69,12 - 907: -70,8 - 908: -70,9 - 909: -66,8 - 910: -64,13 - 911: -60,13 - 912: -57,14 - 913: -55,13 - 914: -54,13 - 915: -53,14 - 916: -53,13 - 917: -60,13 - 918: -62,13 - 968: -56,-3 - 969: -55,-3 - 970: -55,-2 - 971: -55,-1 - 972: -56,0 - 973: -56,2 - 974: -56,3 - 975: -51,3 - 976: -53,4 - 977: -57,4 - 978: -64,3 - 979: -65,3 - 980: -69,4 - 981: -72,4 - 982: -77,3 - 983: -78,3 - 984: -76,4 - 985: -72,4 - 986: -70,1 - 987: -71,-3 - 988: -68,-1 - 989: -66,-2 - 990: -67,-1 - 991: -61,-1 - 992: -63,-2 - 993: -64,-3 - 994: -65,-3 - 995: -65,-1 - 996: -64,1 - 997: -65,0 - 998: -64,1 - 999: -61,0 - 1000: -61,-1 - 1001: -60,0 - 1002: -61,1 - 1003: -63,0 - 1004: -62,1 - 1005: -64,3 - 1006: -65,5 - 1007: -64,5 - 1008: -70,3 - 1009: -70,3 - 1010: -69,3 - 1011: -70,4 - 1012: -71,3 - 1013: -74,4 - 1014: -76,3 - 1015: -76,3 - 1016: -74,3 - 1017: -77,4 - 1018: -79,4 - 1019: -79,3 - 1020: -79,3 - 1021: -78,4 - 1022: -78,5 - 1023: -56,4 - 1024: -56,4 - 1025: -58,4 - 1026: -57,4 - 1027: -57,3 - 1028: -55,3 - 1029: -54,5 - 1030: -53,5 - 1031: -51,5 - 1032: -48,5 - 1033: -49,4 - 1034: -46,3 - 1035: -47,4 - 1036: -42,4 - 1037: -41,5 - 1038: -44,4 - 1039: -40,2 - 1040: -40,-3 - 1041: -68,10 - 1042: -69,10 - 1043: -68,9 - 1044: -67,8 - 1045: -68,8 - 1046: -67,9 - 1047: -66,11 - 1048: -68,13 - 1302: -37,22 - 1303: -39,21 - 1306: -40,21 - 1307: -38,25 - 1308: -37,24 - 1309: -43,21 - 1310: -42,20 - 1316: -54,30 - 1317: -54,28 - 1318: -54,21 - 1319: -51,20 - 1320: -50,20 - 1321: -46,21 - 1322: -46,20 - 1323: -36,21 - 1324: -67,20 - 1325: -67,21 - 1326: -68,21 - 1330: -78,21 - 1332: -78,15 - 1333: -79,17 - 1334: -78,17 - 1335: -76,20 - 1336: -76,19 - 1337: -77,19 - 1339: -69,20 - 1340: -68,21 - 1341: -77,13 - 1342: -78,13 - 1343: -78,12 - 1344: -79,12 - 1345: -78,15 - 1347: -90,18 - 1348: -90,16 - 1349: -89,16 - 1350: -89,17 - 1352: -90,23 - 1353: -88,23 - 1354: -89,28 - 1355: -89,27 - 1356: -90,26 - 1359: -93,26 - 1360: -94,24 - 1361: -94,23 - 1362: -94,27 - 1363: -94,28 - 1365: -92,26 - 1366: -89,18 - 1367: -90,16 - 1368: -99,21 - 1369: -100,21 - 1370: -97,19 - 1371: -99,19 - 1372: -100,19 - 1373: -100,20 - 1374: -97,21 - 1375: -101,22 - 1376: -101,24 - 1377: -99,25 - 1378: -101,27 - 1379: -101,27 - 1380: -101,26 - 1381: -99,27 - 1382: -97,29 - 1383: -96,26 - 1384: -97,26 - 1385: -97,24 - 1386: -98,24 - 1387: -99,24 - 1390: -101,18 - 1391: -102,18 - 1392: -104,18 - 1395: -103,14 - 1396: -103,13 - 1397: -101,12 - 1401: -100,12 - 1402: -98,12 - 1403: -112,13 - 1404: -113,14 - 1405: -113,16 - 1406: -114,18 - 1407: -115,18 - 1408: -118,20 - 1409: -118,21 - 1410: -127,21 - 1411: -124,20 - 1412: -123,20 - 1463: -83,16 - 1464: -81,12 - 1465: -82,9 - 1466: -80,8 - 1467: -87,9 - 1468: -85,9 - 1469: -87,3 - 1470: -86,2 - 1471: -89,4 - 1472: -88,6 - 1473: -89,9 - 1474: -85,7 - 1481: -66,17 - 1482: -62,17 - 1483: -58,16 - 1484: -56,16 - 1485: -58,17 - 1486: -60,18 - 1487: -73,14 - 1488: -73,11 - 1489: -82,10 - 1490: -64,17 - 1491: -60,16 - 1492: -55,17 - 1493: -52,16 - 1497: -50,14 - 1498: -47,13 - 1499: -49,16 - 1500: -49,17 - 1504: -43,18 - 1505: -43,16 - 1506: -45,16 - 1507: -37,17 - 1508: -40,18 - 1509: -39,16 - 1511: -41,17 - 1512: -92,-2 - 1513: -89,-3 - 1514: -95,-6 - 1515: -93,2 - 1516: -95,7 - 1517: -93,10 - 1518: -92,9 - 1543: -93,14 - 1545: -92,16 - 1546: -92,12 - 1547: -96,14 - 1563: -108,13 - 1564: -109,15 - 1565: -108,15 - 1566: -108,10 - 1567: -108,6 - 1568: -110,5 - 1569: -110,0 - 1570: -113,-2 - 1571: -108,-4 - 1572: -108,-14 - 1573: -110,-20 - 1574: -108,-3 - 1575: -108,2 - 1576: -107,3 - 1577: -105,3 - 1578: -104,7 - 1581: -102,9 - 1582: -102,10 - 1583: -103,11 - 1585: -105,-5 - 1586: -102,-5 - 1587: -100,-2 - 1588: -104,-2 - 1589: -99,-5 - 1590: -101,-9 - 1591: -104,-10 - 1592: -105,-9 - 1593: -102,-9 - 1594: -101,-10 - 1595: -106,-13 - 1596: -105,-15 - 1597: -105,-20 - 1598: -106,-19 - 1599: -105,-16 - 1600: -113,-5 - 1601: -113,-10 - 1602: -112,-12 - 1603: -116,-12 - 1604: -120,-12 - 1605: -121,-14 - 1606: -121,-15 - 1607: -119,-13 - 1608: -118,-15 - 1609: -115,-14 - 1610: -123,-9 - 1611: -125,-9 - 1612: -123,-4 - 1613: -124,-5 - 1614: -121,-3 - 1615: -120,-2 - 1616: -121,3 - 1617: -122,4 - 1769: -57,41 - 1770: -56,39 - 1771: -58,32 - 2122: 28,1 - 2123: 26,3 - 2124: 25,1 - 2125: 23,1 - 2126: 20,3 - 2127: 25,2 - 2128: 30,2 - 2129: 34,7 - 2130: 38,8 - 2131: 39,6 - 2132: 38,2 - 2133: 40,6 - 2142: 7,3 - 2143: 4,3 - 2144: 4,1 - 2145: 2,2 - 2146: 7,1 - 2147: 4,2 - 2148: 14,1 - 2149: 12,3 - 2150: 17,2 - 2216: -42,0 - 2217: -41,-3 - 2218: -41,-8 - 2219: -40,-12 - 2220: -41,-13 - 2221: -42,-12 - 2222: -42,-9 - 2223: -41,-7 - 2224: -37,-13 - 2225: -37,-14 - 2226: -33,-12 - 2227: -30,-14 - 2228: -35,-13 - 2229: -28,-12 - 2230: -28,-13 - 2231: -20,-13 - 2232: -23,-12 - 2233: -17,-13 - 2234: -17,-14 - 2235: -12,-13 - 2236: -11,-14 - 2237: -6,-14 - 2238: -7,-12 - 2239: -10,-12 - 2240: -13,-12 - 2241: -4,-16 - 2242: -2,-18 - 2243: 0,-16 - 2244: -1,-14 - 2245: -3,-8 - 2246: -1,-11 - 2247: 0,-5 - 2248: -4,-6 - 2249: -2,-3 - 2250: -3,2 - 2251: -4,3 - 2252: -1,3 - 2253: 0,1 - 2254: -4,1 - 2307: -19,2 - 2308: -20,1 - 2309: -14,3 - 2310: -11,2 - 2311: -9,1 - 2312: -7,1 - 2313: -9,3 - 2616: -8,5 - 2618: 6,13 - 2621: 16,11 - 2907: -26,-8 - 3286: 9,22 - 3287: 6,21 - 3288: -5,18 - 3289: 24,23 - 3290: 25,22 - 3291: 18,30 - 3293: 9,33 - 3294: 11,41 - 3295: 13,25 - 3352: -8,8 - 3356: -2,16 - 3360: 13,20 - 3363: -2,23 - 3371: -13,24 - 3373: -21,20 - 3374: -22,24 - 3407: -7,46 - 3671: 44,-24 - 3672: 45,-24 - 3673: 46,-23 - 3674: 47,-23 - 3684: 35,-21 - 3685: 35,-20 - 3686: 36,-20 - 3687: 36,-21 - 3688: 35,-20 - 3689: 35,-20 - 3726: 35,-20 - 3727: 35,-20 - 3728: 36,-20 - 3729: 35,-21 - 3730: 35,-21 + 359: -35,-2 + 360: -38,-1 + 363: -34,0 + 364: -34,0 + 431: -37,4 + 432: -35,2 + 433: -37,5 + 434: -34,4 + 435: -33,2 + 436: -31,5 + 450: -25,1 + 451: -26,3 + 452: -24,4 + 453: -24,6 + 454: -23,3 + 455: -23,2 + 456: -24,2 + 457: -26,6 + 458: -27,5 + 459: -31,4 + 460: -33,4 + 461: -33,3 + 462: -34,3 + 463: -36,4 + 464: -34,8 + 465: -34,7 + 466: -33,7 + 467: -32,6 + 468: -32,12 + 469: -32,10 + 470: -33,11 + 471: -31,11 + 472: -31,15 + 473: -32,15 + 474: -33,14 + 475: -33,16 + 476: -31,16 + 477: -31,18 + 481: -38,5 + 482: -24,8 + 483: -25,8 + 484: -28,6 + 485: -28,5 + 492: -69,13 + 493: -69,12 + 494: -70,8 + 495: -70,9 + 496: -66,8 + 497: -64,13 + 498: -60,13 + 499: -55,13 + 500: -53,14 + 501: -53,13 + 502: -60,13 + 503: -62,13 + 548: -56,-3 + 549: -55,-3 + 550: -55,-2 + 551: -56,0 + 552: -56,2 + 553: -51,3 + 554: -53,4 + 555: -57,4 + 556: -64,3 + 557: -65,3 + 558: -69,4 + 559: -72,4 + 560: -77,3 + 561: -78,3 + 562: -76,4 + 563: -72,4 + 564: -70,1 + 565: -71,-3 + 566: -68,-1 + 567: -66,-2 + 568: -67,-1 + 569: -61,-1 + 570: -63,-2 + 571: -65,-1 + 572: -65,0 + 573: -61,0 + 574: -61,-1 + 575: -60,0 + 576: -63,0 + 577: -64,3 + 578: -65,5 + 579: -64,5 + 580: -70,3 + 581: -70,3 + 582: -69,3 + 583: -70,4 + 584: -71,3 + 585: -74,4 + 586: -76,3 + 587: -76,3 + 588: -74,3 + 589: -77,4 + 590: -79,4 + 591: -79,3 + 592: -79,3 + 593: -78,4 + 594: -78,5 + 595: -56,4 + 596: -56,4 + 597: -58,4 + 598: -57,4 + 599: -57,3 + 600: -55,3 + 601: -54,5 + 602: -53,5 + 603: -51,5 + 604: -48,5 + 605: -49,4 + 606: -46,3 + 607: -47,4 + 608: -42,4 + 609: -41,5 + 610: -44,4 + 611: -40,2 + 612: -40,-3 + 613: -68,10 + 614: -69,10 + 615: -68,9 + 616: -67,8 + 617: -68,8 + 618: -67,9 + 619: -66,11 + 620: -68,13 + 739: -37,22 + 740: -39,21 + 743: -40,21 + 744: -38,25 + 745: -37,24 + 746: -43,21 + 747: -42,20 + 753: -54,30 + 754: -54,28 + 755: -54,21 + 756: -51,20 + 757: -50,20 + 758: -46,21 + 759: -46,20 + 760: -36,21 + 761: -67,20 + 762: -67,21 + 763: -68,21 + 767: -78,21 + 769: -78,15 + 770: -79,17 + 771: -78,17 + 772: -76,20 + 773: -76,19 + 774: -77,19 + 776: -69,20 + 777: -68,21 + 778: -77,13 + 779: -78,13 + 780: -78,12 + 781: -79,12 + 782: -78,15 + 784: -90,18 + 785: -90,16 + 786: -89,16 + 787: -89,17 + 789: -90,23 + 790: -88,23 + 791: -89,28 + 792: -89,27 + 793: -90,26 + 796: -93,26 + 797: -94,24 + 798: -94,23 + 799: -94,27 + 800: -94,28 + 802: -92,26 + 803: -89,18 + 804: -90,16 + 805: -99,21 + 806: -100,21 + 807: -97,19 + 808: -99,19 + 809: -100,19 + 810: -100,20 + 811: -97,21 + 812: -101,22 + 813: -101,24 + 814: -99,25 + 815: -101,27 + 816: -101,27 + 817: -101,26 + 818: -99,27 + 819: -97,29 + 820: -96,26 + 821: -97,26 + 822: -97,24 + 823: -98,24 + 824: -99,24 + 827: -101,18 + 828: -102,18 + 829: -104,18 + 832: -103,14 + 833: -103,13 + 834: -101,12 + 838: -100,12 + 839: -98,12 + 840: -112,13 + 841: -113,14 + 842: -113,16 + 843: -114,18 + 844: -115,18 + 845: -118,20 + 846: -118,21 + 847: -127,21 + 848: -124,20 + 849: -123,20 + 867: -83,16 + 868: -81,12 + 869: -80,8 + 870: -87,9 + 871: -87,3 + 872: -86,2 + 873: -89,4 + 874: -89,9 + 880: -66,17 + 881: -62,17 + 882: -58,16 + 883: -56,16 + 884: -58,17 + 885: -60,18 + 886: -73,14 + 887: -73,11 + 888: -82,10 + 889: -64,17 + 890: -60,16 + 891: -55,17 + 892: -52,16 + 896: -50,14 + 897: -47,13 + 898: -49,16 + 899: -49,17 + 903: -43,18 + 904: -43,16 + 905: -45,16 + 906: -37,17 + 907: -40,18 + 908: -39,16 + 910: -41,17 + 911: -93,2 + 912: -95,7 + 913: -93,10 + 929: -93,14 + 931: -92,16 + 932: -92,12 + 933: -96,14 + 945: -108,13 + 946: -109,15 + 947: -108,15 + 948: -108,10 + 949: -108,6 + 950: -110,5 + 951: -110,0 + 952: -113,-2 + 953: -108,-4 + 954: -108,-14 + 955: -108,-3 + 956: -108,2 + 957: -107,3 + 958: -105,3 + 959: -104,7 + 962: -102,9 + 963: -102,10 + 964: -103,11 + 966: -105,-5 + 967: -102,-5 + 968: -100,-2 + 969: -104,-2 + 970: -99,-5 + 971: -101,-9 + 972: -104,-10 + 973: -105,-9 + 974: -102,-9 + 975: -101,-10 + 976: -113,-5 + 977: -113,-10 + 978: -120,-12 + 979: -121,-14 + 980: -121,-15 + 981: -119,-13 + 982: -118,-15 + 983: -123,-9 + 984: -125,-9 + 985: -123,-4 + 986: -124,-5 + 987: -121,-3 + 988: -120,-2 + 989: -121,3 + 990: -122,4 + 1083: -56,39 + 1245: 23,1 + 1246: 25,2 + 1247: 30,2 + 1248: 39,6 + 1249: 38,2 + 1250: 40,6 + 1254: 4,1 + 1255: 2,2 + 1256: 7,1 + 1257: 4,2 + 1258: 14,1 + 1259: 17,2 + 1316: -41,-3 + 1317: -41,-8 + 1318: -40,-12 + 1319: -41,-13 + 1320: -42,-12 + 1321: -42,-9 + 1322: -41,-7 + 1323: -37,-13 + 1324: -37,-14 + 1325: -33,-12 + 1326: -30,-14 + 1327: -35,-13 + 1328: -28,-12 + 1329: -28,-13 + 1330: -20,-13 + 1331: -23,-12 + 1332: -17,-13 + 1333: -12,-13 + 1334: -6,-14 + 1335: -7,-12 + 1336: -13,-12 + 1337: -1,-14 + 1338: -1,-11 + 1339: 0,-5 + 1340: -4,-6 + 1341: -2,-3 + 1342: -3,2 + 1343: 0,1 + 1344: -4,1 + 1382: -14,3 + 1383: -11,2 + 1384: -9,1 + 1385: -7,1 + 1617: -8,5 + 1619: 6,13 + 1622: 16,11 + 1896: -26,-8 + 2267: 9,22 + 2268: 6,21 + 2269: -5,18 + 2270: 24,23 + 2271: 25,22 + 2272: 18,30 + 2274: 9,33 + 2275: 11,41 + 2332: -8,8 + 2336: -2,16 + 2340: 13,20 + 2343: -2,23 + 2351: -13,24 + 2353: -21,20 + 2354: -22,24 + 2387: -7,46 + 2649: 44,-24 + 2650: 45,-24 + 2651: 46,-23 + 2652: 47,-23 + 2662: 35,-21 + 2663: 35,-20 + 2664: 36,-20 + 2665: 36,-21 + 2666: 35,-20 + 2667: 35,-20 + 2704: 35,-20 + 2705: 35,-20 + 2706: 36,-20 + 2707: 35,-21 + 2708: 35,-21 + 5922: -95,-2 + 5923: -94,-2 + 5924: -91,-2 + 5925: -89,-2 + 5926: -90,-1 + 5927: -95,-1 + 5928: -96,-1 + 5929: -96,3 + 5930: -96,3 + 5931: -96,1 + 5932: -92,2 + 5933: -92,4 + 5934: -93,10 + 5935: -95,10 + 5936: -93,9 + 5937: -94,14 + 5938: -95,14 + 5939: -94,12 + 5940: -92,14 + 5941: -93,16 + 5942: -94,15 + 5943: -92,13 + 5955: -95,9 + 5956: -95,8 + 5957: -95,5 + 5958: -95,2 + 5959: -95,-1 + 5960: -95,0 + 5961: -93,1 + 5962: -93,3 + 5963: -93,6 + 5964: -93,7 + 5965: -90,2 + 5966: -90,3 + 5967: -90,7 + 5968: -90,9 + 5969: -88,9 + 5970: -84,9 + 5971: -84,9 + 5972: -86,10 + 5973: -88,10 + 5974: -86,9 + 5975: -85,9 + 5976: -86,5 + 5977: -86,3 + 5978: -85,3 + 5979: -86,4 + 5980: -86,2 + 5981: -87,2 + 5982: -89,2 + 5983: -90,3 + 5984: -89,5 + 5985: -87,7 + 5986: -85,7 + 5987: -83,8 + 5988: -80,8 + 5989: -78,8 + 5990: -79,9 + 5991: -79,4 + 5992: -76,4 + 5993: -73,3 + 5994: -75,3 + 5995: -75,3 + 5996: -76,5 + 5997: -77,5 + 5998: -89,10 + 5999: -87,10 + 6000: -83,10 + 6001: -87,14 + 6002: -88,13 + 6003: -86,12 + 6004: -85,14 + 6005: -85,15 + 6006: -86,14 + 6007: -86,12 + 6008: -86,14 + 6009: -85,16 + 6518: -6,-42 + 6519: -7,-42 + 6520: -7,-40 + 6521: -2,-40 + 6522: -2,-41 + 6523: -4,-40 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: DirtLight decals: - 2042: -67,40 - 2043: -66,39 - 2044: -62,39 - 2045: -62,37 - 2046: -63,39 - 2047: -62,38 - 2048: -62,39 - 2049: -63,38 - 2050: -60,43 - 2051: -60,41 - 2052: -65,44 - 2053: -65,44 - 2054: -65,43 - 2055: -66,44 - 2058: -61,38 - 2059: -61,33 - 2060: -65,30 - 2061: -67,31 - 2062: -66,30 - 2063: -67,28 - 2064: -67,27 - 2065: -63,25 - 2066: -62,25 - 2067: -66,26 - 2068: -67,26 - 2069: -67,28 - 2070: -65,28 - 2071: -65,28 - 2072: -67,30 - 2073: -66,33 - 2074: -67,34 - 2075: -66,36 - 2076: -63,39 - 2077: -65,41 - 2078: -62,43 - 2079: -64,39 - 2080: -63,41 + 1188: -67,40 + 1189: -62,39 + 1190: -62,37 + 1191: -63,39 + 1192: -62,38 + 1193: -62,39 + 1194: -63,38 + 1195: -65,44 + 1196: -65,44 + 1197: -65,43 + 1199: -65,30 + 1200: -67,31 + 1201: -66,30 + 1202: -67,28 + 1203: -67,27 + 1204: -63,25 + 1205: -66,26 + 1206: -67,26 + 1207: -67,28 + 1208: -65,28 + 1209: -65,28 + 1210: -67,30 + 1211: -67,34 + 1212: -63,39 + 1213: -65,41 + 1214: -62,43 + 1215: -64,39 + 1216: -63,41 - node: cleanable: True color: '#FFFFFF6A' id: DirtMedium decals: - 3405: -3,44 + 2385: -3,44 - node: color: '#FFFFFF85' id: DirtMedium decals: - 3376: -31,28 - 3380: -31,23 - 3381: -30,24 + 2356: -31,28 + 2360: -31,23 + 2361: -30,24 - node: color: '#FFFFFFD3' id: DirtMedium decals: - 3384: -30,33 - 3385: -27,20 + 2364: -30,33 + 2365: -27,20 - node: cleanable: True color: '#FFFFFFD3' id: DirtMedium decals: - 3387: -3,31 + 2367: -3,31 - node: color: '#FFFFFFFF' id: DirtMedium @@ -3246,311 +6030,324 @@ entities: 3: -41,-17 4: -43,-17 18: -44,-11 - 288: 35,6 - 296: 60,13 - 297: 64,10 - 298: 53,14 - 302: 51,5 - 305: 50.272198,-2.761428 - 306: 47.75412,7.2494392 - 307: 42,5 - 312: 36,15 - 314: 32,15 - 1219: -109,-6 - 1220: -110,9 - 1221: -109,15 - 1226: -116,13 - 1227: -117,15 - 1228: -117,-2 + 285: 35,6 + 293: 60,13 + 294: 64,10 + 295: 53,14 + 299: 51,5 + 302: 47.75412,7.2494392 + 303: 42,5 + 308: 36,15 + 310: 32,15 + 687: -109,-6 + 688: -110,9 + 689: -109,15 + 693: -116,13 + 694: -117,15 + 695: -117,-2 + 4602: -95,-8 + 4603: -97,-7 + 4604: -96,-10 + 4605: -91,-10 + 4606: -92,-9 + 4607: -92,-9 + 4608: -92,-7 + 4609: -95,-2 + 4610: -94,0 + 4611: -95,1 + 4612: -95,0 + 4613: -92,-1 + 4614: -92,1 + 4615: -93,3 + 4616: -93,4 + 4617: -93,5 + 4618: -93,8 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 566: -38,0 - 850: -32,7 - 851: -27,8 - 852: -27,4 - 853: -24,2 - 854: -23,6 - 855: -33,9 - 856: -30,14 - 857: -32,17 - 858: -30,9 - 859: -34,17 - 860: -37,2 - 861: -38,4 - 862: -27,1 - 893: -33,15 - 900: -69,11 - 901: -69,8 - 902: -67,11 - 903: -65,8 - 904: -68,12 - 1286: -102,3 - 1304: -38,20 - 1305: -37,21 - 1311: -46,20 - 1327: -70,20 - 1328: -76,21 - 1329: -78,20 - 1338: -75,21 - 1357: -94,26 - 1358: -93,23 - 1394: -102,15 - 1399: -99,11 - 1400: -100,11 - 1413: -130,20 - 1414: -132,21 - 1475: -81,9 - 1476: -75,9 - 1477: -74,13 - 1478: -73,17 - 1479: -67,17 - 1480: -63,16 - 1496: -58,18 - 1501: -48,14 - 1510: -36,17 - 1519: -96,7 - 1520: -96,4 - 1521: -95,-2 - 1522: -94,-5 - 1540: -94,13 - 1541: -95,16 - 1559: -112,4 - 1560: -113,2 - 1561: -111,10 - 1562: -113,9 - 1579: -106,11 - 1618: -131,3 - 1619: -128,-2 - 1620: -124,10 - 1621: -121,11 - 1622: -121,17 - 1623: -126,17 - 1624: -125,15 - 1625: -130,15 - 1626: -132,13 - 1627: -125,14 - 1628: -127,15 - 1629: -122,16 - 1630: -123,10 - 1631: -121,-4 - 1638: -120,-14 - 1639: -112,-12 - 1640: -113,-6 - 1641: -111,-1 - 1642: -114,2 - 1643: -114,3 - 1644: -118,3 - 1645: -116,5 - 1646: -116,6 - 1647: -116,2 - 1648: -117,1 - 1649: -117,4 - 1650: -116,9 - 1651: -117,9 - 1652: -116,-2 - 1653: -115,9 - 1654: -112,12 - 1655: -110,14 - 1656: -110,12 - 1657: -110,17 - 1658: -108,18 - 1659: -109,21 - 1660: -112,20 - 1661: -107,20 - 1662: -108,21 - 1663: -104,20 - 1664: -105,13 - 1665: -105,15 - 1666: -104,-4 - 1667: -102,-5 - 1668: -106,-2 - 1669: -106,-3 - 1670: -106,-5 - 1671: -105,-6 - 1672: -106,-8 - 1673: -106,-10 - 1674: -102,-8 - 1675: -94,5 - 1676: -93,4 - 1772: -58,35 - 1773: -57,36 - 1774: -53,36 - 1775: -52,34 - 1776: -56,40 - 1777: -51,45 - 1778: -53,44 - 1779: -52,40 - 1780: -52,39 - 2118: 38,0 - 2119: 34,2 - 2140: 16,3 - 2151: 11,1 - 2152: 28,3 - 2257: -2,1 - 2258: -1,-9 - 2259: -4,-7 - 2260: -3,-11 - 2269: -3,-17 - 2270: 0,-17 - 2271: 0,-18 - 2272: -1,-13 - 2273: -8,-13 - 2274: -7,-14 - 2275: -12,-12 - 2276: -14,-14 - 2277: -18,-12 - 2278: -23,-13 - 2279: -26,-12 - 2280: -26,-14 - 2281: -31,-13 - 2282: -34,-14 - 2283: -37,-12 - 2284: -38,-12 - 2285: -40,-13 - 2286: -41,-11 - 2287: -40,-8 - 2288: -42,-5 - 2289: -41,-1 - 2290: -42,2 - 2291: -40,1 - 2303: -20,2 - 2304: -13,2 - 2305: -8,1 - 2306: -7,3 - 2617: 0,11 - 2619: 10,11 - 2620: 14,13 - 3355: 0,21 - 3365: 4,25 - 3369: 17,26 - 3370: 10,27 - 3372: -17,21 - 3375: -25,21 - 3611: 47,-27 - 3613: 49,-29 - 3614: 47,-32 - 3615: 43,-29 - 3616: 44,-25 - 3617: 44,-23 - 3619: 47,-23 - 3621: 50,-24 - 3622: 45,-20 - 3623: 46,-19 - 3655: 47,-28 - 3657: 47,-27 - 3659: 48,-26 - 3661: 49,-25 - 3662: 48,-26 - 3663: 46,-26 - 3664: 43,-29 - 3665: 43,-30 - 3666: 45,-31 - 3667: 43,-29 - 3668: 43,-28 - 3669: 44,-27 - 3670: 44,-25 - 3690: 35,-21 - 3691: 35,-20 - 3693: 36,-20 - 3694: 35,-21 - 3696: 35,-20 - 3697: 36,-20 - 3699: 36,-21 + 361: -38,0 + 437: -32,7 + 438: -27,8 + 439: -27,4 + 440: -24,2 + 441: -23,6 + 442: -33,9 + 443: -30,14 + 444: -32,17 + 445: -30,9 + 446: -34,17 + 447: -37,2 + 448: -38,4 + 449: -27,1 + 480: -33,15 + 487: -69,11 + 488: -69,8 + 489: -67,11 + 490: -65,8 + 491: -68,12 + 723: -102,3 + 741: -38,20 + 742: -37,21 + 748: -46,20 + 764: -70,20 + 765: -76,21 + 766: -78,20 + 775: -75,21 + 794: -94,26 + 795: -93,23 + 831: -102,15 + 836: -99,11 + 837: -100,11 + 850: -130,20 + 851: -132,21 + 875: -75,9 + 876: -74,13 + 877: -73,17 + 878: -67,17 + 879: -63,16 + 895: -58,18 + 900: -48,14 + 909: -36,17 + 914: -96,7 + 926: -94,13 + 927: -95,16 + 941: -112,4 + 942: -113,2 + 943: -111,10 + 944: -113,9 + 960: -106,11 + 991: -131,3 + 992: -128,-2 + 993: -124,10 + 994: -121,11 + 995: -121,17 + 996: -126,17 + 997: -125,15 + 998: -130,15 + 999: -132,13 + 1000: -125,14 + 1001: -127,15 + 1002: -122,16 + 1003: -123,10 + 1004: -121,-4 + 1010: -120,-14 + 1011: -113,-6 + 1012: -111,-1 + 1013: -114,2 + 1014: -114,3 + 1015: -118,3 + 1016: -116,5 + 1017: -116,6 + 1018: -116,2 + 1019: -117,1 + 1020: -117,4 + 1021: -116,9 + 1022: -117,9 + 1023: -116,-2 + 1024: -115,9 + 1025: -112,12 + 1026: -110,14 + 1027: -110,12 + 1028: -110,17 + 1029: -108,18 + 1030: -109,21 + 1031: -112,20 + 1032: -107,20 + 1033: -108,21 + 1034: -104,20 + 1035: -105,13 + 1036: -105,15 + 1037: -104,-4 + 1038: -102,-5 + 1039: -106,-2 + 1040: -106,-3 + 1041: -106,-5 + 1042: -105,-6 + 1043: -106,-8 + 1044: -106,-10 + 1045: -102,-8 + 1046: -94,5 + 1047: -93,4 + 1244: 34,2 + 1260: 11,1 + 1347: -2,1 + 1348: -1,-9 + 1349: -4,-7 + 1350: -3,-11 + 1358: -3,-17 + 1359: -8,-13 + 1360: -12,-12 + 1361: -18,-12 + 1362: -23,-13 + 1363: -26,-14 + 1364: -31,-13 + 1365: -34,-14 + 1366: -37,-12 + 1367: -38,-12 + 1368: -40,-13 + 1369: -41,-11 + 1370: -40,-8 + 1371: -42,-5 + 1372: -41,-1 + 1373: -40,1 + 1380: -13,2 + 1381: -8,1 + 1618: 0,11 + 1620: 10,11 + 1621: 14,13 + 2335: 0,21 + 2345: 4,25 + 2349: 17,26 + 2350: 10,27 + 2352: -17,21 + 2355: -25,21 + 2589: 47,-27 + 2591: 49,-29 + 2592: 47,-32 + 2593: 43,-29 + 2594: 44,-25 + 2595: 44,-23 + 2597: 47,-23 + 2599: 50,-24 + 2600: 45,-20 + 2601: 46,-19 + 2633: 47,-28 + 2635: 47,-27 + 2637: 48,-26 + 2639: 49,-25 + 2640: 48,-26 + 2641: 46,-26 + 2642: 43,-29 + 2643: 43,-30 + 2644: 45,-31 + 2645: 43,-29 + 2646: 43,-28 + 2647: 44,-27 + 2648: 44,-25 + 2668: 35,-21 + 2669: 35,-20 + 2671: 36,-20 + 2672: 35,-21 + 2674: 35,-20 + 2675: 36,-20 + 2677: 36,-21 + 3102: 47,-10 + 3103: 46,-10 + 3104: 44,-10 + 3105: 43,-10 + 3106: 47,-9 + 6010: -87,13 + 6011: -88,13 + 6012: -88,12 + 6013: -85,13 + 6014: -85,14 + 6015: -86,16 + 6016: -86,15 + 6032: -104,-3 + 6033: -106,-5 + 6034: -104,-3 + 6035: -103,-2 + 6036: -101,-3 + 6037: -101,-5 + 6038: -106,-4 + 6039: -108,-6 + 6040: -109,-5 + 6041: -108,-1 + 6042: -109,2 + 6043: -111,4 + 6044: -109,6 + 6045: -105,5 + 6046: -100,4 + 6047: -99,4 + 6048: -100,3 + 6049: -103,4 + 6050: -100,3 + 6051: -100,6 + 6052: -102,8 + 6053: -104,8 + 6054: -103,8 + 6055: -105,8 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: DirtMedium decals: - 2039: -65,39 - 2040: -65,38 - 2041: -65,39 - 2056: -66,43 - 2057: -65,43 - 2081: -65,29 - 2082: -66,30 - 2083: -66,28 - 2084: -68,29 - 2085: -67,31 - 2086: -67,33 - 2087: -67,37 - 2088: -64,38 - 2089: -62,38 - 2090: -68,39 - 2091: -67,39 - 2092: -67,42 - 2093: -66,44 - 2094: -64,44 - 2095: -61,43 - 2096: -61,39 - 2097: -67,29 - 2098: -62,30 - 2099: -63,30 - 2100: -63,31 - 2101: -64,31 - 2102: -64,30 - 2103: -64,30 - 2104: -63,30 - 2105: -64,29 - 2106: -61,31 - 2107: -60,32 - 2108: -84,26 - 2109: -85,29 - 2110: -86,31 - 2111: -84,38 - 2112: -85,39 - 2113: -85,44 - 2114: -84,35 - 2115: -84,32 - 2116: -84,26 - 2117: -85,22 + 1186: -65,39 + 1187: -65,39 + 1198: -65,43 + 1217: -65,29 + 1218: -66,30 + 1219: -68,29 + 1220: -67,31 + 1221: -67,33 + 1222: -67,37 + 1223: -64,38 + 1224: -62,38 + 1225: -68,39 + 1226: -67,39 + 1227: -67,42 + 1228: -61,43 + 1229: -67,29 + 1230: -62,30 + 1231: -63,31 + 1232: -64,31 + 1233: -64,29 + 1234: -84,26 + 1235: -85,29 + 1236: -86,31 + 1237: -84,38 + 1238: -85,39 + 1239: -85,44 + 1240: -84,35 + 1241: -84,32 + 1242: -84,26 + 1243: -85,22 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2352: 24,41 + 1413: 24,41 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Flowersbr2 decals: - 2029: -50.979973,47.905445 - 2030: -50.979973,46.967945 + 1184: -50.979973,47.905445 + 1185: -50.979973,46.967945 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2351: 25,41 + 1412: 25,41 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2353: 25,41 + 1414: 25,41 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Flowerspv1 decals: - 2025: -50.886223,48.124195 - 2026: -50.995598,47.749195 - 2027: -51.011223,47.32732 - 2028: -50.917473,46.76482 + 1180: -50.886223,48.124195 + 1181: -50.995598,47.749195 + 1182: -51.011223,47.32732 + 1183: -50.917473,46.76482 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 2350: 24,41 + 1411: 24,41 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 336: -6.79249,-7.3287086 - 2354: 25,41 + 1415: 25,41 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -3575,348 +6372,256 @@ entities: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 2341: 26,18 - 2342: 26,17 - 2343: 26,16 - 2344: 25,17 - 2345: 27,17 - 2820: 0,12 - 2821: 1,12 - 2834: -1,12 - 2835: -2,12 - 2836: 2,12 - 2837: 3,12 + 1402: 26,18 + 1403: 26,17 + 1404: 26,16 + 1405: 25,17 + 1406: 27,17 + 1819: 0,12 + 1820: 1,12 + 1833: -1,12 + 1834: -2,12 + 1835: 2,12 + 1836: 3,12 + - node: + color: '#52B4E9A5' + id: FullTileOverlayGreyscale + decals: + 5206: 12,11 + 5207: 12,12 + 5208: 12,13 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 488: -47,-10 - 489: -47,-11 - 516: -64,-4 - 517: -63,-4 - 518: -67,-4 - 521: -60,-4 + 355: -64,-4 + 356: -63,-4 + 357: -67,-4 + 358: -60,-4 - node: - color: '#DE3A3A96' + color: '#FFFFFFFF' id: FullTileOverlayGreyscale decals: - 574: -44,-2 - 665: -86,11 - 712: -62,8 + 331: -33,-9 - node: color: '#FFFFFFFF' - id: FullTileOverlayGreyscale + id: Grassc3 decals: - 335: -33,-9 + 4459: -91,-15 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 4458: -92,-15 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 4462: -80,-13 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 4463: -80,-12 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 4461: -79,-13 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Grasse2 decals: - 2022: -50.964348,47.92107 - 2023: -50.933098,47.67107 - 2024: -51.026848,46.98357 + 1177: -50.964348,47.92107 + 1178: -50.933098,47.67107 + 1179: -51.026848,46.98357 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 4460: -79,-12 - node: color: '#9FED5896' id: GrayConcreteTrimCornerNe decals: - 3710: 43,-29 + 2688: 43,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 4030: 36,-7 - 4105: 27,-2 - 4124: 42,-5 + 2953: 36,-7 + 2990: 27,-2 - node: color: '#9FED5896' id: GrayConcreteTrimCornerNw decals: - 3713: 40,-29 + 2691: 40,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 4029: 35,-7 - 4033: 31,-10 - 4104: 26,-2 - 4125: 41,-5 + 2952: 35,-7 + 2956: 31,-10 + 2989: 26,-2 - node: color: '#9C2020FF' id: GrayConcreteTrimCornerSe decals: - 3870: 22,-6 - 4050: 35,-10 + 2973: 35,-10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 4031: 36,-11 - 4106: 27,-6 - 4126: 42,-8 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimCornerSw - decals: - 4081: 13,-10 + 2954: 36,-11 + 2991: 27,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 4032: 31,-11 - 4107: 26,-6 - 4127: 41,-8 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndE - decals: - 4066: 27,-10 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndN - decals: - 3869: 22,-3 - 4065: 13,-7 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndW - decals: - 3882: 18,-6 + 2955: 31,-11 + 2992: 26,-6 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerNe decals: - 4061: 31,-11 - 4099: 13,-10 - 4122: 26,-6 - 4137: 41,-8 - 4153: 40,-9 + 2984: 31,-11 + 3007: 26,-6 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerNw decals: - 3878: 22,-6 - 4060: 36,-11 - 4123: 27,-6 - 4138: 42,-8 - 4154: 43,-9 + 2983: 36,-11 + 3008: 27,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 4046: 35,-10 + 2969: 35,-10 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerSe decals: - 4063: 31,-10 - 4064: 35,-7 - 4121: 26,-2 - 4140: 41,-5 - 4156: 40,-4 + 2986: 31,-10 + 2987: 35,-7 + 3006: 26,-2 - node: color: '#9FED5896' id: GrayConcreteTrimInnerSe decals: - 3740: 41,-30 + 2718: 41,-30 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerSw decals: - 4062: 36,-7 - 4120: 27,-2 - 4139: 42,-5 - 4155: 43,-4 + 2985: 36,-7 + 3005: 27,-2 - node: color: '#9FED5896' id: GrayConcreteTrimInnerSw decals: - 3739: 42,-30 + 2717: 42,-30 - node: color: '#9C2020FF' id: GrayConcreteTrimLineE decals: - 3874: 22,-5 - 3875: 22,-4 - 4014: 39,-19 - 4015: 39,-18 - 4016: 39,-17 - 4017: 39,-16 - 4018: 39,-15 - 4019: 39,-14 - 4051: 35,-9 - 4052: 35,-8 - 4082: 13,-9 - 4083: 13,-8 - 4117: 26,-5 - 4118: 26,-4 - 4119: 26,-3 - 4135: 41,-7 - 4136: 41,-6 - 4141: 40,-8 - 4142: 40,-7 - 4143: 40,-6 - 4144: 40,-5 + 2974: 35,-9 + 2975: 35,-8 + 3002: 26,-5 + 3003: 26,-4 + 3004: 26,-3 - node: color: '#9FED5896' id: GrayConcreteTrimLineE decals: - 3679: 43,-34 - 3680: 43,-33 - 3681: 43,-31 - 3682: 43,-32 - 3683: 43,-30 - 3731: 41,-31 - 3732: 41,-32 - 3733: 41,-33 - 3734: 41,-34 + 2657: 43,-34 + 2658: 43,-33 + 2659: 43,-31 + 2660: 43,-32 + 2661: 43,-30 + 2709: 41,-31 + 2710: 41,-32 + 2711: 41,-33 + 2712: 41,-34 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 4039: 36,-9 - 4040: 36,-8 - 4041: 36,-10 - 4108: 27,-5 - 4109: 27,-4 - 4110: 27,-3 - 4128: 42,-7 - 4129: 42,-6 + 2962: 36,-9 + 2963: 36,-8 + 2964: 36,-10 + 2993: 27,-5 + 2994: 27,-4 + 2995: 27,-3 - node: color: '#9C2020FF' id: GrayConcreteTrimLineN decals: - 3871: 19,-6 - 3872: 20,-6 - 3873: 21,-6 - 4056: 32,-11 - 4057: 33,-11 - 4058: 34,-11 - 4059: 35,-11 - 4086: 14,-10 - 4087: 15,-10 - 4088: 16,-10 - 4089: 17,-10 - 4090: 18,-10 - 4091: 19,-10 - 4092: 20,-10 - 4093: 21,-10 - 4094: 22,-10 - 4095: 23,-10 - 4096: 24,-10 - 4097: 25,-10 - 4098: 26,-10 - 4103: 42,-20 - 4151: 41,-9 - 4152: 42,-9 + 2979: 32,-11 + 2980: 33,-11 + 2981: 34,-11 + 2982: 35,-11 - node: color: '#9FED5896' id: GrayConcreteTrimLineN decals: - 3717: 41,-29 - 3718: 42,-29 + 2695: 41,-29 + 2696: 42,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 4034: 32,-10 - 4035: 33,-10 - 4036: 34,-10 + 2957: 32,-10 + 2958: 33,-10 + 2959: 34,-10 - node: color: '#9C2020FF' id: GrayConcreteTrimLineS decals: - 3879: 21,-6 - 3880: 20,-6 - 3881: 19,-6 - 4047: 32,-10 - 4048: 33,-10 - 4049: 34,-10 - 4067: 26,-10 - 4068: 25,-10 - 4069: 24,-10 - 4070: 23,-10 - 4071: 22,-10 - 4072: 21,-10 - 4073: 20,-10 - 4074: 19,-10 - 4075: 18,-10 - 4076: 17,-10 - 4077: 16,-10 - 4078: 16,-10 - 4079: 15,-10 - 4080: 14,-10 - 4102: 42,-20 - 4145: 41,-4 - 4146: 42,-4 + 2970: 32,-10 + 2971: 33,-10 + 2972: 34,-10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 4042: 35,-11 - 4043: 33,-11 - 4044: 32,-11 - 4045: 34,-11 + 2965: 35,-11 + 2966: 33,-11 + 2967: 32,-11 + 2968: 34,-11 - node: color: '#9C2020FF' id: GrayConcreteTrimLineW decals: - 3876: 22,-4 - 3877: 22,-5 - 4020: 39,-19 - 4021: 39,-18 - 4022: 39,-17 - 4023: 39,-16 - 4024: 39,-14 - 4025: 39,-15 - 4053: 36,-8 - 4054: 36,-9 - 4055: 36,-10 - 4084: 13,-8 - 4085: 13,-9 - 4114: 27,-5 - 4115: 27,-4 - 4116: 27,-3 - 4132: 42,-7 - 4133: 42,-7 - 4134: 42,-6 - 4147: 43,-5 - 4148: 43,-6 - 4149: 43,-7 - 4150: 43,-8 + 2976: 36,-8 + 2977: 36,-9 + 2978: 36,-10 + 2999: 27,-5 + 3000: 27,-4 + 3001: 27,-3 - node: color: '#9FED5896' id: GrayConcreteTrimLineW decals: - 3692: 40,-34 - 3695: 40,-33 - 3698: 40,-32 - 3700: 40,-31 - 3701: 40,-30 - 3735: 42,-34 - 3736: 42,-33 - 3737: 42,-32 - 3738: 42,-31 + 2670: 40,-34 + 2673: 40,-33 + 2676: 40,-32 + 2678: 40,-31 + 2679: 40,-30 + 2713: 42,-34 + 2714: 42,-33 + 2715: 42,-32 + 2716: 42,-31 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 4037: 35,-9 - 4038: 35,-8 - 4111: 26,-5 - 4112: 26,-4 - 4113: 26,-3 - 4130: 41,-7 - 4131: 41,-6 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale - decals: - 587: -95,-8 - 588: -94,-8 - 589: -93,-8 - 1429: -92,-8 + 2960: 35,-9 + 2961: 35,-8 + 2996: 26,-5 + 2997: 26,-4 + 2998: 26,-3 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3942,169 +6647,70 @@ entities: 239: 36,16 240: 34,16 241: 32,16 - - node: - cleanable: True - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 1965: -56,45 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2649: -1,13 - 2650: 0,13 - 2651: 1,13 - 2652: 2,13 - 2662: 6,14 - 2663: 8,14 - 2664: 9,14 - 2665: 10,14 - 2666: 7,14 - 2676: 14,15 - 2677: 15,15 - 2703: 25,20 - 2704: 26,20 - 2705: 27,20 - 2706: 31,20 - 2707: 32,20 - 2708: 33,20 - 2850: -2,13 - 2851: 3,13 - 3047: 34,20 - 3162: 7,24 - 3163: 8,24 - 3164: 9,24 - 3165: 10,24 - 3220: -6,21 + 1648: -1,13 + 1649: 0,13 + 1650: 1,13 + 1651: 2,13 + 1661: 6,14 + 1662: 8,14 + 1663: 9,14 + 1664: 10,14 + 1665: 7,14 + 1675: 14,15 + 1676: 15,15 + 1702: 25,20 + 1703: 26,20 + 1704: 27,20 + 1705: 31,20 + 1706: 32,20 + 1707: 33,20 + 1849: -2,13 + 1850: 3,13 + 2034: 34,20 + 2143: 7,24 + 2144: 8,24 + 2145: 9,24 + 2146: 10,24 + 2201: -6,21 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale decals: - 2962: -11,15 - 3021: 24,32 + 1949: -11,15 + 2008: 24,32 - node: color: '#96DAFFFF' id: HalfTileOverlayGreyscale decals: - 3854: 19,15 - 3855: 20,15 - 3856: 21,15 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 433: -67,-5 - 434: -66,-5 - 435: -65,-5 - 436: -64,-5 - 437: -63,-5 - 438: -62,-5 - 439: -61,-5 - 440: -60,-5 - 481: -53,-10 - 482: -52,-10 - 483: -51,-10 - 484: -50,-10 - 485: -50,-10 - 486: -49,-10 - 487: -48,-10 - 502: -66,1 - 503: -64,1 - 504: -62,1 - 505: -60,1 - 506: -67,1 - 507: -65,1 - 508: -63,1 - 509: -61,1 - 533: -71,-10 - 534: -70,-16 - 535: -72,-16 - 536: -73,-16 - 537: -75,-16 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 612: -8,-21 - 613: -7,-21 - 614: -6,-21 - 618: -4,-25 - 619: -2,-25 - 620: 0,-25 - 621: 1,-25 - 622: 2,-25 - 623: 3,-25 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 2409: -2,-20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 553: -20,9 - 554: -19,9 - 570: -45,1 - 670: -88,14 - 671: -87,14 - 720: -60,10 - 729: 8,-9 - 753: -63,22 - 754: -62,22 - 755: -61,22 - 1056: 3,-11 - 1057: 4,-11 - 1071: 4,-5 - 1072: 5,-5 - 1073: 6,-5 - 1074: 7,-5 - 1103: 11,-6 - 1104: 12,-6 - 1105: 13,-6 - 1106: 14,-6 - 1111: 16,-9 - 1112: 17,-9 - 1113: 14,-1 - 1114: 13,-1 - 1115: 12,-1 - 1116: 11,-1 - 1117: 11,-1 - 1118: 12,-1 - 1119: 13,-1 - 1120: 14,-1 - 1751: -57,36 - 1752: -52,41 - 1753: -52,45 - 3430: 44,-12 - 3431: 45,-12 - 3432: 46,-12 - 3433: 47,-12 - 3434: 48,-12 - 3435: 49,-12 - 3436: 50,-12 - 3437: 51,-12 - 3438: 52,-12 - 3868: 43,-12 + 2830: 19,15 + 2831: 20,15 + 2832: 21,15 - node: - cleanable: True color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1960: -56,43 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale180 - decals: - 586: -92,-6 - 1200: -91,-3 - 1201: -90,-3 - 1202: -89,-3 - 1423: -94,-3 - 1424: -94,-6 - 1428: -92,-12 + 624: 14,-1 + 625: 13,-1 + 626: 12,-1 + 627: 11,-1 + 628: 11,-1 + 629: 12,-1 + 630: 13,-1 + 631: 14,-1 + 2410: 44,-12 + 2411: 45,-12 + 2412: 46,-12 + 2413: 47,-12 + 2414: 48,-12 + 2415: 49,-12 + 2416: 50,-12 + 2417: 51,-12 + 2418: 52,-12 + 2844: 43,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -4127,155 +6733,71 @@ entities: 247: 32,11 248: 33,11 249: 37,11 - - node: - cleanable: True - color: '#3AB3DAFF' - id: HalfTileOverlayGreyscale180 - decals: - 2601: -113,-14 - 2602: -114,-14 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 2640: -7,5 - 2645: -1,11 - 2646: 0,11 - 2647: 1,11 - 2648: 2,11 - 2657: 6,11 - 2658: 7,11 - 2659: 8,11 - 2660: 9,11 - 2661: 10,11 - 2678: 14,11 - 2679: 15,11 - 2684: 25,11 - 2685: 26,11 - 2686: 27,11 - 2710: 31,18 - 2711: 32,18 - 2712: 33,18 - 2852: -2,11 - 2853: 3,11 - 2905: -5,11 - 3048: 34,18 - 3166: 7,20 - 3167: 8,20 - 3168: 9,20 - 3169: 10,20 + 1639: -7,5 + 1644: -1,11 + 1645: 0,11 + 1646: 1,11 + 1647: 2,11 + 1656: 6,11 + 1657: 7,11 + 1658: 8,11 + 1659: 9,11 + 1660: 10,11 + 1677: 14,11 + 1678: 15,11 + 1683: 25,11 + 1684: 26,11 + 1685: 27,11 + 1709: 31,18 + 1710: 32,18 + 1711: 33,18 + 1851: -2,11 + 1852: 3,11 + 1894: -5,11 + 2035: 34,18 + 2147: 7,20 + 2148: 8,20 + 2149: 9,20 + 2150: 10,20 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale180 decals: - 2963: -12,11 - 2964: -11,11 + 1950: -12,11 + 1951: -11,11 - node: color: '#96DAFFFF' id: HalfTileOverlayGreyscale180 decals: - 3857: 19,14 - 3858: 20,14 - 3859: 21,14 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 465: -67,-18 - 466: -65,-18 - 467: -66,-18 - 468: -62,-18 - 471: -55,-11 - 472: -56,-11 - 497: -52,-18 - 510: -66,-3 - 511: -65,-3 - 512: -62,-3 - 513: -61,-3 - 514: -64,-3 - 515: -63,-3 - 519: -67,-3 - 520: -60,-3 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 606: -4,-26 - 607: -5,-26 - 608: -6,-26 - 610: -9,-24 - 624: 3,-26 - 625: 2,-26 - 626: 1,-26 - 627: 0,-26 - 672: -7,-26 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 2410: -2,-23 + 2833: 19,14 + 2834: 20,14 + 2835: 21,14 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 546: -20,5 - 547: -19,5 - 548: -18,5 - 573: -45,-1 - 667: -88,12 - 668: -87,12 - 669: -86,12 - 713: -60,7 - 737: 8,-13 - 746: -63,20 - 747: -62,20 - 748: -61,20 - 1062: 3,-14 - 1063: 4,-14 - 1064: 4,-9 - 1081: 7,-7 - 1082: 6,-7 - 1094: 16,-11 - 1095: 15,-11 - 1096: 13,-11 - 1097: 12,-11 - 1098: 14,-11 - 1131: 11,-4 - 1132: 12,-4 - 1133: 13,-4 - 1134: 14,-4 - 1135: 14,-4 - 1136: 13,-4 - 1137: 12,-4 - 1138: 11,-4 - 1754: -56,38 - 1755: -52,39 - 1756: -52,43 - 1757: -53,34 - 1758: -57,32 - 3439: 43,-17 - 3440: 44,-17 - 3441: 45,-17 - 3442: 46,-17 - 3443: 48,-17 - 3444: 47,-17 - 3445: 49,-17 - 3446: 50,-17 - 3447: 51,-17 - 3448: 52,-17 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale270 - decals: - 593: -97,-5 - 1205: -97,-4 - 1206: -97,-3 - 1207: -97,-2 - 1208: -97,-1 - 1209: -97,0 - 1234: -106,-19 - 1235: -106,-14 + 642: 11,-4 + 643: 12,-4 + 644: 13,-4 + 645: 14,-4 + 646: 14,-4 + 647: 13,-4 + 648: 12,-4 + 649: 11,-4 + 2419: 43,-17 + 2420: 44,-17 + 2421: 45,-17 + 2422: 46,-17 + 2423: 48,-17 + 2424: 47,-17 + 2425: 49,-17 + 2426: 50,-17 + 2427: 51,-17 + 2428: 52,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -4309,184 +6831,90 @@ entities: 244: 30,13 245: 30,12 252: 34,10 - - node: - cleanable: True - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1966: -57,44 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 2626: -8,6 - 2627: -8,7 - 2628: -8,8 - 2629: -8,9 - 2630: -8,10 - 2631: -8,12 - 2632: -8,13 - 2669: 5,12 - 2670: 5,13 - 2671: 13,13 - 2672: 13,14 - 2695: 24,12 - 2696: 24,13 - 2697: 24,14 - 2698: 24,15 - 2699: 24,16 - 2700: 24,17 - 2701: 24,18 - 2702: 24,19 - 2709: 30,19 - 2769: 14,13 - 2771: 13,12 - 2772: 15,13 - 2783: 14,13 - 2784: 15,13 - 2880: -8,14 - 2919: -8,11 - 3155: 13,23 - 3156: 13,22 - 3157: 13,21 - 3158: 13,20 - 3159: 13,19 - 3160: 13,18 - 3161: 13,17 - 3173: 6,23 - 3174: 6,22 - 3175: 6,21 - 3214: -7,16 - 3215: -7,17 - 3216: -7,18 - 3217: -7,19 - 3218: -7,20 + 1625: -8,6 + 1626: -8,7 + 1627: -8,8 + 1628: -8,9 + 1629: -8,10 + 1630: -8,12 + 1631: -8,13 + 1668: 5,12 + 1669: 5,13 + 1670: 13,13 + 1671: 13,14 + 1694: 24,12 + 1695: 24,13 + 1696: 24,14 + 1697: 24,15 + 1698: 24,16 + 1699: 24,17 + 1700: 24,18 + 1701: 24,19 + 1708: 30,19 + 1768: 14,13 + 1770: 13,12 + 1771: 15,13 + 1782: 14,13 + 1783: 15,13 + 1869: -8,14 + 1908: -8,11 + 2136: 13,23 + 2137: 13,22 + 2138: 13,21 + 2139: 13,20 + 2140: 13,19 + 2141: 13,18 + 2142: 13,17 + 2154: 6,23 + 2155: 6,22 + 2156: 6,21 + 2195: -7,16 + 2196: -7,17 + 2197: -7,18 + 2198: -7,19 + 2199: -7,20 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale270 decals: - 2956: -13,12 - 2957: -13,13 - 2958: -13,14 - 3013: 23,29 - 3014: 23,28 - 3015: 23,30 - 3016: 23,31 + 1943: -13,12 + 1944: -13,13 + 1945: -13,14 + 2000: 23,29 + 2001: 23,28 + 2002: 23,30 + 2003: 23,31 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 455: -68,-6 - 456: -68,-8 - 457: -68,-9 - 458: -68,-10 - 459: -68,-12 - 460: -68,-13 - 461: -68,-14 - 462: -68,-15 - 463: -68,-16 - 464: -68,-17 - 474: -57,-10 - 475: -57,-9 - 476: -57,-8 - 491: -53,-12 - 492: -53,-13 - 493: -53,-15 - 494: -53,-16 - 530: -72,-11 - 531: -72,-12 - 532: -72,-13 - 4257: -71,-7 + 354: -53,-15 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 597: -3,-27 - 598: -3,-28 - 599: -3,-29 - 600: -3,-30 - 609: -8,-25 - 611: -10,-22 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 2407: -3,-22 - 2408: -3,-21 + 365: -3,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 543: -21,6 - 544: -21,7 - 545: -21,8 - 571: -46,0 - 673: -89,13 - 718: -61,8 - 719: -61,9 - 734: 7,-10 - 735: 7,-11 - 736: 7,-12 - 757: -64,21 - 825: -86,16 - 826: -86,15 - 1058: 2,-12 - 1059: 2,-13 - 1065: 3,-8 - 1066: 3,-7 - 1067: 3,-6 - 1079: 7,-2 - 1099: 11,-10 - 1100: 11,-9 - 1101: 11,-8 - 1139: 10,-3 - 1140: 10,-2 - 1141: 10,-2 - 1142: 10,-3 - 1741: -58,35 - 1742: -58,34 - 1743: -58,33 - 1744: -54,35 - 1745: -53,40 - 1746: -57,39 - 1747: -57,40 - 1748: -57,42 - 1749: -57,41 - 1750: -53,44 - 3449: 42,-16 - 3450: 42,-15 - 3451: 42,-14 - 3867: 42,-13 + 650: 10,-3 + 651: 10,-2 + 652: 10,-2 + 653: 10,-3 + 2429: 42,-16 + 2430: 42,-15 + 2431: 42,-14 + 2843: 42,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 1254: -96,9 - 1255: -96,6 - 1256: -96,5 - 1257: -96,4 - 1258: -96,3 - 1259: -96,1 - 1260: -96,2 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale90 - decals: - 1197: -92,-4 - 1210: -94,-5 - 1211: -94,-4 - 1212: -95,-4 - 1236: -105,-19 - 1237: -105,-18 - 1238: -105,-17 - 1239: -105,-16 - 1240: -105,-14 - 1241: -105,-15 - 1425: -95,-5 - 1430: -91,-9 - 1431: -91,-10 - 1432: -91,-11 + 697: -96,6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -4508,305 +6936,195 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 2633: -4,13 - 2634: -4,12 - 2635: -6,10 - 2636: -6,9 - 2637: -6,8 - 2638: -6,7 - 2639: -6,6 - 2667: 11,12 - 2668: 11,13 - 2673: 16,12 - 2674: 16,13 - 2675: 16,14 - 2687: 28,12 - 2688: 28,13 - 2689: 28,14 - 2690: 28,15 - 2691: 28,16 - 2692: 28,17 - 2693: 28,18 - 2694: 28,19 - 2770: 15,13 - 2773: 14,13 - 2782: 15,13 - 2785: 14,13 - 3049: 35,19 - 3148: 14,17 - 3149: 14,18 - 3150: 14,19 - 3151: 14,20 - 3152: 14,21 - 3153: 14,23 - 3154: 14,22 - 3170: 11,21 - 3171: 11,22 - 3172: 11,23 - 3211: -5,17 - 3212: -5,19 - 3213: -5,20 - 3219: -5,18 - 3225: -5,16 + 1632: -4,13 + 1633: -4,12 + 1634: -6,10 + 1635: -6,9 + 1636: -6,8 + 1637: -6,7 + 1638: -6,6 + 1666: 11,12 + 1667: 11,13 + 1672: 16,12 + 1673: 16,13 + 1674: 16,14 + 1686: 28,12 + 1687: 28,13 + 1688: 28,14 + 1689: 28,15 + 1690: 28,16 + 1691: 28,17 + 1692: 28,18 + 1693: 28,19 + 1769: 15,13 + 1772: 14,13 + 1781: 15,13 + 1784: 14,13 + 2036: 35,19 + 2129: 14,17 + 2130: 14,18 + 2131: 14,19 + 2132: 14,20 + 2133: 14,21 + 2134: 14,23 + 2135: 14,22 + 2151: 11,21 + 2152: 11,22 + 2153: 11,23 + 2192: -5,17 + 2193: -5,19 + 2194: -5,20 + 2200: -5,18 + 2206: -5,16 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale90 decals: - 2959: -10,12 - 2960: -10,13 - 2961: -10,14 - 3017: 25,29 - 3018: 25,30 - 3019: 25,31 - 3020: 25,28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 444: -59,-17 - 445: -59,-16 - 446: -59,-14 - 447: -59,-15 - 448: -59,-12 - 449: -59,-13 - 450: -59,-11 - 451: -59,-10 - 452: -59,-9 - 453: -59,-8 - 454: -59,-6 - 477: -55,-7 - 478: -55,-8 - 479: -55,-9 - 528: -70,-12 - 529: -70,-13 + 1946: -10,12 + 1947: -10,13 + 1948: -10,14 + 2004: 25,29 + 2005: 25,30 + 2006: 25,31 + 2007: 25,28 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 601: -1,-31 - 602: -1,-30 - 603: -1,-29 - 604: -1,-28 - 605: -1,-27 - 615: -5,-22 - 616: -5,-23 - 617: -5,-24 + 366: -1,-27 - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 2405: -1,-22 - 2406: -1,-21 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 549: -17,6 - 550: -17,7 - 551: -17,8 - 552: -17,9 - 572: -44,0 - 666: -85,13 - 714: -59,8 - 715: -59,9 - 738: 9,-12 - 739: 9,-11 - 740: 9,-10 - 756: -60,21 - 822: -85,16 - 823: -85,15 - 824: -85,14 - 1060: 5,-12 - 1061: 5,-13 - 1078: 8,-2 - 1080: 8,-6 - 1084: 5,-8 - 1093: 19,-14 - 1109: 15,-8 - 1110: 15,-7 - 1121: 15,-3 - 1122: 15,-2 - 1123: 15,-2 - 1124: 15,-3 - 1730: -52,36 - 1731: -52,35 - 1732: -56,35 - 1733: -56,34 - 1734: -56,33 - 1735: -55,39 - 1736: -55,40 - 1737: -55,41 - 1738: -55,42 - 1739: -51,44 - 1740: -51,40 - - node: - cleanable: True color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1962: -55,44 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 1244: -92,0 - 1245: -92,1 - 1246: -92,2 - 1247: -92,3 - 1248: -92,4 - 1249: -92,5 - 1250: -92,6 - 1251: -92,9 - 1252: -92,7 - 1253: -92,8 + 429: -85,15 + 632: 15,-3 + 633: 15,-2 + 634: 15,-2 + 635: 15,-3 + 1081: -52,35 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 344: -64,-17 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 579: -44,-1 - 681: -85,13 - 744: 9,-10 - 1156: 8,-6 - 1157: 8,-7 + 338: -64,-17 - node: color: '#FFFFFFFF' id: LoadingArea decals: 213: -2,-37 - 343: -60,-17 - 728: -60,10 - 1148: 3,-11 - 1149: 5,-11 - 2605: -7,-42 - 2606: 1,-42 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1150: 2,-11 - 1151: 2,-13 - 1154: 10,-6 - 1155: 10,-7 - 1765: -58,33 - 1766: -58,35 + 337: -60,-17 + 1609: 1,-42 + 3953: -135,-12 + 3954: -134,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: 214: -2,-34 - 763: -63,20 - 1152: 3,-9 - 1153: 5,-9 + 5095: -89,45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 403: -52,-7 + 340: -52,-7 + 3955: -135,-14 + 3956: -135,-15 + 5090: -89,32 + 5091: -89,35 + 5092: -89,38 + 5093: -89,41 + 5094: -89,44 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 3845: 19,15 - 3846: 20,15 - 3847: 21,15 - 3848: 22,15 - 3849: 22,14 - 3850: 21,14 - 3851: 20,14 - 3852: 19,14 - 3853: 18,14 - 3863: 18,15 + 2821: 19,15 + 2822: 20,15 + 2823: 21,15 + 2824: 22,15 + 2825: 22,14 + 2826: 21,14 + 2827: 20,14 + 2828: 19,14 + 2829: 18,14 + 2839: 18,15 - node: color: '#52B4E996' id: MiniTileDarkCornerNe decals: - 1804: -10,9 - 2348: 25,16 + 1095: -10,9 + 1409: 25,16 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: 212: 48,11 - 3493: 52,-13 - 3518: 51,-14 - 4184: 14,-7 + 2473: 52,-13 + 2498: 51,-14 - node: color: '#52B4E996' id: MiniTileDarkCornerNw decals: - 2349: 27,16 + 1410: 27,16 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: 209: 47,11 210: 47,11 - 3517: 45,-14 - 3865: 43,-13 - 4185: 12,-7 + 2497: 45,-14 + 2841: 43,-13 - node: color: '#52B4E996' id: MiniTileDarkCornerSe decals: - 1803: -10,6 - 1812: -14,6 - 2347: 25,18 + 1094: -10,6 + 1103: -14,6 + 1408: 25,18 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: 211: 48,10 - 3503: 52,-16 - 3519: 51,-15 + 2483: 52,-16 + 2499: 51,-15 - node: color: '#52B4E996' id: MiniTileDarkCornerSw decals: - 1792: -15,6 - 1811: -11,6 - 2346: 27,18 + 1092: -15,6 + 1102: -11,6 + 1407: 27,18 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: 208: 47,10 - 3502: 43,-16 - 3520: 45,-15 - 4186: 12,-10 + 2482: 43,-16 + 2500: 45,-15 - node: color: '#52B4E996' id: MiniTileDarkInnerNe decals: - 1802: -15,9 - 1809: -10,8 - 1814: -12,6 - 2877: -6,13 + 1100: -10,8 + 1105: -12,6 + 1866: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: 148: 57,8 199: 52,-5 - 315: 39,3 - 372: -63,-15 - 401: -68,-15 + 311: 39,3 - node: color: '#52B4E996' id: MiniTileDarkInnerNw decals: - 1813: -13,6 - 2878: -6,13 + 1104: -13,6 + 1867: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw @@ -4815,28 +7133,24 @@ entities: 193: 62,-4 198: 59,-5 283: 51,6 - 371: -59,-15 - 400: -64,-15 - node: color: '#52B4E996' id: MiniTileDarkInnerSe decals: - 1810: -10,7 - 2876: -6,13 + 1101: -10,7 + 1865: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: 161: 52,13 270: 36,11 - 373: -63,-9 - 402: -68,-9 - 3936: 32,-12 + 2896: 32,-12 - node: color: '#52B4E996' id: MiniTileDarkInnerSw decals: - 2875: -6,13 + 1864: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw @@ -4846,717 +7160,1645 @@ entities: 172: 62,12 269: 34,11 284: 51,2 - 370: -59,-9 - 399: -64,-9 - 3935: 32,-12 + 2895: 32,-12 - node: - color: '#52B4E996' + color: '#E6E6E6FF' id: MiniTileDarkLineE decals: - 1799: -15,12 - 1800: -15,11 - 1801: -15,10 + 5211: -83,20 + 5212: -83,19 + 5213: -83,18 + 5214: -83,17 + 5215: -83,16 + 5216: -83,15 + 5217: -83,14 + 5218: -83,13 + 5231: -89,8 + 5235: -89,6 + 5236: -89,5 + 5237: -89,4 + 5238: -89,3 + 5249: -74,12 + 5250: -74,13 + 5251: -74,14 + 5280: -60,17 + 5283: -65,17 + 5302: -41,17 + 5309: -33,14 + 5310: -33,15 + 5311: -33,16 + 5317: -33,8 + 5318: -33,9 + 5319: -33,10 + 5320: -33,11 + 5336: -33,4 + 5345: -27,2 + 5373: -16,2 + 5401: 9,2 + 5411: 27,2 + 5420: 22,2 + 5430: 17,2 + 5433: -2,1 + 5434: -2,0 + 5435: -2,-1 + 5436: -2,-2 + 5447: -2,-7 + 5448: -2,-6 + 5449: -2,-5 + 5450: -2,-4 + 5455: -2,-12 + 5456: -2,-11 + 5457: -2,-10 + 5458: -2,-9 + 5474: -11,-13 + 5484: -16,-13 + 5494: -21,-13 + 5500: -26,-13 + 5514: -31,-13 + 5527: -33,-13 + 5528: -42,-13 + 5529: -42,-12 + 5530: -42,-11 + 5531: -42,-10 + 5541: -42,-8 + 5542: -42,-7 + 5543: -42,-6 + 5544: -42,-5 + 5551: -42,-3 + 5552: -42,-2 + 5553: -42,-1 + 5554: -42,0 + 5558: -42,2 + 5567: -49,4 + 5577: -54,4 + 5586: -59,4 + 5597: -57,0 + 5598: -57,1 + 5599: -57,2 + 5600: -57,-3 + 5601: -57,-2 + 5612: -62,-1 + 5626: -72,-1 + 5631: -72,-3 + 5643: -64,4 + 5644: -69,4 + 5661: -74,4 + 5662: -79,4 + 5674: -72,1 + 5675: -72,2 + 5680: -69,11 + 5681: -69,10 + 5682: -69,10 + 5683: -69,9 + 5694: -67,9 + 5706: -57,13 + 5708: -61,13 + 5714: -96,-2 + 5723: -95,3 + 5724: -95,2 + 5725: -95,1 + 5726: -95,0 + 5734: -95,8 + 5735: -95,7 + 5736: -95,6 + 5737: -95,5 + 5742: -75,9 + 5743: -54,17 + 5746: -85,9 + 5759: -58,21 + 5760: -58,22 + 5761: -58,23 + 5762: -58,24 + 5773: -63,25 + 5774: -68,25 + 5791: -67,41 + 5792: -67,42 + 5793: -67,43 + 5794: -67,44 + 5795: -67,39 + 5796: -67,38 + 5797: -67,37 + 5798: -67,36 + 5812: -67,31 + 5813: -67,32 + 5814: -67,33 + 5815: -67,34 + 5820: -67,29 + 5821: -67,28 + 5822: -67,27 + 5829: -61,44 + 5830: -61,43 + 5831: -61,42 + 5832: -61,41 + 5839: -62,39 + 5840: -62,38 + 5841: -62,37 + 5842: -62,36 + 5849: -62,34 + 5850: -62,32 + 5851: -62,31 + 5858: -65,30 + 5859: -61,29 + 5873: -65,44 + 5877: -62,33 + 5878: -67,-1 + 5885: -70,17 + 5891: -50,17 + 5893: -46,17 + 5895: -34,17 + 5899: -38,3 + 5903: -42,3 + 5904: -42,4 + 5909: -38,-13 + 5912: 2,2 + 5913: -4,2 + 5917: -4,-13 + 5918: -28,3 + 5920: -21,2 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 3504: 52,-15 - 3505: 52,-14 - 3931: 32,-13 - 3932: 32,-14 - 4187: 14,-9 - 4188: 14,-8 - 4191: 2,-3 - 4192: 2,-2 - 4193: 2,-1 - 4201: 5,-3 - 4202: 5,-2 - 4203: 5,-1 - 4204: 4,-3 - 4205: 4,-2 - 4206: 4,-1 + 2484: 52,-15 + 2485: 52,-14 + 2891: 32,-13 + 2892: 32,-14 + 3009: 2,-3 + 3010: 2,-2 + 3011: 2,-1 + 3019: 5,-3 + 3020: 5,-2 + 3021: 5,-1 + 3022: 4,-3 + 3023: 4,-2 + 3024: 4,-1 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2159: -86,34 - 2160: -86,33 - 2161: -86,32 - 2162: -86,31 - 2163: -86,29 - 2164: -86,28 - 2165: -86,27 - 2166: -86,26 - 2167: -86,24 - 2168: -86,23 - 2169: -86,22 - 2170: -86,21 - 2171: -86,36 - 2172: -86,37 - 2173: -86,38 - 2174: -86,38 - 2175: -86,39 - 2176: -86,41 - 2177: -86,42 - 2178: -86,43 - 2179: -86,44 + 1265: -86,34 + 1266: -86,33 + 1267: -86,32 + 1268: -86,31 + 1269: -86,29 + 1270: -86,28 + 1271: -86,27 + 1272: -86,26 + 1273: -86,24 + 1274: -86,23 + 1275: -86,22 + 1276: -86,21 + 1277: -86,36 + 1278: -86,37 + 1279: -86,38 + 1280: -86,38 + 1281: -86,39 + 1282: -86,41 + 1283: -86,42 + 1284: -86,43 + 1285: -86,44 - node: color: '#52B4E996' id: MiniTileDarkLineN decals: - 1805: -11,9 - 1806: -12,9 - 1807: -13,9 - 1808: -14,9 - 2855: 0,13 - 2856: 1,13 + 1096: -11,9 + 1097: -12,9 + 1098: -13,9 + 1099: -14,9 + 1854: 0,13 + 1855: 1,13 - node: color: '#52B4E99E' id: MiniTileDarkLineN decals: - 2968: -13,14 - 2969: -13,14 + 1955: -13,14 + 1956: -13,14 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineN + decals: + 5228: -86,7 + 5229: -87,7 + 5230: -88,7 + 5243: -88,2 + 5252: -73,11 + 5253: -69,16 + 5254: -68,16 + 5255: -66,16 + 5256: -67,16 + 5257: -64,16 + 5258: -63,16 + 5259: -62,16 + 5260: -61,16 + 5261: -59,16 + 5262: -58,16 + 5263: -57,16 + 5264: -56,16 + 5265: -55,16 + 5266: -53,16 + 5279: -49,16 + 5284: -45,16 + 5285: -44,16 + 5286: -43,16 + 5287: -42,16 + 5288: -40,16 + 5289: -37,16 + 5290: -38,16 + 5291: -39,16 + 5308: -32,13 + 5312: -33,16 + 5328: -37,2 + 5329: -36,2 + 5330: -35,2 + 5331: -34,2 + 5332: -33,2 + 5333: -32,2 + 5334: -31,2 + 5341: -24,1 + 5342: -25,1 + 5343: -26,1 + 5346: -27,2 + 5347: -20,1 + 5348: -19,1 + 5349: -18,1 + 5350: -17,1 + 5356: -7,1 + 5357: -8,1 + 5358: -9,1 + 5359: -10,1 + 5364: -15,1 + 5365: -14,1 + 5366: -13,1 + 5367: -12,1 + 5377: -3,1 + 5378: -2,1 + 5379: 3,1 + 5380: 4,1 + 5381: 5,1 + 5382: 6,1 + 5387: 10,1 + 5388: 11,1 + 5389: 12,1 + 5390: 13,1 + 5391: 14,1 + 5392: 15,1 + 5393: 16,1 + 5403: 31,1 + 5404: 30,1 + 5405: 29,1 + 5406: 28,1 + 5416: 23,1 + 5417: 24,1 + 5418: 25,1 + 5419: 26,1 + 5426: 21,1 + 5427: 20,1 + 5428: 19,1 + 5429: 18,1 + 5440: -1,-3 + 5446: -1,-8 + 5462: -2,-14 + 5463: -3,-14 + 5464: -1,-14 + 5466: -7,-14 + 5467: -8,-14 + 5468: -9,-14 + 5469: -10,-14 + 5476: -12,-14 + 5477: -13,-14 + 5478: -14,-14 + 5479: -15,-14 + 5486: -17,-14 + 5487: -18,-14 + 5488: -19,-14 + 5489: -20,-14 + 5496: -22,-14 + 5497: -23,-14 + 5498: -24,-14 + 5499: -25,-14 + 5509: -27,-14 + 5510: -28,-14 + 5511: -29,-14 + 5512: -30,-14 + 5515: -37,-14 + 5516: -36,-14 + 5517: -35,-14 + 5518: -34,-14 + 5525: -32,-14 + 5535: -41,-14 + 5536: -41,-9 + 5546: -41,-4 + 5556: -41,1 + 5559: -45,3 + 5560: -46,3 + 5561: -47,3 + 5562: -48,3 + 5569: -50,3 + 5570: -51,3 + 5571: -52,3 + 5572: -53,3 + 5578: -55,3 + 5579: -57,3 + 5583: -56,3 + 5584: -58,3 + 5595: -56,-1 + 5602: -56,-4 + 5603: -58,-2 + 5604: -59,-2 + 5605: -60,-2 + 5606: -61,-2 + 5614: -63,-2 + 5615: -64,-2 + 5616: -65,-2 + 5623: -68,-2 + 5624: -69,-2 + 5625: -70,-2 + 5628: -71,-2 + 5630: -71,-4 + 5634: -60,3 + 5635: -61,3 + 5636: -62,3 + 5637: -63,3 + 5648: -68,3 + 5649: -67,3 + 5650: -65,3 + 5651: -66,3 + 5657: -70,3 + 5658: -71,3 + 5659: -72,3 + 5660: -73,3 + 5668: -78,3 + 5669: -76,3 + 5670: -77,3 + 5671: -75,3 + 5677: -71,0 + 5686: -68,8 + 5690: -66,8 + 5691: -65,8 + 5692: -64,8 + 5700: -60,12 + 5701: -59,12 + 5702: -58,12 + 5703: -56,12 + 5704: -55,12 + 5710: -92,-3 + 5711: -93,-3 + 5712: -94,-3 + 5713: -95,-3 + 5727: -94,-1 + 5729: -94,4 + 5741: -74,8 + 5747: -84,8 + 5748: -83,8 + 5749: -82,8 + 5750: -81,8 + 5751: -80,8 + 5765: -59,24 + 5766: -60,24 + 5767: -61,24 + 5768: -62,24 + 5769: -64,24 + 5770: -65,24 + 5771: -66,24 + 5772: -67,24 + 5790: -66,40 + 5804: -66,35 + 5811: -66,30 + 5823: -66,26 + 5833: -60,40 + 5843: -61,35 + 5852: -61,30 + 5853: -64,29 + 5854: -63,29 + 5865: -57,28 + 5866: -58,28 + 5867: -60,28 + 5868: -59,28 + 5869: -62,43 + 5870: -63,43 + 5871: -64,43 + 5879: -66,-2 + 5884: -82,12 + 5892: -57,20 + 5896: -32,7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3494: 51,-13 - 3495: 50,-13 - 3496: 49,-13 - 3497: 48,-13 - 3498: 47,-13 - 3499: 46,-13 - 3500: 45,-13 - 3501: 44,-13 - 3526: 46,-14 - 3527: 47,-14 - 3528: 48,-14 - 3529: 49,-14 - 3530: 50,-14 + 2474: 51,-13 + 2475: 50,-13 + 2476: 49,-13 + 2477: 48,-13 + 2478: 47,-13 + 2479: 46,-13 + 2480: 45,-13 + 2481: 44,-13 + 2506: 46,-14 + 2507: 47,-14 + 2508: 48,-14 + 2509: 49,-14 + 2510: 50,-14 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 2205: -85,40 - 2206: -85,35 - 2207: -85,30 - 2208: -85,25 - 2209: -85,20 + 1311: -85,40 + 1312: -85,35 + 1313: -85,30 + 1314: -85,25 + 1315: -85,20 - node: color: '#52B4E996' id: MiniTileDarkLineS decals: - 2854: 1,11 - 2857: -2,11 + 1853: 1,11 + 1856: -2,11 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineS + decals: + 5227: -82,21 + 5232: -88,9 + 5233: -87,9 + 5234: -86,9 + 5244: -88,7 + 5245: -73,15 + 5267: -69,18 + 5268: -68,18 + 5269: -67,18 + 5270: -66,18 + 5271: -64,18 + 5272: -63,18 + 5273: -62,18 + 5274: -61,18 + 5275: -59,18 + 5276: -55,18 + 5277: -53,18 + 5278: -49,18 + 5292: -45,18 + 5293: -44,18 + 5294: -43,18 + 5295: -42,18 + 5296: -40,18 + 5297: -39,18 + 5298: -38,18 + 5299: -37,18 + 5300: -33,18 + 5301: -32,18 + 5321: -32,12 + 5322: -31,4 + 5323: -33,4 + 5324: -34,4 + 5325: -37,4 + 5326: -36,4 + 5327: -35,4 + 5337: -27,4 + 5338: -26,4 + 5339: -25,3 + 5340: -24,3 + 5351: -20,3 + 5352: -19,3 + 5353: -18,3 + 5354: -17,3 + 5360: -7,3 + 5361: -8,3 + 5362: -9,3 + 5363: -10,3 + 5368: -15,3 + 5369: -14,3 + 5370: -13,3 + 5371: -12,3 + 5374: -3,3 + 5375: -2,3 + 5376: -1,3 + 5383: 3,3 + 5384: 4,3 + 5385: 5,3 + 5386: 6,3 + 5394: 10,3 + 5395: 11,3 + 5396: 12,3 + 5397: 13,3 + 5398: 14,3 + 5399: 15,3 + 5400: 16,3 + 5407: 28,3 + 5408: 29,3 + 5409: 30,3 + 5410: 31,3 + 5412: 26,3 + 5413: 25,3 + 5414: 24,3 + 5415: 23,3 + 5422: 21,3 + 5423: 20,3 + 5424: 19,3 + 5425: 18,3 + 5441: -1,-3 + 5459: -1,-8 + 5460: -3,-12 + 5461: -2,-12 + 5470: -7,-12 + 5471: -8,-12 + 5472: -9,-12 + 5473: -10,-12 + 5480: -12,-12 + 5481: -13,-12 + 5482: -14,-12 + 5483: -15,-12 + 5490: -17,-12 + 5491: -18,-12 + 5492: -19,-12 + 5493: -20,-12 + 5501: -25,-12 + 5502: -24,-12 + 5503: -23,-12 + 5504: -22,-12 + 5505: -27,-12 + 5506: -28,-12 + 5507: -29,-12 + 5508: -30,-12 + 5519: -37,-12 + 5520: -36,-12 + 5521: -35,-12 + 5522: -34,-12 + 5524: -32,-12 + 5534: -41,-9 + 5545: -41,-4 + 5555: -41,1 + 5563: -45,5 + 5564: -46,5 + 5565: -47,5 + 5566: -48,5 + 5573: -50,5 + 5574: -51,5 + 5575: -52,5 + 5576: -53,5 + 5580: -55,5 + 5581: -56,5 + 5582: -57,5 + 5585: -58,5 + 5591: -56,3 + 5596: -56,-1 + 5607: -58,0 + 5608: -59,0 + 5609: -60,0 + 5610: -61,0 + 5617: -63,0 + 5618: -64,0 + 5619: -65,0 + 5620: -68,0 + 5621: -69,0 + 5622: -70,0 + 5627: -71,0 + 5632: -71,-2 + 5633: -71,5 + 5638: -60,5 + 5639: -61,5 + 5640: -62,5 + 5641: -63,5 + 5646: -68,5 + 5647: -65,5 + 5653: -70,5 + 5654: -71,5 + 5655: -72,5 + 5656: -73,5 + 5664: -78,5 + 5665: -77,5 + 5666: -75,5 + 5667: -76,5 + 5676: -71,3 + 5679: -68,12 + 5687: -66,10 + 5688: -65,10 + 5689: -64,10 + 5695: -60,14 + 5696: -59,14 + 5697: -58,14 + 5698: -55,14 + 5699: -56,14 + 5715: -95,-1 + 5716: -94,-1 + 5717: -93,-1 + 5718: -92,-1 + 5728: -94,4 + 5738: -94,9 + 5739: -74,10 + 5752: -80,10 + 5753: -84,10 + 5763: -57,25 + 5776: -67,26 + 5777: -66,26 + 5778: -65,26 + 5779: -64,26 + 5780: -61,26 + 5781: -61,26 + 5782: -60,26 + 5783: -59,26 + 5784: -62,26 + 5785: -66,45 + 5805: -66,40 + 5806: -66,35 + 5819: -66,30 + 5824: -60,45 + 5834: -61,40 + 5844: -61,35 + 5855: -63,31 + 5856: -64,31 + 5860: -60,30 + 5861: -59,30 + 5862: -58,30 + 5863: -57,30 + 5874: -63,45 + 5875: -62,45 + 5876: -64,45 + 5880: -66,0 + 5881: -81,10 + 5882: -82,10 + 5883: -83,10 + 5886: -58,18 + 5887: -57,18 + 5888: -56,18 + 5897: -32,5 + 5905: -41,5 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3506: 44,-16 - 3507: 45,-16 - 3508: 46,-16 - 3509: 46,-16 - 3510: 47,-16 - 3511: 48,-16 - 3512: 49,-16 - 3513: 50,-16 - 3514: 51,-16 - 3521: 46,-15 - 3522: 47,-15 - 3523: 48,-15 - 3524: 49,-15 - 3525: 50,-15 - 3928: 34,-12 - 3929: 33,-12 - 3930: 31,-12 - 3960: 30,-12 + 2486: 44,-16 + 2487: 45,-16 + 2488: 46,-16 + 2489: 46,-16 + 2490: 47,-16 + 2491: 48,-16 + 2492: 49,-16 + 2493: 50,-16 + 2494: 51,-16 + 2501: 46,-15 + 2502: 47,-15 + 2503: 48,-15 + 2504: 49,-15 + 2505: 50,-15 + 2888: 34,-12 + 2889: 33,-12 + 2890: 31,-12 + 2911: 30,-12 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 2200: -85,25 - 2201: -85,30 - 2202: -85,35 - 2203: -85,40 - 2204: -85,45 + 1306: -85,25 + 1307: -85,30 + 1308: -85,35 + 1309: -85,40 + 1310: -85,45 - node: color: '#52B4E996' id: MiniTileDarkLineW decals: - 1793: -15,7 - 1794: -15,8 - 1795: -15,9 - 1796: -15,10 - 1797: -15,11 - 1798: -15,12 + 1093: -15,8 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineW + decals: + 5219: -81,13 + 5220: -81,14 + 5221: -81,15 + 5222: -81,16 + 5223: -81,17 + 5224: -81,18 + 5225: -81,19 + 5226: -81,20 + 5239: -87,3 + 5240: -87,4 + 5241: -87,5 + 5242: -87,6 + 5246: -72,14 + 5247: -72,13 + 5248: -72,12 + 5281: -60,17 + 5282: -65,17 + 5303: -41,17 + 5304: -31,17 + 5305: -31,16 + 5306: -31,15 + 5307: -31,14 + 5313: -31,8 + 5314: -31,9 + 5315: -31,10 + 5316: -31,11 + 5335: -31,4 + 5344: -25,3 + 5355: -16,2 + 5372: -11,2 + 5402: 17,2 + 5421: 27,2 + 5431: 22,2 + 5432: 7,2 + 5437: 0,0 + 5438: 0,-1 + 5439: 0,-2 + 5442: 0,-4 + 5443: 0,-5 + 5444: 0,-6 + 5445: 0,-7 + 5451: 0,-9 + 5452: 0,-10 + 5453: 0,-11 + 5454: 0,-12 + 5465: 0,-13 + 5475: -11,-13 + 5485: -16,-13 + 5495: -21,-13 + 5513: -26,-13 + 5523: -33,-13 + 5526: -31,-13 + 5532: -40,-11 + 5533: -40,-10 + 5537: -40,-8 + 5538: -40,-7 + 5539: -40,-6 + 5540: -40,-5 + 5547: -40,-3 + 5548: -40,-2 + 5549: -40,-1 + 5550: -40,0 + 5557: -40,2 + 5568: -49,4 + 5587: -54,4 + 5588: -55,2 + 5589: -55,1 + 5590: -55,0 + 5592: -55,-3 + 5593: -55,-3 + 5594: -55,-2 + 5611: -57,-1 + 5613: -62,-1 + 5629: -70,-3 + 5642: -59,4 + 5645: -64,4 + 5652: -69,4 + 5663: -74,4 + 5672: -70,2 + 5673: -70,1 + 5678: -67,11 + 5684: -67,10 + 5685: -67,9 + 5693: -63,9 + 5705: -54,13 + 5707: -57,13 + 5709: -91,-2 + 5719: -93,0 + 5720: -93,1 + 5721: -93,2 + 5722: -93,3 + 5730: -93,5 + 5731: -93,6 + 5732: -93,7 + 5733: -93,8 + 5740: -73,9 + 5744: -54,17 + 5745: -79,9 + 5754: -85,8 + 5755: -56,24 + 5756: -56,23 + 5757: -56,22 + 5758: -56,21 + 5764: -58,25 + 5775: -63,25 + 5786: -65,44 + 5787: -65,43 + 5788: -65,42 + 5789: -65,41 + 5799: -65,39 + 5800: -65,38 + 5801: -65,37 + 5802: -65,37 + 5803: -65,36 + 5807: -65,34 + 5808: -65,33 + 5809: -65,32 + 5810: -65,31 + 5816: -65,29 + 5817: -65,28 + 5818: -65,27 + 5825: -59,44 + 5826: -59,43 + 5827: -59,42 + 5828: -59,41 + 5835: -60,39 + 5836: -60,38 + 5837: -60,37 + 5838: -60,36 + 5845: -60,34 + 5846: -60,33 + 5847: -60,32 + 5848: -60,31 + 5857: -62,30 + 5864: -56,29 + 5872: -61,44 + 5889: -52,17 + 5890: -48,17 + 5894: -36,17 + 5898: -30,3 + 5900: -40,3 + 5901: -40,4 + 5902: -44,4 + 5906: -6,-13 + 5907: -40,-13 + 5908: -40,-12 + 5910: -67,-1 + 5911: 32,2 + 5914: 0,2 + 5915: 0,1 + 5916: -6,2 + 5919: -23,2 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 3515: 43,-15 - 3516: 43,-14 - 3933: 32,-13 - 3934: 32,-14 - 4189: 12,-9 - 4190: 12,-8 - 4194: 3,-3 - 4195: 3,-3 - 4196: 3,-2 - 4197: 3,-1 - 4198: 6,-3 - 4199: 6,-2 - 4200: 6,-1 - 4207: 4,-3 - 4208: 4,-2 - 4209: 4,-1 + 2495: 43,-15 + 2496: 43,-14 + 2893: 32,-13 + 2894: 32,-14 + 3012: 3,-3 + 3013: 3,-3 + 3014: 3,-2 + 3015: 3,-1 + 3016: 6,-3 + 3017: 6,-2 + 3018: 6,-1 + 3025: 4,-3 + 3026: 4,-2 + 3027: 4,-1 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 2180: -84,44 - 2181: -84,43 - 2182: -84,42 - 2183: -84,41 - 2184: -84,39 - 2185: -84,38 - 2186: -84,37 - 2187: -84,36 - 2188: -84,34 - 2189: -84,33 - 2190: -84,32 - 2191: -84,31 - 2192: -84,29 - 2193: -84,28 - 2194: -84,27 - 2195: -84,26 - 2196: -84,24 - 2197: -84,23 - 2198: -84,22 - 2199: -84,21 + 1286: -84,44 + 1287: -84,43 + 1288: -84,42 + 1289: -84,41 + 1290: -84,39 + 1291: -84,38 + 1292: -84,37 + 1293: -84,36 + 1294: -84,34 + 1295: -84,33 + 1296: -84,32 + 1297: -84,31 + 1298: -84,29 + 1299: -84,28 + 1300: -84,27 + 1301: -84,26 + 1302: -84,24 + 1303: -84,23 + 1304: -84,22 + 1305: -84,21 - node: color: '#2D72307C' id: MiniTileDiagonalCheckerAOverlay decals: - 3112: 9,40 - 3113: 10,40 - 3114: 10,41 - 3115: 9,41 - 3116: 8,41 - 3117: 8,42 - 3118: 9,42 - 3119: 10,42 - 3120: 11,42 - 3121: 11,41 + 2099: 9,40 + 2100: 10,40 + 2101: 10,41 + 2102: 9,41 + 2103: 8,41 + 2104: 8,42 + 2105: 9,42 + 2106: 10,42 + 2107: 11,42 + 2108: 11,41 - node: color: '#2D723063' id: MiniTileDiagonalOverlay decals: - 3134: 6,30 - 3135: 6,29 - 3136: 5,30 - 3137: 5,29 - 3138: 7,30 - 3139: 7,29 - 3140: 8,30 - 3141: 8,29 + 2121: 6,30 + 2122: 6,29 + 2123: 5,30 + 2124: 5,29 + 2125: 7,30 + 2126: 7,29 + 2127: 8,30 + 2128: 8,29 + - node: + color: '#D381C996' + id: MiniTileInnerOverlayNE + decals: + 3469: -5,-25 + 3470: -1,-25 + 3471: 2,-25 + 3472: -3,-25 + 3498: 2,-19 + 3521: -3,-20 + 3571: -19,-22 + 3578: -12,-23 + 3579: -9,-21 + 3625: -14,-17 + 3654: -5,-31 + - node: + color: '#D381C996' + id: MiniTileInnerOverlayNW + decals: + 3473: -10,-23 + 3474: -3,-25 + 3475: -1,-25 + 3476: 2,-25 + 3522: -1,-20 + 3561: -20,-23 + 3569: -23,-17 + 3580: -9,-21 + 3623: -17,-17 + 3624: -7,-17 + 3651: -3,-31 + - node: + color: '#D381C996' + id: MiniTileInnerOverlaySE + decals: + 3479: -2,-26 + 3480: 2,-26 + 3500: 2,-23 + 3514: -3,-23 + 3567: -22,-23 + 3577: -12,-23 + 3619: -9,-19 + 3620: -12,-19 + 3653: -5,-31 + 3675: -2,-32 + - node: + color: '#D381C996' + id: MiniTileInnerOverlaySW + decals: + 3477: -2,-26 + 3478: 2,-26 + 3499: 2,-23 + 3513: -1,-23 + 3560: -20,-23 + 3568: -23,-17 + 3570: -20,-21 + 3585: -10,-23 + 3586: -8,-24 + 3587: -9,-19 + 3622: -17,-17 + 3652: -3,-31 + 3674: -2,-32 + - node: + color: '#D381C996' + id: MiniTileLineOverlayE + decals: + 3439: 4,-26 + 3465: -5,-21 + 3466: -5,-22 + 3467: -5,-23 + 3468: -5,-24 + 3491: 4,-19 + 3492: 4,-20 + 3493: 4,-21 + 3494: 4,-22 + 3495: 4,-23 + 3501: -1,-23 + 3502: -1,-22 + 3503: -1,-24 + 3504: -1,-21 + 3505: -1,-20 + 3506: -1,-19 + 3507: -3,-19 + 3508: -3,-24 + 3566: -22,-24 + 3572: -19,-21 + 3573: -19,-20 + 3574: -19,-19 + 3575: -12,-22 + 3576: -12,-24 + 3581: -9,-20 + 3588: -9,-20 + 3589: -6,-19 + 3590: -6,-18 + 3591: -6,-17 + 3592: -6,-16 + 3593: -14,-16 + 3621: -12,-20 + 3645: -5,-30 + 3646: -5,-29 + 3647: -5,-28 + 3648: -5,-32 + 3649: -5,-33 + 3662: -1,-28 + 3663: -1,-29 + 3664: -1,-30 + 3665: -1,-31 + 3666: -1,-32 + 3670: -2,-27 + 3672: -2,-33 + - node: + color: '#D381C996' + id: MiniTileLineOverlayN + decals: + 3434: -2,-25 + 3435: 0,-25 + 3436: 1,-25 + 3437: 3,-25 + 3438: 4,-25 + 3459: -10,-21 + 3460: -8,-21 + 3461: -6,-21 + 3462: -7,-21 + 3463: -5,-21 + 3464: -4,-25 + 3488: 1,-20 + 3489: 3,-19 + 3490: 4,-19 + 3520: -2,-20 + 3523: -12,-22 + 3524: -13,-22 + 3525: -14,-22 + 3526: -15,-22 + 3527: -16,-22 + 3528: -17,-22 + 3529: -18,-22 + 3530: -23,-16 + 3531: -22,-16 + 3532: -23,-16 + 3562: -23,-23 + 3563: -22,-23 + 3564: -21,-23 + 3583: -11,-23 + 3594: -13,-17 + 3595: -11,-17 + 3596: -12,-17 + 3597: -9,-17 + 3598: -10,-17 + 3599: -8,-17 + 3600: -17,-16 + 3601: -16,-16 + 3602: -15,-16 + 3603: -14,-16 + 3626: -7,-16 + 3627: -6,-16 + 3632: -10,-31 + 3641: -4,-31 + 3642: -5,-28 + 3643: -6,-28 + 3644: -7,-28 + 3656: -4,-31 + 3660: -3,-28 + 3661: -1,-28 + - node: + color: '#D381C996' + id: MiniTileLineOverlayS + decals: + 3440: 4,-26 + 3441: 3,-26 + 3442: 1,-26 + 3443: 0,-26 + 3444: -1,-26 + 3445: -3,-26 + 3446: -4,-26 + 3447: -5,-26 + 3448: -6,-26 + 3449: -8,-26 + 3450: -7,-26 + 3451: -9,-24 + 3452: -10,-24 + 3482: 1,-23 + 3483: 3,-23 + 3496: 4,-23 + 3515: -2,-23 + 3542: -22,-24 + 3543: -23,-24 + 3544: -20,-24 + 3545: -18,-24 + 3546: -19,-24 + 3547: -18,-24 + 3548: -17,-24 + 3549: -17,-24 + 3550: -15,-24 + 3551: -15,-24 + 3552: -14,-24 + 3553: -13,-24 + 3554: -13,-24 + 3555: -12,-24 + 3556: -16,-24 + 3557: -21,-21 + 3558: -22,-21 + 3559: -23,-21 + 3565: -21,-23 + 3584: -11,-23 + 3608: -17,-20 + 3609: -16,-20 + 3610: -15,-20 + 3611: -14,-20 + 3612: -12,-20 + 3613: -13,-20 + 3614: -11,-19 + 3615: -10,-19 + 3616: -8,-19 + 3617: -7,-19 + 3618: -6,-19 + 3635: -10,-32 + 3636: -9,-32 + 3637: -7,-33 + 3638: -6,-33 + 3639: -5,-33 + 3640: -4,-31 + 3655: -4,-31 + 3667: -1,-32 + 3668: -3,-32 + - node: + color: '#D381C996' + id: MiniTileLineOverlayW + decals: + 3453: -8,-25 + 3454: -8,-26 + 3455: -11,-24 + 3456: -10,-24 + 3457: -10,-22 + 3458: -10,-21 + 3481: -16,-21 + 3484: 1,-23 + 3485: 1,-22 + 3486: 1,-21 + 3487: 1,-20 + 3497: 2,-19 + 3509: -3,-24 + 3510: -1,-24 + 3511: -3,-19 + 3512: -1,-19 + 3516: -3,-23 + 3517: -3,-22 + 3518: -3,-21 + 3519: -3,-20 + 3533: -23,-16 + 3534: -23,-18 + 3535: -23,-19 + 3536: -23,-20 + 3537: -23,-21 + 3538: -20,-22 + 3539: -23,-23 + 3540: -23,-24 + 3541: -20,-24 + 3582: -9,-20 + 3604: -17,-16 + 3605: -17,-18 + 3606: -17,-19 + 3607: -17,-20 + 3628: -7,-16 + 3629: -7,-28 + 3630: -7,-29 + 3631: -7,-30 + 3633: -10,-31 + 3634: -10,-32 + 3650: -7,-33 + 3657: -3,-30 + 3658: -3,-29 + 3659: -3,-28 + 3669: -3,-32 + 3671: -2,-27 + 3673: -2,-33 - node: color: '#52B4E996' id: MiniTileOverlay decals: - 2874: -6,13 + 1863: -6,13 - node: color: '#52B4E99E' id: MiniTileOverlay decals: - 2944: -13,11 - 2945: -13,12 - 2946: -13,14 - 2947: -13,13 - 2948: -11,15 - 2949: -10,15 - 2950: -10,14 - 2951: -10,13 - 2952: -10,12 - 2953: -10,11 - 2954: -11,11 - 2955: -12,11 + 1931: -13,11 + 1932: -13,12 + 1933: -13,14 + 1934: -13,13 + 1935: -11,15 + 1936: -10,15 + 1937: -10,14 + 1938: -10,13 + 1939: -10,12 + 1940: -10,11 + 1941: -11,11 + 1942: -12,11 - node: color: '#52B4E99E' id: MiniTileSteelLineE decals: - 2930: -4,12 + 1919: -4,12 - node: color: '#52B4E99E' id: MiniTileSteelLineS decals: - 2929: -4,11 + 1918: -4,11 - node: color: '#52B4E99E' id: MiniTileSteelLineW decals: - 2931: -8,7 - 2932: -8,8 + 1920: -8,7 + 1921: -8,8 - node: color: '#52B4E996' id: MiniTileWhiteCornerNe decals: - 2762: 15,14 - 2889: -5,14 - 3235: -5,21 - 3274: 11,24 + 1761: 15,14 + 1878: -5,14 + 2216: -5,21 + 2255: 11,24 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerNe decals: - 3304: 3,21 - 3309: 3,17 + 2284: 3,21 + 2289: 3,17 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 1288: -103,11 - 1289: -102,10 + 725: -103,11 + 726: -102,10 - node: color: '#FFA500FF' id: MiniTileWhiteCornerNe decals: - 3209: 0,9 + 2190: 0,9 - node: color: '#52B4E996' id: MiniTileWhiteCornerNw decals: - 2761: 14,14 - 2888: -7,14 - 3224: -8,15 - 3234: -7,21 - 3275: 6,24 + 1760: 14,14 + 1877: -7,14 + 2205: -8,15 + 2215: -7,21 + 2256: 6,24 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerNw decals: - 3310: -3,21 + 2290: -3,21 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 1287: -106,11 + 724: -106,11 - node: color: '#FFA500FF' id: MiniTileWhiteCornerNw decals: - 3196: -4,9 + 2177: -4,9 - node: color: '#52B4E996' id: MiniTileWhiteCornerSe decals: - 2760: 15,12 - 2890: -5,12 - 2912: -6,5 - 2915: -4,11 - 3273: 11,20 + 1759: 15,12 + 1879: -5,12 + 1901: -6,5 + 1904: -4,11 + 2254: 11,20 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerSe decals: - 3307: 3,19 - 3311: 3,15 + 2287: 3,19 + 2291: 3,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 1291: -102,7 + 728: -102,7 - node: color: '#FFA500FF' id: MiniTileWhiteCornerSe decals: - 3198: 0,5 + 2179: 0,5 - node: color: '#52B4E996' id: MiniTileWhiteCornerSw decals: - 2759: 14,12 - 2891: -7,12 - 2913: -8,5 - 3272: 6,20 + 1758: 14,12 + 1880: -7,12 + 1902: -8,5 + 2253: 6,20 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerSw decals: - 3308: -3,15 + 2288: -3,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 1290: -106,7 + 727: -106,7 - node: color: '#FFA500FF' id: MiniTileWhiteCornerSw decals: - 3197: -4,5 + 2178: -4,5 - node: color: '#52B4E996' id: MiniTileWhiteEndN decals: - 3242: -7,10 - 3245: -6,20 + 2223: -7,10 + 2226: -6,20 - node: color: '#52B4E996' id: MiniTileWhiteEndS decals: - 3243: -7,6 - 3244: -6,16 + 2224: -7,6 + 2225: -6,16 - node: color: '#52B4E996' id: MiniTileWhiteInnerNe decals: - 3228: -5,15 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNe - decals: - 2323: -3,-8 + 2209: -5,15 - node: color: '#52B4E996' id: MiniTileWhiteInnerNw decals: - 3055: 35,18 - 3227: -7,15 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNw - decals: - 2324: -1,-8 + 2042: 35,18 + 2208: -7,15 - node: color: '#52B4E996' id: MiniTileWhiteInnerSe decals: - 2916: -6,11 + 1905: -6,11 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe decals: - 2330: -3,-4 + 1392: -3,-4 - node: color: '#52B4E996' id: MiniTileWhiteInnerSw decals: - 3054: 35,20 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSw - decals: - 2329: -1,-4 + 2041: 35,20 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 2763: 15,13 - 2861: -7,13 - 2887: -5,13 - 2900: -6,6 - 2901: -6,7 - 2902: -6,8 - 2903: -6,9 - 2904: -6,10 - 2908: -4,12 - 2909: -4,13 - 2923: -7,8 - 2924: -7,7 - 3237: -5,20 - 3238: -5,19 - 3239: -5,18 - 3240: -5,17 - 3241: -5,16 - 3249: -6,19 - 3250: -6,18 - 3251: -6,17 - 3252: 14,17 - 3253: 14,18 - 3254: 14,19 - 3255: 14,20 - 3256: 14,21 - 3257: 14,22 - 3258: 14,23 - 3269: 11,21 - 3270: 11,22 - 3271: 11,23 + 1762: 15,13 + 1860: -7,13 + 1876: -5,13 + 1889: -6,6 + 1890: -6,7 + 1891: -6,8 + 1892: -6,9 + 1893: -6,10 + 1897: -4,12 + 1898: -4,13 + 1912: -7,8 + 1913: -7,7 + 2218: -5,20 + 2219: -5,19 + 2220: -5,18 + 2221: -5,17 + 2222: -5,16 + 2230: -6,19 + 2231: -6,18 + 2232: -6,17 + 2233: 14,17 + 2234: 14,18 + 2235: 14,19 + 2236: 14,20 + 2237: 14,21 + 2238: 14,22 + 2239: 14,23 + 2250: 11,21 + 2251: 11,22 + 2252: 11,23 - node: color: '#52B4E9CC' id: MiniTileWhiteLineE decals: - 3305: 3,20 - 3306: 3,16 + 2285: 3,20 + 2286: 3,16 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineE decals: - 1299: -102,8 - 1300: -102,9 + 736: -102,8 + 737: -102,9 - node: color: '#FFA500FF' id: MiniTileWhiteLineE decals: - 3199: 0,6 - 3200: 0,7 - 3208: 0,8 + 2180: 0,6 + 2181: 0,7 + 2189: 0,8 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 2325: -3,-6 - 2326: -3,-5 + 1390: -3,-6 + 1391: -3,-5 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 2320: -3,-7 + 1389: -3,-7 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2860: -6,14 - 2862: -6,12 - 3052: 34,18 - 3236: -6,21 - 3280: 7,24 - 3281: 8,24 - 3282: 9,24 - 3283: 10,24 + 1859: -6,14 + 1861: -6,12 + 2039: 34,18 + 2217: -6,21 + 2261: 7,24 + 2262: 8,24 + 2263: 9,24 + 2264: 10,24 - node: color: '#52B4E9CC' id: MiniTileWhiteLineN decals: - 3322: -2,21 - 3323: -1,21 - 3324: 0,21 - 3326: 1,21 - 3327: 2,21 + 2302: -2,21 + 2303: -1,21 + 2304: 0,21 + 2306: 1,21 + 2307: 2,21 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineN decals: - 1297: -105,11 - 1298: -104,11 + 734: -105,11 + 735: -104,11 - node: color: '#FFA500FF' id: MiniTileWhiteLineN decals: - 3420: 3,8 - 3421: 2,8 - 3427: -3,9 - 3428: -2,9 - 3429: -1,9 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 2321: -2,-8 + 2400: 3,8 + 2401: 2,8 + 2407: -3,9 + 2408: -2,9 + 2409: -1,9 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 2858: -6,12 - 2863: -6,14 - 2906: -5,11 - 2911: -7,5 - 3053: 34,20 - 3276: 7,20 - 3277: 8,20 - 3278: 9,20 - 3279: 10,20 + 1857: -6,12 + 1862: -6,14 + 1895: -5,11 + 1900: -7,5 + 2040: 34,20 + 2257: 7,20 + 2258: 8,20 + 2259: 9,20 + 2260: 10,20 - node: color: '#52B4E9CC' id: MiniTileWhiteLineS decals: - 3312: 2,15 - 3313: 1,15 - 3314: 0,15 - 3315: -1,15 - 3316: -2,15 + 2292: 2,15 + 2293: 1,15 + 2294: 0,15 + 2295: -1,15 + 2296: -2,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineS decals: - 1292: -104,7 - 1293: -105,7 + 729: -104,7 + 730: -105,7 - node: color: '#FFA500FF' id: MiniTileWhiteLineS decals: - 3201: -3,5 - 3330: -2,5 - 3331: -1,5 - 3422: 2,6 - 3423: 3,6 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 2331: -2,-4 + 2182: -3,5 + 2310: -2,5 + 2311: -1,5 + 2402: 2,6 + 2403: 3,6 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 2764: 14,13 - 2859: -7,13 - 2884: -5,13 - 2892: -8,13 - 2893: -8,14 - 2894: -8,12 - 2895: -8,10 - 2896: -8,9 - 2897: -8,8 - 2898: -8,7 - 2899: -8,6 - 2921: -7,8 - 2922: -7,7 - 3056: 35,19 - 3229: -7,16 - 3230: -7,17 - 3231: -7,18 - 3232: -7,19 - 3233: -7,20 - 3246: -6,19 - 3247: -6,18 - 3248: -6,17 - 3259: 13,23 - 3260: 13,22 - 3261: 13,21 - 3262: 13,19 - 3263: 13,20 - 3264: 13,18 - 3265: 13,17 - 3266: 6,21 - 3267: 6,22 - 3268: 6,23 + 1763: 14,13 + 1858: -7,13 + 1873: -5,13 + 1881: -8,13 + 1882: -8,14 + 1883: -8,12 + 1884: -8,10 + 1885: -8,9 + 1886: -8,8 + 1887: -8,7 + 1888: -8,6 + 1910: -7,8 + 1911: -7,7 + 2043: 35,19 + 2210: -7,16 + 2211: -7,17 + 2212: -7,18 + 2213: -7,19 + 2214: -7,20 + 2227: -6,19 + 2228: -6,18 + 2229: -6,17 + 2240: 13,23 + 2241: 13,22 + 2242: 13,21 + 2243: 13,19 + 2244: 13,20 + 2245: 13,18 + 2246: 13,17 + 2247: 6,21 + 2248: 6,22 + 2249: 6,23 - node: color: '#52B4E99E' id: MiniTileWhiteLineW decals: - 3024: 23,35 - 3025: 23,36 + 2011: 23,35 + 2012: 23,36 - node: color: '#52B4E9CC' id: MiniTileWhiteLineW decals: - 3317: -3,16 - 3318: -3,17 - 3319: -3,18 - 3320: -3,19 - 3321: -3,20 + 2297: -3,16 + 2298: -3,17 + 2299: -3,18 + 2300: -3,19 + 2301: -3,20 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineW decals: - 1294: -106,8 - 1295: -106,9 - 1296: -106,10 + 731: -106,8 + 732: -106,9 + 733: -106,10 - node: color: '#FFA500FF' id: MiniTileWhiteLineW decals: - 3202: -4,6 - 3203: -4,7 - 3204: -4,8 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 2327: -1,-6 - 2328: -1,-5 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 2322: -1,-7 - - node: - color: '#9C2020FF' - id: OldConcreteTrimEndN - decals: - 4011: 39,-13 - - node: - color: '#9C2020FF' - id: OldConcreteTrimEndS - decals: - 4012: 39,-20 + 2183: -4,6 + 2184: -4,7 + 2185: -4,8 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerNe decals: - 3551: 45,-15 - 3552: 45,-15 + 2531: 45,-15 + 2532: 45,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerNw decals: - 3553: 51,-15 - 3554: 51,-15 + 2533: 51,-15 + 2534: 51,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerSe decals: - 3557: 45,-14 - 3558: 45,-14 + 2537: 45,-14 + 2538: 45,-14 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerSw decals: - 3555: 51,-14 - 3556: 51,-14 + 2535: 51,-14 + 2536: 51,-14 - node: color: '#DE3A3A96' id: OldConcreteTrimLineN decals: - 3531: 46,-15 - 3532: 47,-15 - 3533: 46,-15 - 3534: 47,-15 - 3535: 48,-15 - 3536: 48,-15 - 3537: 49,-15 - 3538: 49,-15 - 3539: 50,-15 - 3540: 50,-15 + 2511: 46,-15 + 2512: 47,-15 + 2513: 46,-15 + 2514: 47,-15 + 2515: 48,-15 + 2516: 48,-15 + 2517: 49,-15 + 2518: 49,-15 + 2519: 50,-15 + 2520: 50,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimLineS decals: - 3541: 46,-14 - 3542: 46,-14 - 3543: 47,-14 - 3544: 47,-14 - 3545: 48,-14 - 3546: 48,-14 - 3547: 49,-14 - 3548: 49,-14 - 3549: 50,-14 - 3550: 50,-14 + 2521: 46,-14 + 2522: 46,-14 + 2523: 47,-14 + 2524: 47,-14 + 2525: 48,-14 + 2526: 48,-14 + 2527: 49,-14 + 2528: 49,-14 + 2529: 50,-14 + 2530: 50,-14 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -5565,115 +8807,42 @@ entities: 108: 62,-4 111: 59,-5 282: 51,6 - 2005: 34,4 - 2007: 34,5 - 2008: 34,6 - 2009: 34,7 - 2010: 34,8 - 2011: 35,8 - 2012: 36,8 - 2013: 37,8 - 2014: 38,8 - 2015: 38,9 - 2016: 39,9 - 2038: 38,0 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 2765: 14,14 - 2775: 15,12 - 2780: 15,12 - 2885: -7,14 - 3210: -7,15 - - node: - cleanable: True - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 1896: -14,4 - 1897: -13,4 - 1898: -12,4 - 1899: -11,4 - 1900: -10,4 - 1901: -15,4 - 1902: -9,3 - 1903: -8,3 - 1904: -7,3 - 1905: -6,3 - - node: - cleanable: True - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 1913: -28,-11 - 1914: -27,-11 - 1915: -26,-11 - 1916: -25,-11 - 1917: -24,-11 - 1918: -23,-11 - 1919: -22,-11 - 1920: -21,-11 - 1921: -20,-11 - 1922: -19,-11 - 1923: -18,-11 - 1924: -11,-12 - 1925: -10,-12 - 1926: -9,-12 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 2413: -3,-23 + 1764: 14,14 + 1774: 15,12 + 1779: 15,12 + 1874: -7,14 + 2191: -7,15 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 792: -36,6 - 793: -37,6 - 794: -38,6 - 795: -38,7 - 796: -37,7 - 797: -36,7 - 798: -36,8 - 799: -37,8 - 800: -37,9 - 801: -36,9 - 802: -38,9 - 803: -39,9 - 804: -40,9 - 805: -38,8 - 806: -39,8 - 807: -39,7 - 808: -40,7 - 809: -40,8 - 810: -41,8 - 811: -41,7 - 812: -41,6 - 813: -42,7 - 814: -42,8 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 555: -18,9 - 827: -86,14 - 1729: -53,36 - - node: - cleanable: True - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 1987: -59,30 - 1988: -58,30 - 1989: -57,30 - 1990: -56,30 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale180 - decals: - 1199: -92,-3 + 401: -36,6 + 402: -37,6 + 403: -38,6 + 404: -38,7 + 405: -37,7 + 406: -36,7 + 407: -36,8 + 408: -37,8 + 409: -37,9 + 410: -36,9 + 411: -38,9 + 412: -39,9 + 413: -40,9 + 414: -38,8 + 415: -39,8 + 416: -39,7 + 417: -40,7 + 418: -40,8 + 419: -41,8 + 420: -41,7 + 421: -41,6 + 422: -42,7 + 423: -42,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -5681,134 +8850,43 @@ entities: 62: 57,0 160: 52,13 253: 36,11 - 1943: 32,1 - 1944: 31,1 - 1945: 30,1 - 1946: 29,1 - 1947: 28,1 - 1948: 27,1 - 1949: 26,1 - 1950: 25,1 - 1951: 24,1 - 2017: 33,1 - 2018: 34,1 - 2019: 35,1 - 2020: 36,1 - 2021: 37,1 - 2031: 41,3 - 2032: 41,2 - 2033: 41,1 - 2034: 41,0 - 2035: 40,0 - 2036: 39,0 - 2037: 38,0 - - node: - cleanable: True - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 1972: -59,45 - 1973: -59,44 + 1176: 33,1 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 2644: -6,11 - 2766: 15,12 - 2776: 14,14 - 2779: 14,14 - 2882: -5,12 - - node: - cleanable: True - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 1906: -21,1 - 1907: -20,1 - 1908: -19,1 - 1909: -18,1 - 1910: -17,1 - 1911: -16,1 - 1912: -15,1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 683: -1,-26 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 1894: 0,-17 - 1895: 0,-16 - 2411: -1,-20 + 1643: -6,11 + 1765: 15,12 + 1775: 14,14 + 1778: 14,14 + 1871: -5,12 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 769: -36,7 - 770: -37,8 - 771: -37,7 - 772: -36,8 - 773: -36,9 - 774: -37,9 - 775: -38,9 - 776: -38,8 - 777: -38,7 - 778: -39,7 - 779: -39,8 - 780: -39,9 - 781: -40,9 - 782: -40,8 - 783: -40,7 - 784: -41,7 - 785: -41,8 - 786: -42,8 - 787: -42,7 - 788: -41,6 - 789: -38,6 - 790: -37,6 - 791: -36,6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 1083: 5,-7 - 1185: 0,-15 - 1186: 0,-14 - 1187: 0,-12 - 1188: 0,-10 - 1189: 0,-9 - 1190: 1,-9 - 1191: 1,-8 - 1192: 1,-7 - 1193: 1,-6 - 1194: 0,-13 - 1195: 0,-11 - - node: - cleanable: True - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 1974: -59,43 - 1975: -59,42 - 1976: -59,41 - 1977: -59,40 - 1978: -59,39 - 1979: -59,38 - 1980: -60,37 - 1981: -60,36 - 1982: -60,35 - 1983: -60,34 - 1984: -60,33 - 1985: -60,32 - 1986: -60,31 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale270 - decals: - 1213: -94,-4 + 378: -36,7 + 379: -37,8 + 380: -37,7 + 381: -36,8 + 382: -36,9 + 383: -37,9 + 384: -38,9 + 385: -38,8 + 386: -38,7 + 387: -39,7 + 388: -39,8 + 389: -39,9 + 390: -40,9 + 391: -40,8 + 392: -40,7 + 393: -41,7 + 394: -41,8 + 395: -42,8 + 396: -42,7 + 397: -41,6 + 398: -38,6 + 399: -37,6 + 400: -36,6 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -5822,237 +8900,130 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 2768: 14,12 - 2777: 15,14 - 2778: 15,14 - 2883: -7,12 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 490: -53,-11 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 663: -8,-24 - 664: -8,-24 - 682: -3,-26 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 1869: -23,-14 - 1870: -22,-14 - 1871: -21,-14 - 1872: -20,-14 - 1873: -19,-14 - 1874: -18,-14 - 1875: -17,-14 - 1876: -16,-14 - 1877: -15,-14 - 1878: -14,-14 - 1879: -13,-14 - 1880: -12,-14 - 1881: -11,-14 - 1882: -10,-14 - 1883: -9,-14 - 1884: -8,-14 - 1885: -7,-14 - 1886: -4,-15 - 1887: -4,-16 - 1888: -4,-17 - 1889: -4,-18 - 1890: -3,-18 - 1891: -2,-18 - 1892: -1,-18 - 1893: 0,-18 - 2412: -3,-20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 1102: 11,-7 - 2210: -42,1 - 2211: -42,0 - 2212: -42,-1 - 2213: -42,-2 - 2214: -42,-3 - 2215: -42,2 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale90 - decals: - 1198: -92,-5 - 1214: -97,0 + 1767: 14,12 + 1776: 15,14 + 1777: 15,14 + 1872: -7,12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 121: 52,-5 147: 57,8 - 1933: 23,3 - 1934: 24,3 - 1935: 25,3 - 1936: 26,3 - 1937: 27,3 - 1938: 28,3 - 1939: 29,3 - 1940: 30,3 - 1941: 31,3 - 1942: 32,3 - 2006: 33,3 + 1175: 33,3 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1927: -16,3 - 1928: -17,3 - 1929: -18,3 - 1930: -19,3 - 1931: -20,3 - 1932: -21,3 - 2767: 15,14 - 2774: 14,12 - 2781: 14,12 - 2886: -5,14 - 3226: -5,15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 480: -55,-10 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 658: -5,-25 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 2414: -1,-23 + 1766: 15,14 + 1773: 14,12 + 1780: 14,12 + 1875: -5,14 + 2207: -5,15 - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 + color: '#41000096' + id: Rust decals: - 1108: 15,-9 - 1952: 15,3 - 1953: 16,3 - 1954: 17,3 - 1955: 18,3 - 1956: 19,3 - 1957: 20,3 - 1958: 21,3 - 1959: 22,3 + 1416: 23,39 + 1417: 23,40 + 1418: 24,40 + 1419: 24,39 + 1420: 25,39 + 1421: 25,40 + 1422: 24,38 + 1423: 24,38 + 1424: 24,39 + 1425: 23,39 + 1426: 23,40 + 1427: 24,40 + 1428: 25,40 + 1429: 25,39 + 1430: 24,38 + 1431: 24,39 + 1432: 23,39 + 1433: 23,40 + 1434: 24,40 + 1435: 25,40 + 1436: 25,39 + 1437: 23,41 + 1438: 23,41 + 1439: 23,41 + 1440: 23,42 + 1441: 23,42 + 1442: 23,42 + 1443: 23,43 + 1444: 24,43 + 1445: 24,42 + 1446: 25,42 + 1447: 25,43 + 1448: 23,43 + 1449: 24,43 + 1450: 24,42 + 1451: 25,42 + 1452: 25,43 + 1453: 23,43 + 1454: 24,43 + 1455: 24,42 + 1456: 25,42 + 1457: 25,43 - node: - color: '#41000096' + color: '#FFFFFFFF' id: Rust decals: - 2355: 23,39 - 2356: 23,40 - 2357: 24,40 - 2358: 24,39 - 2359: 25,39 - 2360: 25,40 - 2361: 24,38 - 2362: 24,38 - 2363: 24,39 - 2364: 23,39 - 2365: 23,40 - 2366: 24,40 - 2367: 25,40 - 2368: 25,39 - 2369: 24,38 - 2370: 24,39 - 2371: 23,39 - 2372: 23,40 - 2373: 24,40 - 2374: 25,40 - 2375: 25,39 - 2376: 23,41 - 2377: 23,41 - 2378: 23,41 - 2379: 23,42 - 2380: 23,42 - 2381: 23,42 - 2382: 23,43 - 2383: 24,43 - 2384: 24,42 - 2385: 25,42 - 2386: 25,43 - 2387: 23,43 - 2388: 24,43 - 2389: 24,42 - 2390: 25,42 - 2391: 25,43 - 2392: 23,43 - 2393: 24,43 - 2394: 24,42 - 2395: 25,42 - 2396: 25,43 + 4483: -103,-9 + 4484: -81,-13 + 4485: -81,-12 + 4486: -81,-13 + 4487: -81,-12 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2332: 10,2 + 1393: 10,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2333: 11,2 + 1394: 11,2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2334: 12,2 + 1395: 12,2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2335: 13,2 + 1396: 13,2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2336: 14,2 + 1397: 14,2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2337: 15,2 + 1398: 15,2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2338: 16,2 + 1399: 16,2 - node: cleanable: True color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1867: 50,6 - 1868: 49,-7 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 556: -17,10 + 1157: 50,6 - node: color: '#FFFFFFFF' id: StandClear decals: - 342: -62,-16 - 1767: -57,36 - 1768: -56,36 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1230: -106,-13 + 336: -62,-16 + 3950: -135,-9 + 3951: -135,-8 + 3952: -135,-7 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale @@ -6061,92 +9032,35 @@ entities: 69: 54,9 196: 59,-4 229: 30,16 - - node: - cleanable: True - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1967: -57,45 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1790: -12,7 - 2656: 5,14 - 2683: 13,15 - 2713: 30,20 - 2716: 24,20 - 3179: 6,24 - 3221: -7,21 - 3223: -8,15 + 1090: -12,7 + 1655: 5,14 + 1682: 13,15 + 1712: 30,20 + 1715: 24,20 + 2160: 6,24 + 2202: -7,21 + 2204: -8,15 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale decals: - 3022: 23,32 + 2009: 23,32 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale decals: - 3864: 18,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 429: -68,-5 - 469: -57,-6 - 498: -68,1 - 527: -72,-10 - 4258: -71,-6 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 656: -10,-21 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 540: -21,9 - 541: -18,10 - 578: -46,1 - 659: -89,14 - 721: -61,10 - 730: 7,-9 - 751: -64,22 - 820: -86,17 - 1049: 2,-11 - 1050: 3,-5 - 1051: 10,-6 - 1077: 7,-1 - 1127: 10,-1 - 1128: 10,-1 - 1714: -53,45 - 1715: -53,41 - 1716: -58,36 - 1717: -53,37 - 1718: -54,36 - 3568: 41,-19 - 3866: 42,-12 + 2840: 18,15 - node: - cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1961: -57,43 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1242: -96,10 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 591: -91,-6 - 1203: -88,-3 - 1232: -105,-20 - 1427: -91,-12 + 638: 10,-1 + 639: 10,-1 + 2842: 42,-12 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 @@ -6159,68 +9073,31 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1789: -13,8 - 2642: -6,5 - 2643: -4,11 - 2655: 11,11 - 2680: 16,11 - 2717: 28,11 - 3050: 35,18 - 3176: 11,20 + 1089: -13,8 + 1641: -6,5 + 1642: -4,11 + 1654: 11,11 + 1679: 16,11 + 1716: 28,11 + 2037: 35,18 + 2157: 11,20 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2967: -10,11 + 1954: -10,11 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3860: 22,14 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 442: -59,-18 - 496: -51,-18 - 499: -59,-3 - 522: -70,-8 - 524: -70,-14 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 678: -1,-32 - 680: 4,-26 + 2836: 22,14 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 542: -17,5 - 577: -44,-1 - 662: -85,12 - 717: -59,7 - 731: 9,-13 - 750: -60,20 - 1053: 5,-14 - 1054: 5,-9 - 1069: 8,-7 - 1076: 8,-3 - 1089: 22,-15 - 1090: 19,-15 - 1091: 15,-4 - 1092: 15,-4 - 1719: -55,38 - 1720: -51,39 - 1721: -51,43 - 1722: -52,34 - 1723: -56,32 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 592: -97,-6 - 1233: -106,-20 + 621: 19,-15 + 622: 15,-4 + 623: 15,-4 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 @@ -6229,84 +9106,34 @@ entities: 36: 54,-1 84: 59,12 230: 30,11 - - node: - cleanable: True - color: '#3AB3DAFF' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2603: -115,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1788: -12,8 - 2641: -8,5 - 2654: 5,11 - 2681: 13,11 - 2714: 30,18 - 2718: 24,11 - 3177: 6,20 + 1088: -12,8 + 1640: -8,5 + 1653: 5,11 + 1680: 13,11 + 1713: 30,18 + 1717: 24,11 + 2158: 6,20 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2965: -13,11 + 1952: -13,11 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3862: 18,14 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 443: -68,-18 - 473: -57,-11 - 495: -53,-18 - 500: -68,-3 - 525: -72,-14 - 4259: -71,-8 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 655: -10,-24 - 661: -8,-26 - 677: -3,-32 + 2838: 18,14 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 539: -21,5 - 576: -46,-1 - 660: -89,12 - 716: -61,7 - 732: 7,-13 - 749: -64,20 - 1052: 2,-14 - 1068: 3,-9 - 1075: 7,-3 - 1085: 10,-7 - 1086: 11,-11 - 1087: 18,-15 - 1088: 21,-15 - 1125: 10,-4 - 1126: 10,-4 - 1724: -57,38 - 1725: -53,43 - 1726: -53,39 - 1727: -54,34 - 1728: -58,32 - 3452: 42,-17 - 3567: 41,-21 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1196: -91,-5 - 1204: -88,-1 - 1231: -105,-13 - 1426: -91,-8 + 636: 10,-4 + 637: 10,-4 + 2432: 42,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -6319,2926 +9146,2792 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1791: -13,7 - 2653: 11,14 - 2682: 16,15 - 2715: 28,20 - 3051: 35,20 - 3178: 11,24 - 3222: -5,21 + 1091: -13,7 + 1652: 11,14 + 1681: 16,15 + 1714: 28,20 + 2038: 35,20 + 2159: 11,24 + 2203: -5,21 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2966: -10,15 - 3023: 25,32 + 1953: -10,15 + 2010: 25,32 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3861: 22,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 441: -59,-5 - 470: -55,-6 - 501: -59,1 - 523: -70,-6 - 526: -70,-10 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 657: -5,-21 - 679: 4,-25 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 538: -17,10 - 575: -44,1 - 722: -59,10 - 733: 9,-9 - 752: -60,22 - 821: -85,17 - 1055: 5,-11 - 1070: 8,-5 - 1107: 15,-6 - 1129: 15,-1 - 1130: 15,-1 - 1710: -56,36 - 1711: -52,37 - 1712: -51,41 - 1713: -51,45 + 2837: 22,15 - node: - cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1963: -55,43 - 1964: -55,45 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1243: -92,10 + 640: 15,-1 + 641: 15,-1 - node: - color: '#FFFFFFFF' - id: WarnBox + color: '#F9801DFF' + id: WarnBoxGreyscale decals: - 595: -92,-6 - 596: -91,-6 + 2283: -2,7 - node: - color: '#F9801DFF' + color: '#FF5C5CFF' id: WarnBoxGreyscale decals: - 3303: -2,7 + 3961: -144,-8 - node: color: '#FFFFFFFF' id: WarnBoxGreyscale decals: - 1169: 11,9 - 1170: 5,9 - 1171: 5,5 + 670: 11,9 + 671: 5,9 + 672: 5,5 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1174: 9,9 + 675: 9,9 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 341: -15,-9 - 649: -15,-19 - 2865: -29,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2866: -32,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2867: -29,47 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2864: -32,47 + 335: -15,-9 + 368: -15,-19 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleE decals: - 1167: 11,5 + 668: 11,5 - node: color: '#334E6DC8' id: WarnEndGreyscaleN decals: - 327: 40,10 + 323: 40,10 - node: color: '#334E6DC8' id: WarnEndGreyscaleS decals: - 328: 40,4 + 324: 40,4 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleS decals: - 1173: 9,8 + 674: 9,8 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleW decals: - 1168: 10,5 - 1172: 7,9 + 669: 10,5 + 673: 7,9 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: WarnEndW decals: - 338: -16,-6 + 332: -16,-6 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 5195: -128,-1 + 5196: -127,-1 + 5197: -126,-1 + 5198: -128,8 + 5199: -127,8 + 5200: -126,8 + 5201: 45,1 + 5202: 45,0 + 5203: 47,8 + 5204: 47,7 + - node: + cleanable: True + color: '#3C44AAFF' + id: WarnFullGreyscale + decals: + 3108: 43,-6 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3180: 5,21 - 3181: 5,20 + 2161: 5,21 + 2162: 5,20 - node: - color: '#FFFFFF34' + cleanable: True + color: '#B02E26FF' id: WarnFullGreyscale decals: - 1443: -92,-12 - 1444: -91,-12 - 1445: -91,-11 - 1446: -92,-11 - 1447: -92,-10 - 1448: -91,-10 - 1449: -91,-9 - 1450: -92,-9 - 1451: -92,-8 - 1452: -91,-8 + 3107: 41,-10 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 652: -15,-20 - 2868: -29,48 - 2869: -29,49 - 3145: 14,27 - 3146: 14,26 - 3147: 14,25 + 370: -15,-20 + 5106: -89,33 + 5107: -89,34 + 5108: -89,36 + 5109: -88,40 + 5110: -88,41 + 5111: -88,42 + 5112: -88,43 + 5113: -88,45 + 5114: -88,44 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 321: 40,9 - 322: 40,8 - 323: 40,8 - 324: 40,7 - 325: 40,6 - 326: 40,5 + 317: 40,9 + 318: 40,8 + 319: 40,8 + 320: 40,7 + 321: 40,6 + 322: 40,5 - node: color: '#9C2020FF' id: WarnLineGreyscaleE decals: - 3903: 23,-3 - 3904: 23,-2 - 4003: 37,-7 - 4004: 37,-6 - 4006: 40,-14 - 4007: 40,-21 - 4008: 40,-19 + 2865: 23,-3 + 2866: 23,-2 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 3453: 45,-12 - 3454: 45,-13 - 3455: 46,-12 - 3456: 47,-12 - 3457: 47,-13 - 3458: 48,-12 - 3459: 49,-12 - 3460: 49,-13 - 3461: 50,-12 - 3462: 51,-12 - 3463: 51,-13 - 3464: 52,-12 - 3465: 51,-17 - 3466: 51,-16 - 3467: 52,-17 - 3468: 50,-17 - 3469: 49,-17 - 3470: 49,-16 - 3471: 48,-17 - 3472: 47,-17 - 3473: 47,-16 - 3474: 46,-17 - 3475: 45,-17 - 3476: 45,-16 - 3559: 45,-13 - 3560: 47,-13 - 3561: 49,-13 - 3562: 51,-13 - 3563: 51,-16 - 3564: 49,-16 - 3565: 47,-16 - 3566: 45,-16 + 2433: 45,-12 + 2434: 45,-13 + 2435: 46,-12 + 2436: 47,-12 + 2437: 47,-13 + 2438: 48,-12 + 2439: 49,-12 + 2440: 49,-13 + 2441: 50,-12 + 2442: 51,-12 + 2443: 51,-13 + 2444: 52,-12 + 2445: 51,-17 + 2446: 51,-16 + 2447: 52,-17 + 2448: 50,-17 + 2449: 49,-17 + 2450: 49,-16 + 2451: 48,-17 + 2452: 47,-17 + 2453: 47,-16 + 2454: 46,-17 + 2455: 45,-17 + 2456: 45,-16 + 2539: 45,-13 + 2540: 47,-13 + 2541: 49,-13 + 2542: 51,-13 + 2543: 51,-16 + 2544: 49,-16 + 2545: 47,-16 + 2546: 45,-16 - node: color: '#FF0000FF' id: WarnLineGreyscaleE decals: - 2625: -79,-20 - - node: - color: '#9C2020FF' - id: WarnLineGreyscaleN - decals: - 4005: 36,-6 + 1624: -79,-20 - node: - angle: 3.141592653589793 rad - color: '#FF0000FF' + color: '#791500FF' id: WarnLineGreyscaleN decals: - 584: -85,-20 + 3334: 43,-10 + 3335: 44,-10 + 3336: 45,-10 + 3337: 46,-10 + 3338: 47,-10 + 3339: 48,-10 + 3340: 49,-10 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1176: 8,9 + 677: 8,9 - node: - color: '#9C2020FF' + color: '#334E6DFF' id: WarnLineGreyscaleS decals: - 3926: 26,-7 - 3927: 27,-7 - 4010: 39,-21 + 3328: 44,-6 + 3329: 45,-6 + 3330: 46,-6 + 3331: 47,-6 + 3332: 48,-6 + 3333: 49,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 3675: 49,-21 - 3676: 49,-20 - 3677: 48,-20 - 3678: 49,-19 + 2653: 49,-21 + 2654: 49,-20 + 2655: 48,-20 + 2656: 49,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1175: 8,9 + 676: 8,9 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 329: 40,5 - 330: 40,6 - 331: 40,7 - 332: 40,8 - 333: 40,9 + 325: 40,5 + 326: 40,6 + 327: 40,7 + 328: 40,8 + 329: 40,9 - node: color: '#9C2020FF' id: WarnLineGreyscaleW decals: - 3905: 24,-3 - 3906: 24,-2 - 4009: 38,-21 - 4013: 38,-17 - 4179: 39,-7 - 4180: 39,-6 + 2867: 24,-3 + 2868: 24,-2 - node: - color: '#FF0000FF' - id: WarnLineGreyscaleW + color: '#FFFFFFFF' + id: WarnLineN decals: - 2624: -83,-12 + 5115: -88,37 + 5116: -89,32 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineN decals: - 339: -15,-10 + 333: -15,-10 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarnLineN decals: - 340: -16,-9 + 334: -16,-9 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 1968: -67,45 - 1969: -66,45 - 1970: -65,45 - 1971: -59,45 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 768: -3,-36 - 1704: -86,37 - 1705: -86,38 - 1706: -86,39 - 2870: -32,48 - 2871: -32,49 - 3142: 13,27 - 3143: 13,26 - 3144: 13,25 + 1158: -67,45 + 1159: -66,45 + 1160: -65,45 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 285: -95,-14 - 286: -94,-14 - 287: -93,-14 + 377: -3,-36 + 1075: -86,37 + 1076: -86,38 + 1077: -86,39 + 5096: -89,36 + 5097: -89,37 + 5098: -89,39 + 5099: -89,40 + 5100: -89,42 + 5101: -89,43 + 5102: -89,45 + 5103: -89,34 + 5104: -89,33 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 650: -16,-19 - 651: -17,-19 - 653: -20,-19 - 654: -20,-28 - 1707: -86,45 - 1708: -85,45 - 1709: -84,45 - 2607: -7,-43 - 2608: 1,-43 - 2872: -31,50 - 2873: -30,50 + 369: -16,-19 + 371: -20,-19 + 372: -20,-28 + 1078: -86,45 + 1079: -85,45 + 1080: -84,45 + 1610: -7,-43 + 1611: 1,-43 + 5105: -88,45 - node: color: '#410000C4' id: WoodTrimThinCornerNe decals: - 2397: 25,40 + 1458: 25,40 - node: color: '#4143509B' id: WoodTrimThinCornerNe decals: - 1851: -78,1 - 1852: -74,1 + 1142: -78,1 + 1143: -74,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 221: 45,6 - 3033: 43,14 - 3038: 48,15 - 3612: 49,-25 + 2020: 43,14 + 2025: 48,15 + 2590: 49,-25 - node: color: '#4143509B' id: WoodTrimThinCornerNw decals: - 1855: -80,1 - 1856: -76,1 + 1146: -80,1 + 1147: -76,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 218: 43,6 - 3039: 46,15 - 3624: 46,-25 + 2026: 46,15 + 2602: 46,-25 - node: color: '#410000C4' id: WoodTrimThinCornerSe decals: - 2398: 25,39 + 1459: 25,39 - node: color: '#4143509B' id: WoodTrimThinCornerSe decals: - 1853: -74,0 - 1854: -78,0 + 1144: -74,0 + 1145: -78,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 215: 43,12 217: 45,4 - 3045: 48,12 - 3618: 49,-29 - 3999: 33,-8 + 2032: 48,12 + 2596: 49,-29 + 2947: 33,-8 - node: color: '#410000C4' id: WoodTrimThinCornerSw decals: - 2399: 23,39 + 1460: 23,39 - node: color: '#4143509B' id: WoodTrimThinCornerSw decals: - 1857: -80,0 - 1858: -76,0 + 1148: -80,0 + 1149: -76,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 219: 43,4 - 3044: 46,12 - 3620: 46,-29 + 2031: 46,12 + 2598: 46,-29 - node: color: '#410000C4' id: WoodTrimThinInnerNe decals: - 2402: 23,40 + 1463: 23,40 - node: color: '#410000C4' id: WoodTrimThinInnerSe decals: - 2404: 24,39 + 1465: 24,39 - node: color: '#410000C4' id: WoodTrimThinInnerSw decals: - 2403: 24,39 + 1464: 24,39 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 4482: -121,-14 - node: color: '#FF0000FF' id: WoodTrimThinLineE decals: - 4240: -76,-1 - 4241: -76,-2 - 4248: -79,-4 - 4249: -79,-3 + 3058: -76,-1 + 3059: -76,-2 + 3066: -79,-4 + 3067: -79,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: 45: 48,13 220: 45,5 - 3034: 43,13 - 3040: 48,14 - 3633: 49,-26 - 3635: 49,-27 - 3637: 49,-28 - 4000: 33,-7 - 4001: 33,-6 + 2021: 43,13 + 2027: 48,14 + 2611: 49,-26 + 2613: 49,-27 + 2615: 49,-28 + 2948: 33,-7 + 2949: 33,-6 + 4364: -118,-16 + 4365: -118,-15 + 4366: -118,-14 + 4367: -118,-13 - node: color: '#410000C4' id: WoodTrimThinLineN decals: - 2400: 24,40 + 1461: 24,40 - node: color: '#4143509B' id: WoodTrimThinLineN decals: - 1859: -79,1 - 1860: -75,1 + 1150: -79,1 + 1151: -75,1 - node: color: '#FF0000FF' id: WoodTrimThinLineN decals: - 4242: -75,-3 - 4243: -74,-3 - 4244: -80,-3 - 4245: -79,-3 + 3060: -75,-3 + 3061: -74,-3 + 3062: -80,-3 + 3063: -79,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 222: 44,6 - 419: -75,-17 - 420: -74,-17 - 421: -74,-17 - 422: -73,-17 - 423: -72,-17 - 424: -71,-17 - 425: -70,-17 - 3035: 40,14 - 3036: 41,14 - 3037: 42,14 - 3041: 47,15 - 3645: 48,-25 - 3647: 47,-25 + 341: -75,-17 + 342: -74,-17 + 343: -74,-17 + 344: -73,-17 + 345: -72,-17 + 346: -71,-17 + 347: -70,-17 + 2022: 40,14 + 2023: 41,14 + 2024: 42,14 + 2028: 47,15 + 2623: 48,-25 + 2625: 47,-25 + 4350: -119,-13 + 4351: -118,-13 + 4352: -120,-13 + 4353: -121,-13 + 4354: -122,-13 + 4355: -123,-13 + 4356: -124,-13 - node: color: '#4143509B' id: WoodTrimThinLineS decals: - 1861: -79,0 - 1862: -75,0 + 1152: -79,0 + 1153: -75,0 - node: color: '#FF0000FF' id: WoodTrimThinLineS decals: - 4250: -78,-2 - 4251: -77,-2 - 4252: -76,-2 + 3068: -78,-2 + 3069: -77,-2 + 3070: -76,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: 216: 42,12 224: 44,4 - 3046: 47,12 - 3653: 47,-29 - 3654: 48,-29 - 3996: 30,-8 - 3997: 31,-8 - 3998: 32,-8 + 2033: 47,12 + 2631: 47,-29 + 2632: 48,-29 + 2944: 30,-8 + 2945: 31,-8 + 2946: 32,-8 + 4360: -121,-16 + 4361: -120,-16 + 4362: -119,-16 + 4363: -118,-16 + 4479: -122,-14 + 4480: -123,-14 + 4481: -124,-14 - node: color: '#410000C4' id: WoodTrimThinLineW decals: - 2401: 23,40 + 1462: 23,40 - node: color: '#FF0000FF' id: WoodTrimThinLineW decals: - 4246: -78,-2 - 4247: -78,-1 - 4253: -75,-4 - 4254: -75,-3 + 3064: -78,-2 + 3065: -78,-1 + 3071: -75,-4 + 3072: -75,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 44: 46,13 223: 43,5 - 3042: 46,14 - 3043: 46,13 - 3656: 46,-28 - 3658: 46,-27 - 3660: 46,-26 - - node: - color: '#52B4E99E' - id: corgi - decals: - 2941: -15,11 - 2942: -15,11 + 2029: 46,14 + 2030: 46,13 + 2634: 46,-28 + 2636: 46,-27 + 2638: 46,-26 + 4357: -124,-13 + 4358: -124,-14 + 4359: -121,-16 + 4368: -121,-15 - node: cleanable: True color: '#D5188DFF' id: cyka decals: - 3069: 31.01219,28.700993 + 2056: 31.01219,28.700993 - node: color: '#52B4E996' id: dwarf decals: - 2731: 32,19 - 2801: 6,12 - 2802: 7,13 - 2803: 8,12 - 2804: 9,13 - 2805: 10,12 + 1730: 32,19 + 1800: 6,12 + 1801: 7,13 + 1802: 8,12 + 1803: 9,13 + 1804: 10,12 - node: color: '#52B4E99E' id: dwarf decals: - 2732: 32,19 + 1731: 32,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: dwarf + decals: + 6517: -8,-39 - node: color: '#52B4E99E' id: face decals: - 2943: -15,6 + 1930: -15,6 - node: cleanable: True color: '#951710FF' id: fireaxe decals: - 3068: 29.871565,30.075993 + 2055: 29.871565,30.075993 - node: cleanable: True color: '#FF00007F' id: i decals: - 3332: 12.651019,36.660164 - 3333: 12.807269,36.628914 - 3334: 12.979144,36.660164 - 3335: 13.104144,36.660164 - 3337: 12.338519,35.73829 - 3338: 12.479144,35.73829 - 3339: 12.635394,35.73829 - 3340: 12.229144,35.76954 - 3353: 11.622622,36.410164 - 3354: 11.700747,36.410164 + 2312: 12.651019,36.660164 + 2313: 12.807269,36.628914 + 2314: 12.979144,36.660164 + 2315: 13.104144,36.660164 + 2317: 12.338519,35.73829 + 2318: 12.479144,35.73829 + 2319: 12.635394,35.73829 + 2320: 12.229144,35.76954 + 2333: 11.622622,36.410164 + 2334: 11.700747,36.410164 - node: cleanable: True angle: 0.3490658503988659 rad color: '#FF00007F' id: i decals: - 3342: 13.776019,35.86329 - 3343: 13.885394,35.89454 - 3344: 13.682269,35.847664 - 3345: 14.010394,35.910164 + 2322: 13.776019,35.86329 + 2323: 13.885394,35.89454 + 2324: 13.682269,35.847664 + 2325: 14.010394,35.910164 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FF00007F' id: i decals: - 3336: 12.916644,36.597664 - 3341: 12.432269,35.660164 + 2316: 12.916644,36.597664 + 2321: 12.432269,35.660164 - node: cleanable: True angle: 1.7453292519943295 rad color: '#FF00007F' id: i decals: - 3347: 13.322894,37.253914 - 3348: 13.322894,37.128914 - 3349: 13.307269,37.003914 - 3350: 13.338519,36.910164 + 2327: 13.322894,37.253914 + 2328: 13.322894,37.128914 + 2329: 13.307269,37.003914 + 2330: 13.338519,36.910164 - node: cleanable: True angle: 1.9198621771937625 rad color: '#FF00007F' id: i decals: - 3346: 13.885394,35.847664 + 2326: 13.885394,35.847664 - node: cleanable: True angle: 3.3161255787892263 rad color: '#FF00007F' id: i decals: - 3351: 13.354144,37.128914 + 2331: 13.354144,37.128914 - node: color: '#52B4E996' id: med decals: - 2796: 7,12 - 2797: 6,13 - 2798: 8,13 - 2799: 9,12 - 2800: 10,13 - 2925: -7,8 - 2926: -7,8 - 2927: -7,8 + 1795: 7,12 + 1796: 6,13 + 1797: 8,13 + 1798: 9,12 + 1799: 10,13 + 1914: -7,8 + 1915: -7,8 + 1916: -7,8 - node: color: '#52B4E99E' id: med decals: - 2928: -7,8 + 1917: -7,8 - node: cleanable: True color: '#1861D5FF' id: revolution decals: - 3067: 29.965315,29.888493 + 2054: 29.965315,29.888493 - node: cleanable: True color: '#951710FF' id: skull decals: - 3066: 29.23094,30.263493 + 2053: 29.23094,30.263493 + - node: + color: '#DE3A3AFF' + id: smallbrush + decals: + 5210: 11,12 - node: cleanable: True color: '#500003BD' id: splatter decals: - 1178: 7.7312813,7.7481747 - 1179: 7.1773834,8.133408 - 1180: 8.405594,7.6277905 - 1181: 10.067291,8.590872 - 1182: 6.96064,5.460855 - 1183: 5.4193535,7.8926373 + 679: 7.7312813,7.7481747 + 680: 7.1773834,8.133408 + 681: 8.405594,7.6277905 + 682: 10.067291,8.590872 + 683: 6.96064,5.460855 + 684: 5.4193535,7.8926373 - node: cleanable: True color: '#9517109B' id: splatter decals: - 3058: 17.5018,29.685368 - 3059: 18.90805,28.544743 - 3060: 16.8143,31.529118 - 3061: 16.642426,31.466618 - 3062: 17.986176,31.029118 - 3063: 17.611176,29.372868 - 3064: 16.6268,31.279118 - 3065: 16.59555,30.950993 + 2045: 17.5018,29.685368 + 2046: 18.90805,28.544743 + 2047: 16.8143,31.529118 + 2048: 16.642426,31.466618 + 2049: 17.986176,31.029118 + 2050: 17.611176,29.372868 + 2051: 16.6268,31.279118 + 2052: 16.59555,30.950993 - node: cleanable: True color: '#FF0000FF' id: splatter decals: - 1863: -70.95911,-0.042213917 + 1154: -70.95911,-0.042213917 - type: GridAtmosphere version: 2 data: tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 -4,-4: + 0: 65287 + -4,-5: 0: 65535 + -5,-4: + 0: 65291 -4,-3: - 0: 255 + 0: 15 1: 65280 + -5,-3: + 0: 28799 -4,-2: 1: 15 - 0: 65520 + 0: 65344 + -5,-2: + 0: 65407 -4,-1: 0: 65535 + -5,-1: + 0: 32767 -3,-4: - 0: 65535 + 0: 65528 -3,-3: - 0: 65535 + 0: 65039 -3,-2: - 0: 65535 + 0: 56782 -3,-1: - 0: 65535 + 0: 57343 + -3,-5: + 0: 65529 -2,-4: - 0: 65535 + 0: 65286 -2,-3: - 0: 65535 + 0: 65327 -2,-2: 0: 65535 -2,-1: 0: 65535 + -2,-5: + 0: 30576 -1,-4: 0: 65535 -1,-3: - 0: 65535 + 0: 56783 -1,-2: - 0: 65535 + 0: 56797 + -1,-1: + 0: 56797 + -1,-5: + 0: 65454 + -1,0: + 0: 65532 + 0,-4: + 0: 64799 + 0,-3: + 0: 47613 + 0,-2: + 0: 48059 + 0,-1: + 0: 56785 -4,0: - 0: 65535 + 0: 65520 + -5,0: + 0: 65525 -4,1: - 0: 65535 + 0: 65166 + -5,1: + 0: 65520 + -4,2: + 0: 41966 + -5,2: + 0: 7679 + -4,3: + 0: 48042 + -5,3: + 0: 36863 + -4,4: + 0: 48051 -3,0: - 0: 65535 + 0: 65520 -3,1: - 0: 65535 + 0: 63255 + -3,2: + 0: 29567 + -3,3: + 0: 63487 -2,0: - 0: 65535 + 0: 65520 -2,1: + 0: 63344 + -2,2: + 0: 63359 + -2,3: 0: 65535 + -2,4: + 0: 61422 -1,1: - 0: 65535 + 0: 65520 + -1,2: + 0: 54527 + -1,3: + 0: 57567 + -1,4: + 0: 61422 0,0: - 0: 65535 + 0: 65521 0,1: - 0: 65535 + 0: 64976 + 0,2: + 0: 61917 + 0,3: + 0: 53503 + 0,4: + 0: 53727 1,0: - 0: 65535 + 0: 65520 + 1,2: + 0: 62702 + 1,3: + 0: 36606 + 1,-1: + 0: 65522 1,1: - 0: 65535 + 0: 61152 + 1,4: + 0: 3822 2,0: - 0: 65535 + 0: 65520 2,1: - 0: 65535 + 0: 65520 + 2,2: + 0: 61695 + 2,3: + 0: 12287 + 2,-1: + 0: 56797 + 2,4: + 0: 4095 3,0: - 0: 65535 + 0: 65520 3,1: + 0: 63072 + 3,2: + 0: 61542 + 3,3: + 0: 61183 + 3,-1: 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 3,4: + 0: 26214 + 4,0: + 0: 65524 + 4,1: + 0: 65528 + 4,2: + 0: 56335 + 4,3: + 0: 65309 + 0,-5: + 0: 54734 1,-4: - 0: 65535 + 0: 45967 1,-3: - 0: 65535 + 0: 47807 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 65523 + 1,-5: + 0: 64733 2,-4: - 0: 65535 + 0: 47167 2,-3: - 0: 65535 + 0: 49075 2,-2: - 0: 65535 - 2,-1: - 0: 65535 + 0: 40952 + 2,-5: + 0: 28924 3,-4: - 0: 65535 + 0: 48015 3,-3: - 0: 65535 + 0: 65521 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 + 0: 4095 + 3,-5: + 0: 53503 + 4,-4: + 0: 56768 + 4,-3: + 0: 65529 + 4,-1: + 0: 61152 + 4,4: + 0: 65524 5,0: - 0: 65535 + 0: 65534 5,1: - 0: 65535 + 0: 30576 + 5,2: + 0: 29287 + 5,3: + 0: 65287 6,0: - 0: 65535 + 0: 65520 6,1: + 0: 65521 + 6,2: + 0: 61695 + 6,3: 0: 65535 - 7,0: + 6,4: 0: 65535 + 6,-1: + 0: 61438 + 7,0: + 0: 65520 7,1: - 0: 65535 + 0: 57336 7,2: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: + 0: 53503 + 7,3: + 0: 56797 + 7,-1: + 0: 40413 + 7,4: + 0: 64797 + 8,0: + 0: 65520 + 8,1: + 0: 56796 + 8,2: + 0: 64669 + 8,3: 0: 65535 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 + 0: 61152 + 4,-5: + 0: 57904 + 2: 140 5,-3: - 0: 65535 + 0: 65524 5,-2: - 0: 65535 + 0: 65520 + 5,-5: + 0: 62976 + 2: 147 + 5,-4: + 0: 26208 5,-1: - 0: 65535 + 0: 3822 6,-4: - 0: 65535 + 0: 48048 6,-3: - 0: 65535 + 0: 65522 + 6,-5: + 0: 61440 + 2: 49 6,-2: - 0: 65535 - 6,-1: - 0: 65535 + 0: 61164 7,-4: - 0: 65535 + 0: 56784 7,-3: - 0: 65535 + 0: 65533 7,-2: + 0: 8188 + 7,-5: + 0: 61440 + 8,-4: + 0: 30576 + 8,-3: 0: 65535 - 7,-1: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: + 8,-2: + 0: 4093 + 8,-1: 0: 65535 + 8,4: + 0: 65295 9,0: - 0: 65535 + 0: 65532 9,1: 0: 65535 9,2: - 0: 65535 + 0: 29135 + 9,3: + 0: 30583 + 9,-1: + 0: 5051 + 9,4: + 0: 61959 10,0: - 0: 65535 + 0: 15359 10,1: - 0: 65535 + 0: 56793 10,2: - 0: 65535 + 0: 36349 + 10,3: + 0: 20479 + 10,4: + 0: 29815 11,0: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 + 0: 33279 + 11,1: + 0: 62395 + 11,2: + 0: 51519 + 11,3: + 0: 52701 + 12,0: + 0: 47359 + 12,1: + 0: 63679 + 12,2: + 0: 64975 + 12,3: + 0: 5489 + 11,4: + 0: 64728 + 8,-5: + 0: 63496 + 2: 34 9,-4: - 0: 65535 + 0: 64764 9,-3: - 0: 65535 + 0: 30591 9,-2: - 0: 65535 - 9,-1: - 0: 65535 + 0: 39859 + 9,-5: + 0: 64973 10,-4: - 0: 65535 + 0: 57309 10,-3: - 0: 65535 + 0: 47885 10,-2: - 0: 65535 + 0: 65523 10,-1: - 0: 65535 + 0: 255 + 10,-5: + 0: 53745 11,-4: 0: 65535 11,-3: - 0: 65535 + 0: 65295 11,-2: - 0: 65535 + 0: 4080 11,-1: + 0: 119 + 11,-5: + 0: 61559 + 12,-4: 0: 65535 + 12,-3: + 0: 13071 + 12,-2: + 0: 816 + 12,-1: + 0: 1911 0,-8: - 0: 65535 + 0: 61166 + -1,-8: + 0: 61182 0,-7: - 0: 65535 + 0: 65358 + -1,-7: + 0: 65358 + -1,-6: + 0: 61162 0,-6: - 0: 65535 - 0,-5: - 0: 65535 + 0: 61156 1,-8: - 0: 65339 + 0: 61713 + 2: 8 1,-7: - 0: 65535 + 0: 64961 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-7: - 0: 40857 + 0: 56796 + 1,-9: + 2: 61439 + 2,-8: + 2: 59807 2,-6: - 0: 64443 - 2,-5: - 0: 65535 - 3,-5: - 0: 65471 - 2: 64 + 0: 4368 + 2: 19592 + 2,-9: + 2: 7936 + 2,-7: + 2: 44680 + 3,-8: + 2: 12834 + 3,-9: + 2: 8960 + 3,-7: + 2: 8930 + 3,-6: + 2: 546 + 4,-7: + 2: 8752 0,-12: - 0: 65528 + 0: 30464 + 2: 136 + -1,-12: + 0: 35328 + 2: 8 0,-11: - 0: 65535 + 0: 30551 + -1,-11: + 0: 65288 0,-10: - 0: 40959 + 0: 119 + 2: 43008 + -1,-10: + 0: 58623 0,-9: - 0: 65535 - 1,-9: - 0: 65535 + 2: 3822 + -1,-9: + 0: 20207 + 0,-13: + 2: 64240 + 1,-12: + 2: 43770 + 1,-11: + 2: 43770 + 1,-10: + 2: 43770 + 1,-13: + 2: 47344 -4,-8: - 0: 65021 + 2: 817 + 0: 34952 + -4,-9: + 2: 4401 + 0: 34952 + -5,-8: + 2: 755 -4,-7: - 0: 65535 + 0: 2879 + -5,-7: + 0: 4095 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 4095 + -5,-6: + 0: 16383 + -5,-5: + 0: 64307 -3,-8: - 0: 65535 + 0: 56797 -3,-7: - 0: 65535 + 0: 1821 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 52733 + -3,-9: + 0: 53623 -2,-8: 0: 65535 -2,-7: - 0: 65535 + 0: 65295 -2,-6: 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 + -2,-9: + 0: 61440 + 1: 255 + -8,-8: + 2: 30719 + -8,-9: + 2: 61440 + -8,-7: + 2: 30591 + -8,-6: + 2: 62847 + -9,-6: + 2: 62960 -8,-5: - 0: 65525 + 2: 13 + 0: 65280 + -9,-5: + 0: 65280 + 2: 1 + -8,-4: + 0: 65295 -7,-8: - 0: 61937 + 2: 4607 + -7,-5: + 0: 65518 + -7,-9: + 2: 61440 -7,-7: - 0: 65535 + 0: 61070 -7,-6: - 0: 65535 - -7,-5: - 0: 65535 + 0: 61166 + -7,-4: + 0: 65295 -6,-8: - 0: 61937 + 2: 511 -6,-7: - 0: 65535 - -6,-6: - 0: 65535 + 0: 3979 -6,-5: - 0: 65535 - -5,-8: - 0: 62194 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-4: - 0: 65535 + 0: 65262 + -6,-9: + 2: 61440 + -6,-6: + 0: 57574 + -6,-4: + 0: 65326 + -5,-9: + 2: 64716 + -9,-4: + 0: 65392 -8,-3: - 0: 65535 + 0: 63247 + -9,-3: + 0: 63247 -8,-2: 0: 65535 + -9,-2: + 0: 63351 -8,-1: - 0: 65535 - -7,-4: - 0: 65535 + 0: 65488 + -8,0: + 0: 63239 + -9,-1: + 0: 63239 -7,-3: - 0: 65535 + 0: 61695 -7,-2: 0: 65535 -7,-1: - 0: 65535 - -6,-4: - 0: 65535 + 0: 61422 -6,-3: - 0: 65535 + 0: 64255 -6,-2: 0: 65535 -6,-1: 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - 4,-5: - 0: 63993 - 3: 1542 - -4,-9: - 0: 56829 - -3,-9: - 0: 65535 + 4,-6: + 2: 57902 + 5,-6: + 2: 61713 + 6,-6: + 2: 4096 + -4,-11: + 2: 32648 + -5,-11: + 2: 52224 + -4,-10: + 2: 5983 + 0: 32768 + -5,-10: + 2: 52428 + -4,-12: + 2: 34952 + -4,-13: + 2: 34944 -3,-12: - 0: 43770 + 2: 9210 -3,-11: - 0: 43951 + 2: 13095 -3,-10: - 0: 65455 + 2: 103 + 0: 28672 + -3,-13: + 2: 65008 -2,-12: - 0: 65524 + 0: 65280 + 2: 4 -2,-11: - 0: 65535 + 0: 65375 -2,-10: - 0: 4095 + 0: 255 1: 61440 - -2,-9: - 1: 255 - 0: 65280 - -1,-12: - 0: 65528 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 + -2,-13: + 2: 65008 + -1,-13: + 2: 64240 -12,-4: - 0: 65535 + 0: 64989 + -12,-5: + 0: 39696 + 2: 15 + -13,-4: + 0: 65339 -12,-3: - 0: 65535 - -12,-1: - 0: 65535 + 0: 35769 + -13,-3: + 0: 4095 -12,-2: + 0: 20979 + -13,-2: + 0: 61883 + -12,-1: + 0: 53589 + -13,-1: 0: 65535 + -12,0: + 0: 63709 -11,-4: - 0: 65535 + 0: 56607 -11,-3: - 0: 65535 + 0: 56797 -11,-2: - 0: 65535 + 0: 64989 -11,-1: - 0: 65535 + 0: 64973 + -11,-5: + 0: 65280 + 2: 7 + -11,0: + 0: 64733 -10,-4: - 0: 65535 + 0: 65287 -10,-3: - 0: 65535 + 0: 21791 -10,-2: - 0: 65535 + 0: 62805 -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,-5: - 0: 65535 - -11,-5: - 0: 65527 + 0: 56661 -10,-5: - 0: 65521 - -9,-5: - 0: 65521 - -8,0: - 0: 65535 + 0: 65280 + 2: 1 + -10,0: + 0: 64797 + -9,0: + 0: 65287 + -12,-6: + 2: 65520 + -13,-6: + 2: 65408 + -13,-5: + 2: 15 + 0: 47872 + -11,-6: + 2: 63472 + -10,-6: + 2: 62960 -8,1: - 0: 65535 + 0: 29567 + -9,1: + 0: 55551 -8,2: - 0: 65535 + 0: 30583 + -9,2: + 0: 56541 -8,3: - 0: 65535 + 0: 30711 + -9,3: + 0: 52700 + -8,4: + 0: 26495 -7,0: - 0: 65535 + 0: 65520 -7,1: - 0: 65535 + 0: 62207 -7,2: - 0: 65535 + 0: 20735 + -7,3: + 0: 4085 + -7,4: + 0: 4095 -6,0: - 0: 65535 + 0: 65520 -6,1: - 0: 65535 + 0: 47283 -6,2: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -12,0: - 0: 65535 + 0: 20667 + -6,3: + 0: 2037 + -6,4: + 0: 3003 + -5,4: + 0: 35839 + -13,0: + 0: 63231 -12,1: - 0: 65535 + 0: 61695 + -13,1: + 0: 62975 -12,2: 0: 65535 - -12,3: - 0: 65535 - -11,0: + -13,2: 0: 65535 + -12,3: + 0: 7088 + -13,3: + 0: 53232 + -12,4: + 0: 4095 -11,1: - 0: 65535 + 0: 55551 -11,2: - 0: 65535 + 0: 62493 -11,3: - 0: 65535 - -10,0: - 0: 65535 + 0: 4080 + -11,4: + 0: 4095 -10,1: - 0: 65535 + 0: 61663 -10,2: - 0: 65535 + 0: 62719 -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 + 0: 36340 + -10,4: + 0: 4095 + -9,4: + 0: 4095 -16,0: - 0: 65535 + 0: 61695 + -16,-1: + 0: 65523 + -17,0: + 0: 61695 -16,1: - 0: 65535 + 0: 45311 + -17,1: + 0: 63231 -16,2: + 0: 15295 + -17,2: 0: 65535 -16,3: - 0: 65535 + 0: 4088 + -17,3: + 0: 4083 + -16,4: + 0: 12287 -15,0: - 0: 65535 + 0: 63679 -15,1: - 0: 65535 + 0: 45311 -15,2: - 0: 65535 + 0: 7099 -15,3: - 0: 65535 + 0: 4095 + -15,-1: + 0: 65464 + -15,4: + 0: 53247 -14,0: - 0: 65535 + 0: 62395 -14,1: - 0: 65535 + 0: 53503 -14,2: - 0: 65535 + 0: 4061 -14,3: + 0: 4087 + -14,-1: + 0: 48059 + -14,4: + 0: 8191 + -13,4: + 0: 36863 + -16,-4: 0: 65535 - -13,0: - 0: 65535 - -13,1: + -16,-5: + 0: 65451 + -17,-4: 0: 65535 - -13,2: + -16,-3: 0: 65535 - -13,3: + -17,-3: 0: 65535 - -15,-1: + -16,-2: 0: 65535 - -14,-1: + -17,-2: 0: 65535 + -17,-1: + 0: 65520 + -15,-4: + 0: 48059 + -15,-3: + 0: 64435 + -15,-2: + 0: 15355 + -15,-5: + 0: 47873 + 2: 12 + -14,-4: + 0: 48059 + -14,-3: + 0: 16376 + -14,-2: + 0: 37819 + -14,-5: + 0: 47872 + 2: 15 -20,0: + 0: 59647 + -20,-1: 0: 65535 -20,1: - 0: 65535 + 0: 28911 + -21,0: + 0: 58982 + -21,1: + 0: 61678 -20,2: - 0: 65535 + 0: 10239 + -21,2: + 0: 61439 + -20,3: + 0: 58606 + -21,3: + 0: 61182 + -20,4: + 0: 35567 -19,0: - 0: 65535 + 0: 61559 -19,1: - 0: 65535 + 0: 61695 -19,2: - 0: 65535 + 0: 53247 -19,3: - 0: 65535 + 0: 56541 + -19,-1: + 0: 30583 + -19,4: + 0: 7391 -18,0: - 0: 65535 + 0: 63359 -18,1: - 0: 65535 + 0: 53503 -18,2: - 0: 65535 + 0: 57341 -18,3: - 0: 65535 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -19,-1: - 0: 65535 + 0: 7645 -18,-1: + 0: 65399 + -18,4: + 0: 4095 + -17,4: + 0: 4095 + -20,-4: + 0: 13107 + 2: 34952 + -20,-5: + 0: 13247 + 2: 34816 + -21,-4: 0: 65535 - -8,4: - 0: 65535 + -20,-3: + 0: 65315 + 2: 8 + -21,-3: + 0: 43535 + -20,-2: + 0: 11187 + -21,-2: + 0: 12010 + -21,-1: + 0: 29626 + -19,-4: + 2: 4352 + 0: 17486 + -19,-3: + 2: 1 + 0: 30656 + -19,-2: + 0: 12282 + -19,-5: + 0: 60928 + 2: 10 + -18,-4: + 0: 30503 + -18,-3: + 0: 2039 + -18,-5: + 0: 30464 + 2: 8 + -18,-2: + 0: 9958 + -17,-5: + 0: 65280 + 2: 4 -8,5: - 0: 65535 + 0: 30463 + -9,5: + 0: 57567 + -8,6: + 0: 30438 + -9,6: + 0: 57582 + -8,7: + 0: 63206 + -9,7: + 0: 57582 + -8,8: + 0: 63078 -7,5: + 0: 28863 + -7,6: + 0: 28791 + -7,7: + 0: 28791 + -7,8: + 0: 119 + 2: 57344 + -6,5: 0: 65535 - -12,4: - 0: 65535 + -6,6: + 0: 63551 + -6,7: + 0: 63743 + -6,8: + 0: 59 + -5,5: + 0: 56831 + -5,6: + 0: 4365 + 2: 52224 + -5,7: + 0: 4369 + 2: 34952 + -5,8: + 0: 1 + 2: 63976 + -4,5: + 0: 63419 + -4,6: + 0: 15 + 2: 3840 + -4,7: + 2: 8944 -12,5: - 0: 65535 - -11,4: - 0: 65535 + 0: 57599 + -13,5: + 0: 255 + 2: 40960 + -12,6: + 0: 238 + 2: 256 + -13,6: + 2: 51854 + -12,7: + 2: 61440 + -13,7: + 2: 35976 + 0: 4369 -11,5: - 0: 65535 - -10,4: - 0: 65535 + 0: 43775 + -11,6: + 0: 34875 + 2: 12288 + -11,7: + 2: 4371 + 0: 34952 + -11,8: + 2: 10003 + 0: 136 -10,5: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -16,4: - 0: 65535 + 0: 61183 + -10,6: + 0: 62414 + -10,7: + 0: 53759 + -10,8: + 0: 221 + 2: 4096 + -9,8: + 0: 238 + 2: 20480 -16,5: - 0: 65535 + 0: 4095 + -17,5: + 0: 28919 -16,6: + 0: 4095 + -17,6: 0: 65535 -16,7: + 0: 65534 + -17,7: 0: 65535 - -15,4: - 0: 65535 + -16,8: + 0: 61166 -15,5: - 0: 65535 + 0: 52733 -15,6: - 0: 65535 + 0: 4095 -15,7: - 0: 65535 - -14,4: - 0: 65535 + 0: 8191 + -15,8: + 0: 65021 -14,5: - 0: 65535 + 0: 56797 -14,6: - 0: 65535 + 0: 19965 -14,7: - 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 8191 - -13,6: - 0: 63903 - -13,7: - 0: 49083 - -20,4: - 0: 65535 + 0: 50517 + -14,8: + 0: 64917 + -13,8: + 0: 4353 + 2: 35016 + -21,4: + 0: 65263 -20,5: - 0: 4095 - -20,6: - 0: 65484 - -20,7: - 0: 65535 - -19,4: - 0: 65535 + 0: 238 + -21,5: + 0: 4607 + 2: 16384 -19,5: - 0: 4095 - -19,6: - 0: 65399 - -19,7: - 0: 65535 - -18,4: - 0: 65535 + 0: 255 -18,5: - 0: 36863 - -18,6: - 0: 39304 + 0: 255 + 2: 16384 -18,7: + 2: 8224 + 0: 3584 + -17,8: 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 65535 - -17,7: - 0: 65535 - -21,1: - 0: 65535 - -21,2: - 0: 65535 - -21,4: - 0: 65535 - -21,5: - 0: 16383 - -20,8: - 0: 65535 - -20,9: - 0: 65535 - -20,10: + -24,0: 0: 65535 - -20,11: - 0: 3327 - -19,8: + -24,-1: + 0: 65523 + -25,0: + 0: 30475 + -24,1: 0: 65535 - -19,9: + -25,1: + 0: 63479 + -24,2: + 0: 20479 + -25,2: + 0: 28799 + -24,3: 0: 65535 - -19,10: + -24,4: + 0: 57599 + -23,0: + 0: 56797 + -23,1: + 0: 56733 + -23,2: + 0: 3549 + -23,3: + 0: 7099 + -23,-1: + 0: 65520 + -23,4: + 0: 36559 + -22,0: + 0: 65520 + -22,1: + 0: 65407 + -22,2: + 0: 20479 + -22,3: + 0: 53247 + -22,-1: + 0: 57296 + -22,4: + 0: 53727 + -25,4: + 0: 63072 + -24,5: + 0: 61262 + -25,5: + 0: 8191 + -24,6: + 0: 55772 + -25,6: 0: 65535 - -19,11: - 0: 2047 - -18,8: - 0: 39327 + -24,7: + 0: 221 + -25,7: + 0: 224 + 2: 8192 + -23,5: + 0: 57230 + -23,6: + 0: 52241 + -23,7: + 0: 2269 + -23,8: + 0: 51340 + -22,5: + 0: 57309 + -22,6: + 0: 56780 + -22,7: + 0: 52701 + -22,8: + 0: 61166 + -21,6: + 0: 4369 + -21,7: + 0: 7953 + 2: 32896 + -21,8: + 0: 4369 -18,9: - 0: 65535 - -18,10: - 0: 39327 - -18,11: - 0: 2201 - -17,8: - 0: 65535 + 2: 514 + 0: 224 -17,9: 0: 65535 -17,10: 0: 65535 -17,11: - 0: 65535 - -16,8: - 0: 65535 + 0: 43775 + -18,11: + 2: 2048 + -17,12: + 0: 170 + 2: 16 -16,9: - 0: 65535 + 0: 65534 -16,10: - 0: 65535 + 0: 63726 -16,11: - 0: 24575 - -15,8: - 0: 65535 + 0: 255 + 2: 16384 + -16,12: + 2: 244 -15,9: - 0: 65535 + 0: 48029 -15,10: - 0: 65535 + 0: 48059 -15,11: - 0: 65535 - -14,8: - 0: 65535 + 0: 60159 + -15,12: + 0: 174 + 2: 16 -14,9: - 0: 65535 + 0: 62365 -14,10: - 0: 65535 + 0: 62463 -14,11: - 0: 65535 - -13,8: - 0: 48123 + 0: 61951 + -14,12: + 0: 15 -13,9: - 0: 63295 + 0: 12305 + 2: 33804 -13,10: - 0: 30583 + 0: 12339 -13,11: - 0: 30583 - -16,12: - 0: 245 - -15,12: - 0: 255 - -14,12: - 0: 255 - -17,12: - 0: 255 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,2: - 0: 65407 - 4: 128 - 2,3: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,3: - 0: 65535 - 8,3: - 0: 65535 - 9,3: - 0: 65535 - 10,3: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65503 - 5: 32 - 11,3: - 0: 65279 - 6: 256 - -12,-6: - 0: 65520 - -11,-6: - 0: 63472 - -7,3: - 0: 65535 - -6,3: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -16,-4: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 65535 - -16,-1: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -20,3: - 0: 65535 - -20,-4: - 0: 65535 - -20,-3: - 0: 65535 - -20,-2: - 0: 65535 - -20,-1: - 0: 65535 - -19,-4: - 0: 65535 - -19,-3: - 0: 65535 - -19,-2: - 0: 65535 - -18,-4: - 0: 65535 - -18,-3: - 0: 65535 - -18,-2: - 0: 65535 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65535 - -17,-1: - 0: 65535 - -7,4: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -11,6: - 0: 57343 - -11,7: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -24,0: - 0: 65535 - -24,1: - 0: 65535 - -24,2: - 0: 65535 - -24,3: - 0: 65535 - -23,0: - 0: 65535 - -23,1: - 0: 65535 - -23,2: - 0: 65535 - -23,3: - 0: 65535 - -22,0: - 0: 65535 - -22,1: - 0: 65535 - -22,2: - 0: 65535 - -22,3: - 0: 65535 - -21,0: - 0: 65535 - -21,3: - 0: 65535 - -24,4: - 0: 65535 - -24,5: - 0: 65535 - -24,6: - 0: 65535 - -24,7: - 0: 4095 - -23,4: - 0: 65535 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -23,7: - 0: 53247 - -22,4: - 0: 65535 - -22,5: - 0: 65535 - -22,6: - 0: 65535 - -22,7: - 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 12,2: - 0: 65535 - 12,3: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: + 0: 12339 + -13,12: + 0: 3 + 2: 192 + -12,9: + 2: 22001 + -12,12: + 2: 245 + 13,0: + 0: 4415 + 1: 52224 + 13,1: + 0: 12561 + 1: 3276 + 13,2: 0: 65535 13,3: 0: 65535 - 14,0: - 0: 65535 - 14,1: + 12,4: + 2: 8 + 0: 4368 + 13,-1: 0: 65535 + 14,0: + 0: 61007 14,2: 0: 65535 14,3: 0: 65535 + 14,-1: + 0: 65535 + 14,1: + 0: 20206 15,0: 0: 65535 15,1: - 0: 65535 + 0: 65527 15,2: - 0: 65535 + 0: 65407 15,3: - 0: 8191 - 12,4: - 0: 49083 - 12,5: - 0: 13119 - 13,4: - 0: 3855 - 13,5: - 0: 15 - 14,4: - 0: 3855 - 14,5: - 0: 15 + 0: 255 + 15,-1: + 0: 32767 15,4: - 0: 5983 - 15,5: - 0: 4383 - 16,0: - 0: 21973 - 16,1: - 0: 54615 + 2: 1103 16,2: - 0: 30709 + 0: 13056 + 2: 196 16,3: - 0: 20343 + 0: 51 + 2: 19456 + 12,5: + 0: 13059 + 11,5: + 0: 61005 + 12,6: + 2: 12530 + 11,6: + 2: 62194 + 13,6: + 2: 240 + 14,6: + 2: 48 + 16,4: + 2: 1375 + 16,1: + 2: 50246 + 16,0: + 2: 17604 + 16,-1: + 2: 51336 + 0: 819 17,0: - 0: 22357 + 2: 22357 17,1: - 0: 22359 + 2: 22359 17,2: - 0: 21877 + 2: 21877 17,3: - 0: 22357 + 2: 22357 + 17,-1: + 2: 30037 + 17,4: + 2: 273 + 16,-4: + 2: 7 + 15,-4: + 2: 4383 16,-3: - 0: 20241 + 2: 20241 + 15,-3: + 2: 22303 16,-2: - 0: 65359 - 16,-1: - 0: 65535 + 2: 35919 + 0: 12288 + 15,-2: + 2: 15 + 0: 61440 + 16,-5: + 2: 17487 17,-2: - 0: 22353 - 17,-1: - 0: 30037 - 12,-4: - 0: 65535 - 12,-3: - 0: 49151 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 + 2: 22353 + 12,-5: + 0: 61695 + 13,-4: + 0: 4369 + 2: 52428 13,-3: - 0: 4095 + 0: 1 + 2: 16300 13,-2: - 0: 65535 - 13,-1: - 0: 65535 + 0: 65520 + 13,-5: + 0: 4102 + 2: 52224 + 14,-4: + 2: 6015 14,-3: - 0: 3855 + 2: 7951 14,-2: + 0: 65520 + 14,-5: + 0: 4643 + 2: 34952 + 15,-5: + 2: 39421 + -24,-4: 0: 65535 - 14,-1: - 0: 65535 - 15,-3: - 0: 22303 - 15,-2: - 0: 65311 - 15,-1: + -24,-5: 0: 65535 - -24,-4: + -25,-4: 0: 65535 -24,-3: - 0: 65535 + 0: 65466 + -25,-3: + 0: 48048 -24,-2: 0: 65535 - -24,-1: - 0: 65535 + -25,-2: + 0: 48027 + -25,-1: + 0: 48051 -23,-4: 0: 65535 -23,-3: - 0: 65535 + 0: 48015 -23,-2: - 0: 30719 - 3: 34816 - -23,-1: + 0: 48059 + -23,-5: 0: 65535 -22,-4: 0: 65535 -22,-3: 0: 65535 -22,-2: - 0: 61183 - 3: 4352 - -22,-1: - 0: 65535 - -21,-4: - 0: 65535 - -21,-3: 0: 65535 - -21,-2: + -22,-5: 0: 65535 - -21,-1: + -21,-5: 0: 65535 + -28,-4: + 0: 50685 + -28,-5: + 0: 56797 + -29,-4: + 0: 32767 -28,-3: - 0: 65535 + 0: 24029 + -29,-3: + 0: 55537 -28,-2: - 0: 65535 + 0: 56797 + -29,-2: + 0: 52701 -28,-1: - 0: 65535 - -28,-4: - 0: 65535 + 0: 65533 + -29,-1: + 0: 40848 + -28,0: + 0: 65519 -27,-4: - 0: 65535 + 0: 56831 -27,-3: - 0: 65535 + 0: 56785 -27,-2: - 0: 65535 + 0: 64797 -27,-1: + 0: 56799 + -27,-5: 0: 65535 + -27,0: + 0: 65309 -26,-4: 0: 65535 -26,-3: - 0: 65407 - 7: 128 + 0: 65520 -26,-2: - 0: 65535 + 0: 65295 -26,-1: 0: 65535 - -25,-4: - 0: 65535 - -25,-3: - 0: 65535 - -25,-2: - 0: 65535 - -25,-1: + -26,-5: 0: 65535 - -28,0: + -26,0: + 0: 65295 + -25,-5: 0: 65535 + -29,0: + 0: 64792 -28,1: - 0: 65535 + 0: 65279 + -29,1: + 0: 33247 -28,2: - 0: 65535 + 0: 57343 + -29,2: + 0: 2553 -28,3: - 0: 65535 - -27,0: - 0: 65535 + 0: 56797 + -29,3: + 0: 56796 + -28,4: + 0: 3577 -27,1: - 0: 65535 + 0: 53759 -27,2: - 0: 65535 + 0: 56797 -27,3: - 0: 65535 - -26,0: - 0: 65535 + 0: 65521 -26,1: - 0: 65535 + 0: 29439 -26,2: - 0: 65535 + 0: 14199 -26,3: - 0: 65535 - -25,0: - 0: 65535 - -25,1: - 0: 65535 - -25,2: - 0: 65535 + 0: 61416 -25,3: - 0: 65535 + 0: 30583 + -26,4: + 0: 36856 -24,-8: - 0: 64000 + 2: 64000 -24,-7: - 0: 22015 + 2: 15 3: 8704 - 8: 34816 + 4: 34816 + -25,-8: + 2: 64000 + -25,-7: + 2: 15 + 3: 34816 + 6: 8704 -24,-6: - 0: 65525 3: 2 - 8: 8 - -24,-5: - 0: 65535 + 2: 3840 + 4: 8 + -25,-6: + 3: 8 + 2: 3840 + 6: 2 -23,-8: - 0: 64000 + 2: 64000 -23,-7: - 0: 22015 + 2: 15 3: 43520 -23,-6: - 0: 65525 + 2: 3840 3: 10 - -23,-5: - 0: 65535 -22,-8: - 0: 64000 + 2: 64000 -22,-7: - 0: 56831 + 2: 34959 3: 8704 -22,-6: - 0: 65533 + 2: 3976 3: 2 - -22,-5: - 0: 65535 -21,-8: - 0: 64000 + 2: 64000 -21,-7: - 0: 13311 - 3: 52224 + 2: 4383 + 0: 52224 -21,-6: - 0: 65523 - 3: 12 - -21,-5: - 0: 65535 + 2: 3857 + 0: 12 + -20,-8: + 2: 64000 + -20,-7: + 2: 52431 + 0: 4352 + -20,-6: + 0: 1 + 2: 36812 + -28,-7: + 2: 62720 -28,-6: - 0: 65331 - -28,-5: - 0: 65535 - -27,-6: - 0: 65504 - -27,-5: + 2: 29 + 0: 56514 + -29,-6: + 2: 95 + 0: 61440 + -29,-5: 0: 65535 -27,-7: - 0: 2056 - -26,-8: - 0: 64000 + 2: 6408 + -27,-6: + 0: 1 + 2: 3298 -26,-7: - 0: 30719 - 9: 34816 + 2: 13087 + 5: 34816 -26,-6: - 0: 65527 - 9: 8 - -26,-5: - 0: 65535 - -25,-8: - 0: 64000 - -25,-7: - 0: 22015 - 10: 8704 - 3: 34816 - -25,-6: - 0: 65525 - 10: 2 - 3: 8 - -25,-5: - 0: 65535 - -28,4: - 0: 65535 + 2: 3875 + 5: 8 + -26,-8: + 2: 64000 + -29,4: + 0: 4092 -28,5: - 0: 65535 + 0: 255 + 1: 61440 + -29,5: + 0: 170 + 1: 45056 -28,6: - 0: 65535 + 1: 65535 + -29,6: + 1: 35003 + 2: 12288 -28,7: - 0: 4095 + 2: 4080 + -29,7: + 2: 4087 -27,4: - 0: 65535 + 0: 3568 -27,5: - 0: 65535 + 0: 255 + 1: 61440 -27,6: - 0: 65535 + 1: 65535 -27,7: - 0: 36863 - -26,4: - 0: 65535 + 2: 36848 -26,5: - 0: 65535 + 0: 2235 + 1: 12288 -26,6: - 0: 65535 + 1: 13107 + 0: 34952 -26,7: - 0: 12287 - -25,4: - 0: 65535 - -25,5: - 0: 65535 - -25,6: + 2: 10016 + 0: 128 + -27,8: + 2: 8 + -26,8: + 2: 15 + -25,8: + 2: 3 + -32,0: + 0: 63351 + -32,-1: + 0: 32767 + -32,1: + 0: 30591 + -32,2: + 0: 64759 + -33,2: + 0: 61670 + -32,3: + 0: 60669 + -33,3: 0: 65535 - -25,7: - 0: 12287 - -30,0: + -32,4: + 0: 3822 + -31,0: + 0: 64975 + -31,1: + 0: 64735 + -31,2: 0: 65535 - -30,1: + -31,3: + 0: 32767 + -31,-1: 0: 65535 + -31,4: + 0: 1911 -30,2: - 0: 65535 + 0: 6649 -30,3: - 0: 65535 - -29,0: - 0: 65535 - -29,1: - 0: 65535 - -29,2: - 0: 65535 - -29,3: - 0: 65535 + 0: 64977 -30,-1: - 0: 65535 - -30,-2: - 0: 65535 - -29,-2: - 0: 65535 - -29,-1: - 0: 65535 - -29,-3: - 0: 65535 + 0: 40849 + -30,0: + 0: 61152 + -30,1: + 0: 3822 -30,4: + 0: 52465 + -32,-4: + 2: 26367 + -33,-4: + 2: 63 + 0: 47232 + -33,-3: 0: 65535 - -29,4: - 0: 65535 - -29,5: - 0: 65535 - -29,6: - 0: 65535 - -29,7: - 0: 3311 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: + -32,-3: + 0: 61152 + -32,-2: + 0: 61183 + -33,-2: + 0: 8055 + -33,-1: + 0: 27869 + -31,-4: + 2: 3 + 0: 65416 + -31,-3: + 0: 57584 + -31,-2: + 0: 3822 + -31,-5: + 2: 17479 + -30,-4: + 0: 30583 + -30,-3: + 0: 61686 + -30,-2: 0: 4095 - -4,7: - 0: 13296 + -33,4: + 0: 255 + -32,5: + 0: 239 + 2: 4096 + -33,5: + 0: 30719 + -32,6: + 2: 35630 + -33,6: + 2: 24392 + -32,7: + 2: 15 + -33,7: + 2: 15 + -31,5: + 0: 255 + 2: 20480 + -31,6: + 2: 36703 + -30,5: + 0: 255 + 2: 4096 + 1: 49152 + -30,6: + 2: 62209 + 1: 204 + -31,7: + 2: 8 + -30,7: + 2: 13 + -4,8: + 2: 8946 -3,4: - 0: 65535 + 0: 65520 -3,5: - 0: 65535 + 0: 61695 -3,6: - 0: 57343 + 0: 2179 + 2: 13056 -3,7: - 0: 57309 - -2,4: - 0: 65535 + 2: 4881 + 0: 3080 + -3,8: + 2: 4401 + 0: 32904 -2,5: - 0: 65535 + 0: 62702 -2,6: - 0: 65535 + 0: 28528 -2,7: - 0: 65535 - -1,4: - 0: 65535 + 0: 12256 + -2,8: + 0: 29047 -1,5: - 0: 65535 + 0: 61678 -1,6: - 0: 65535 + 0: 32631 -1,7: - 0: 65535 - 0,4: - 0: 65535 + 0: 65527 + -1,8: + 0: 64311 0,5: - 0: 65535 + 0: 61663 0,6: - 0: 65535 + 0: 14192 0,7: - 0: 65535 - 1,4: - 0: 65535 + 0: 2872 + 0,8: + 0: 65295 1,5: - 0: 65535 + 0: 56558 1,6: - 0: 65535 + 0: 61213 1,7: - 0: 65535 - 2,4: - 0: 65535 + 0: 3808 + 1,8: + 0: 20206 2,5: 0: 65535 - 3,4: - 0: 65535 + 2,6: + 0: 65295 + 2,7: + 0: 7632 + 2,8: + 0: 28671 3,5: - 0: 65535 + 0: 28518 3,6: - 0: 65535 - 4,4: - 0: 65535 + 0: 28518 + 3,7: + 0: 26230 + 3,8: + 0: 10103 4,5: - 0: 65535 + 0: 65520 4,6: - 0: 65535 + 0: 40944 + 4,7: + 0: 61152 5,4: - 0: 65535 + 0: 30576 5,5: - 0: 65535 + 0: 47920 5,6: - 0: 65535 - 6,4: - 0: 65535 + 0: 33784 + 5,7: + 0: 43944 6,5: - 0: 65535 + 0: 48927 6,6: - 0: 65535 - 7,4: - 0: 65535 + 0: 14835 + 6,7: + 0: 48051 + 5,8: + 0: 52232 + 2: 4352 + 6,8: + 0: 30483 7,5: - 0: 65535 + 0: 36621 7,6: - 0: 65535 - -20,-8: - 0: 64000 - -20,-7: - 0: 61183 - 3: 4352 - -20,-6: - 3: 1 - 0: 65534 - -20,-5: - 0: 65535 + 0: 1919 + 7,7: + 0: 61408 + 8,5: + 0: 61199 + 8,6: + 0: 52693 -19,-8: - 0: 4096 + 2: 4096 -19,-7: - 0: 4883 + 2: 4883 -19,-6: - 0: 40723 - -19,-5: - 0: 65529 + 2: 36627 -18,-6: - 0: 36608 - -18,-5: - 0: 65528 + 2: 44800 -17,-6: - 0: 36608 - 3: 16384 - -17,-5: - 0: 65532 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 9,4: - 0: 65535 - 10,4: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - -4,8: - 0: 8947 - -3,8: - 0: 56829 + 2: 28416 + -16,-6: + 0: 47616 + 8,7: + 0: 32 + 2: 35968 + 9,5: + 0: 15266 + 9,6: + 0: 8016 + 2: 32768 + 9,7: + 2: 12546 + 8,8: + 2: 64172 + 9,8: + 2: 12290 + 10,5: + 0: 817 + 10,6: + 2: 64504 + 10,7: + 2: 561 + -4,9: + 2: 19570 + -5,9: + 2: 3971 + -4,10: + 2: 17476 + -4,11: + 2: 17476 + -4,12: + 2: 12 -3,9: - 0: 57309 + 2: 4881 + 0: 32904 -3,10: - 0: 56797 + 2: 4369 + 0: 2184 -3,11: - 0: 57309 - -2,8: - 0: 65535 + 2: 21265 + 0: 2184 + -3,12: + 2: 61937 -2,9: - 0: 65535 + 0: 61567 -2,10: 0: 65535 -2,11: - 0: 65535 - -1,8: - 0: 65535 + 0: 4095 + -2,12: + 2: 61689 -1,9: - 0: 65535 + 0: 61883 -1,10: 0: 65535 -1,11: - 0: 65535 - 0,8: - 0: 65535 + 0: 4095 + -1,12: + 2: 62452 0,9: - 0: 65535 + 0: 61695 0,10: - 0: 65535 + 0: 8191 0,11: - 0: 65535 - 1,8: - 0: 65535 + 0: 3003 + 0,12: + 2: 61681 + 1,11: + 2: 62692 1,9: - 0: 65535 + 0: 238 + 2: 8192 1,10: - 0: 57311 - 1,11: - 0: 62965 - -11,8: - 0: 11263 - -10,8: - 0: 8191 - -9,8: - 0: 57343 - -7,8: - 0: 49151 - -6,8: - 0: 4095 - -5,8: - 0: 61439 - 3: 4096 - 9,-5: - 0: 65535 - 10,-5: - 0: 65535 - 11,-5: - 0: 65535 - 12,-5: + 2: 50766 + 1,12: + 2: 61685 + 2,10: + 0: 4086 + 2,11: + 2: 61937 + 2,9: + 0: 26214 + 2,12: + 2: 4369 + 3,9: + 0: 119 + 2: 18432 + 3,10: + 2: 56911 + 3,11: + 2: 32253 + 4,8: + 0: 256 + 2: 65024 + 4,9: + 2: 39321 + 4,10: + 2: 32543 + 4,11: + 2: 245 + -12,10: + 2: 30037 + -12,11: + 2: 21845 + -11,9: + 2: 3646 + -10,9: + 2: 3871 + -9,9: + 2: 36695 + -8,9: + 0: 63231 + -8,10: + 2: 105 + 0: 1542 + -7,9: + 2: 6030 + -6,9: + 2: 3855 + 8,-8: + 2: 9284 + 8,-7: + 0: 52940 + 8,-6: + 0: 32974 + 2: 8192 + 8,-9: + 2: 17486 + 9,-7: + 0: 56785 + 9,-6: + 0: 63741 + 9,-8: + 2: 26215 + 9,-9: + 2: 21983 + 10,-8: 0: 65535 - 16,4: - 0: 8015 - 16,5: - 0: 1 - 17,4: - 0: 1 - -16,-6: + 10,-7: + 0: 56796 + 10,-6: + 0: 61661 + 10,-9: 0: 65280 - -16,-5: - 0: 65535 - -15,-6: - 0: 13056 - -15,-5: + 2: 15 + 11,-8: 0: 65535 - -14,-5: + 11,-7: + 0: 65519 + 11,-6: + 0: 30719 + 11,-9: + 0: 47872 + 2: 15 + 12,-8: 0: 65535 + 12,-7: + 0: 65343 + 12,-6: + 0: 64511 + 12,-9: + 0: 43520 + 2: 15 + 13,-8: + 0: 48123 + 13,-7: + 0: 1888 + 13,-6: + 0: 28790 + 13,-9: + 0: 43520 + 2: 15 + 14,-8: + 0: 30583 + 14,-7: + 0: 14199 + 2: 32768 + 14,-6: + 0: 13106 + 2: 34952 + 14,-9: + 0: 30464 + 2: 139 + 15,-8: + 2: 64852 + 15,-7: + 2: 39321 + 15,-6: + 2: 22009 + 15,-9: + 2: 29767 + 16,-8: + 2: 44885 + -15,-6: + 0: 4096 + 2: 512 -14,-6: - 0: 49152 - -13,-6: - 0: 65408 - -13,-5: - 0: 65535 - 2,-8: - 0: 63903 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -32,0: - 0: 65535 - -32,1: - 0: 65535 - -32,2: - 0: 65535 - -32,3: - 0: 65535 - -31,0: - 0: 65535 - -31,1: - 0: 65535 - -31,2: - 0: 65535 - -31,3: - 0: 65535 - -32,-3: - 0: 65535 - -32,-2: - 0: 65535 - -32,-1: - 0: 65535 - -31,-3: - 0: 65535 - -31,-2: + 2: 49152 + -36,-4: + 0: 65520 + -36,-5: + 2: 61440 + -37,-4: + 0: 65520 + -36,-3: 0: 65535 - -31,-1: + -37,-3: 0: 65535 - -30,-3: + -36,-2: 0: 65535 - -32,4: + -37,-2: 0: 65535 - -31,4: + -36,-1: 0: 65535 - -8,8: + -37,-1: 0: 65535 + -35,-4: + 0: 65520 -35,-3: - 0: 56799 + 0: 65535 -35,-2: - 0: 56799 + 0: 65535 -35,-1: - 0: 48127 - -34,-3: 0: 65535 + -35,-5: + 2: 61440 + -34,-4: + 0: 26480 + -34,-3: + 0: 61439 -34,-2: - 0: 65535 + 0: 65518 -34,-1: - 0: 65535 - -33,-3: - 0: 65535 - -33,-2: - 0: 65535 - -33,-1: - 0: 65535 - -33,-4: - 0: 65535 + 0: 61183 + -34,-5: + 2: 61440 + -33,-5: + 2: 61440 + -33,0: + 0: 26214 + -36,0: + 2: 240 + -37,0: + 2: 240 -35,0: - 0: 65417 - -35,1: - 0: 35071 + 2: 240 -35,2: - 0: 60971 + 2: 60960 + -35,3: + 2: 43690 + -35,4: + 2: 43694 -34,0: - 0: 65518 - -34,1: - 0: 61183 + 2: 36080 -34,2: - 0: 65519 - 3: 16 + 2: 4408 + 0: 32768 -34,3: - 0: 65535 - -33,0: - 0: 65535 - -33,1: - 0: 65535 - -33,2: - 0: 65535 - -33,3: - 0: 65535 + 2: 4369 + 0: 34952 -34,4: - 0: 65535 - -33,4: - 0: 65535 - -32,-4: - 0: 65535 - -31,-4: - 0: 65535 - -30,-4: - 0: 65535 - -29,-4: - 0: 65535 - -32,5: - 0: 4095 - -31,5: - 0: 24575 - -30,5: - 0: 12287 - -33,5: - 0: 65535 - -31,-5: - 0: 50039 + 2: 4369 + 0: 136 + -34,1: + 2: 34952 + -33,1: + 0: 26214 + -35,5: + 2: 25262 + -35,6: + 2: 17476 + -35,7: + 2: 12 + -34,5: + 2: 4882 + 0: 34952 + -34,7: + 2: 15 + -34,6: + 2: 3925 + -31,-6: + 2: 53188 + -30,-6: + 2: 3967 -30,-5: - 0: 65278 - -29,-5: - 0: 65535 - -29,-6: - 0: 65535 - -21,6: - 0: 13107 - -21,7: - 0: 65535 - 9,5: - 0: 65535 + 0: 1911 + -30,-7: + 2: 16384 + -29,-7: + 2: 20480 -23,9: - 0: 52428 + 0: 35976 -23,10: - 0: 12 - -22,8: - 0: 65535 + 0: 35016 + -23,11: + 0: 2188 + 2: 1024 -22,9: - 0: 65535 + 0: 65532 -22,10: - 0: 61167 + 0: 56797 -22,11: - 0: 61166 - -21,8: - 0: 13119 + 0: 51421 + -22,12: + 2: 2 + 0: 8 -21,9: - 0: 65535 + 0: 4593 + 2: 2056 -21,10: - 0: 13119 + 0: 4369 -21,11: - 0: 13107 - -22,12: - 0: 14 + 0: 4113 -21,12: - 0: 3 - -4,-10: - 0: 57183 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,7: - 0: 65535 - 4,7: - 0: 65535 - 5,7: - 0: 65535 - 6,7: - 0: 65535 - 7,7: - 0: 65535 - 8,7: - 0: 49151 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 24575 - -34,5: - 0: 57308 - -34,6: - 0: 3933 - -33,6: - 0: 24399 - -30,-6: - 0: 65278 - 9,6: - 0: 65535 - 9,7: - 0: 16199 - 5,-5: - 0: 62451 - 3: 3072 - 6,-5: - 0: 62195 - 3: 3328 - 7,-5: - 0: 62451 - 3: 3072 - 13,-4: - 0: 65535 - 8,-5: - 0: 64254 - 3: 1280 - 8,-6: - 0: 65262 - 9,-6: - 0: 65535 - 10,-6: - 0: 65535 - 11,-6: - 0: 65535 - 12,-6: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 3,-8: - 0: 12834 - 3,-6: - 0: 61986 - 3,-7: - 0: 8930 - 1,-12: - 0: 43770 - 1,-11: - 0: 43770 - 1,-10: - 0: 43770 - 2,-9: - 0: 7936 - 3,-9: - 0: 8960 - -8,-8: - 0: 21969 - -8,-7: - 0: 21855 - -8,-6: - 0: 62847 - 4,-6: - 0: 61998 - 5,-6: - 0: 61713 - 6,-6: - 0: 61440 - 7,-6: - 0: 61440 - -4,-11: - 0: 20360 - -4,-12: - 0: 34952 - -10,-6: - 0: 61936 - -9,-6: - 0: 61936 - -12,6: - 0: 4095 - -12,7: - 0: 61440 - -13,12: - 0: 247 - -32,6: - 0: 35630 - -32,7: - 0: 15 - -31,6: - 0: 3935 - -30,6: - 0: 1839 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 51061 - -4,9: - 0: 19570 - -4,10: - 0: 17476 - -4,11: - 0: 17476 - 2,10: - 0: 65535 - 2,11: - 0: 61937 - 3,10: - 0: 57183 - -12,9: - 0: 22001 - -12,10: - 0: 30037 - -12,11: - 0: 21845 - -11,9: - 0: 3646 - -10,9: - 0: 3871 - -9,9: - 0: 40927 - -8,9: - 0: 65535 - -7,9: - 0: 40863 - -6,9: - 0: 3855 - -5,9: - 0: 3971 - 8,-7: - 0: 61183 - 9,-7: - 0: 65535 - 10,-7: - 0: 65535 - 11,-7: - 0: 65535 - 12,-7: - 0: 65535 - 13,-7: - 0: 65535 - -36,-1: - 0: 37151 - -34,-4: - 0: 65423 - -36,0: - 0: 65423 - -36,1: - 0: 35071 - -36,2: - 0: 8 - -35,3: - 0: 43690 - -35,4: - 0: 43694 - -35,5: - 0: 25262 - -35,6: - 0: 17476 - -35,7: - 0: 12 - -34,7: - 0: 15 - -33,7: - 0: 15 - -12,12: - 0: 245 - -27,8: - 0: 8 - -26,8: - 0: 15 - -25,8: - 0: 3 - -4,12: - 0: 12 - -3,12: - 0: 61937 - -2,12: - 0: 61689 - -1,12: - 0: 62452 - 0,12: - 0: 61681 - 1,12: - 0: 61685 - 2,12: - 0: 4369 - 4,8: - 0: 64511 - 4,9: - 0: 39321 - 4,10: - 0: 32543 - 5,8: - 0: 65535 - 6,8: - 0: 65535 - 7,8: - 0: 61951 - 8,8: - 0: 64191 - -37,0: - 0: 34959 - -37,1: - 0: 762 - 0,-13: - 0: 63728 - 1,-13: - 0: 47344 - -4,-13: - 0: 34944 - -3,-13: - 0: 59632 - -2,-13: - 0: 62704 - -1,-13: - 0: 63728 - -8,-9: - 0: 61440 - -7,-9: - 0: 61440 - -6,-9: - 0: 61440 - -5,-9: - 0: 62660 - -5,-11: - 0: 19456 - -5,-10: - 0: 19524 - -28,-7: - 0: 4096 - -30,-7: - 0: 16401 - -29,-7: - 0: 20480 - -36,-4: - 0: 4383 - -36,-3: - 0: 4383 - -36,-2: - 0: 4383 - -35,-4: - 0: 39327 - -39,0: - 0: 17487 - -38,0: - 0: 15 - -39,-4: - 0: 4383 - -39,-3: - 0: 4383 - -39,-2: - 0: 4383 - -39,-1: - 0: 4383 - -38,-4: - 0: 4383 - -38,-3: - 0: 4383 - -38,-2: - 0: 4383 - -38,-1: - 0: 4383 - -37,-4: - 0: 4383 - -37,-3: - 0: 4383 - -37,-2: - 0: 4383 - -37,-1: - 0: 4383 + 2: 2 5,9: - 0: 52991 + 2: 529 + 0: 32972 5,10: - 0: 64991 + 2: 12563 + 0: 34952 5,11: - 0: 61951 + 2: 61943 6,9: - 0: 32767 + 0: 12663 + 2: 2048 6,10: - 0: 63359 + 0: 13059 + 2: 32776 6,11: - 0: 61695 + 2: 61692 + 7,8: + 2: 62208 7,9: - 0: 60979 + 2: 60979 7,10: - 0: 8095 + 2: 8095 7,11: - 0: 4369 + 2: 4369 8,9: - 0: 13102 + 2: 13102 8,10: - 0: 3875 - -9,10: - 0: 61713 - -9,11: - 0: 39185 - -8,10: - 0: 63087 - -8,11: - 0: 65526 - -7,10: - 0: 63624 - -7,11: - 0: 39304 - -9,12: - 0: 39327 - -9,13: - 0: 1529 - -8,12: - 0: 65535 - -8,13: - 0: 1535 - -7,12: - 0: 39327 - -7,13: - 0: 2553 - 12,6: - 0: 65522 - 12,7: - 0: 65520 - 13,6: - 0: 32624 - 13,7: - 0: 65527 - 14,7: - 0: 65520 - 15,6: - 0: 25393 - 15,7: - 0: 55124 - 11,6: - 0: 65522 - 11,7: - 0: 57297 - -32,-8: - 0: 65520 - -32,-7: - 0: 65297 - -32,-6: - 0: 61727 - -32,-5: - 0: 511 - -31,-8: - 0: 65534 - -31,-7: - 0: 65518 - -31,-6: - 0: 29679 - -30,-8: - 0: 4369 - -10,13: - 0: 128 - 10,8: - 0: 45000 - 10,9: - 0: 16315 - 11,8: - 0: 61408 - 11,9: - 0: 57296 - 11,10: - 0: 497 - -40,0: - 0: 257 - -40,1: - 0: 2810 - -39,1: - 0: 2814 - -38,1: - 0: 2810 - -40,-4: - 0: 61697 - -40,-3: - 0: 257 - -40,-2: - 0: 497 - -40,-1: - 0: 257 - -6,13: - 0: 16 - -36,-6: - 0: 61952 - -36,-5: - 0: 2 - -35,-7: - 0: 56830 - -35,-6: - 0: 31645 - -35,-5: - 0: 2245 - -35,-8: + 2: 803 + -39,0: + 2: 136 + -39,-1: + 2: 34952 + -38,0: + 2: 241 + -38,-1: 0: 61166 - -34,-8: - 0: 65520 - -34,-7: - 0: 65296 - -34,-6: - 0: 63263 - -34,-5: - 0: 6143 - -33,-8: - 0: 65528 - -33,-7: - 0: 65484 - -33,-6: - 0: 64719 - -33,-5: - 0: 36095 - -35,-9: - 0: 57344 - -34,-9: - 0: 15872 - -33,-9: - 0: 4032 - -32,-9: - 0: 3952 - -31,-9: - 0: 50944 - -30,-9: - 0: 4096 - 12,8: - 0: 65520 - 12,9: - 0: 65520 - 12,10: - 0: 35056 - 12,11: - 0: 136 - 13,8: - 0: 65527 - 13,9: - 0: 65527 - 13,10: - 0: 64247 - 13,11: - 0: 250 - 14,8: - 0: 65520 - 14,9: - 0: 65520 - 14,10: - 0: 240 - 15,8: - 0: 49080 - 15,9: - 0: 22488 - 15,10: - 0: 116 - -40,-6: - 0: 64000 - -40,-5: - 0: 266 - -39,-6: - 0: 64000 + -39,-4: + 2: 34952 -39,-5: - 0: 17486 - -38,-6: - 0: 64000 + 2: 32768 + -38,-4: + 2: 1 + 0: 61152 + -39,-3: + 2: 34952 + -39,-2: + 2: 34952 -38,-5: - 0: 10 - -37,-6: - 0: 62464 + 2: 61440 + -38,-3: + 0: 61166 + -38,-2: + 0: 61166 -37,-5: - 0: 39325 - -41,-5: - 0: 35976 - -41,-6: - 0: 32768 - -41,-4: - 0: 35980 - -41,-3: - 0: 35980 - -41,-2: - 0: 35980 - -41,-1: - 0: 35980 - -41,0: - 0: 35980 - -41,1: - 0: 136 - 9,8: - 0: 31814 - 4,-7: - 0: 8752 - -23,8: - 0: 140 - 14,6: - 0: 3840 - 9,9: - 0: 65535 - 9,10: - 0: 3871 - 10,10: - 0: 3875 - 9,-8: - 0: 65263 - 10,-8: - 0: 65535 - 11,-8: - 0: 65535 - 12,-8: - 0: 65535 - 3,11: - 0: 32253 - 4,11: - 0: 245 - 16,-4: - 0: 7 - 14,-4: - 0: 6015 - 15,-4: - 0: 4383 - 8,-8: - 0: 62805 - 13,-8: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 15,-8: - 0: 64852 - 15,-7: - 0: 39321 - 15,-6: - 0: 22009 - 15,-5: - 0: 39421 - 8,-10: - 0: 49066 - 8,-9: - 0: 22367 + 2: 61440 8,-11: - 0: 11776 + 2: 11776 + 8,-10: + 2: 44714 9,-11: - 0: 20224 + 2: 20224 9,-10: - 0: 52431 - 9,-9: - 0: 56799 + 2: 52431 10,-11: - 0: 3840 + 2: 3840 10,-10: - 0: 65535 - 10,-9: - 0: 65535 + 2: 65535 11,-11: - 0: 3840 + 2: 3840 11,-10: - 0: 65535 - 11,-9: - 0: 65535 + 2: 65535 12,-11: - 0: 12032 + 2: 12032 12,-10: - 0: 65535 - 12,-9: - 0: 65535 + 2: 65535 13,-11: - 0: 3840 + 2: 3840 13,-10: - 0: 65471 - 13,-9: - 0: 65535 + 2: 65471 14,-11: - 0: 20224 + 2: 20224 14,-10: - 0: 64255 - 14,-9: - 0: 65467 + 2: 64255 15,-11: - 0: 20224 + 2: 20224 15,-10: - 0: 18375 - 15,-9: - 0: 29767 + 2: 18375 16,-11: - 0: 8960 + 2: 8960 16,-10: - 0: 21874 + 2: 21874 16,-9: - 0: 21845 - 16,-8: - 0: 44885 - 16,-5: - 0: 17487 + 2: 21845 16,-7: - 0: 43690 + 2: 43690 16,-6: - 0: 43690 + 2: 43690 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9271,22 +11964,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -9303,9 +11981,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 22.929216 - - 86.25753 - - 0 - 0 - 0 - 0 @@ -9315,48 +11990,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.160324 - - 87.12693 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 @@ -9412,59 +12045,45 @@ entities: - type: Joint joints: docking314611: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314611 localAnchorB: 7,-6.5 localAnchorA: 33,-25.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.68207 + stiffness: 7330.5215 docking314616: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314616 localAnchorB: 7,-4.5 localAnchorA: 33,-23.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.68207 + stiffness: 7330.5215 docking111798: !type:WeldJoint - bodyB: 21627 - bodyA: 89 + bodyB: 24340 + bodyA: 2 id: docking111798 localAnchorB: 0.49999997,-7 localAnchorA: 50,20.5 referenceAngle: -1.5707964 - damping: 346.33075 - stiffness: 3108.6577 + damping: 371.6559 + stiffness: 3335.9758 - type: NavMap - type: BecomesStation id: Ishimura - - uid: 6561 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - type: BecomesStation - id: Ishimura - - type: NavMap - - uid: 18153 + - uid: 23711 components: - type: MetaData name: UFS "Сторож" - type: Transform pos: 25.757847,-18.911654 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -9561,6 +12180,13 @@ entities: 61: 5,-12 62: 5,-12 63: 5,-12 + 67: 2,-9 + 68: 1,-9 + 69: 1,-7 + 70: 1,-6 + 71: 2,-9 + 72: 3,-12 + 73: 2,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -9676,46 +12302,463 @@ entities: - type: Joint joints: docking314611: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314611 localAnchorB: 7,-6.5 localAnchorA: 33,-25.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.92523 + stiffness: 7332.7046 docking314616: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314616 localAnchorB: 7,-4.5 localAnchorA: 33,-23.5 - damping: 816.89667 - stiffness: 7332.4478 - - uid: 21627 + damping: 816.92523 + stiffness: 7332.7046 + - uid: 23919 + components: + - type: MetaData + name: NT-ERT-M0 + - type: Transform + rot: 6.283185307179586 rad + pos: 3664.129,60.05559 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAbgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 11: 4,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 10: 5,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 12: 5,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 13: 6,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteBox + decals: + 18: 5,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 2: 6,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1: 4,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 0: 6,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 3: 4,-6 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerNe + decals: + 87: 2,-8 + 88: 6,-9 + 90: 2,-2 + 92: 6,4 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerNe + decals: + 101: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerNw + decals: + 89: 2,-9 + 91: 3,4 + 95: 2,1 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerNw + decals: + 115: 4,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerSe + decals: + 85: 2,3 + 86: 2,-2 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerSe + decals: + 100: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerSw + decals: + 94: 2,3 + 98: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineE + decals: + 29: 7,3 + 30: 7,4 + 31: 6,5 + 32: 5,6 + 47: 2,2 + 48: 2,1 + 58: 2,-3 + 59: 2,-4 + 60: 2,-6 + 61: 2,-7 + 62: 6,-2 + 63: 6,-8 + 64: 7,-9 + 65: 7,-10 + 83: 6,-2 + 84: 2,-1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 6: 6,-5 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineE + decals: + 112: 7,1 + 113: 7,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineN + decals: + 22: 5,6 + 23: 4,6 + 24: 3,6 + 25: 6,5 + 26: 2,4 + 27: 1,4 + 28: 7,4 + 73: 3,-8 + 74: 4,-8 + 75: 5,-8 + 76: 6,-8 + 77: 7,-9 + 78: 1,-9 + 79: 3,-2 + 80: 5,-2 + 81: 6,-2 + 82: 4,-2 + 96: 1,1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 4: 5,-4 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineN + decals: + 107: 3,0 + 108: 4,1 + 109: 5,1 + 110: 6,1 + 111: 7,1 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineS + decals: + 49: 3,3 + 50: 4,3 + 51: 5,3 + 52: 7,3 + 53: 6,3 + 54: 6,-2 + 55: 4,-2 + 56: 3,-2 + 57: 5,-2 + 68: 1,-10 + 69: 2,-10 + 70: 7,-10 + 71: 6,-10 + 72: 4,-10 + 93: 1,3 + 97: 1,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 5: 5,-6 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineS + decals: + 102: 3,0 + 103: 4,0 + 104: 5,0 + 105: 6,0 + 106: 7,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineW + decals: + 33: 3,6 + 34: 3,5 + 35: 1,4 + 36: 1,3 + 37: 2,-8 + 38: 2,-7 + 39: 2,-6 + 40: 2,-4 + 41: 2,-3 + 42: 2,-2 + 43: 2,-1 + 44: 1,0 + 45: 1,1 + 46: 2,2 + 66: 1,-9 + 67: 1,-10 + 99: 2,-5 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineW + decals: + 114: 4,1 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 119: 2,-5 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 118: 2,3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 116: 3,-10 + 117: 5,-10 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 21: 6,1 + - node: + color: '#0E7F1BB2' + id: FullTileOverlayGreyscale + decals: + 20: 2,-7 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 19: 3,-5 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 15: 4,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 14: 6,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 16: 4,-4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 17: 6,-4 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 8: 3,-12 + 9: 5,-12 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 7: 4,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-1: + 0: 23620 + 1: 16 + 0,0: + 0: 58478 + 0,1: + 0: 18590 + 1,0: + 0: 61695 + 1,1: + 0: 19327 + 2,1: + 0: 16 + 2,-1: + 0: 4096 + 1: 16 + 0,-3: + 1: 3 + 0: 61064 + 0,-2: + 0: 50253 + 1: 256 + 0,-4: + 0: 49152 + 1,-3: + 0: 65315 + 1: 8 + 1,-2: + 0: 30471 + 1,-1: + 0: 1799 + 1,-4: + 0: 24576 + 2,-3: + 1: 257 + 2,-2: + 0: 1 + 1: 256 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#02BD58FF' + flags: Hide + - type: NavMap + - type: Joint + joints: + docking206958: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206958 + localAnchorB: 1.5,1 + localAnchorA: 5.5,-13 + referenceAngle: -6.2831855 + damping: 1129.212 + stiffness: 10135.784 + docking206957: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206957 + localAnchorB: -0.49999997,1 + localAnchorA: 3.5,-13 + referenceAngle: -6.2831855 + damping: 1129.212 + stiffness: 10135.784 + - uid: 24340 components: - type: MetaData name: NT-Frog99SPC - type: Transform rot: -1.5707963267948966 rad pos: 57.242065,20.952974 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: TAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -9788,17 +12831,17 @@ entities: data: tiles: 0,0: - 0: 7 + 0: 37 0,-1: - 0: 30583 + 0: 29493 -1,0: - 0: 12 - -1,-1: - 0: 52428 + 0: 132 0,-2: - 0: 30576 + 0: 21872 -1,-2: - 0: 52416 + 0: 17600 + -1,-1: + 0: 51332 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9821,21 +12864,21 @@ entities: - type: Joint joints: docking111798: !type:WeldJoint - bodyB: 21627 - bodyA: 89 + bodyB: 24340 + bodyA: 2 id: docking111798 localAnchorB: 0.49999997,-7 localAnchorA: 50,20.5 referenceAngle: -1.5707964 - damping: 346.33075 - stiffness: 3108.6577 - - uid: 22565 + damping: 346.33588 + stiffness: 3108.7039 + - uid: 24450 components: - type: MetaData - name: Каторга "завод имени генерала Сухарика" + name: Каторга "Завод имени генерала Сухарика" - type: Transform pos: 442.5,110.40625 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,0: @@ -10969,7 +14012,8 @@ entities: -8,-3: 0: 34816 -7,-3: - 0: 65534 + 0: 64510 + 2: 1024 -7,-2: 0: 65535 -7,-1: @@ -10978,7 +14022,7 @@ entities: 0: 61166 -6,-4: 0: 32767 - 2: 32768 + 3: 32768 -6,-3: 0: 65535 -6,-2: @@ -10987,10 +14031,10 @@ entities: 0: 65535 -5,-4: 0: 61439 - 2: 4096 + 3: 4096 -5,-3: 0: 65519 - 3: 16 + 4: 16 -5,-2: 0: 65535 -5,-1: @@ -11116,6 +14160,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11149,152334 +14208,167152 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 27260 + components: + - type: MetaData + name: Охранный пост ОБР + - type: Transform + pos: 3668.11,45.87804 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fAAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAAHQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAAGgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAAgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 93: -5,-1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 95: -5,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 94: -5,-3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 26: 5,-14 + 127: -5,-1 + 128: -5,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 99: 0,-12 + - node: + color: '#334E6DC8' + id: BoxGreyscale + decals: + 70: 0,-9 + - node: + color: '#52B4E996' + id: BoxGreyscale + decals: + 32: 3,-12 + - node: + color: '#DE3A3A96' + id: BoxGreyscale + decals: + 29: 4,-9 + 30: 5,-9 + 31: 6,-9 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 33: 3,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 60: 1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 59: -1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 58: 1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 63: -1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 66: 1,-7 + 67: 1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 64: -1,-6 + 65: -1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 61: 0,-6 + 68: 0,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 62: 0,-7 + 69: 0,-6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 77: 2,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 76: -2,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 110: -4,-13 + 111: -4,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 12: -1,-1 + 13: 1,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 6: -1,-3 + 7: 1,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 108: -6,-10 + 109: -6,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 78: 2,-7 + 79: 2,-8 + 80: 2,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 8: 1,-2 + 9: -1,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 112: -5,-10 + 113: -5,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 81: 2,-10 + 82: 1,-10 + 83: -1,-10 + 84: -2,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 114: -5,-13 + 115: -5,-10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 85: -2,-9 + 86: -2,-8 + 87: -2,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 10: -1,-2 + 11: 1,-2 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 74: -1,-5 + 75: 1,-5 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 18: -3,-3 + 19: -3,-1 + 20: 3,-1 + 21: 3,-3 + 22: -1,-4 + 23: 1,-4 + 24: 6,-12 + 25: 5,-12 + 27: 4,-14 + 28: 6,-14 + 34: 3,-10 + 126: 2,-9 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 96: 5,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 100: 0,-13 + 101: 0,-5 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 123: 4,-7 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 120: 6,-5 + 121: 6,-6 + 122: 6,-7 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 124: 4,-5 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 125: 2,-9 + - node: + angle: 3.141592653589793 rad + color: '#52B4E996' + id: DiagonalCheckerBOverlay + decals: + 102: -6,-10 + 103: -4,-10 + 104: -5,-10 + 105: -4,-13 + 106: -5,-13 + 107: -6,-13 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 97: 1,-3 + 98: -1,-3 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 116: 5,-5 + 117: 5,-6 + 118: 5,-7 + - node: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + decals: + 52: -1,-7 + 53: 0,-7 + 54: 1,-7 + 55: 1,-6 + 56: 0,-6 + 57: -1,-6 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 42: 4,-13 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNE + decals: + 44: 4,-13 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleE + decals: + 37: 6,-10 + 45: 6,-13 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleN + decals: + 43: 4,-12 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleW + decals: + 36: 4,-10 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 14: -2,-3 + 15: -2,-1 + 16: 2,-1 + 17: 2,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 0: 0,-3 + 1: 0,-2 + 2: 0,-1 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 89: 2,-10 + 92: 2,-6 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 38: 5,-13 + 39: 5,-10 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 88: 0,-10 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 40: 5,-10 + 41: 5,-13 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleW + decals: + 90: -2,-10 + 91: -2,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 35: 4,-11 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 3: 0,-3 + 4: 0,-2 + 5: 0,-1 + 119: 4,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 51: 4,-11 + 71: -1,-5 + 72: 0,-5 + 73: 1,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 47: -4,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 49: -4,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 50: -6,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 48: -5,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 46: -5,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + -1,0: + 0: 15 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 1,0: + 0: 50287 + 1,1: + 0: 50244 + 1,2: + 0: 19524 + 1,3: + 0: 52428 + 2,0: + 0: 4369 + 2,1: + 0: 12849 + 2,2: + 0: 4402 + 2,3: + 0: 1 + -3,1: + 0: 34944 + -3,2: + 0: 136 + -2,0: + 0: 30175 + -2,1: + 0: 29781 + -2,2: + 0: 22356 + -2,3: + 0: 26215 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 4369 + 2,-3: + 0: 4369 + 2,-2: + 0: 4369 + 2,-1: + 0: 4369 + 1,4: + 0: 12 + -2,4: + 0: 6 + 0,-5: + 0: 35840 + 1,-5: + 0: 36608 + 2,-5: + 0: 256 + -2,-5: + 0: 12032 + -1,-5: + 0: 9984 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#02BD58FF' + flags: Hide + - type: NavMap + - type: Joint + joints: + docking206958: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206958 + localAnchorB: 1.5,1 + localAnchorA: 5.5,-13 + referenceAngle: -6.2831855 + damping: 1050.9031 + stiffness: 9432.886 + docking206957: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206957 + localAnchorB: -0.49999997,1 + localAnchorA: 3.5,-13 + referenceAngle: -6.2831855 + damping: 1050.9031 + stiffness: 9432.886 + - uid: 28148 + components: + - type: MetaData + name: grid + - type: Transform + parent: 1 + - type: MapGrid + chunks: + -8,-2: + ind: -8,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap - proto: AcousticGuitarInstrument entities: - - uid: 18226 + - uid: 3 components: - type: Transform - pos: -117.48711,-17.501778 - parent: 89 - - uid: 19586 + pos: -26.480038,-25.339327 + parent: 2 + - uid: 4 components: - type: Transform - pos: -26.480038,-25.339327 - parent: 89 + pos: -109.63829,-23.975744 + parent: 2 - proto: ActionToggleMagboots entities: - - uid: 21553 + - uid: 6 components: - type: Transform - parent: 17969 + parent: 5 - type: InstantAction - container: 17969 + container: 5 - proto: AirAlarm entities: - - uid: 256 + - uid: 7 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-26.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4717 - - 20150 - - 4718 - - 20164 - - 20165 - - 20169 - - 20168 - - 20170 - - 20167 - - 20166 - - 20171 - - 20172 - - 4819 - - 4812 - - 4702 - - 4698 - - 4471 - - 4383 - - type: AtmosDevice - joinedGrid: 89 - - uid: 258 + - 14398 + - 555 + - 14561 + - 11190 + - 11191 + - 11195 + - 11194 + - 11196 + - 11193 + - 11192 + - 11197 + - 11198 + - 14567 + - 14403 + - 14397 + - 14560 + - 14392 + - 14554 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-31.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20153 - - 4541 - - 4537 - - 20169 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1189 + - 558 + - 14556 + - 14393 + - 11195 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-42.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20147 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1281 + - 552 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-30.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20165 - - 4730 - - 4733 - - 20156 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1656 + - 11191 + - 14562 + - 14399 + - 560 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-42.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20146 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1916 + - 551 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20171 - - 20174 - - 4813 - - 20151 - - 4815 - - 20175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2009 + - 11197 + - 11200 + - 14404 + - 556 + - 14565 + - 11201 + - uid: 13 components: - type: Transform pos: -101.5,-11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2013 - - 2004 - - 2005 - - 2007 - - 1966 - - 1940 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2625 + - 11228 + - 14678 + - 11061 + - 11226 + - 14520 + - 14521 + - 14677 + - 14519 + - 14525 + - 11230 + - 11229 + - 11231 + - 494 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-20.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2140 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2774 + - 495 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2911 + parent: 2 + - uid: 16 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-9.5 - parent: 89 - - type: DeviceList - devices: - - 2912 - - 2932 - - 2907 - - 2007 - - 53 - - 3020 - - 2933 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2004 - - 2005 - - 2003 - - 2002 - - 3085 - - 1363 - - 3081 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3123 + - 14364 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad pos: -104.5,-11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3099 - - 3097 - - 3024 - - 3027 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3413 + - 11003 + - 497 + - 14531 + - 14367 + - uid: 18 components: - type: Transform pos: 37.5,9.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9435 - - 9436 - - 9437 - - 9590 - - 9589 - - 9587 - - 9588 - - 9585 - - 9591 - - 4159 - - 4162 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3681 + - 11004 + - 11005 + - 11006 + - 11042 + - 11041 + - 11049 + - 11050 + - 523 + - 11043 + - 14386 + - 14549 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-21.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9573 - - 9575 - - 9576 - - 9577 - - 20174 - - 20172 - - 4811 - - 4816 - - 20152 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5431 + - 11116 + - 11118 + - 11119 + - 11120 + - 11200 + - 11198 + - 14402 + - 14566 + - 557 + - uid: 20 components: - type: Transform pos: 0.5,-37.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4760 - - 20148 - - 4762 - - 20161 - - 20162 - - 20163 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6699 + - 14564 + - 553 + - 14401 + - 11187 + - 11188 + - 11189 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6624 - - 6614 - - 6615 - - 6616 - - 6617 - - 6618 - - 6619 - - 6620 - - 6613 - - 6612 - - 6611 - - 4986 - - 4985 - - 4983 - - 4982 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6702 + - 498 + - 11072 + - 11073 + - 11074 + - 11075 + - 14570 + - 14569 + - 14408 + - 14407 + - uid: 22 components: - type: Transform pos: -51.5,-8.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6701 - - 6724 - - 4242 - - 4243 - - 16298 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6748 + - 499 + - 11047 + - 14550 + - 14389 + - 11053 + - 11046 + - uid: 23 components: - type: Transform pos: -54.5,-4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4999 - - 4939 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6749 + - 14571 + - 14406 + - uid: 24 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-7.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4598 - - 4590 - - 4599 - - 4591 - - 6750 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6752 + - 14394 + - 14557 + - 14395 + - 14558 + - 500 + - uid: 25 components: - type: Transform pos: -71.5,-14.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5072 - - 5069 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6753 + - 14410 + - 14572 + - uid: 26 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5071 - - 5070 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6786 + - 14409 + - 14573 + - uid: 27 components: - type: Transform pos: -47.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6772 - - 6771 - - 6769 - - 6789 - - 6788 - - 6787 - - 5725 - - 5437 - - 5728 - - 5729 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3294 - - 3301 - - 1596 - - 3272 - - 7395 - - 7393 - - 7392 - - 7391 - - 2933 - - 2932 - - 2912 - - 7388 - - 7389 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7400 + - 501 + - 11077 + - 11076 + - 11048 + - 14590 + - 14424 + - 14591 + - 14428 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5796 - - 5795 - - 7459 - - 7393 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7402 + - 14433 + - 14596 + - 505 + - 11082 + - uid: 29 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7412 - - 7411 - - 7410 - - 3099 - - 3062 - - 2974 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7428 + - 503 + - 11084 + - 11083 + - 11003 + - 14532 + - 14366 + - uid: 30 components: - type: Transform pos: -97.5,10.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7391 - - 7392 - - 7430 - - 7411 - - 7410 - - 2003 - - 2002 - - 3384 - - 3386 - - 3622 - - 3615 - - 3535 - - 3539 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7634 - components: - - type: Transform - pos: -86.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7699 + - 11080 + - 11081 + - 504 + - 11084 + - 11083 + - 14535 + - 14370 + - 14376 + - 14539 + - 14537 + - 14372 + - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,27.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3619 - - 7668 - - 15656 - - 114 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8914 + - 14373 + - 14614 + - 533 + - 11063 + - 14673 + - uid: 32 components: - type: Transform pos: -122.5,1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 8877 - - 8878 - - 8879 - - 8876 - - 8875 - - 8874 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9216 + - 11065 + - 14516 + - 14675 + - 11087 + - 11086 + - 11126 + - 11064 + - 11085 + - 11124 + - 11088 + - 542 + - 541 + - 14622 + - 14363 + - uid: 33 components: - type: Transform pos: 24.5,-7.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5389 - - 5394 - - 5355 - - 5356 - - 5279 - - 5328 - - 5337 - - 5329 - - 5338 - - 5330 - - 5341 - - 5331 - - 5339 - - 5354 - - 5348 - - 5336 - - 5326 - - 5156 - - 5399 - - 5401 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9322 + - 14586 + - 14422 + - 14584 + - 14420 + - 14414 + - 14578 + - 14415 + - 14579 + - 14416 + - 14580 + - 14418 + - 14581 + - 14417 + - 14583 + - 14419 + - 14582 + - 14577 + - 14412 + - 14423 + - 14587 + - uid: 34 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5154 - - 5152 - - 9452 - - 9453 - - 9584 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9428 + - 14576 + - 14411 + - 11018 + - 11019 + - 522 + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4278 - - 4105 - - 4273 - - 4219 - - 14088 - - 14090 - - 14089 - - 14091 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9429 + - 14552 + - 14385 + - 14551 + - 14388 + - 14471 + - 14636 + - 14472 + - 14533 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5501 - - 5502 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9442 + - 14588 + - 14425 + - uid: 37 components: - type: Transform pos: 23.5,4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9437 - - 9436 - - 9435 - - 9443 - - 9434 - - 9433 - - 9438 - - 9440 - - 9439 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9455 + - 11006 + - 11005 + - 11004 + - 506 + - 14458 + - 14625 + - 11007 + - 11009 + - 11008 + - uid: 38 components: - type: Transform pos: -0.5,4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9444 - - 9445 - - 9446 - - 9439 - - 9440 - - 9438 - - 9456 - - 9447 - - 9448 - - 9449 - - 9450 - - 9451 - - 9452 - - 9453 - - 4354 - - 4039 - - 4441 - - 4442 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9464 + - 11010 + - 11011 + - 11012 + - 11008 + - 11009 + - 11007 + - 507 + - 11013 + - 11014 + - 11015 + - 11016 + - 11017 + - 11018 + - 11019 + - 14384 + - 14391 + - 14555 + - uid: 39 components: - type: Transform pos: -14.5,5.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9457 - - 9458 - - 9459 - - 9460 - - 9461 - - 9462 - - 9446 - - 9445 - - 9444 - - 6869 - - 6870 - - 9465 - - 9466 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9471 + - 508 + - 11020 + - 11021 + - 11022 + - 11023 + - 11024 + - 11012 + - 11011 + - 11010 + - 14612 + - 14450 + - 11025 + - 11026 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,0.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9468 - - 9467 - - 9460 - - 9459 - - 9458 - - 9469 - - 6208 - - 6209 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9482 + - 11028 + - 11027 + - 11022 + - 11021 + - 11020 + - 509 + - 14436 + - 14599 + - uid: 41 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9468 - - 9467 - - 9477 - - 9476 - - 9475 - - 9474 - - 9473 - - 9472 - - 3775 - - 3783 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9492 + - 11028 + - 11027 + - 11033 + - 11032 + - 11031 + - 11030 + - 11029 + - 510 + - 14542 + - 14378 + - uid: 42 components: - type: Transform pos: -41.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9473 - - 9474 - - 9486 - - 9489 - - 9488 - - 9487 - - 9485 - - 9484 - - 9483 - - 9490 - - 5688 - - 6851 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9501 + - 11029 + - 11030 + - 11037 + - 11040 + - 11039 + - 11038 + - 11036 + - 11035 + - 11034 + - 511 + - 14427 + - 14609 + - uid: 43 components: - type: Transform pos: -56.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9487 - - 9488 - - 9489 - - 9502 - - 9498 - - 6616 - - 6615 - - 6614 - - 9496 - - 9419 - - 6611 - - 6612 - - 6613 - - 9499 - - 6802 - - 6799 - - 6863 - - 6862 - - 6824 - - 6803 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9529 + - 11038 + - 11039 + - 11040 + - 512 + - 11091 + - 11090 + - 11089 + - 11092 + - 14445 + - 14607 + - 14611 + - 14449 + - 14446 + - uid: 44 components: - type: Transform pos: -32.5,19.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9477 - - 9476 - - 9475 - - 9523 - - 9521 - - 9524 - - 9525 - - 9526 - - 6206 - - 6204 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9541 + - 11033 + - 11032 + - 11031 + - 11093 + - 518 + - 11094 + - 11095 + - 11096 + - 14597 + - 14434 + - uid: 45 components: - type: Transform pos: -46.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9531 - - 9532 - - 9533 - - 9536 - - 9535 - - 9534 - - 9520 - - 6568 - - 6567 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9542 + - 11097 + - 11098 + - 11099 + - 11102 + - 11101 + - 11100 + - 517 + - 14441 + - 14604 + - uid: 46 components: - type: Transform pos: -58.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9547 - - 9546 - - 9516 - - 9544 - - 9545 - - 6603 - - 6602 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9557 + - 515 + - 11103 + - 11104 + - 14442 + - 14605 + - uid: 47 components: - type: Transform pos: -60.5,19.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9534 - - 9535 - - 9536 - - 9549 - - 9550 - - 9552 - - 9517 - - 9554 - - 9555 - - 9556 - - 5569 - - 5535 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9558 + - 11100 + - 11101 + - 11102 + - 11105 + - 11106 + - 11107 + - 516 + - 11108 + - 11109 + - 11110 + - 14589 + - 14426 + - uid: 48 components: - type: Transform pos: -74.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9562 - - 9563 - - 9560 - - 9561 - - 9515 - - 9554 - - 9555 - - 9556 - - 6610 - - 6609 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9565 + - 11113 + - 11114 + - 11111 + - 11112 + - 514 + - 11108 + - 11109 + - 11110 + - 14443 + - 14606 + - uid: 49 components: - type: Transform pos: -68.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9496 - - 9419 - - 9560 - - 9561 - - 9544 - - 9545 - - 9514 - - 5737 - - 5736 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9567 + - 11090 + - 11089 + - 11111 + - 11112 + - 11103 + - 11104 + - 513 + - 14592 + - 14429 + - uid: 50 components: - type: Transform pos: -88.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7389 - - 7388 - - 9562 - - 9563 - - 9569 - - 6798 - - 5118 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9570 + - 11079 + - 11078 + - 11113 + - 11114 + - 520 + - 14444 + - 14574 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-2.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9011 - - 9010 - - 8972 - - 8973 - - 8580 - - 117 - - 8579 - - 115 - - 12128 - - 20107 - - 20103 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9582 + - 14622 + - 11088 + - 11065 + - 11087 + - 11064 + - 11126 + - 542 + - 541 + - uid: 52 components: - type: Transform pos: -23.5,-9.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9485 - - 9484 - - 9483 - - 9573 - - 9575 - - 9576 - - 9577 - - 9449 - - 9448 - - 9447 - - 9571 - - 9579 - - 9574 - - 9572 - - 9581 - - 6856 - - 6857 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9593 + - 11036 + - 11035 + - 11034 + - 11116 + - 11118 + - 11119 + - 11120 + - 11015 + - 11014 + - 11013 + - 521 + - 11117 + - 11115 + - 14448 + - 14610 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3938 - - 3944 - - 3936 - - 3937 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9594 + - 14544 + - 14381 + - 14543 + - 14379 + - uid: 54 components: - type: Transform pos: -21.5,0.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9572 - - 9574 - - 9466 - - 9465 - - 9595 - - 4007 - - 4008 - - 3987 - - 3988 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9953 + - 11115 + - 11117 + - 11026 + - 11025 + - 524 + - 14547 + - 14383 + - 14382 + - 14546 + - uid: 55 components: - type: Transform pos: -63.5,40.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9831 - - 9948 - - 9949 - - 9822 - - 6551 - - 6558 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9955 + - 14626 + - 14462 + - 14629 + - 14459 + - 14603 + - 14439 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,40.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9924 - - 9923 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9958 + - 14460 + - 14628 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,36.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9930 - - 9922 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10173 + - 14461 + - 14627 + - uid: 58 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,22.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 10118 - - 10129 - - 10174 - - 10176 - - 10175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 12215 + - 14630 + - 14463 + - 526 + - 11122 + - 11121 + - uid: 59 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 12217 + parent: 2 + - uid: 60 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,14.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 12831 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14271 + - 14470 + - uid: 61 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 14284 - - 14285 - - 12847 - - 12851 - - 12850 - - 9462 - - 9461 - - 4377 - - 4375 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14323 + - 11129 + - 11130 + - 529 + - 11128 + - 11127 + - 11024 + - 11023 + - 14390 + - 14553 + - uid: 62 components: - type: Transform pos: -12.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6369 - - 6370 - - 20121 - - 20130 - - 20131 - - 20132 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14332 + - 14601 + - 14438 + - 546 + - 11179 + - 11180 + - 11181 + - uid: 63 components: - type: Transform pos: 13.5,10.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9371 - - 9375 - - 9379 - - 9370 - - 12811 - - 12812 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14367 + - 14624 + - 14456 + - 14457 + - 14623 + - 14469 + - 14635 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 16534 - - 14931 - - 20135 - - 20138 - - 20137 - - 20136 - - 20134 - - 20140 - - 20139 - - 2006 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14371 + - 14647 + - 14473 + - 547 + - 11185 + - 11184 + - 11183 + - 11182 + - 549 + - 548 + - 14365 + - uid: 65 components: - type: Transform pos: 35.5,17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4161 - - 4160 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15174 + - 14548 + - 14387 + - uid: 66 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,31.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 10817 - - 15009 - - 12615 - - 11064 - - 10668 - - 20129 - - 14330 - - 12741 - - 12607 - - 15431 - - 14970 - - 15195 - - 14984 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15178 + - 527 + - 14638 + - 14466 + - 11125 + - 11123 + - 11178 + - 11131 + - 14633 + - 14465 + - 532 + - 14637 + - 531 + - 14474 + - uid: 67 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 15182 - - 15186 - - 15198 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15356 + - 14476 + - 14639 + - 14640 + - uid: 68 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 544 + - 550 + - 535 + - 14492 + - 14651 + - 14491 + - 14652 + - 11178 + - 11186 + - uid: 69 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14481 + - 14643 + - 14646 + - 14477 + - 14480 + - 14642 + - 11163 + - 11164 + - 11166 + - 11165 + - 14479 + - 14641 + - 539 + - 540 + - uid: 70 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11177 + - 11176 + - 14467 + - 14631 + - 14632 + - 14464 + - 528 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 11055 + - 11054 + - 536 + - 14657 + - 14659 + - 14502 + - 14656 + - 14499 + - 14658 + - 14501 + - 14661 + - 14503 + - 14504 + - 14660 + - 14498 + - 14655 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14616 + - 14483 + - 538 + - 11124 + - 11085 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11170 + - 11169 + - 14482 + - 14485 + - 14490 + - 537 + - 11167 + - 11168 + - uid: 74 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 11066 + - 14495 + - 14653 + - 543 + - 11171 + - 11172 + - uid: 75 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14624 + - 14456 + - 530 + - 11070 + - 11071 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11199 + - 11187 + - 11190 + - 14563 + - 14400 + - 554 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 559 + - 14559 + - 14396 + - 11194 + - 11202 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 14496 + - 14654 + - 14497 + - 562 + - 14494 + - 14493 + - 534 + - uid: 79 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 564 + - 14663 + - 14507 + - 14506 + - 14662 + - 14664 + - 563 + - 14505 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 14509 + - 14510 + - 566 + - 565 + - 11219 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 11056 + - 11057 + - 11224 + - 11223 + - 11222 + - 11221 + - 14672 + - 14515 + - 14671 + - uid: 83 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 569 + - 568 + - 567 + - 11046 + - 11002 + - 11044 + - 11045 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 570 + - 11202 + - 11001 + - 11196 + - 571 + - 572 + - 11220 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-15.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 14518 + - 14676 + - 11231 + - 11234 + - 11232 + - 11233 + - 573 + - uid: 87 + components: + - type: Transform + pos: -128.5,-4.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11060 + - 574 + - 576 + - 575 + - 11236 + - 11235 + - 11162 + - uid: 89 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 14502 + - 14659 + - 11241 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14500 + - 14657 + - 11240 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 14504 + - 14660 + - 11242 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 14503 + - 14661 + - 11237 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14656 + - 14499 + - 11239 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 14501 + - 14658 + - 11238 + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 23711 + - type: DeviceList + devices: + - 23821 + - 23822 + - 23721 + - 23720 + - 23722 + - 23823 + - uid: 23920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 23919 + - type: DeviceList + devices: + - 24157 + - 23934 + - 24153 + - 24110 + - 24108 + - 24109 + - uid: 23921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 23919 + - type: DeviceList + devices: + - 24111 + - 24152 + - 24156 + - uid: 23922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 23919 + - type: DeviceList + devices: + - 24159 + - 24155 + - 24113 + - 24110 + - 24153 + - 24157 + - 24108 + - 24109 + - uid: 23923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 23919 + - type: DeviceList + devices: + - 24154 + - 24158 + - 24112 + - uid: 24341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 24340 + - type: DeviceList + devices: + - 24402 + - 24344 + - 24403 + - 24394 + - 24395 + - 24393 + - 24396 + - uid: 24451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 24450 + - type: DeviceList + devices: + - 26286 + - 26314 + - 24516 + - 26287 + - 26311 + - 26312 + - 26288 + - 26289 + - 26313 + - 25915 + - uid: 24452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 24450 + - type: DeviceList + devices: + - 26269 + - 24519 + - 26305 + - 25892 + - 25901 + - 25903 + - 25902 + - uid: 24453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 24450 + - type: DeviceList + devices: + - 25917 + - 25918 + - 24524 + - 25920 + - 25919 + - 25922 + - 25921 + - 26293 + - 26284 + - 26292 + - 26278 + - uid: 24454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 24450 + - type: DeviceList + devices: + - 25915 + - 25914 + - 25913 + - 25912 + - 25911 + - 25897 + - 25898 + - 25896 + - 25895 + - 24521 + - 26285 + - 26307 + - 26310 + - 26271 + - uid: 24455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,7.5 + parent: 24450 + - type: DeviceList + devices: + - 26296 + - 24518 + - 26275 + - 26267 + - 26298 + - 26297 + - 26273 + - 26274 + - 26299 + - uid: 24456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 24450 + - type: DeviceList + devices: + - 26304 + - 26281 + - 24525 + - 26282 + - 26303 + - uid: 24457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 24450 + - type: DeviceList + devices: + - 25893 + - 25894 + - 26279 + - 24517 + - 26300 + - 25900 + - 25899 + - 25910 + - 25909 + - 25908 + - 25907 + - 25906 + - 26283 + - 26302 + - uid: 24458 + components: + - type: Transform + pos: -11.5,0.5 + parent: 24450 + - type: DeviceList + devices: + - 26295 + - 24520 + - 26276 + - 25904 + - 25905 + - uid: 24459 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 24450 + - type: DeviceList + devices: + - 26270 + - 26292 + - 24523 + - 26284 + - 26293 + - 25919 + - 25920 + - 25921 + - 25922 + - 25918 + - 25917 + - 26277 + - 25916 + - 24524 + - uid: 24460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 24450 + - type: DeviceList + devices: + - 26308 + - 26290 + - 24522 + - 26291 + - 26309 + - 25914 + - 25913 + - 25912 + - 25911 + - uid: 27261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 27260 + - type: DeviceList + devices: + - 27687 + - 27692 + - 27686 + - uid: 27262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 + - type: DeviceList + devices: + - 27684 + - 27691 + - uid: 27263 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 27260 + - type: DeviceList + devices: + - 27685 + - 27690 + - uid: 27264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 27260 + - type: DeviceList + devices: + - 27682 + - 27688 + - uid: 27265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 27260 + - type: DeviceList + devices: + - 27689 + - 27683 +- proto: AirAlarmElectronics + entities: + - uid: 95 + components: + - type: Transform + pos: -98.70526,-9.816481 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -98.36151,-9.957106 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -93.236145,-5.5265894 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -93.22052,-5.1047144 + parent: 2 +- proto: AirCanister + entities: + - uid: 99 + components: + - type: Transform + pos: -93.5,28.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -94.5,19.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -111.5,18.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -86.5,-6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -86.5,-5.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 23711 + - uid: 23924 + components: + - type: Transform + pos: 5.5,1.5 + parent: 23919 + - uid: 27266 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 27260 +- proto: Airlock + entities: + - uid: 109 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18447 + - uid: 110 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18446 + - uid: 111 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18445 + - uid: 112 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18444 + - uid: 113 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18442 + - uid: 114 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18434 + - uid: 121 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18435 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-32.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,23.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 24450 + - uid: 24462 + components: + - type: Transform + pos: -34.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26717 + - uid: 24463 + components: + - type: Transform + pos: 10.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26732 + - uid: 24464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 24450 + - uid: 24465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 24450 + - uid: 24466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 24450 + - uid: 24467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 24450 + - uid: 24468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 24450 + - uid: 24469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,11.5 + parent: 24450 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 127 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 +- proto: AirlockAssembly + entities: + - uid: 24470 + components: + - type: Transform + pos: 0.5,11.5 + parent: 24450 +- proto: AirlockAssemblyMaintenance + entities: + - uid: 128 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 +- proto: AirlockAtmospherics + entities: + - uid: 24471 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 24450 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-10.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-11.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -107.5,-8.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -109.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -107.5,-13.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -109.5,-13.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: -110.5,-14.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 24450 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 136 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -93.5,21.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -95.5,-3.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 140 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 149 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 156 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 158 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 23925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 23919 + - uid: 23926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23919 +- proto: AirlockCentralCommandLocked + entities: + - uid: 27267 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 27260 +- proto: AirlockChapelLocked + entities: + - uid: 163 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 165 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 166 + components: + - type: Transform + pos: -102.5,6.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 167 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 169 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 170 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -57.5,45.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: -57.5,44.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 24340 +- proto: AirlockCommandLocked + entities: + - uid: 176 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 179 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 181 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 +- proto: AirlockEngineeringGlass + entities: + - uid: 23714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23711 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,-6.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,-4.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,4.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,3.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,34.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -115.5,-11.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 192 + components: + - type: Transform + pos: -113.5,-1.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -113.5,9.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -96.5,7.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -96.5,8.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -119.5,-10.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -118.5,-1.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -127.5,-7.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -122.5,4.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -126.5,13.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -126.5,11.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -122.5,3.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -124.5,3.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -124.5,4.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -118.5,9.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -127.5,-6.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -111.5,-3.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -118.5,15.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -82.5,-7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -89.5,20.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 23919 + - uid: 24473 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 24450 + - uid: 24474 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 24450 + - uid: 24475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 24450 + - uid: 24476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 24450 + - uid: 27268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 27260 +- proto: AirlockEVALocked + entities: + - uid: 220 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 223: + - DoorStatus: DoorBolt + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 222 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,38.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 226 + components: + - type: Transform + pos: -68.5,30.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -66.5,46.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -64.5,46.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -58.5,46.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -68.5,37.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -82.5,37.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 24450 + - uid: 24478 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 24450 + - uid: 24479 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 24450 + - uid: 24480 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 24450 +- proto: AirlockExternalGlassLocked + entities: + - uid: 233 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -84.5,46.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,30.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,37.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,37.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,49.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,49.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,49.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,49.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,35.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,44.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,38.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,32.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,46.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 251 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,48.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-19.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-20.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -128.5,-14.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,-12.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,-12.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-13.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-14.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,-22.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-22.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,-12.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 23919 + - uid: 23929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 23919 + - uid: 27269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 27260 + - uid: 27270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 27260 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - type: Docking + dockJointId: docking111798 + dockedWith: 24343 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: Docking + dockJointId: docking314611 + dockedWith: 23719 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: Docking + dockJointId: docking314616 + dockedWith: 23718 + - uid: 23930 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23919 + - type: Docking + dockJointId: docking206957 + dockedWith: 27271 + - uid: 23931 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 23919 + - type: Docking + dockJointId: docking206958 + dockedWith: 27272 + - uid: 24343 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24340 + - type: Docking + dockJointId: docking111798 + dockedWith: 271 + - uid: 24481 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 24450 + - uid: 24482 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 24450 + - uid: 24483 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 24450 + - uid: 24484 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 24450 + - uid: 27271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 27260 + - type: Docking + dockJointId: docking206957 + dockedWith: 23930 + - uid: 27272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 27260 + - type: Docking + dockJointId: docking206958 + dockedWith: 23931 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 277 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -93.5,11.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,39.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,38.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,37.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 23919 + - uid: 24485 + components: + - type: Transform + pos: -28.5,5.5 + parent: 24450 + - uid: 24486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 24450 + - uid: 24487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 24450 + - uid: 24488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 24450 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 294 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,15.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 298 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 299 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 300 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 +- proto: AirlockLawyerGlassLocked + entities: + - uid: 301 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 24489 + components: + - type: Transform + pos: -27.5,7.5 + parent: 24450 + - uid: 24490 + components: + - type: Transform + pos: -24.5,11.5 + parent: 24450 + - uid: 24491 + components: + - type: Transform + pos: 3.5,7.5 + parent: 24450 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 302 + components: + - type: Transform + pos: -78.5,-10.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 303 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 304 + components: + - type: Transform + pos: -127.5,20.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 305 + components: + - type: Transform + pos: -72.5,-10.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 306 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 307 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 308 + components: + - type: Transform + pos: -110.5,17.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: -79.5,4.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -90.5,16.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -86.5,-1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -106.5,17.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -79.5,16.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 335 + components: + - type: Transform + pos: -108.5,16.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -111.5,11.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -118.5,17.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,23.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 340 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 341 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 342 + components: + - type: Transform + pos: -74.5,-7.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 343 + components: + - type: Transform + pos: -86.5,22.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 349 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 352 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 353 + components: + - type: Transform + pos: -86.5,16.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,21.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-23.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 359 + components: + - type: MetaData + name: Техобслуживание подстанции + - type: Transform + pos: 16.5,-11.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 360 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 361 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 365 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 23919 + - uid: 27273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 +- proto: AirlockMedicalLocked + entities: + - uid: 368 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 +- proto: AirlockMining + entities: + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,19.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,0.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,0.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,9.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,10.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,16.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,16.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,11.5 + parent: 2 + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,11.5 + parent: 2 + - uid: 421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,11.5 + parent: 2 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,14.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,19.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,19.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,19.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: -70.5,18.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 440 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 442 + components: + - type: MetaData + name: научный руководитель + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 444 + components: + - type: MetaData + name: серверная + - type: Transform + pos: -3.5,-35.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 445 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 449 + components: + - type: MetaData + name: робототехника + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 451 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 452 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 453 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 455 + components: + - type: MetaData + name: ксеноархеология + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 456 + components: + - type: MetaData + name: отдел аномалистики + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 457 + components: + - type: MetaData + name: лаборатория + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 459 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 460 + components: + - type: MetaData + name: комната отдыха РнД + - type: Transform + pos: 2.5,-23.5 + parent: 2 +- proto: AirlockSecurity + entities: + - uid: 24492 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 24450 + - uid: 24493 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 24450 +- proto: AirlockSecurityGlass + entities: + - uid: 461 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 463 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -55.5,46.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 23711 + - uid: 23716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 23711 + - uid: 23717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 23711 + - uid: 24494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 24450 + - uid: 24495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 24450 + - uid: 24496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 24450 + - uid: 24497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 24450 +- proto: AirlockSecurityLocked + entities: + - uid: 469 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,13.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 24450 + - uid: 24499 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 24450 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 476 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 477 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18443 +- proto: AirlockShuttle + entities: + - uid: 479 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 23711 + - type: Docking + dockJointId: docking314616 + dockedWith: 273 + - uid: 23719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23711 + - type: Docking + dockJointId: docking314611 + dockedWith: 272 + - uid: 24500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 24450 + - uid: 24501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,23.5 + parent: 24450 + - uid: 24502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 24450 + - uid: 24503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 24450 + - uid: 24504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 24450 + - uid: 24505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 24450 + - uid: 24506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 24450 + - uid: 24507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,21.5 + parent: 24450 + - uid: 24508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 24450 + - uid: 24509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,21.5 + parent: 24450 + - uid: 24510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 24450 + - uid: 24511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 24450 + - uid: 24512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,17.5 + parent: 24450 + - uid: 24513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 24450 + - uid: 24514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,23.5 + parent: 24450 + - uid: 24515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 24450 +- proto: AirlockTheatreLocked + entities: + - uid: 480 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 482 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 487 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 494 + components: + - type: Transform + pos: -99.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-25.5 + parent: 2 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,-19.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,-8.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-0.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -93.5,6.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -99.5,-3.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -99.5,5.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -94.5,14.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,3.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -85.5,8.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,6.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,4.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -100.5,27.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,11.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -130.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 542 + components: + - type: Transform + pos: -120.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 543 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,40.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-25.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 568 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 569 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 574 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 575 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 576 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 23720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 23711 + - uid: 23721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 23711 + - uid: 23722 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 23711 + - uid: 23934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 23919 + - uid: 24344 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 24340 + - uid: 24516 + components: + - type: Transform + pos: 5.5,4.5 + parent: 24450 + - uid: 24517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 24450 + - uid: 24518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 24450 + - uid: 24519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,5.5 + parent: 24450 + - uid: 24520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 24450 + - uid: 24521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 24450 + - uid: 24522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 24450 + - uid: 24523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 24450 + - uid: 24524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 24450 + - uid: 24525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 24450 + - uid: 27274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 +- proto: AltarSpawner + entities: + - uid: 577 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 +- proto: AlwaysPoweredWallLight + entities: + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,-25.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-25.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,-25.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-25.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-25.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,-25.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,-25.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-25.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-25.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 23935 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 23919 +- proto: AnomalyScanner + entities: + - uid: 587 + components: + - type: Transform + pos: -4.4272065,-27.335176 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -4.4272065,-28.007051 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -4.3334565,-27.663301 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -4.3334565,-28.335176 + parent: 2 +- proto: AntiPoisonMedipen + entities: + - uid: 592 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 593 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23937 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23938 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24527 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: APCBasic + entities: + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - uid: 607 + components: + - type: MetaData + name: ЛКП ГП + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 608 + components: + - type: MetaData + name: ЛКП Крио и туалеты + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 609 + components: + - type: MetaData + name: ЛКП НИО + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 610 + components: + - type: MetaData + name: ЛКП НР + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 + - uid: 611 + components: + - type: MetaData + name: ЛКП Мостик - конференц зал + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 612 + components: + - type: MetaData + name: ЛКП ЕВА + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - uid: 613 + components: + - type: MetaData + name: ЛКП КМ + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 614 + components: + - type: MetaData + name: ЛКП Холл каргонии + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-8.5 + parent: 2 + - uid: 615 + components: + - type: MetaData + name: ЛКП Утилизаторы + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 2 + - uid: 616 + components: + - type: MetaData + name: ЛКП Неизвестно + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,38.5 + parent: 2 + - uid: 617 + components: + - type: MetaData + name: ЛКП Прибытие 1 + - type: Transform + pos: -86.5,36.5 + parent: 2 + - uid: 618 + components: + - type: MetaData + name: ЛКП Жилые помещения + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 619 + components: + - type: MetaData + name: ЛКП Каморка уборщиков + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 2 + - uid: 620 + components: + - type: MetaData + name: ЛКП Техи жилых пом. + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,23.5 + parent: 2 + - uid: 621 + components: + - type: MetaData + name: ЛКП КПП СБ мед + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 622 + components: + - type: MetaData + name: ЛКП Мед отдел 4 + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 623 + components: + - type: MetaData + name: ЛКП Бриф рум инженерного + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,-2.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,3.5 + parent: 2 + - uid: 625 + components: + - type: MetaData + name: ЛКП СИ + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,9.5 + parent: 2 + - uid: 626 + components: + - type: MetaData + name: ЛКП Холл иженерного отдела + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,1.5 + parent: 2 + - uid: 627 + components: + - type: MetaData + name: ЛКП телекоммуникация + - type: Transform + pos: -107.5,22.5 + parent: 2 + - uid: 628 + components: + - type: MetaData + name: ЛКП Мусоросброс + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,25.5 + parent: 2 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,14.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,15.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 632 + components: + - type: MetaData + name: ЛКП Бар + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 633 + components: + - type: MetaData + name: ЛКП Мед отдел 3 + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 634 + components: + - type: MetaData + name: ЛКП Зал суда и АВД + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 636 + components: + - type: MetaData + name: ЛКП Прибытие 2 + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 637 + components: + - type: MetaData + name: ЛКП Техи прибытия + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,29.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 639 + components: + - type: MetaData + name: ЛКП Церковь + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 640 + components: + - type: MetaData + name: ЛКП Библиотека + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,8.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 642 + components: + - type: MetaData + name: ЛКП Робототехника + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 643 + components: + - type: MetaData + name: ЛКП Верфь + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 644 + components: + - type: MetaData + name: ЛКП Мед отдел вирусология + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - uid: 645 + components: + - type: MetaData + name: ЛКП Детектив + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 646 + components: + - type: MetaData + name: ЛКП Техи НИО + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 647 + components: + - type: MetaData + name: ЛКП Мед отдел 2 + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 648 + components: + - type: MetaData + name: ЛКП Бриг стрельбище + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - uid: 650 + components: + - type: MetaData + name: ЛКП Мед отдел + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 653 + components: + - type: MetaData + name: ЛКП Хранилище + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 655 + components: + - type: MetaData + name: ЛКП Оружейная + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 657 + components: + - type: MetaData + name: ЛКП Кухня + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 658 + components: + - type: MetaData + name: ЛКП Генератор гравитации + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 + - uid: 659 + components: + - type: MetaData + name: ЛКП ТЭГ + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-14.5 + parent: 2 + - uid: 660 + components: + - type: MetaData + name: ЛКП Гидропоника + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 662 + components: + - type: MetaData + name: ЛКП Атмоссия раздевалка + - type: Transform + pos: -93.5,-3.5 + parent: 2 + - uid: 663 + components: + - type: MetaData + name: ЛКП Жральня НИО + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 664 + components: + - type: MetaData + name: ЛКП Генератор Аномалий + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 665 + components: + - type: MetaData + name: ЛКП Ксеноархеология + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 666 + components: + - type: MetaData + name: ЛКП Кломиммузная + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 23919 + - uid: 24345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 24340 + - uid: 24551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 24450 + - uid: 24552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 24450 + - uid: 24553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 24450 + - uid: 27275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 27260 + - uid: 27276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 27260 +- proto: APCElectronics + entities: + - uid: 667 + components: + - type: Transform + pos: -98.65839,-10.332106 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -98.34589,-10.613356 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 669 + components: + - type: MetaData + name: ЛКП Мостик + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,5.5 + parent: 2 + - uid: 670 + components: + - type: MetaData + name: ЛКП Капитан + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 +- proto: APCHyperCapacity + entities: + - uid: 672 + components: + - type: MetaData + name: ЛКП Двигательный зал + - type: Transform + pos: -130.5,-4.5 + parent: 2 + - uid: 673 + components: + - type: MetaData + name: ЛКП Атмоссия + - type: Transform + pos: -100.5,-11.5 + parent: 2 + - uid: 674 + components: + - type: MetaData + name: ЛКП Атмоссия 2 + - type: Transform + pos: -83.5,-10.5 + parent: 2 + - uid: 23954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 23919 +- proto: APCSuperCapacity + entities: + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 2 + - uid: 676 + components: + - type: MetaData + name: ЛКП Пермабриг + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 23711 +- proto: ArrivalsShuttleTimer + entities: + - uid: 677 + components: + - type: Transform + pos: -68.5,38.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -82.5,29.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -82.5,38.5 + parent: 2 +- proto: ArrowRegular + entities: + - uid: 24554 + components: + - type: Transform + pos: -30.792511,-0.52710724 + parent: 24450 + - uid: 24555 + components: + - type: Transform + pos: -30.417511,-0.55835724 + parent: 24450 + - uid: 24556 + components: + - type: Transform + pos: -30.605011,-0.58960724 + parent: 24450 +- proto: Ashtray + entities: + - uid: 681 + components: + - type: Transform + pos: -76.28542,-2.3884234 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 682 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 24450 + - uid: 24558 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 24450 + - uid: 24559 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24560 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24561 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 24450 + - uid: 24562 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 24450 + - uid: 24563 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 24450 + - uid: 24564 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 24450 + - uid: 24565 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 24450 + - uid: 24566 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 24450 + - uid: 24567 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 24450 + - uid: 24568 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24569 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24570 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 24450 + - uid: 24571 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24572 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24573 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 24450 + - uid: 24574 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24575 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24576 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24577 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24578 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24579 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24580 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24581 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24582 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 24450 + - uid: 24583 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 24450 + - uid: 24584 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 24450 + - uid: 24585 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 24450 + - uid: 24586 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 24450 + - uid: 24587 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 24450 + - uid: 24588 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24589 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24590 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24591 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24592 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24593 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24594 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24595 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24596 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24597 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24598 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24599 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24600 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24601 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 24450 + - uid: 24602 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24603 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24604 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24605 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 24450 + - uid: 24606 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24607 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24608 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24609 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 24450 + - uid: 24610 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24611 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24612 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24613 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24614 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24615 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24616 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 24450 + - uid: 24617 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24618 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24619 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 24450 + - uid: 24620 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 24450 + - uid: 24621 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 24450 + - uid: 24622 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24623 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 24450 + - uid: 24624 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 24450 + - uid: 24625 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 24450 + - uid: 24626 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24627 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 24450 + - uid: 24628 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24629 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24630 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24631 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 24450 + - uid: 24632 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24633 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24634 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24635 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 24450 + - uid: 24636 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24637 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 24450 + - uid: 24638 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 24450 + - uid: 24639 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24640 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24641 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 24450 + - uid: 24642 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 24450 + - uid: 24643 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 24450 + - uid: 24644 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 24450 + - uid: 24645 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 24450 + - uid: 24646 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 24450 + - uid: 24647 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 24450 + - uid: 24648 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 24450 + - uid: 24649 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 24450 + - uid: 24650 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 24450 + - uid: 24651 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 24450 + - uid: 24652 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 24450 + - uid: 24653 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 24450 + - uid: 24654 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 24450 + - uid: 24655 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 24450 + - uid: 24656 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24657 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 24450 + - uid: 24658 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 24450 + - uid: 24659 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 24450 + - uid: 24660 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 24450 + - uid: 24661 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 24450 + - uid: 24662 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 24450 + - uid: 24663 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24664 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 24450 + - uid: 24665 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24666 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24667 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24668 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24669 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 24450 + - uid: 24670 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 24450 + - uid: 24671 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 24450 + - uid: 24672 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24673 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 24450 + - uid: 24674 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 24450 + - uid: 24675 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 24450 + - uid: 24676 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24677 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 24450 + - uid: 24678 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 24450 + - uid: 24679 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 24450 + - uid: 24680 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 24450 + - uid: 24681 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 24450 + - uid: 24682 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 24450 + - uid: 24683 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 24450 + - uid: 24684 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 24450 + - uid: 24685 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 24450 + - uid: 24686 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 24450 + - uid: 24687 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 24450 + - uid: 24688 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 24450 + - uid: 24689 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 24450 + - uid: 24690 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 24450 + - uid: 24691 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 24450 + - uid: 24692 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 24450 + - uid: 24693 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 24450 + - uid: 24694 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 24450 + - uid: 24695 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 24450 + - uid: 24696 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 24450 + - uid: 24697 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 24450 + - uid: 24698 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 24450 + - uid: 24699 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 24450 + - uid: 24700 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 24450 + - uid: 24701 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 24450 + - uid: 24702 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 24450 + - uid: 24703 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24704 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 24450 + - uid: 24705 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24706 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 24450 + - uid: 24707 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 24450 + - uid: 24708 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 24450 + - uid: 24709 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 24450 + - uid: 24710 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 24450 + - uid: 24711 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24712 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 24450 + - uid: 24713 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 24450 + - uid: 24714 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 24450 + - uid: 24715 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 24450 + - uid: 24716 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 24450 + - uid: 24717 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 24450 + - uid: 24718 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 24450 + - uid: 24719 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 24450 + - uid: 24720 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 24450 + - uid: 24721 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24722 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 24450 + - uid: 24723 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24724 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24725 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24726 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 24450 + - uid: 24727 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24728 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24729 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 24450 + - uid: 24730 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 24450 + - uid: 24731 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24732 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 24450 + - uid: 24733 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 24450 + - uid: 24734 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 24450 + - uid: 24735 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 24450 + - uid: 24736 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 24450 + - uid: 24737 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 24450 + - uid: 24738 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 24450 + - uid: 24739 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 24450 + - uid: 24740 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 24450 + - uid: 24741 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 24450 + - uid: 24742 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 24450 + - uid: 24743 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 24450 + - uid: 24744 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 24450 + - uid: 24745 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 24450 + - uid: 24746 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 24450 + - uid: 24747 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 24450 + - uid: 24748 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 24450 + - uid: 24749 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 24450 + - uid: 24750 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 24450 + - uid: 24751 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 24450 + - uid: 24752 + components: + - type: Transform + pos: -36.5,0.5 + parent: 24450 + - uid: 24753 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 24450 + - uid: 24754 + components: + - type: Transform + pos: -37.5,3.5 + parent: 24450 + - uid: 24755 + components: + - type: Transform + pos: -37.5,4.5 + parent: 24450 + - uid: 24756 + components: + - type: Transform + pos: -37.5,5.5 + parent: 24450 + - uid: 24757 + components: + - type: Transform + pos: -37.5,7.5 + parent: 24450 + - uid: 24758 + components: + - type: Transform + pos: -37.5,8.5 + parent: 24450 + - uid: 24759 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 24450 + - uid: 24760 + components: + - type: Transform + pos: -37.5,12.5 + parent: 24450 + - uid: 24761 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 24450 + - uid: 24762 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 24450 + - uid: 24763 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 24450 + - uid: 24764 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 24450 + - uid: 24765 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 24450 + - uid: 24766 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 24450 + - uid: 24767 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 24450 + - uid: 24768 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 24450 + - uid: 24769 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 24450 + - uid: 24770 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 24450 + - uid: 24771 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24772 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 24450 + - uid: 24773 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 24450 + - uid: 24774 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 24450 + - uid: 24775 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 24450 + - uid: 24776 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 24450 + - uid: 24777 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 24450 + - uid: 24778 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 24450 + - uid: 24779 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 24450 + - uid: 24780 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 24450 + - uid: 24781 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 24450 + - uid: 24782 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 24450 + - uid: 24783 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 24450 + - uid: 24784 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 24450 + - uid: 24785 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 24450 + - uid: 24786 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 24450 + - uid: 24787 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 24450 + - uid: 24788 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 24450 + - uid: 24789 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 24450 + - uid: 24790 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 24450 + - uid: 24791 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 24450 + - uid: 24792 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 24450 + - uid: 24793 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 24450 + - uid: 24794 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 24450 + - uid: 24795 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 24450 + - uid: 24796 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 24450 + - uid: 24797 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 24450 + - uid: 24798 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24799 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24800 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24801 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 24450 + - uid: 24802 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 24450 + - uid: 24803 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 24450 + - uid: 24804 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 24450 + - uid: 24805 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 24450 + - uid: 24806 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 24450 + - uid: 24807 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 24450 + - uid: 24808 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 24450 + - uid: 24809 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 24450 + - uid: 24810 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 24450 + - uid: 24811 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 24450 + - uid: 24812 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 24450 + - uid: 24813 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 24450 + - uid: 24814 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 24450 + - uid: 24815 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 24450 + - uid: 24816 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 24450 + - uid: 24817 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 24450 + - uid: 24818 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 24450 + - uid: 24819 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 24450 + - uid: 24820 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 24450 + - uid: 24821 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 24450 + - uid: 24822 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 24450 + - uid: 24823 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 24450 + - uid: 24824 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 24450 + - uid: 24825 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 24450 + - uid: 24826 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 24450 + - uid: 24827 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 24450 + - uid: 24828 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 24450 + - uid: 24829 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 24450 + - uid: 24830 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24831 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24832 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 24450 + - uid: 24833 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 24450 + - uid: 24834 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 24450 + - uid: 24835 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 24450 + - uid: 24836 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 24450 + - uid: 24837 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24838 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 24450 + - uid: 24839 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 24450 + - uid: 24840 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 24450 + - uid: 24841 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 24450 + - uid: 24842 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 24450 + - uid: 24843 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 24450 + - uid: 24844 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 24450 + - uid: 24845 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 24450 + - uid: 24846 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 24450 + - uid: 24847 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 24450 + - uid: 24848 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 24450 + - uid: 24849 + components: + - type: Transform + pos: 12.5,0.5 + parent: 24450 + - uid: 24850 + components: + - type: Transform + pos: 13.5,3.5 + parent: 24450 + - uid: 24851 + components: + - type: Transform + pos: 13.5,4.5 + parent: 24450 + - uid: 24852 + components: + - type: Transform + pos: 13.5,5.5 + parent: 24450 + - uid: 24853 + components: + - type: Transform + pos: 13.5,9.5 + parent: 24450 + - uid: 24854 + components: + - type: Transform + pos: 13.5,13.5 + parent: 24450 + - uid: 24855 + components: + - type: Transform + pos: 13.5,12.5 + parent: 24450 + - uid: 24856 + components: + - type: Transform + pos: 13.5,1.5 + parent: 24450 + - uid: 24857 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24858 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 24450 + - uid: 24859 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24860 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24861 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24862 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24863 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 24450 + - uid: 24864 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24865 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 24450 + - uid: 24866 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24867 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 24450 + - uid: 24868 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24869 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24870 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24871 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24872 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24873 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24874 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24875 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24876 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24877 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24878 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24879 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 24450 + - uid: 24880 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 24450 + - uid: 24881 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 24450 + - uid: 24882 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 24450 + - uid: 24883 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 24450 + - uid: 24884 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 24450 + - uid: 24885 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24886 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24887 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24888 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 24450 + - uid: 24889 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 24450 + - uid: 24890 + components: + - type: Transform + pos: -37.5,10.5 + parent: 24450 + - uid: 24891 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24892 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 24450 + - uid: 24893 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24894 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24895 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24896 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24897 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24898 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24899 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 24450 + - uid: 24900 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 24450 + - uid: 24901 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 24450 + - uid: 24902 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 24450 + - uid: 24903 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 24450 + - uid: 24904 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 24450 + - uid: 24905 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 24450 + - uid: 24906 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 24450 + - uid: 24907 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 24450 + - uid: 24908 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 24450 + - uid: 24909 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 24450 + - uid: 24910 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 24450 + - uid: 24911 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 24450 + - uid: 24912 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 24450 + - uid: 24913 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24914 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 24450 + - uid: 24915 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 24450 + - uid: 24916 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 24450 + - uid: 24917 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 24450 + - uid: 24918 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 24450 + - uid: 24919 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24920 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24921 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 24450 + - uid: 24922 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 24450 + - uid: 24923 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24924 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 24450 + - uid: 24925 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24926 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 24450 + - uid: 24927 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 24450 + - uid: 24928 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 24450 + - uid: 24929 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24930 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24931 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24932 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24933 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24934 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 24450 + - uid: 24935 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24936 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 24450 + - uid: 24937 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 24450 + - uid: 24938 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 24450 + - uid: 24939 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 24450 + - uid: 24940 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 24450 + - uid: 24941 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 24450 + - uid: 24942 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 24450 + - uid: 24943 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 24450 + - uid: 24944 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 24450 + - uid: 24945 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 24450 + - uid: 24946 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 24450 + - uid: 24947 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 24450 + - uid: 24948 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 24450 + - uid: 24949 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 24450 + - uid: 24950 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 24450 + - uid: 24951 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 24450 + - uid: 24952 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 24450 + - uid: 24953 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 24450 + - uid: 24954 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 24450 + - uid: 24955 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 24450 + - uid: 24956 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 24450 + - uid: 24957 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 24450 + - uid: 24958 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24959 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 24450 + - uid: 24960 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24961 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24962 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24963 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 24450 + - uid: 24964 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24965 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24966 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24967 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 24450 + - uid: 24968 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24969 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24970 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24971 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 24450 + - uid: 24972 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24973 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24974 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24975 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 24450 + - uid: 24976 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24977 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24978 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24979 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24980 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24981 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24982 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24983 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24984 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 24450 + - uid: 24985 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24986 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 24450 + - uid: 24987 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24988 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24989 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 24450 + - uid: 24990 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 24450 + - uid: 24991 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 24450 + - uid: 24992 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24993 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24994 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24995 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24996 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 24450 + - uid: 24997 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 24450 + - uid: 24998 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 24450 +- proto: AtmosDeviceFanTiny + entities: + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,42.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,49.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,49.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,49.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,49.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -70.5,37.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -80.5,37.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -80.5,30.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,44.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,38.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,4.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -108.5,22.5 + parent: 2 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,42.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,35.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,38.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,32.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -88.5,46.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23711 + - uid: 23725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 23711 + - uid: 23955 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23919 + - uid: 23956 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 23919 + - uid: 24346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 24340 + - uid: 24999 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 24450 + - uid: 25000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 24450 + - uid: 25001 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 24450 + - uid: 25002 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 24450 + - uid: 25003 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 24450 + - uid: 25004 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 24450 + - uid: 25005 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 24450 + - uid: 25006 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 24450 + - uid: 25007 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 24450 + - uid: 25008 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 24450 + - uid: 25009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 24450 + - uid: 25010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,21.5 + parent: 24450 + - uid: 25011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 24450 + - uid: 25012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 24450 + - uid: 25013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 24450 + - uid: 25014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 24450 + - uid: 25015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 24450 + - uid: 25016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 24450 + - uid: 25017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 24450 + - uid: 25018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,21.5 + parent: 24450 + - uid: 25019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,23.5 + parent: 24450 + - uid: 25020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 24450 + - uid: 25021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,21.5 + parent: 24450 + - uid: 25022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 24450 + - uid: 25023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,15.5 + parent: 24450 + - uid: 27277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 27260 + - uid: 27278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 27260 +- proto: AtmosFixBlockerMarker + entities: + - uid: 729 + components: + - type: Transform + pos: -90.5,-23.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -90.5,-24.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -90.5,-25.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -88.5,-23.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -88.5,-24.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -88.5,-25.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -86.5,-25.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -86.5,-24.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -86.5,-23.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -94.5,-23.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -94.5,-24.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -94.5,-25.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -96.5,-25.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -96.5,-24.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -96.5,-23.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 744 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,5.5 + parent: 2 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,4.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,5.5 + parent: 2 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,6.5 + parent: 2 + - uid: 774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,3.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: -117.5,25.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -116.5,24.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -115.5,25.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -117.5,23.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -113.5,25.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -115.5,24.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -115.5,23.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -116.5,25.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -116.5,23.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -112.5,27.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -112.5,25.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -112.5,24.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -112.5,23.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -111.5,27.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -111.5,25.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -111.5,24.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -111.5,23.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -110.5,25.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -110.5,24.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -110.5,23.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -109.5,27.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -109.5,26.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -109.5,25.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -109.5,24.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -109.5,23.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -108.5,27.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -108.5,26.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -108.5,25.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -108.5,24.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -108.5,23.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -107.5,27.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -107.5,26.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -107.5,25.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -107.5,24.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -107.5,23.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -106.5,27.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -106.5,26.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -106.5,23.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: -105.5,27.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -105.5,26.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -105.5,25.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -105.5,24.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -105.5,23.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -104.5,27.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -104.5,26.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -104.5,25.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -104.5,24.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -104.5,23.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -103.5,27.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -103.5,26.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -103.5,25.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -103.5,23.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 846 + components: + - type: Transform + pos: -98.5,-25.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -98.5,-24.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -98.5,-23.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 24450 + - uid: 25025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 24450 + - uid: 25026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 24450 +- proto: AtmosFixOxygenMarker + entities: + - uid: 849 + components: + - type: Transform + pos: -100.5,-23.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -100.5,-24.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -100.5,-25.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 24450 + - uid: 25028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 24450 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 852 + components: + - type: Transform + pos: -92.5,-23.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -92.5,-24.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -92.5,-25.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 855 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -103.5,-5.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -90.5,14.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + pos: 3.5,2.5 + parent: 24450 + - uid: 25030 + components: + - type: Transform + pos: -27.5,2.5 + parent: 24450 +- proto: BalloonCorgi + entities: + - uid: 859 + components: + - type: Transform + pos: 1.3953991,-34.48816 + parent: 2 +- proto: BalloonSyn + entities: + - uid: 860 + components: + - type: Transform + pos: 31.830946,31.551973 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 27.481878,40.471504 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -51.44482,29.548405 + parent: 2 +- proto: BannerCargo + entities: + - uid: 863 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 870 + components: + - type: Transform + pos: -105.5,-5.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: -95.5,6.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: -95.5,9.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -119.5,8.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -119.5,-0.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -129.5,-11.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -132.5,-0.5 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 877 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -84.5,14.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 896 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 903 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 +- proto: BannerSyndicate + entities: + - uid: 904 + components: + - type: Transform + pos: -89.5,26.5 + parent: 2 +- proto: Barricade + entities: + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -125.5,21.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -76.5,18.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -77.5,14.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,23.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -121.5,20.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 24450 +- proto: BarricadeBlock + entities: + - uid: 926 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,33.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -127.5,-7.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -127.5,-6.5 + parent: 2 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-10.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-10.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-7.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: 3.5,7.5 + parent: 24450 + - uid: 25033 + components: + - type: Transform + pos: 0.5,11.5 + parent: 24450 +- proto: BarricadeDirectional + entities: + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-6.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-7.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 2 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-11.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-10.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-8.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-11.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-12.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-13.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-13.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: 3.5,8.5 + parent: 24450 + - uid: 25035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 24450 + - uid: 25036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 24450 +- proto: BarSign + entities: + - uid: 948 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 949 + components: + - type: Transform + pos: -34.46009,24.006712 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -29.434896,-19.43375 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: 3.7139354,11.511048 + parent: 24450 + - uid: 25038 + components: + - type: Transform + pos: 4.5576854,11.448548 + parent: 24450 +- proto: BaseUplinkRadio + entities: + - uid: 951 + components: + - type: Transform + pos: -114.493805,20.350246 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.462486,-1.5650146 + parent: 2 +- proto: Beaker + entities: + - uid: 953 + components: + - type: Transform + pos: -1.8334813,-41.39243 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 46.722706,-26.49298 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 46.410206,-26.508604 + parent: 2 +- proto: Bed + entities: + - uid: 956 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -101.5,10.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 994 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 +- proto: BedsheetBlue + entities: + - uid: 995 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 996 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 997 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 998 + components: + - type: Transform + pos: -101.5,10.5 + parent: 2 +- proto: BedsheetCentcom + entities: + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 1000 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 1001 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 1002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,27.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 1003 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 1007 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 1008 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 +- proto: BedsheetIan + entities: + - uid: 1009 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 1011 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 27260 +- proto: BedsheetMime + entities: + - uid: 1015 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 1016 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 +- proto: BedsheetPurple + entities: + - uid: 1019 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 1020 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 1021 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 1022 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: -35.5,6.5 + parent: 24450 + - uid: 25040 + components: + - type: Transform + pos: -35.5,8.5 + parent: 24450 + - uid: 25041 + components: + - type: Transform + pos: -35.5,12.5 + parent: 24450 + - uid: 25042 + components: + - type: Transform + pos: 11.5,6.5 + parent: 24450 + - uid: 25043 + components: + - type: Transform + pos: 11.5,8.5 + parent: 24450 + - uid: 25044 + components: + - type: Transform + pos: 11.5,12.5 + parent: 24450 +- proto: BedsheetSyndie + entities: + - uid: 1026 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 +- proto: BedsheetUSA + entities: + - uid: 1027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 +- proto: BedsheetWhite + entities: + - uid: 1028 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 +- proto: BedsheetWiz + entities: + - uid: 1030 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 +- proto: BedsheetYellow + entities: + - uid: 1031 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 +- proto: BikeHornImplanter + entities: + - uid: 594 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BiomassReclaimer + entities: + - uid: 1032 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18416 + - uid: 1034 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18411 + - uid: 1035 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18410 + - uid: 1036 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - 18412 + - uid: 1038 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18424 + - uid: 1039 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1040 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1041 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18424 + - uid: 1042 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18415 + - uid: 1043 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18415 + - uid: 1044 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18436 + - uid: 1046 + components: + - type: Transform + pos: -118.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18454 + - 18455 + - uid: 1047 + components: + - type: Transform + pos: -123.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1048 + components: + - type: Transform + pos: -123.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15999 + - 15998 + - uid: 1049 + components: + - type: Transform + pos: -123.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1050 + components: + - type: Transform + pos: -123.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1051 + components: + - type: Transform + pos: -117.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18454 + - 18455 + - uid: 1052 + components: + - type: MetaData + name: защитный гермозатвор + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16005 + - uid: 1053 + components: + - type: MetaData + name: защитный гермозатвор + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16005 + - uid: 25045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 27280 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27801 + - uid: 27281 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 15995 + - type: DeviceLinkSource + linkedPorts: + 27802: + - DoorStatus: InputA + 27803: + - DoorStatus: InputA + - uid: 27282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 15996 + - type: DeviceLinkSource + linkedPorts: + 27804: + - DoorStatus: InputA + 27803: + - DoorStatus: InputB + - uid: 27283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 27864 + - type: DeviceLinkSource + linkedPorts: + 27804: + - DoorStatus: InputB + 27287: + - DoorStatus: Toggle + 27286: + - DoorStatus: Toggle + 27285: + - DoorStatus: Toggle + 27288: + - DoorStatus: Toggle + 27290: + - DoorStatus: Toggle + 27289: + - DoorStatus: Toggle + 27608: + - DoorStatus: Trigger + 27611: + - DoorStatus: Trigger + 27612: + - DoorStatus: Trigger + 27613: + - DoorStatus: Trigger + 27610: + - DoorStatus: Trigger + - uid: 27284 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 27260 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 27864 + - 27292 + - 27291 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27802: + - DoorStatus: InputB + 27609: + - DoorStatus: Trigger +- proto: BlastDoorBridgeOpen + entities: + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 +- proto: BlastDoorOpen + entities: + - uid: 1058 + components: + - type: Transform + pos: -127.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1059 + components: + - type: Transform + pos: -126.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1060 + components: + - type: Transform + pos: -125.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1061 + components: + - type: Transform + pos: -127.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 1062 + components: + - type: Transform + pos: -126.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 1063 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 23957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24179 + - uid: 23958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24179 + - uid: 25053 + components: + - type: Transform + pos: -8.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26723 + - uid: 25054 + components: + - type: Transform + pos: -15.5,10.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26722 + - uid: 25055 + components: + - type: Transform + pos: -8.5,10.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26723 + - uid: 25056 + components: + - type: Transform + pos: -15.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26722 + - uid: 25057 + components: + - type: Transform + pos: -8.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26720 + - uid: 25058 + components: + - type: Transform + pos: -15.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26721 + - uid: 25059 + components: + - type: Transform + pos: -15.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26721 + - uid: 25060 + components: + - type: Transform + pos: -8.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26720 + - uid: 27285 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27288 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27284: + - DoorStatus: Open + - uid: 27292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27284: + - DoorStatus: Open +- proto: BlockGameArcade + entities: + - uid: 1064 + components: + - type: Transform + pos: -58.5,26.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: Bloodpack + entities: + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.3417411,15.598124 + parent: 2 +- proto: BodyBag + entities: + - uid: 1066 + components: + - type: Transform + pos: 10.528219,9.687132 + parent: 2 +- proto: BodyScannerComputerCircuitboard + entities: + - uid: 1067 + components: + - type: Transform + pos: 22.447916,35.989582 + parent: 2 +- proto: Bonfire + entities: + - uid: 1068 + components: + - type: Transform + pos: -118.5,-18.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 1069 + components: + - type: Transform + pos: -113.607376,-4.7557926 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 1070 + components: + - type: Transform + pos: -113.326126,-4.8182926 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 1071 + components: + - type: Transform + pos: -113.61827,-4.3182926 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 1072 + components: + - type: Transform + pos: -113.290146,-4.3339176 + parent: 2 +- proto: BookBase + entities: + - uid: 1073 + components: + - type: MetaData + name: Анатомия для чайников + - type: Transform + pos: 9.534124,9.582435 + parent: 2 +- proto: BookRandom + entities: + - uid: 1074 + components: + - type: Transform + pos: -52.542038,8.649527 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -52.526413,7.8995266 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -56.714577,10.714533 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -56.32395,10.714533 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -91.549774,5.6631217 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 1079 + components: + - type: Transform + pos: -19.895487,5.6136208 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 18.493877,8.552801 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -36.530155,28.398226 + parent: 2 +- proto: BooksBag + entities: + - uid: 1082 + components: + - type: Transform + pos: -55.479183,7.443512 + parent: 2 +- proto: Bookshelf + entities: + - uid: 1083 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1086 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 1096 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 2 +- proto: BoozeDispenserEmpty + entities: + - uid: 1099 + components: + - type: Transform + pos: -104.5,0.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1100 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 +- proto: BowImprovised + entities: + - uid: 25061 + components: + - type: Transform + pos: -30.526886,-0.51148224 + parent: 24450 +- proto: BoxBeaker + entities: + - uid: 1102 + components: + - type: Transform + parent: 1101 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1103 + components: + - type: Transform + pos: 9.0787525,20.674503 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -1.4276239,5.5878706 + parent: 2 + - uid: 23939 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27294 + components: + - type: Transform + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBeanbag + entities: + - uid: 1105 + components: + - type: Transform + pos: -28.49978,-2.404027 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 48.603382,-6.600572 + parent: 2 + - uid: 24528 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 1107 + components: + - type: Transform + pos: 10.347248,5.518587 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 10.847248,5.690462 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 8.513576,18.630486 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 22.512924,11.537976 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 17.453873,23.65856 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: 4.4125977,-5.3530293 + parent: 23919 + - uid: 25062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.358505,7.6814413 + parent: 24450 +- proto: BoxCardboard + entities: + - uid: 1112 + components: + - type: Transform + pos: -44.606075,-17.155802 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -44.418575,-17.390177 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 1114 + components: + - type: Transform + pos: -34.500256,33.591328 + parent: 2 +- proto: BoxCleanerGrenades + entities: + - uid: 1116 + components: + - type: Transform + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxDonkSoftBox + entities: + - uid: 1128 + components: + - type: Transform + pos: 51.50729,-18.488604 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 27298 + components: + - type: Transform + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderBlack + entities: + - uid: 1129 + components: + - type: Transform + pos: -103.35947,21.741177 + parent: 2 + - uid: 1130 + components: + - type: MetaData + name: папка с грифом секретности + - type: Transform + pos: 48.328125,-2.529991 + parent: 2 + - uid: 1131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.848522,16.598705 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1132 + components: + - type: Transform + pos: 44.351154,4.7485046 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -74.33679,-1.436574 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 1134 + components: + - type: Transform + pos: -76.62917,-2.4311993 + parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 1135 + components: + - type: Transform + pos: -75.51346,-5.5499306 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1136 + components: + - type: Transform + pos: -103.23447,21.506802 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -25.305325,9.497218 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1138 + components: + - type: Transform + pos: 20.624432,6.395512 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -78.613785,-1.420949 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 30.689117,-3.3946733 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 30.360992,-3.3946733 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: 4.9870605,3.6952515 + parent: 23919 +- proto: BoxFolderWhite + entities: + - uid: 1142 + components: + - type: Transform + pos: 12.630811,-1.111159 + parent: 2 + - uid: 1143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.542812,17.657099 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 25.482803,29.552721 + parent: 2 + - uid: 1145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.550704,32.649754 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 24.664398,13.078537 + parent: 2 + - uid: 1147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.503829,32.63413 + parent: 2 + - uid: 1148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.550704,32.63413 + parent: 2 + - uid: 1149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.477533,12.397864 + parent: 2 + - uid: 1150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.354307,5.5851474 + parent: 2 + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.890072,36.674587 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1152 + - 1153 + - 1154 + - uid: 1155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.574062,17.672724 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1156 + components: + - type: Transform + pos: -101.9492,-2.3743103 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -25.69595,9.497218 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 25063 + components: + - type: Transform + pos: -11.794121,7.5770445 + parent: 24450 +- proto: BoxLatexGloves + entities: + - uid: 1158 + components: + - type: Transform + pos: 12.297477,-0.41324234 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 5.604253,33.525932 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 33.688656,20.37791 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 24529 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxLightMixed + entities: + - uid: 1161 + components: + - type: Transform + pos: -36.14434,9.678255 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -36.14434,9.428255 + parent: 2 +- proto: BoxMagazineLightRifle + entities: + - uid: 1164 + components: + - type: Transform + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineLightRiflePractice + entities: + - uid: 1165 + components: + - type: Transform + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolHighCapacityPractice + entities: + - uid: 1172 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 27314 + components: + - type: Transform + pos: 5.8222504,-10.36261 + parent: 27260 + - uid: 27316 + components: + - type: Transform + parent: 27315 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRifle + entities: + - uid: 27319 + components: + - type: Transform + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineShotgun + entities: + - uid: 27323 + components: + - type: Transform + pos: 4.6796875,-13.509033 + parent: 27260 +- proto: BoxMousetrap + entities: + - uid: 1179 + components: + - type: Transform + pos: -36.61309,9.647005 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 1180 + components: + - type: Transform + pos: 5.317952,30.635622 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 5.7715664,30.619997 + parent: 2 +- proto: BoxMRE + entities: + - uid: 23962 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23963 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23964 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23965 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23966 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23967 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23968 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23969 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23970 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23971 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23972 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23973 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23974 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23975 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23976 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23977 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23978 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23979 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23980 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23981 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25064 + components: + - type: Transform + pos: 11.59539,5.523186 + parent: 24450 + - uid: 25065 + components: + - type: Transform + pos: 11.611015,9.488903 + parent: 24450 + - uid: 25066 + components: + - type: Transform + pos: 11.548515,11.535778 + parent: 24450 + - uid: 25067 + components: + - type: Transform + pos: -35.65962,9.535778 + parent: 24450 + - uid: 25068 + components: + - type: Transform + pos: -35.65962,11.535778 + parent: 24450 + - uid: 25069 + components: + - type: Transform + pos: -35.62837,5.4420276 + parent: 24450 + - uid: 27324 + components: + - type: Transform + pos: -1.5990448,-6.3531494 + parent: 27260 + - uid: 27325 + components: + - type: Transform + pos: -1.432373,-6.4503784 + parent: 27260 + - uid: 27326 + components: + - type: Transform + pos: -1.557373,-6.533722 + parent: 27260 +- proto: BoxNitrileGloves + entities: + - uid: 1182 + components: + - type: Transform + pos: -10.460536,17.614714 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 27295 + components: + - type: Transform + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShellTranquilizer + entities: + - uid: 1184 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1185 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunFlare + entities: + - uid: 1186 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunIncendiary + entities: + - uid: 1187 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1188 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunPractice + entities: + - uid: 1173 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1174 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunSlug + entities: + - uid: 1189 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1190 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSterileMask + entities: + - uid: 1197 + components: + - type: Transform + pos: 12.745394,-0.41324234 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -12.570879,13.642749 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 5.479253,33.229057 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 5.5059414,30.260622 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 33.262108,20.3741 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 1202 + components: + - type: Transform + pos: 15.709843,-0.37841368 + parent: 2 + - uid: 23940 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrbSign + entities: + - uid: 1203 + components: + - type: Transform + pos: 41.54235,9.564385 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1205 + components: + - type: Transform + pos: 20.488884,12.603939 + parent: 2 +- proto: BrigmedicIDCard + entities: + - uid: 1206 + components: + - type: Transform + pos: 42.24128,10.763885 + parent: 2 +- proto: BrigmedicPDA + entities: + - uid: 1207 + components: + - type: Transform + pos: 42.189194,10.409718 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1208 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23359: + - Start: Close + - Timer: AutoClose + - Timer: Open + - type: DeviceLinkSink + links: + - 23360 + - uid: 1209 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23361: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1210 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23360: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1211 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 +- proto: BrokenBottle + entities: + - uid: 1212 + components: + - type: Transform + pos: -39.725395,28.237118 + parent: 2 +- proto: BruteAutoInjector + entities: + - uid: 595 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 596 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23941 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23942 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24530 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Brutepack + entities: + - uid: 24348 + components: + - type: Transform + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25071 + components: + - type: Transform + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25079 + components: + - type: Transform + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25086 + components: + - type: Transform + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25093 + components: + - type: Transform + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25101 + components: + - type: Transform + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25108 + components: + - type: Transform + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrutepackAdvanced1 + entities: + - uid: 1213 + components: + - type: Transform + pos: -10.536647,19.594604 + parent: 2 +- proto: Bucket + entities: + - uid: 1214 + components: + - type: Transform + pos: -8.91569,-1.1623886 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -6.1851063,35.372414 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 28.68244,25.837227 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 35.65477,-19.538193 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 42.445152,-28.240416 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 53.45202,-26.642078 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 53.436394,-23.626453 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 53.405144,-19.517078 + parent: 2 +- proto: BulletFoam + entities: + - uid: 1222 + components: + - type: Transform + pos: 48.772915,-21.37861 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 48.897915,-21.47236 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 49.63229,-21.394236 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 49.741665,-21.50361 + parent: 2 +- proto: BurnAutoInjector + entities: + - uid: 597 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 598 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23943 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23944 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24531 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ButtonFrameCaution + entities: + - uid: 1226 + components: + - type: Transform + pos: -128.5,-0.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,8.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 1228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 27260 +- proto: CableApcExtension + entities: + - uid: 1230 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -126.5,-8.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -81.5,37.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 58.5,0.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 55.5,3.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1551 components: - type: Transform - pos: 26.5,38.5 - parent: 89 - - type: DeviceList - devices: - - 20114 - - 20144 - - 16796 - - 20032 - - 20033 - - 19960 - - 20031 - - 19963 - - 20129 - - 20145 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15419 + pos: 56.5,-5.5 + parent: 2 + - uid: 1552 components: - type: Transform - pos: 7.5,31.5 - parent: 89 - - type: DeviceList - devices: - - 15472 - - 15547 - - 16137 - - 15444 - - 15467 - - 15525 - - 20010 - - 20011 - - 20013 - - 20012 - - 15453 - - 15438 - - 20016 - - 20017 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16508 + pos: 57.5,-5.5 + parent: 2 + - uid: 1553 components: - type: Transform - pos: 8.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 20128 - - 20127 - - 12735 - - 10485 - - 12736 - - 10488 - - 12239 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17144 + pos: 58.5,-5.5 + parent: 2 + - uid: 1554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,46.5 - parent: 89 - - type: DeviceList - devices: - - 17136 - - 17135 - - 17088 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17145 + pos: -5.5,-29.5 + parent: 2 + - uid: 1555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,34.5 - parent: 89 - - type: DeviceList - devices: - - 17138 - - 17137 - - 17017 - - 21260 - - 21262 - - 21226 - - 21259 - - 21223 - - 21261 - - 21225 - - 21264 - - 21227 - - 21228 - - 21263 - - 21222 - - 21244 - - type: AtmosDevice - joinedGrid: 89 - - uid: 18154 + pos: 37.5,7.5 + parent: 2 + - uid: 1556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 18153 - - type: DeviceList - devices: - - 25525 - - 25526 - - 25425 - - 25424 - - 25426 - - 25527 - - type: AtmosDevice - joinedGrid: 18153 - - uid: 19675 + pos: 58.5,-4.5 + parent: 2 + - uid: 1557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 8758 - - 15725 - - 19409 - - 10758 - - 8531 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20004 + pos: 38.5,2.5 + parent: 2 + - uid: 1558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 89 - - type: DeviceList - devices: - - 20021 - - 20020 - - 15589 - - 16165 - - 20025 - - 17039 - - 20018 - - 20019 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20115 + pos: 36.5,7.5 + parent: 2 + - uid: 1559 components: - type: Transform - pos: -2.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 121 - - 20108 - - 20109 - - 20110 - - 20111 - - 20112 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20116 + pos: 37.5,2.5 + parent: 2 + - uid: 1560 components: - type: Transform - pos: 5.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 9371 - - 9375 - - 13204 - - 5414 - - 5426 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20160 + pos: 22.5,-5.5 + parent: 2 + - uid: 1561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 89 - - type: DeviceList - devices: - - 20173 - - 20161 - - 20164 - - 4759 - - 4761 - - 20149 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20176 + pos: 38.5,7.5 + parent: 2 + - uid: 1562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 89 - - type: DeviceList - devices: - - 20154 - - 4692 - - 4691 - - 20168 - - 20177 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20821 + pos: 20.5,-5.5 + parent: 2 + - uid: 1563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 20142 - - 20804 - - 20442 - - 20823 - - 20094 - - 20093 - - 16549 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21628 + pos: 19.5,-5.5 + parent: 2 + - uid: 1564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 21627 - - type: DeviceList - devices: - - 21692 - - 21631 - - 21693 - - 21681 - - 21682 - - 21680 - - 21683 - - type: AtmosDevice - joinedGrid: 21627 - - uid: 22475 + pos: -11.5,-22.5 + parent: 2 + - uid: 1565 components: - type: Transform - pos: 45.5,-17.5 - parent: 89 - - type: DeviceList - devices: - - 22473 - - 22470 - - 22466 - - 22439 - - 22313 - - 22501 - - 22314 - - 22437 - - type: AtmosDevice - joinedGrid: 89 - - uid: 22566 + pos: -1.5,-23.5 + parent: 2 + - uid: 1566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 - - type: DeviceList - devices: - - 24378 - - 24406 - - 22631 - - 24379 - - 24403 - - 24404 - - 24380 - - 24381 - - 24405 - - 24007 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22567 + pos: 58.5,-3.5 + parent: 2 + - uid: 1567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 22565 - - type: DeviceList - devices: - - 24361 - - 22634 - - 24397 - - 23984 - - 23993 - - 23995 - - 23994 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22568 + pos: 53.5,-2.5 + parent: 2 + - uid: 1568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 22565 - - type: DeviceList - devices: - - 24009 - - 24010 - - 22639 - - 24012 - - 24011 - - 24014 - - 24013 - - 24385 - - 24376 - - 24384 - - 24370 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22569 + pos: 53.5,-4.5 + parent: 2 + - uid: 1569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 22565 - - type: DeviceList - devices: - - 24007 - - 24006 - - 24005 - - 24004 - - 24003 - - 23989 - - 23990 - - 23988 - - 23987 - - 22636 - - 24377 - - 24399 - - 24402 - - 24363 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22570 + pos: 50.5,-2.5 + parent: 2 + - uid: 1570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 22565 - - type: DeviceList - devices: - - 24388 - - 22633 - - 24367 - - 24359 - - 24390 - - 24389 - - 24365 - - 24366 - - 24391 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22571 + pos: 53.5,-1.5 + parent: 2 + - uid: 1571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 22565 - - type: DeviceList - devices: - - 24396 - - 24373 - - 22640 - - 24374 - - 24395 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22572 + pos: 50.5,-1.5 + parent: 2 + - uid: 1572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 22565 - - type: DeviceList - devices: - - 23985 - - 23986 - - 24371 - - 22632 - - 24392 - - 23992 - - 23991 - - 24002 - - 24001 - - 24000 - - 23999 - - 23998 - - 24375 - - 24394 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22573 + pos: 53.5,-0.5 + parent: 2 + - uid: 1573 components: - type: Transform - pos: -11.5,0.5 - parent: 22565 - - type: DeviceList - devices: - - 24387 - - 22635 - - 24368 - - 23996 - - 23997 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22574 + pos: 53.5,-3.5 + parent: 2 + - uid: 1574 components: - type: Transform - pos: -9.5,-20.5 - parent: 22565 - - type: DeviceList - devices: - - 24362 - - 24384 - - 22638 - - 24376 - - 24385 - - 24011 - - 24012 - - 24013 - - 24014 - - 24010 - - 24009 - - 24369 - - 24008 - - 22639 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22575 + pos: -73.5,-16.5 + parent: 2 + - uid: 1575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,14.5 - parent: 22565 - - type: DeviceList - devices: - - 24400 - - 24382 - - 22637 - - 24383 - - 24401 - - 24006 - - 24005 - - 24004 - - 24003 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25421 + pos: -74.5,-16.5 + parent: 2 + - uid: 1576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 89 - - type: DeviceList - devices: - - 25414 - - 25415 - - 25417 - - 25416 - - 25418 - - type: AtmosDevice - joinedGrid: 89 -- proto: AirAlarmElectronics - entities: - - uid: 7043 + pos: 47.5,15.5 + parent: 2 + - uid: 1577 components: - type: Transform - pos: -98.70526,-9.816481 - parent: 89 - - uid: 7044 + pos: 58.5,-2.5 + parent: 2 + - uid: 1578 components: - type: Transform - pos: -98.36151,-9.957106 - parent: 89 -- proto: AirCanister - entities: - - uid: 987 + pos: 18.5,-1.5 + parent: 2 + - uid: 1579 components: - type: Transform - pos: -90.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 989 + pos: 14.5,18.5 + parent: 2 + - uid: 1580 components: - type: Transform - pos: -91.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3551 + pos: 62.5,-3.5 + parent: 2 + - uid: 1581 components: - type: Transform - pos: -93.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8127 + pos: 58.5,-0.5 + parent: 2 + - uid: 1582 components: - type: Transform - pos: 1.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9612 + pos: 54.5,-5.5 + parent: 2 + - uid: 1583 components: - type: Transform - pos: -94.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9639 + pos: 53.5,-5.5 + parent: 2 + - uid: 1584 components: - type: Transform - pos: -26.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14663 + pos: 55.5,-5.5 + parent: 2 + - uid: 1585 components: - type: Transform - pos: -111.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15459 + pos: 64.5,-3.5 + parent: 2 + - uid: 1586 components: - type: Transform - pos: 2.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16296 + pos: 63.5,-3.5 + parent: 2 + - uid: 1587 components: - type: Transform - pos: 5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 18155 + pos: -72.5,-14.5 + parent: 2 + - uid: 1588 components: - type: Transform - pos: 2.5,-11.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - uid: 25676 + pos: 61.5,-3.5 + parent: 2 + - uid: 1589 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: Airlock - entities: - - uid: 1061 + pos: -72.5,-15.5 + parent: 2 + - uid: 1590 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 2319 + pos: -18.5,13.5 + parent: 2 + - uid: 1591 components: - type: Transform - pos: -76.5,9.5 - parent: 89 - - uid: 2320 + pos: -73.5,-15.5 + parent: 2 + - uid: 1592 components: - type: Transform - pos: -76.5,8.5 - parent: 89 - - uid: 2634 + pos: -73.5,-14.5 + parent: 2 + - uid: 1593 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - uid: 2635 + pos: -73.5,-13.5 + parent: 2 + - uid: 1594 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 2642 + pos: -72.5,-16.5 + parent: 2 + - uid: 1595 components: - type: Transform - pos: -70.5,16.5 - parent: 89 - - uid: 2643 + pos: -71.5,-16.5 + parent: 2 + - uid: 1596 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 2644 + pos: -70.5,-16.5 + parent: 2 + - uid: 1597 components: - type: Transform - pos: -70.5,18.5 - parent: 89 - - uid: 2647 + pos: -69.5,-16.5 + parent: 2 + - uid: 1598 components: - type: Transform - pos: -50.5,18.5 - parent: 89 - - uid: 2648 + pos: -70.5,-7.5 + parent: 2 + - uid: 1599 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 2649 + pos: -65.5,-8.5 + parent: 2 + - uid: 1600 components: - type: Transform - pos: -50.5,16.5 - parent: 89 - - uid: 2657 + pos: -66.5,-8.5 + parent: 2 + - uid: 1601 components: - type: Transform - pos: -46.5,16.5 - parent: 89 - - uid: 2658 + pos: -67.5,-8.5 + parent: 2 + - uid: 1602 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 2659 + pos: -68.5,-8.5 + parent: 2 + - uid: 1603 components: - type: Transform - pos: -46.5,18.5 - parent: 89 - - uid: 2662 + pos: -70.5,-10.5 + parent: 2 + - uid: 1604 components: - type: Transform - pos: -34.5,18.5 - parent: 89 - - uid: 2663 + pos: -70.5,-9.5 + parent: 2 + - uid: 1605 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 2664 + pos: -64.5,-8.5 + parent: 2 + - uid: 1606 components: - type: Transform - pos: -34.5,16.5 - parent: 89 - - uid: 2666 + pos: -63.5,-8.5 + parent: 2 + - uid: 1607 components: - type: Transform - pos: -32.5,6.5 - parent: 89 - - uid: 2667 + pos: -62.5,-8.5 + parent: 2 + - uid: 1608 components: - type: Transform - pos: -31.5,6.5 - parent: 89 - - uid: 2668 + pos: -63.5,-9.5 + parent: 2 + - uid: 1609 components: - type: Transform - pos: -30.5,6.5 - parent: 89 - - uid: 2669 + pos: -63.5,-10.5 + parent: 2 + - uid: 1610 components: - type: Transform - pos: -28.5,4.5 - parent: 89 - - uid: 2670 + pos: -63.5,-11.5 + parent: 2 + - uid: 1611 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 2671 + pos: -63.5,-12.5 + parent: 2 + - uid: 1612 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 2672 + pos: -63.5,-13.5 + parent: 2 + - uid: 1613 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 2673 + pos: -63.5,-14.5 + parent: 2 + - uid: 1614 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - uid: 2674 + pos: -63.5,-15.5 + parent: 2 + - uid: 1615 components: - type: Transform - pos: -4.5,1.5 - parent: 89 - - uid: 2675 + pos: -63.5,-16.5 + parent: 2 + - uid: 1616 components: - type: Transform - pos: -4.5,2.5 - parent: 89 - - uid: 2677 + pos: -63.5,-17.5 + parent: 2 + - uid: 1617 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 2678 + pos: -62.5,-17.5 + parent: 2 + - uid: 1618 components: - type: Transform - pos: 1.5,1.5 - parent: 89 - - uid: 3443 + pos: -62.5,-18.5 + parent: 2 + - uid: 1619 components: - type: Transform - pos: -4.5,-11.5 - parent: 89 - - uid: 3444 + pos: -62.5,-19.5 + parent: 2 + - uid: 1620 components: - type: Transform - pos: -4.5,-12.5 - parent: 89 - - uid: 3445 + pos: -60.5,-17.5 + parent: 2 + - uid: 1621 components: - type: Transform - pos: -4.5,-13.5 - parent: 89 - - uid: 6871 + pos: -60.5,-18.5 + parent: 2 + - uid: 1622 components: - type: Transform - pos: -38.5,4.5 - parent: 89 - - uid: 6872 + pos: -60.5,-19.5 + parent: 2 + - uid: 1623 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 6873 + pos: -61.5,-17.5 + parent: 2 + - uid: 1624 components: - type: Transform - pos: -38.5,-11.5 - parent: 89 - - uid: 6874 + pos: -59.5,-17.5 + parent: 2 + - uid: 1625 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 6875 + pos: -59.5,-16.5 + parent: 2 + - uid: 1626 components: - type: Transform - pos: -38.5,-13.5 - parent: 89 - - uid: 6904 + pos: -59.5,-15.5 + parent: 2 + - uid: 1627 components: - type: Transform - pos: -66.5,6.5 - parent: 89 - - uid: 6905 + pos: -59.5,-14.5 + parent: 2 + - uid: 1628 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - uid: 6906 + pos: -59.5,-13.5 + parent: 2 + - uid: 1629 components: - type: Transform - pos: -54.5,15.5 - parent: 89 - - uid: 6907 + pos: -59.5,-12.5 + parent: 2 + - uid: 1630 components: - type: Transform - pos: -52.5,15.5 - parent: 89 - - uid: 8380 + pos: -59.5,-11.5 + parent: 2 + - uid: 1631 components: - type: Transform - pos: 31.5,-16.5 - parent: 89 - - uid: 9392 + pos: -59.5,-10.5 + parent: 2 + - uid: 1632 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 9393 + pos: -59.5,-9.5 + parent: 2 + - uid: 1633 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - uid: 10126 + pos: -59.5,-8.5 + parent: 2 + - uid: 1634 components: - type: Transform - pos: -28.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21595 - - uid: 10127 + pos: -60.5,-8.5 + parent: 2 + - uid: 1635 components: - type: Transform - pos: -31.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21594 - - uid: 10128 + pos: -61.5,-8.5 + parent: 2 + - uid: 1636 components: - type: Transform - pos: -31.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21593 - - uid: 10130 + pos: -59.5,-7.5 + parent: 2 + - uid: 1637 components: - type: Transform - pos: -28.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21592 - - uid: 10131 + pos: -59.5,-6.5 + parent: 2 + - uid: 1638 components: - type: Transform - pos: -31.5,31.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21590 - - uid: 10208 + pos: -58.5,-6.5 + parent: 2 + - uid: 1639 components: - type: Transform - pos: -76.5,2.5 - parent: 89 - - uid: 10912 + pos: -57.5,-6.5 + parent: 2 + - uid: 1640 components: - type: Transform - pos: -21.5,12.5 - parent: 89 - - uid: 10913 + pos: -56.5,-6.5 + parent: 2 + - uid: 1641 components: - type: Transform - pos: -27.5,12.5 - parent: 89 - - uid: 10915 + pos: -55.5,-6.5 + parent: 2 + - uid: 1642 components: - type: Transform - pos: -25.5,12.5 - parent: 89 - - uid: 10916 + pos: -55.5,-7.5 + parent: 2 + - uid: 1643 components: - type: Transform - pos: -23.5,12.5 - parent: 89 - - uid: 10926 + pos: -55.5,-8.5 + parent: 2 + - uid: 1644 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11603 + pos: -55.5,-9.5 + parent: 2 + - uid: 1645 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 15605 + pos: -53.5,-11.5 + parent: 2 + - uid: 1646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 - parent: 89 - - uid: 16504 + pos: -55.5,-5.5 + parent: 2 + - uid: 1647 components: - type: Transform - pos: 32.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15218 - - uid: 17067 + pos: -66.5,-7.5 + parent: 2 + - uid: 1648 components: - type: Transform - pos: -28.5,16.5 - parent: 89 - - uid: 18225 + pos: -66.5,-6.5 + parent: 2 + - uid: 1649 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 18753 + pos: -67.5,-6.5 + parent: 2 + - uid: 1650 components: - type: Transform - pos: 30.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 16167 - - uid: 21324 + pos: -68.5,-6.5 + parent: 2 + - uid: 1651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-32.5 - parent: 89 - - uid: 21327 + pos: -69.5,-6.5 + parent: 2 + - uid: 1652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 89 - - uid: 21514 + pos: -70.5,-6.5 + parent: 2 + - uid: 1653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,23.5 - parent: 89 - - uid: 21767 + pos: -70.5,-5.5 + parent: 2 + - uid: 1654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-32.5 - parent: 89 - - uid: 21770 + pos: -52.5,-11.5 + parent: 2 + - uid: 1655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 89 - - uid: 22576 + pos: -51.5,-11.5 + parent: 2 + - uid: 1656 components: - type: Transform - pos: -13.5,-20.5 - parent: 22565 - - uid: 22577 + pos: -50.5,-11.5 + parent: 2 + - uid: 1657 components: - type: Transform - pos: -34.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24808 - - uid: 22578 + pos: -49.5,-11.5 + parent: 2 + - uid: 1658 components: - type: Transform - pos: 10.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24823 - - uid: 22579 + pos: -48.5,-11.5 + parent: 2 + - uid: 1659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 22565 - - uid: 22580 + pos: -47.5,-11.5 + parent: 2 + - uid: 1660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 22565 - - uid: 22581 + pos: -51.5,-10.5 + parent: 2 + - uid: 1661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 22565 - - uid: 22582 + pos: -51.5,-9.5 + parent: 2 + - uid: 1662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 22565 - - uid: 22583 + pos: -51.5,-12.5 + parent: 2 + - uid: 1663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,9.5 - parent: 22565 - - uid: 22584 + pos: -51.5,-13.5 + parent: 2 + - uid: 1664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,11.5 - parent: 22565 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 5039 + pos: -51.5,-14.5 + parent: 2 + - uid: 1665 components: - type: Transform - pos: 10.5,-9.5 - parent: 89 -- proto: AirlockAssembly - entities: - - uid: 21111 + pos: -51.5,-15.5 + parent: 2 + - uid: 1666 components: - type: Transform - pos: 36.5,38.5 - parent: 89 - - uid: 22585 + pos: -51.5,-16.5 + parent: 2 + - uid: 1667 components: - type: Transform - pos: 0.5,11.5 - parent: 22565 -- proto: AirlockAssemblyMaintenance - entities: - - uid: 12855 + pos: -51.5,-17.5 + parent: 2 + - uid: 1668 components: - type: Transform - pos: -2.5,28.5 - parent: 89 -- proto: AirlockAtmospherics - entities: - - uid: 22586 + pos: -47.5,-12.5 + parent: 2 + - uid: 1669 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 -- proto: AirlockAtmosphericsGlass - entities: - - uid: 7797 + pos: -47.5,-13.5 + parent: 2 + - uid: 1670 components: - type: Transform - pos: -83.5,-11.5 - parent: 89 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 480 + pos: -47.5,-14.5 + parent: 2 + - uid: 1671 components: - type: Transform - pos: -107.5,-8.5 - parent: 89 - - uid: 481 + pos: -47.5,-15.5 + parent: 2 + - uid: 1672 components: - type: Transform - pos: -109.5,-8.5 - parent: 89 - - uid: 844 + pos: -47.5,-16.5 + parent: 2 + - uid: 1673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-12.5 - parent: 89 - - uid: 845 + pos: -47.5,-17.5 + parent: 2 + - uid: 1674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-13.5 - parent: 89 - - uid: 848 + pos: -47.5,-18.5 + parent: 2 + - uid: 1675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-12.5 - parent: 89 - - uid: 22587 + pos: -47.5,-19.5 + parent: 2 + - uid: 1676 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 895 + pos: -46.5,-19.5 + parent: 2 + - uid: 1677 components: - type: Transform - pos: -106.5,-17.5 - parent: 89 - - uid: 936 + pos: -48.5,-19.5 + parent: 2 + - uid: 1678 components: - type: Transform - pos: -106.5,-16.5 - parent: 89 - - uid: 937 + pos: -49.5,-19.5 + parent: 2 + - uid: 1679 components: - type: Transform - pos: -95.5,-6.5 - parent: 89 - - uid: 8193 + pos: -45.5,-19.5 + parent: 2 + - uid: 1680 components: - type: Transform - pos: -0.5,26.5 - parent: 89 - - uid: 9618 + pos: -52.5,-13.5 + parent: 2 + - uid: 1681 components: - type: Transform - pos: -93.5,21.5 - parent: 89 - - uid: 9641 + pos: -53.5,-13.5 + parent: 2 + - uid: 1682 components: - type: Transform - pos: -24.5,-26.5 - parent: 89 -- proto: AirlockBarLocked - entities: - - uid: 72 + pos: -54.5,-13.5 + parent: 2 + - uid: 1683 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 -- proto: AirlockBrigGlassLocked - entities: - - uid: 6510 + pos: -55.5,-13.5 + parent: 2 + - uid: 1684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 89 - - uid: 17100 + pos: -52.5,-16.5 + parent: 2 + - uid: 1685 components: - type: Transform - pos: 41.5,-20.5 - parent: 89 - - uid: 17103 + pos: -53.5,-16.5 + parent: 2 + - uid: 1686 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 17104 + pos: -54.5,-16.5 + parent: 2 + - uid: 1687 components: - type: Transform - pos: 43.5,-20.5 - parent: 89 - - uid: 17225 + pos: -55.5,-16.5 + parent: 2 + - uid: 1688 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 18404 + pos: -64.5,-16.5 + parent: 2 + - uid: 1689 components: - type: Transform - pos: 41.5,-13.5 - parent: 89 - - uid: 21777 + pos: -65.5,-16.5 + parent: 2 + - uid: 1690 components: - type: Transform - pos: 37.5,-20.5 - parent: 89 - - uid: 25367 + pos: -66.5,-16.5 + parent: 2 + - uid: 1691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 89 -- proto: AirlockBrigLocked - entities: - - uid: 438 + pos: -66.5,-14.5 + parent: 2 + - uid: 1692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 - - uid: 4659 + pos: -66.5,-13.5 + parent: 2 + - uid: 1693 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 5018 + pos: -66.5,-12.5 + parent: 2 + - uid: 1694 components: - type: Transform - pos: 5.5,-9.5 - parent: 89 - - uid: 6524 + pos: -66.5,-11.5 + parent: 2 + - uid: 1695 components: - type: Transform - pos: 8.5,-3.5 - parent: 89 - - uid: 9731 + pos: -66.5,-10.5 + parent: 2 + - uid: 1696 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 9862 + pos: -66.5,-9.5 + parent: 2 + - uid: 1697 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 9875 + pos: -66.5,-15.5 + parent: 2 + - uid: 1698 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 9876 + pos: -70.5,-11.5 + parent: 2 + - uid: 1699 components: - type: Transform - pos: -55.5,37.5 - parent: 89 - - uid: 10629 + pos: -70.5,-12.5 + parent: 2 + - uid: 1700 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 -- proto: AirlockCaptainLocked - entities: - - uid: 721 + pos: -69.5,-10.5 + parent: 2 + - uid: 1701 components: - type: Transform - pos: 49.5,11.5 - parent: 89 - - uid: 3193 + pos: -68.5,-10.5 + parent: 2 + - uid: 1702 components: - type: Transform - pos: 47.5,16.5 - parent: 89 -- proto: AirlockCargoLocked - entities: - - uid: 5851 + pos: -67.5,-10.5 + parent: 2 + - uid: 1703 components: - type: Transform - pos: -70.5,-4.5 - parent: 89 - - uid: 5852 + pos: -36.5,22.5 + parent: 2 + - uid: 1704 components: - type: Transform - pos: -68.5,-6.5 - parent: 89 - - uid: 5853 + pos: 34.5,-12.5 + parent: 2 + - uid: 1705 components: - type: Transform - pos: -55.5,-4.5 - parent: 89 - - uid: 5854 + pos: 34.5,-10.5 + parent: 2 + - uid: 1706 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 5857 + pos: -130.5,-7.5 + parent: 2 + - uid: 1707 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 -- proto: AirlockChapelLocked - entities: - - uid: 5478 + pos: -94.5,-8.5 + parent: 2 + - uid: 1708 components: - type: Transform - pos: -47.5,-5.5 - parent: 89 -- proto: AirlockChemistryLocked - entities: - - uid: 15236 + pos: -93.5,-8.5 + parent: 2 + - uid: 1709 components: - type: Transform - pos: 0.5,10.5 - parent: 89 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 1842 + pos: -14.5,23.5 + parent: 2 + - uid: 1710 components: - type: Transform - pos: -115.5,-12.5 - parent: 89 - - uid: 3361 + pos: -10.5,23.5 + parent: 2 + - uid: 1711 components: - type: Transform - pos: -102.5,6.5 - parent: 89 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 19713 + pos: -8.5,23.5 + parent: 2 + - uid: 1712 components: - type: Transform - pos: 23.5,41.5 - parent: 89 - - uid: 19889 + pos: -5.5,23.5 + parent: 2 + - uid: 1713 components: - type: Transform - pos: 24.5,33.5 - parent: 89 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 19915 + pos: -63.5,-5.5 + parent: 2 + - uid: 1714 components: - type: Transform - pos: 24.5,38.5 - parent: 89 -- proto: AirlockCommandGlassLocked - entities: - - uid: 1753 + pos: -3.5,23.5 + parent: 2 + - uid: 1715 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 1754 + pos: -2.5,23.5 + parent: 2 + - uid: 1716 components: - type: Transform - pos: 46.5,0.5 - parent: 89 - - uid: 2318 + pos: -0.5,23.5 + parent: 2 + - uid: 1717 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 17275 + pos: -83.5,37.5 + parent: 2 + - uid: 1718 components: - type: Transform - pos: -57.5,45.5 - parent: 89 - - uid: 17278 + pos: -67.5,30.5 + parent: 2 + - uid: 1719 components: - type: Transform - pos: -57.5,44.5 - parent: 89 - - uid: 17279 + pos: -82.5,37.5 + parent: 2 + - uid: 1720 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 21629 + pos: -68.5,30.5 + parent: 2 + - uid: 1721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 21627 -- proto: AirlockCommandLocked - entities: - - uid: 2709 + pos: -69.5,30.5 + parent: 2 + - uid: 1722 components: - type: Transform - pos: 18.5,0.5 - parent: 89 - - uid: 7497 + pos: -66.5,37.5 + parent: 2 + - uid: 1723 components: - type: Transform - pos: -108.5,22.5 - parent: 89 - - uid: 7630 + pos: -69.5,37.5 + parent: 2 + - uid: 1724 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 9186 + pos: -68.5,37.5 + parent: 2 + - uid: 1725 components: - type: Transform - pos: -108.5,16.5 - parent: 89 - - uid: 10988 + pos: -67.5,37.5 + parent: 2 + - uid: 1726 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 10990 + pos: -130.5,-6.5 + parent: 2 + - uid: 1727 components: - type: Transform - pos: 42.5,0.5 - parent: 89 -- proto: AirlockDetectiveGlassLocked - entities: - - uid: 1137 + pos: -81.5,30.5 + parent: 2 + - uid: 1728 components: - type: Transform - pos: 19.5,4.5 - parent: 89 - - uid: 2008 + pos: -36.5,-16.5 + parent: 2 + - uid: 1729 components: - type: Transform - pos: 15.5,7.5 - parent: 89 -- proto: AirlockDetectiveLocked - entities: - - uid: 13683 + pos: -33.5,-16.5 + parent: 2 + - uid: 1730 components: - type: Transform - pos: 21.5,10.5 - parent: 89 -- proto: AirlockEngineering - entities: - - uid: 6935 + pos: -132.5,-7.5 + parent: 2 + - uid: 1731 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 7093 + pos: -12.5,23.5 + parent: 2 + - uid: 1732 components: - type: Transform - pos: -89.5,0.5 - parent: 89 - - uid: 21769 + pos: -130.5,-5.5 + parent: 2 + - uid: 1733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 89 -- proto: AirlockEngineeringGlass - entities: - - uid: 18156 + pos: -130.5,-4.5 + parent: 2 + - uid: 1734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 18153 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 855 + pos: 34.5,-11.5 + parent: 2 + - uid: 1735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-6.5 - parent: 89 - - uid: 919 + pos: -13.5,23.5 + parent: 2 + - uid: 1736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 - - uid: 921 + pos: -92.5,22.5 + parent: 2 + - uid: 1737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-4.5 - parent: 89 - - uid: 924 + pos: -89.5,22.5 + parent: 2 + - uid: 1738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,4.5 - parent: 89 - - uid: 15876 + pos: -34.5,-17.5 + parent: 2 + - uid: 1739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-10.5 - parent: 89 - - uid: 16915 + pos: -87.5,22.5 + parent: 2 + - uid: 1740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,3.5 - parent: 89 -- proto: AirlockEngineeringLocked - entities: - - uid: 923 + pos: -4.5,23.5 + parent: 2 + - uid: 1741 components: - type: Transform - pos: -113.5,-1.5 - parent: 89 - - uid: 926 + pos: 13.5,31.5 + parent: 2 + - uid: 1742 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 930 + pos: -1.5,23.5 + parent: 2 + - uid: 1743 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 1111 + pos: -4.5,26.5 + parent: 2 + - uid: 1744 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 1539 + pos: -2.5,30.5 + parent: 2 + - uid: 1745 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 1720 + pos: -3.5,37.5 + parent: 2 + - uid: 1746 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 2866 + pos: -2.5,38.5 + parent: 2 + - uid: 1747 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 3951 + pos: -2.5,39.5 + parent: 2 + - uid: 1748 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 4476 + pos: -3.5,38.5 + parent: 2 + - uid: 1749 components: - type: Transform - pos: -118.5,-1.5 - parent: 89 - - uid: 4520 + pos: -3.5,39.5 + parent: 2 + - uid: 1750 components: - type: Transform - pos: -127.5,-7.5 - parent: 89 - - uid: 8194 + pos: -3.5,36.5 + parent: 2 + - uid: 1751 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8482 + pos: -3.5,35.5 + parent: 2 + - uid: 1752 components: - type: Transform - pos: -122.5,4.5 - parent: 89 - - uid: 8500 + pos: -3.5,34.5 + parent: 2 + - uid: 1753 components: - type: Transform - pos: -126.5,13.5 - parent: 89 - - uid: 8505 + pos: -3.5,33.5 + parent: 2 + - uid: 1754 components: - type: Transform - pos: -126.5,11.5 - parent: 89 - - uid: 8509 + pos: -3.5,31.5 + parent: 2 + - uid: 1755 components: - type: Transform - pos: -122.5,3.5 - parent: 89 - - uid: 8516 + pos: -3.5,30.5 + parent: 2 + - uid: 1756 components: - type: Transform - pos: -124.5,3.5 - parent: 89 - - uid: 8517 + pos: -3.5,29.5 + parent: 2 + - uid: 1757 components: - type: Transform - pos: -124.5,4.5 - parent: 89 - - uid: 8551 + pos: -3.5,28.5 + parent: 2 + - uid: 1758 components: - type: Transform - pos: -118.5,9.5 - parent: 89 - - uid: 8915 + pos: -3.5,27.5 + parent: 2 + - uid: 1759 components: - type: Transform - pos: -127.5,-6.5 - parent: 89 - - uid: 9018 + pos: -3.5,26.5 + parent: 2 + - uid: 1760 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 9227 + pos: -3.5,41.5 + parent: 2 + - uid: 1761 components: - type: Transform - pos: -118.5,15.5 - parent: 89 - - uid: 10396 + pos: -4.5,36.5 + parent: 2 + - uid: 1762 components: - type: Transform - pos: -121.5,-12.5 - parent: 89 - - uid: 11381 + pos: -5.5,36.5 + parent: 2 + - uid: 1763 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11921 + pos: -6.5,36.5 + parent: 2 + - uid: 1764 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 12650 + pos: -7.5,36.5 + parent: 2 + - uid: 1765 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12979 + pos: -7.5,35.5 + parent: 2 + - uid: 1766 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13448 + pos: -7.5,34.5 + parent: 2 + - uid: 1767 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 15920 + pos: -7.5,33.5 + parent: 2 + - uid: 1768 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 20918 + pos: -3.5,35.5 + parent: 2 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 89 - - uid: 22588 + pos: -2.5,35.5 + parent: 2 + - uid: 1770 components: - type: Transform - pos: -9.5,-2.5 - parent: 22565 - - uid: 22589 + pos: -1.5,35.5 + parent: 2 + - uid: 1771 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 22590 + pos: 0.5,35.5 + parent: 2 + - uid: 1772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 22565 - - uid: 22591 + pos: 1.5,35.5 + parent: 2 + - uid: 1773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-15.5 - parent: 22565 -- proto: AirlockEVALocked - entities: - - uid: 2189 + pos: 1.5,36.5 + parent: 2 + - uid: 1774 components: - type: Transform - pos: 29.5,8.5 - parent: 89 - - uid: 2190 + pos: 0.5,30.5 + parent: 2 + - uid: 1775 components: - type: Transform - pos: 29.5,6.5 - parent: 89 - - uid: 2270 + pos: 1.5,30.5 + parent: 2 + - uid: 1776 components: - type: Transform - pos: 32.5,4.5 - parent: 89 - - uid: 6307 + pos: 2.5,30.5 + parent: 2 + - uid: 1777 components: - type: Transform - pos: 24.5,4.5 - parent: 89 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 20291 + pos: -4.5,30.5 + parent: 2 + - uid: 1778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 20292: - - DoorStatus: DoorBolt - - uid: 20292 + pos: -5.5,30.5 + parent: 2 + - uid: 1779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,26.5 - parent: 89 - - type: DeviceLinkSink - links: - - 20291 -- proto: AirlockExternalGlass - entities: - - uid: 6449 + pos: -7.5,30.5 + parent: 2 + - uid: 1780 components: - type: Transform - pos: -68.5,30.5 - parent: 89 - - uid: 6457 + pos: -8.5,30.5 + parent: 2 + - uid: 1781 components: - type: Transform - pos: -82.5,30.5 - parent: 89 - - uid: 9950 + pos: -2.5,26.5 + parent: 2 + - uid: 1782 components: - type: Transform - pos: -66.5,46.5 - parent: 89 - - uid: 9951 + pos: -1.5,26.5 + parent: 2 + - uid: 1783 components: - type: Transform - pos: -64.5,46.5 - parent: 89 - - uid: 9952 + pos: -0.5,26.5 + parent: 2 + - uid: 1784 components: - type: Transform - pos: -58.5,46.5 - parent: 89 - - uid: 10566 + pos: 0.5,26.5 + parent: 2 + - uid: 1785 components: - type: Transform - pos: -68.5,37.5 - parent: 89 - - uid: 10773 + pos: -5.5,26.5 + parent: 2 + - uid: 1786 components: - type: Transform - pos: -82.5,37.5 - parent: 89 - - uid: 22592 + pos: -3.5,42.5 + parent: 2 + - uid: 1787 components: - type: Transform - pos: -15.5,-18.5 - parent: 22565 - - uid: 22593 + pos: -3.5,44.5 + parent: 2 + - uid: 1788 components: - type: Transform - pos: -11.5,-18.5 - parent: 22565 - - uid: 22594 + pos: -3.5,45.5 + parent: 2 + - uid: 1789 components: - type: Transform - pos: -12.5,-4.5 - parent: 22565 - - uid: 22595 + pos: -5.5,45.5 + parent: 2 + - uid: 1790 components: - type: Transform - pos: -11.5,-4.5 - parent: 22565 -- proto: AirlockExternalGlassLocked - entities: - - uid: 4480 + pos: -6.5,45.5 + parent: 2 + - uid: 1791 components: - type: Transform - pos: -62.5,-18.5 - parent: 89 - - uid: 4481 + pos: -7.5,45.5 + parent: 2 + - uid: 1792 components: - type: Transform - pos: -60.5,-18.5 - parent: 89 - - uid: 7511 + pos: -1.5,45.5 + parent: 2 + - uid: 1793 components: - type: Transform - pos: -84.5,46.5 - parent: 89 - - uid: 7512 + pos: -0.5,45.5 + parent: 2 + - uid: 1794 components: - type: Transform - pos: -86.5,39.5 - parent: 89 - - uid: 7554 + pos: 0.5,45.5 + parent: 2 + - uid: 1795 components: - type: Transform - pos: -86.5,37.5 - parent: 89 - - uid: 21041 + pos: -4.5,41.5 + parent: 2 + - uid: 1796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,21.5 - parent: 89 -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 6462 + pos: -5.5,41.5 + parent: 2 + - uid: 1797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 89 - - uid: 6476 + pos: -6.5,41.5 + parent: 2 + - uid: 1798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,30.5 - parent: 89 - - uid: 6523 + pos: -7.5,41.5 + parent: 2 + - uid: 1799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,37.5 - parent: 89 - - uid: 6544 + pos: -1.5,41.5 + parent: 2 + - uid: 1800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,37.5 - parent: 89 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 9891 + pos: 0.5,41.5 + parent: 2 + - uid: 1801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,49.5 - parent: 89 - - uid: 9893 + pos: 1.5,41.5 + parent: 2 + - uid: 1802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,49.5 - parent: 89 - - uid: 9894 + pos: 2.5,41.5 + parent: 2 + - uid: 1803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,49.5 - parent: 89 - - uid: 9896 + pos: -6.5,33.5 + parent: 2 + - uid: 1804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,49.5 - parent: 89 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 4472 + pos: -3.5,24.5 + parent: 2 + - uid: 1805 components: - type: Transform - pos: -62.5,-21.5 - parent: 89 - - uid: 4473 + pos: -6.5,23.5 + parent: 2 + - uid: 1806 components: - type: Transform - pos: -60.5,-21.5 - parent: 89 - - uid: 7496 + pos: -15.5,22.5 + parent: 2 + - uid: 1807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,37.5 - parent: 89 - - uid: 7501 + pos: -128.5,-9.5 + parent: 2 + - uid: 1808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,39.5 - parent: 89 - - uid: 7506 + pos: -129.5,-9.5 + parent: 2 + - uid: 1809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,48.5 - parent: 89 -- proto: AirlockExternalLocked - entities: - - uid: 1215 + pos: -128.5,-10.5 + parent: 2 + - uid: 1810 components: - type: Transform - pos: -105.5,-20.5 - parent: 89 - - uid: 1217 + pos: -129.5,-8.5 + parent: 2 + - uid: 1811 components: - type: Transform - pos: -104.5,-20.5 - parent: 89 - - uid: 1219 + pos: -129.5,-7.5 + parent: 2 + - uid: 1812 components: - type: Transform - pos: -103.5,-21.5 - parent: 89 - - uid: 2241 + pos: -9.5,23.5 + parent: 2 + - uid: 1813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-19.5 - parent: 89 - - uid: 2244 + pos: -11.5,23.5 + parent: 2 + - uid: 1814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-20.5 - parent: 89 - - uid: 2329 + pos: -10.5,-19.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: -84.5,-20.5 - parent: 89 - - uid: 5454 + pos: -12.5,-19.5 + parent: 2 + - uid: 1816 components: - type: Transform - pos: -47.5,-14.5 - parent: 89 - - uid: 5456 + pos: -6.5,-41.5 + parent: 2 + - uid: 1817 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 7657 + pos: 29.5,8.5 + parent: 2 + - uid: 1818 components: - type: Transform - pos: -76.5,-18.5 - parent: 89 - - uid: 8021 + pos: 28.5,8.5 + parent: 2 + - uid: 1819 components: - type: Transform - pos: -9.5,30.5 - parent: 89 - - uid: 8069 + pos: 27.5,8.5 + parent: 2 + - uid: 1820 components: - type: Transform - pos: -7.5,30.5 - parent: 89 - - uid: 8880 + pos: 26.5,8.5 + parent: 2 + - uid: 1821 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 19571 + pos: 25.5,8.5 + parent: 2 + - uid: 1822 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 -- proto: AirlockExternalShuttleLocked - entities: - - uid: 21565 + pos: 28.5,6.5 + parent: 2 + - uid: 1823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,20.5 - parent: 89 - - type: Docking - dockJointId: docking111798 - dockedWith: 21630 - - uid: 21630 + pos: 29.5,6.5 + parent: 2 + - uid: 1824 components: - type: Transform - pos: 0.5,-6.5 - parent: 21627 - - type: Docking - dockJointId: docking111798 - dockedWith: 21565 - - uid: 21748 + pos: 27.5,6.5 + parent: 2 + - uid: 1825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 89 - - type: Docking - dockJointId: docking314611 - dockedWith: 25423 - - uid: 22596 + pos: 26.5,6.5 + parent: 2 + - uid: 1826 components: - type: Transform - pos: -15.5,-27.5 - parent: 22565 - - uid: 22597 + pos: 25.5,6.5 + parent: 2 + - uid: 1827 components: - type: Transform - pos: -17.5,-27.5 - parent: 22565 - - uid: 22598 + pos: -63.5,-4.5 + parent: 2 + - uid: 1828 components: - type: Transform - pos: -9.5,-27.5 - parent: 22565 - - uid: 22599 + pos: -90.5,22.5 + parent: 2 + - uid: 1829 components: - type: Transform - pos: -11.5,-27.5 - parent: 22565 - - uid: 25357 + pos: -88.5,22.5 + parent: 2 + - uid: 1830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 89 - - type: Docking - dockJointId: docking314616 - dockedWith: 25422 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 726 + pos: -91.5,22.5 + parent: 2 + - uid: 1831 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 3608 + pos: -53.5,48.5 + parent: 2 + - uid: 1832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 89 -- proto: AirlockFreezerLocked - entities: - - uid: 14031 + pos: 22.5,-2.5 + parent: 2 + - uid: 1833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 89 -- proto: AirlockGlass - entities: - - uid: 4817 + pos: 18.5,-5.5 + parent: 2 + - uid: 1834 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 4818 + pos: 61.5,-0.5 + parent: 2 + - uid: 1835 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 4820 + pos: 61.5,-1.5 + parent: 2 + - uid: 1836 components: - type: Transform - pos: -19.5,0.5 - parent: 89 - - uid: 4821 + pos: 61.5,-2.5 + parent: 2 + - uid: 1837 components: - type: Transform - pos: -17.5,0.5 - parent: 89 - - uid: 5107 + pos: -17.5,-22.5 + parent: 2 + - uid: 1838 components: - type: Transform - pos: -50.5,2.5 - parent: 89 - - uid: 5108 + pos: -7.5,23.5 + parent: 2 + - uid: 1839 components: - type: Transform - pos: -49.5,2.5 - parent: 89 - - uid: 5990 + pos: 10.5,41.5 + parent: 2 + - uid: 1840 components: - type: Transform - pos: -51.5,6.5 - parent: 89 - - uid: 5997 + pos: 7.5,30.5 + parent: 2 + - uid: 1841 components: - type: Transform - pos: -49.5,6.5 - parent: 89 - - uid: 7277 + pos: -3.5,-42.5 + parent: 2 + - uid: 1842 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 9172 + pos: -3.5,-43.5 + parent: 2 + - uid: 1843 components: - type: Transform - pos: -30.5,19.5 - parent: 89 - - uid: 9187 + pos: -3.5,-44.5 + parent: 2 + - uid: 1844 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 21381 + pos: -7.5,-44.5 + parent: 2 + - uid: 1845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - uid: 21873 + pos: -7.5,-43.5 + parent: 2 + - uid: 1846 components: - type: Transform - pos: 52.5,-25.5 - parent: 89 - - uid: 21874 + pos: -7.5,-42.5 + parent: 2 + - uid: 1847 components: - type: Transform - pos: 52.5,-22.5 - parent: 89 - - uid: 21875 + pos: 0.5,-44.5 + parent: 2 + - uid: 1848 components: - type: Transform - pos: 52.5,-20.5 - parent: 89 - - uid: 22600 + pos: 0.5,-43.5 + parent: 2 + - uid: 1849 components: - type: Transform - pos: -28.5,5.5 - parent: 22565 - - uid: 22601 + pos: 0.5,-42.5 + parent: 2 + - uid: 1850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 - - uid: 22602 + pos: -129.5,-2.5 + parent: 2 + - uid: 1851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,0.5 - parent: 22565 - - uid: 22603 + pos: -129.5,-1.5 + parent: 2 + - uid: 1852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 22565 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 1810 + pos: 8.5,31.5 + parent: 2 + - uid: 1853 components: - type: Transform - pos: 46.5,8.5 - parent: 89 - - uid: 1813 + pos: -121.5,17.5 + parent: 2 + - uid: 1854 components: - type: Transform - pos: 46.5,7.5 - parent: 89 - - uid: 1826 + pos: 20.5,25.5 + parent: 2 + - uid: 1855 components: - type: Transform - pos: 43.5,11.5 - parent: 89 - - uid: 20942 + pos: 21.5,25.5 + parent: 2 + - uid: 1856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 89 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 2910 + pos: 15.5,32.5 + parent: 2 + - uid: 1857 components: - type: Transform - pos: 36.5,-4.5 - parent: 89 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 1658 + pos: -27.5,15.5 + parent: 2 + - uid: 1858 components: - type: Transform - pos: 31.5,0.5 - parent: 89 -- proto: AirlockHydroGlassLocked - entities: - - uid: 27 + pos: 0.5,6.5 + parent: 2 + - uid: 1859 components: - type: Transform - pos: -9.5,-6.5 - parent: 89 -- proto: AirlockHydroponicsLocked - entities: - - uid: 3780 + pos: 13.5,32.5 + parent: 2 + - uid: 1860 components: - type: Transform - pos: -9.5,-10.5 - parent: 89 -- proto: AirlockJanitorLocked - entities: - - uid: 9548 + pos: 14.5,32.5 + parent: 2 + - uid: 1861 components: - type: Transform - pos: -40.5,6.5 - parent: 89 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 441 + pos: -120.5,17.5 + parent: 2 + - uid: 1862 components: - type: Transform - pos: -74.5,-4.5 - parent: 89 -- proto: AirlockMaint - entities: - - uid: 22604 + pos: -27.5,21.5 + parent: 2 + - uid: 1863 components: - type: Transform - pos: -27.5,7.5 - parent: 22565 - - uid: 22605 + pos: -28.5,21.5 + parent: 2 + - uid: 1864 components: - type: Transform - pos: -24.5,11.5 - parent: 22565 - - uid: 22606 + pos: -29.5,21.5 + parent: 2 + - uid: 1865 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 -- proto: AirlockMaintBarLocked - entities: - - uid: 74 + pos: -27.5,22.5 + parent: 2 + - uid: 1866 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 14654 + pos: -29.5,22.5 + parent: 2 + - uid: 1867 components: - type: Transform - pos: -127.5,20.5 - parent: 89 -- proto: AirlockMaintCargoLocked - entities: - - uid: 10086 + pos: -29.5,23.5 + parent: 2 + - uid: 1868 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 -- proto: AirlockMaintChapelLocked - entities: - - uid: 5473 + pos: -29.5,24.5 + parent: 2 + - uid: 1869 components: - type: Transform - pos: -44.5,-6.5 - parent: 89 -- proto: AirlockMaintCommandLocked - entities: - - uid: 1146 + pos: -29.5,25.5 + parent: 2 + - uid: 1870 components: - type: Transform - pos: 50.5,4.5 - parent: 89 -- proto: AirlockMaintCommonLocked - entities: - - uid: 2070 + pos: -29.5,26.5 + parent: 2 + - uid: 1871 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 2250 + pos: -29.5,27.5 + parent: 2 + - uid: 1872 components: - type: Transform - pos: -79.5,4.5 - parent: 89 - - uid: 4758 + pos: -29.5,28.5 + parent: 2 + - uid: 1873 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 7326 + pos: -29.5,29.5 + parent: 2 + - uid: 1874 components: - type: Transform - pos: -90.5,16.5 - parent: 89 - - uid: 7332 + pos: -29.5,30.5 + parent: 2 + - uid: 1875 components: - type: Transform - pos: -86.5,-1.5 - parent: 89 - - uid: 7349 + pos: -29.5,31.5 + parent: 2 + - uid: 1876 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 7589 + pos: -29.5,32.5 + parent: 2 + - uid: 1877 components: - type: Transform - pos: -78.5,11.5 - parent: 89 - - uid: 7866 + pos: -29.5,33.5 + parent: 2 + - uid: 1878 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8055 + pos: -30.5,31.5 + parent: 2 + - uid: 1879 components: - type: Transform - pos: -4.5,36.5 - parent: 89 - - uid: 8083 + pos: -31.5,31.5 + parent: 2 + - uid: 1880 components: - type: Transform - pos: -74.5,16.5 - parent: 89 - - uid: 8136 + pos: -32.5,31.5 + parent: 2 + - uid: 1881 components: - type: Transform - pos: -1.5,28.5 - parent: 89 - - uid: 8138 + pos: -28.5,33.5 + parent: 2 + - uid: 1882 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8706 + pos: -27.5,33.5 + parent: 2 + - uid: 1883 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 9152 + pos: -28.5,29.5 + parent: 2 + - uid: 1884 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 9325 + pos: -27.5,29.5 + parent: 2 + - uid: 1885 components: - type: Transform - pos: -43.5,11.5 - parent: 89 - - uid: 9326 + pos: -30.5,27.5 + parent: 2 + - uid: 1886 components: - type: Transform - pos: -36.5,15.5 - parent: 89 - - uid: 9327 + pos: -31.5,27.5 + parent: 2 + - uid: 1887 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 9328 + pos: -32.5,27.5 + parent: 2 + - uid: 1888 components: - type: Transform - pos: -48.5,19.5 - parent: 89 - - uid: 9819 + pos: -30.5,23.5 + parent: 2 + - uid: 1889 components: - type: Transform - pos: -54.5,25.5 - parent: 89 - - uid: 10136 + pos: -31.5,23.5 + parent: 2 + - uid: 1890 components: - type: Transform - pos: -78.5,-4.5 - parent: 89 - - uid: 10539 + pos: -32.5,23.5 + parent: 2 + - uid: 1891 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 10924 + pos: -28.5,25.5 + parent: 2 + - uid: 1892 components: - type: Transform - pos: -20.5,13.5 - parent: 89 - - uid: 10946 + pos: -27.5,25.5 + parent: 2 + - uid: 1893 components: - type: Transform - pos: 1.5,-15.5 - parent: 89 - - uid: 15303 + pos: -29.5,20.5 + parent: 2 + - uid: 1894 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16131 + pos: -29.5,19.5 + parent: 2 + - uid: 1895 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 16132 + pos: -29.5,18.5 + parent: 2 + - uid: 1896 components: - type: Transform - pos: 26.5,25.5 - parent: 89 - - uid: 16139 + pos: -30.5,20.5 + parent: 2 + - uid: 1897 components: - type: Transform - pos: 15.5,26.5 - parent: 89 -- proto: AirlockMaintEngiLocked - entities: - - uid: 927 + pos: -31.5,20.5 + parent: 2 + - uid: 1898 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 7340 + pos: -32.5,20.5 + parent: 2 + - uid: 1899 components: - type: Transform - pos: -103.5,14.5 - parent: 89 - - uid: 10407 + pos: -33.5,20.5 + parent: 2 + - uid: 1900 components: - type: Transform - pos: -118.5,17.5 - parent: 89 -- proto: AirlockMaintHOPLocked - entities: - - uid: 20983 + pos: -34.5,20.5 + parent: 2 + - uid: 1901 components: - type: Transform - pos: 42.5,18.5 - parent: 89 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 9495 + pos: -35.5,20.5 + parent: 2 + - uid: 1902 components: - type: Transform - pos: -37.5,10.5 - parent: 89 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 434 + pos: -27.5,20.5 + parent: 2 + - uid: 1903 components: - type: Transform - pos: -74.5,-7.5 - parent: 89 -- proto: AirlockMaintLocked - entities: - - uid: 1063 + pos: -26.5,20.5 + parent: 2 + - uid: 1904 components: - type: Transform - pos: -86.5,22.5 - parent: 89 - - uid: 5778 + pos: -25.5,20.5 + parent: 2 + - uid: 1905 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 6700 + pos: -24.5,20.5 + parent: 2 + - uid: 1906 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 9179 + pos: -27.5,14.5 + parent: 2 + - uid: 1907 components: - type: Transform - pos: -34.5,20.5 - parent: 89 -- proto: AirlockMaintMedLocked - entities: - - uid: 16515 + pos: -27.5,13.5 + parent: 2 + - uid: 1908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 89 - - uid: 16560 + pos: -28.5,13.5 + parent: 2 + - uid: 1909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 89 -- proto: AirlockMaintRnDLocked - entities: - - uid: 1376 + pos: -29.5,13.5 + parent: 2 + - uid: 1910 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 1732 + pos: -26.5,13.5 + parent: 2 + - uid: 1911 components: - type: Transform - pos: 2.5,-17.5 - parent: 89 - - uid: 9044 + pos: -25.5,13.5 + parent: 2 + - uid: 1912 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 4597 + pos: -24.5,13.5 + parent: 2 + - uid: 1913 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 -- proto: AirlockMaintSecLocked - entities: - - uid: 2036 + pos: -23.5,13.5 + parent: 2 + - uid: 1914 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 5099 + pos: -22.5,13.5 + parent: 2 + - uid: 1915 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 6161 + pos: -21.5,13.5 + parent: 2 + - uid: 1916 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 8336 + pos: -39.5,23.5 + parent: 2 + - uid: 1917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,21.5 - parent: 89 - - uid: 9734 + pos: -40.5,23.5 + parent: 2 + - uid: 1918 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 21809 + pos: -40.5,22.5 + parent: 2 + - uid: 1919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 89 - - uid: 25688 + pos: -40.5,21.5 + parent: 2 + - uid: 1920 components: - type: Transform - pos: 37.5,-16.5 - parent: 89 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 4611 + pos: -40.5,20.5 + parent: 2 + - uid: 1921 components: - type: Transform - pos: -36.5,-4.5 - parent: 89 -- proto: AirlockMedical - entities: - - uid: 6596 + pos: -42.5,20.5 + parent: 2 + - uid: 1922 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - uid: 6597 + pos: -43.5,20.5 + parent: 2 + - uid: 1923 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 10667 + pos: -44.5,20.5 + parent: 2 + - uid: 1924 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 11217 + pos: -45.5,20.5 + parent: 2 + - uid: 1925 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 11218 + pos: -46.5,20.5 + parent: 2 + - uid: 1926 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 14932 + pos: -47.5,20.5 + parent: 2 + - uid: 1927 components: - type: Transform - pos: 17.5,15.5 - parent: 89 - - uid: 14961 + pos: -48.5,20.5 + parent: 2 + - uid: 1928 components: - type: Transform - pos: 23.5,15.5 - parent: 89 - - uid: 16398 + pos: -49.5,20.5 + parent: 2 + - uid: 1929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,16.5 - parent: 89 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 2228 + pos: -50.5,20.5 + parent: 2 + - uid: 1930 components: - type: Transform - pos: 28.5,30.5 - parent: 89 - - uid: 2249 + pos: -51.5,20.5 + parent: 2 + - uid: 1931 components: - type: Transform - pos: 20.5,30.5 - parent: 89 - - uid: 12531 + pos: -52.5,20.5 + parent: 2 + - uid: 1932 components: - type: Transform - pos: 12.5,13.5 - parent: 89 - - uid: 12532 + pos: -53.5,20.5 + parent: 2 + - uid: 1933 components: - type: Transform - pos: 12.5,11.5 - parent: 89 - - uid: 19794 + pos: -53.5,21.5 + parent: 2 + - uid: 1934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 89 -- proto: AirlockMedicalLocked - entities: - - uid: 440 + pos: -53.5,22.5 + parent: 2 + - uid: 1935 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 1657 + pos: -53.5,23.5 + parent: 2 + - uid: 1936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 - - uid: 1839 + pos: -53.5,24.5 + parent: 2 + - uid: 1937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 89 - - uid: 8149 + pos: -53.5,25.5 + parent: 2 + - uid: 1938 components: - type: Transform - pos: 14.5,16.5 - parent: 89 - - uid: 8195 + pos: -53.5,26.5 + parent: 2 + - uid: 1939 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 10818 + pos: -53.5,27.5 + parent: 2 + - uid: 1940 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 11031 + pos: -53.5,28.5 + parent: 2 + - uid: 1941 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 11038 + pos: -53.5,29.5 + parent: 2 + - uid: 1942 components: - type: Transform - pos: 4.5,11.5 - parent: 89 - - uid: 12639 + pos: -53.5,30.5 + parent: 2 + - uid: 1943 components: - type: Transform - pos: 7.5,15.5 - parent: 89 - - uid: 12640 + pos: -53.5,31.5 + parent: 2 + - uid: 1944 components: - type: Transform - pos: 9.5,15.5 - parent: 89 - - uid: 12827 + pos: -53.5,32.5 + parent: 2 + - uid: 1945 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 14033 + pos: -52.5,32.5 + parent: 2 + - uid: 1946 components: - type: Transform - pos: 15.5,22.5 - parent: 89 - - uid: 15066 + pos: -52.5,33.5 + parent: 2 + - uid: 1947 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 15180 + pos: -31.5,10.5 + parent: 2 + - uid: 1948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - uid: 16026 + pos: -39.5,20.5 + parent: 2 + - uid: 1949 components: - type: Transform - pos: -7.5,18.5 - parent: 89 - - uid: 16496 + pos: -38.5,20.5 + parent: 2 + - uid: 1950 components: - type: Transform - pos: 12.5,22.5 - parent: 89 - - uid: 20250 + pos: -37.5,20.5 + parent: 2 + - uid: 1951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 89 -- proto: AirlockQuartermasterLocked - entities: - - uid: 4479 + pos: -37.5,21.5 + parent: 2 + - uid: 1952 components: - type: Transform - pos: -73.5,-14.5 - parent: 89 - - uid: 4511 + pos: -37.5,22.5 + parent: 2 + - uid: 1953 components: - type: Transform - pos: -70.5,-14.5 - parent: 89 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 1807 + pos: -37.5,23.5 + parent: 2 + - uid: 1954 components: - - type: MetaData - name: научный руководитель - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 10685 + pos: -37.5,24.5 + parent: 2 + - uid: 1955 components: - type: Transform - pos: 5.5,-28.5 - parent: 89 - - uid: 10687 + pos: -37.5,25.5 + parent: 2 + - uid: 1956 components: - - type: MetaData - name: серверная - type: Transform - pos: -3.5,-35.5 - parent: 89 -- proto: AirlockSalvageLocked - entities: - - uid: 5231 + pos: -37.5,26.5 + parent: 2 + - uid: 1957 components: - type: Transform - pos: -53.5,-9.5 - parent: 89 - - uid: 5234 + pos: -37.5,27.5 + parent: 2 + - uid: 1958 components: - type: Transform - pos: -53.5,-10.5 - parent: 89 - - uid: 5837 + pos: -37.5,28.5 + parent: 2 + - uid: 1959 components: - type: Transform - pos: -53.5,-13.5 - parent: 89 - - uid: 10780 + pos: -21.5,19.5 + parent: 2 + - uid: 1960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,34.5 - parent: 89 - - uid: 10781 + pos: -21.5,20.5 + parent: 2 + - uid: 1961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 89 - - uid: 10783 + pos: -21.5,21.5 + parent: 2 + - uid: 1962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 89 - - uid: 10784 + pos: -22.5,21.5 + parent: 2 + - uid: 1963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 89 - - uid: 10788 + pos: -22.5,22.5 + parent: 2 + - uid: 1964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 89 - - uid: 10789 + pos: -22.5,23.5 + parent: 2 + - uid: 1965 components: - type: Transform - pos: -29.5,46.5 - parent: 89 -- proto: AirlockScienceGlassLocked - entities: - - uid: 300 + pos: -22.5,24.5 + parent: 2 + - uid: 1966 components: - - type: MetaData - name: робототехника - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 7380 + pos: -22.5,25.5 + parent: 2 + - uid: 1967 components: - type: Transform - pos: -1.5,-26.5 - parent: 89 -- proto: AirlockScienceLocked - entities: - - uid: 4 + pos: -22.5,26.5 + parent: 2 + - uid: 1968 components: - - type: MetaData - name: РнД - type: Transform - pos: -2.5,-18.5 - parent: 89 - - uid: 8 + pos: -22.5,27.5 + parent: 2 + - uid: 1969 components: - - type: MetaData - name: РнД - type: Transform - pos: -0.5,-18.5 - parent: 89 - - uid: 9 + pos: -22.5,28.5 + parent: 2 + - uid: 1970 components: - - type: MetaData - name: РнД - type: Transform - pos: -2.5,-23.5 - parent: 89 - - uid: 296 + pos: -20.5,20.5 + parent: 2 + - uid: 1971 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 297 + pos: -19.5,20.5 + parent: 2 + - uid: 1972 components: - - type: MetaData - name: ксеноархеология - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 10686 + pos: -18.5,20.5 + parent: 2 + - uid: 1973 components: - - type: MetaData - name: отдел аномалистики - type: Transform - pos: -3.5,-30.5 - parent: 89 - - uid: 10688 + pos: -17.5,20.5 + parent: 2 + - uid: 1974 components: - - type: MetaData - name: лаборатория - type: Transform - pos: -8.5,-19.5 - parent: 89 - - uid: 10689 + pos: -16.5,20.5 + parent: 2 + - uid: 1975 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 10690 + pos: -15.5,20.5 + parent: 2 + - uid: 1976 components: - - type: MetaData - name: РнД - type: Transform - pos: -0.5,-23.5 - parent: 89 - - uid: 10691 + pos: -14.5,20.5 + parent: 2 + - uid: 1977 components: - - type: MetaData - name: комната отдыха РнД - type: Transform - pos: 2.5,-23.5 - parent: 89 -- proto: AirlockSecurity - entities: - - uid: 22607 + pos: -14.5,13.5 + parent: 2 + - uid: 1978 components: - type: Transform - pos: -17.5,-9.5 - parent: 22565 - - uid: 22608 + pos: -14.5,14.5 + parent: 2 + - uid: 1979 components: - type: Transform - pos: -17.5,-13.5 - parent: 22565 -- proto: AirlockSecurityGlass - entities: - - uid: 4592 + pos: -14.5,15.5 + parent: 2 + - uid: 1980 components: - type: Transform - pos: 1.5,-12.5 - parent: 89 - - uid: 4593 + pos: -14.5,16.5 + parent: 2 + - uid: 1981 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 331 + pos: -14.5,17.5 + parent: 2 + - uid: 1982 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 2909 + pos: -19.5,11.5 + parent: 2 + - uid: 1983 components: - type: Transform - pos: 26.5,-7.5 - parent: 89 - - uid: 5076 + pos: -19.5,12.5 + parent: 2 + - uid: 1984 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 9860 + pos: -19.5,13.5 + parent: 2 + - uid: 1985 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 9861 + pos: -19.5,14.5 + parent: 2 + - uid: 1986 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 17276 + pos: 2.5,23.5 + parent: 2 + - uid: 1987 components: - type: Transform - pos: -55.5,46.5 - parent: 89 - - uid: 18196 + pos: -18.5,14.5 + parent: 2 + - uid: 1988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 18153 - - uid: 18197 + pos: -17.5,14.5 + parent: 2 + - uid: 1989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 18153 - - uid: 18198 + pos: -16.5,14.5 + parent: 2 + - uid: 1990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 18153 - - uid: 22609 + pos: -15.5,14.5 + parent: 2 + - uid: 1991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 22565 - - uid: 22610 + pos: -36.5,6.5 + parent: 2 + - uid: 1992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 22565 - - uid: 22611 + pos: -36.5,5.5 + parent: 2 + - uid: 1993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 22565 - - uid: 22612 + pos: -36.5,4.5 + parent: 2 + - uid: 1994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 22565 -- proto: AirlockSecurityLocked - entities: - - uid: 5732 + pos: -36.5,3.5 + parent: 2 + - uid: 1995 components: - type: Transform - pos: 5.5,-3.5 - parent: 89 - - uid: 6160 + pos: -37.5,3.5 + parent: 2 + - uid: 1996 components: - type: Transform - pos: -15.5,10.5 - parent: 89 - - uid: 6794 + pos: -38.5,3.5 + parent: 2 + - uid: 1997 components: - type: Transform - pos: -42.5,-0.5 - parent: 89 - - uid: 7937 + pos: -39.5,3.5 + parent: 2 + - uid: 1998 components: - type: Transform - pos: -59.5,11.5 - parent: 89 - - uid: 8082 + pos: -40.5,3.5 + parent: 2 + - uid: 1999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,13.5 - parent: 89 - - uid: 8224 + pos: -40.5,4.5 + parent: 2 + - uid: 2000 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 10021 + pos: -40.5,5.5 + parent: 2 + - uid: 2001 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 22613 + pos: -40.5,6.5 + parent: 2 + - uid: 2002 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - uid: 22614 + pos: -40.5,7.5 + parent: 2 + - uid: 2003 components: - type: Transform - pos: -15.5,-20.5 - parent: 22565 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 671 + pos: -40.5,8.5 + parent: 2 + - uid: 2004 components: - type: Transform - pos: 49.5,13.5 - parent: 89 -- proto: AirlockServiceLocked - entities: - - uid: 6008 + pos: -39.5,8.5 + parent: 2 + - uid: 2005 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 12617 + pos: -38.5,8.5 + parent: 2 + - uid: 2006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,31.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21591 -- proto: AirlockShuttle - entities: - - uid: 7330 + pos: -37.5,8.5 + parent: 2 + - uid: 2007 components: - type: Transform - pos: -42.5,-22.5 - parent: 89 - - uid: 22615 + pos: -37.5,9.5 + parent: 2 + - uid: 2008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 22565 - - uid: 22616 + pos: -36.5,8.5 + parent: 2 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 22565 - - uid: 22617 + pos: -35.5,4.5 + parent: 2 + - uid: 2010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 22565 - - uid: 22618 + pos: -34.5,4.5 + parent: 2 + - uid: 2011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 22565 - - uid: 22619 + pos: -33.5,4.5 + parent: 2 + - uid: 2012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 22565 - - uid: 22620 + pos: -32.5,4.5 + parent: 2 + - uid: 2013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 22565 - - uid: 22621 + pos: -31.5,4.5 + parent: 2 + - uid: 2014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,21.5 - parent: 22565 - - uid: 22622 + pos: -30.5,4.5 + parent: 2 + - uid: 2015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,21.5 - parent: 22565 - - uid: 22623 + pos: -29.5,4.5 + parent: 2 + - uid: 2016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 22565 - - uid: 22624 + pos: -31.5,5.5 + parent: 2 + - uid: 2017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,21.5 - parent: 22565 - - uid: 22625 + pos: -30.5,13.5 + parent: 2 + - uid: 2018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 22565 - - uid: 22626 + pos: -31.5,13.5 + parent: 2 + - uid: 2019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,17.5 - parent: 22565 - - uid: 22627 + pos: -32.5,13.5 + parent: 2 + - uid: 2020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,17.5 - parent: 22565 - - uid: 22628 + pos: -33.5,13.5 + parent: 2 + - uid: 2021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 22565 - - uid: 22629 + pos: -33.5,14.5 + parent: 2 + - uid: 2022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,23.5 - parent: 22565 - - uid: 22630 + pos: -33.5,15.5 + parent: 2 + - uid: 2023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 22565 - - uid: 25422 + pos: -33.5,16.5 + parent: 2 + - uid: 2024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 18153 - - type: Docking - dockJointId: docking314616 - dockedWith: 25357 - - uid: 25423 + pos: -33.5,17.5 + parent: 2 + - uid: 2025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 18153 - - type: Docking - dockJointId: docking314611 - dockedWith: 21748 -- proto: AirlockTheatreLocked - entities: - - uid: 4587 + pos: -33.5,18.5 + parent: 2 + - uid: 2026 components: - type: Transform - pos: -32.5,-8.5 - parent: 89 - - uid: 4589 + pos: -14.5,22.5 + parent: 2 + - uid: 2027 components: - type: Transform - pos: -32.5,-4.5 - parent: 89 -- proto: AirlockVirologyGlassLocked - entities: - - uid: 11916 + pos: -34.5,-16.5 + parent: 2 + - uid: 2028 components: - type: Transform - pos: 9.5,39.5 - parent: 89 - - uid: 11917 + pos: -37.5,-16.5 + parent: 2 + - uid: 2029 components: - type: Transform - pos: 10.5,39.5 - parent: 89 - - uid: 15759 + pos: -101.5,-1.5 + parent: 2 + - uid: 2030 components: - type: Transform - pos: 8.5,31.5 - parent: 89 - - uid: 16174 + pos: -105.5,-2.5 + parent: 2 + - uid: 2031 components: - type: Transform - pos: 13.5,35.5 - parent: 89 - - uid: 16189 + pos: -105.5,-3.5 + parent: 2 + - uid: 2032 components: - type: Transform - pos: 6.5,35.5 - parent: 89 -- proto: AirlockVirologyLocked - entities: - - uid: 8146 + pos: -105.5,-4.5 + parent: 2 + - uid: 2033 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 8599 + pos: -104.5,-2.5 + parent: 2 + - uid: 2034 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 15402 + pos: -103.5,-2.5 + parent: 2 + - uid: 2035 components: - type: Transform - pos: 12.5,29.5 - parent: 89 - - uid: 15572 + pos: -102.5,-2.5 + parent: 2 + - uid: 2036 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 15608 + pos: -101.5,-2.5 + parent: 2 + - uid: 2037 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 16136 + pos: -100.5,-2.5 + parent: 2 + - uid: 2038 components: - type: Transform - pos: 14.5,31.5 - parent: 89 - - uid: 16170 + pos: -99.5,-2.5 + parent: 2 + - uid: 2039 components: - type: Transform - pos: 14.5,24.5 - parent: 89 -- proto: AirSensor - entities: - - uid: 2013 + pos: -106.5,-2.5 + parent: 2 + - uid: 2040 components: - type: Transform - pos: -99.5,-15.5 - parent: 89 - - uid: 2140 + pos: -101.5,-0.5 + parent: 2 + - uid: 2041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-25.5 - parent: 89 - - uid: 2907 + pos: -102.5,-3.5 + parent: 2 + - uid: 2042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-10.5 - parent: 89 - - uid: 3085 + pos: -102.5,-4.5 + parent: 2 + - uid: 2043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-19.5 - parent: 89 - - uid: 3097 + pos: -99.5,-3.5 + parent: 2 + - uid: 2044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-8.5 - parent: 89 - - uid: 6624 + pos: -99.5,-4.5 + parent: 2 + - uid: 2045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-0.5 - parent: 89 - - uid: 6701 + pos: -99.5,-5.5 + parent: 2 + - uid: 2046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-11.5 - parent: 89 - - uid: 6750 + pos: -99.5,-6.5 + parent: 2 + - uid: 2047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 89 - - uid: 6772 + pos: -99.5,-7.5 + parent: 2 + - uid: 2048 components: - type: Transform - pos: -48.5,-3.5 - parent: 89 - - uid: 7383 + pos: -99.5,-8.5 + parent: 2 + - uid: 2049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-10.5 - parent: 89 - - uid: 7395 + pos: -99.5,-9.5 + parent: 2 + - uid: 2050 components: - type: Transform - pos: -93.5,6.5 - parent: 89 - - uid: 7412 + pos: -100.5,-9.5 + parent: 2 + - uid: 2051 components: - type: Transform - pos: -99.5,-3.5 - parent: 89 - - uid: 7430 + pos: -101.5,-9.5 + parent: 2 + - uid: 2052 components: - type: Transform - pos: -99.5,5.5 - parent: 89 - - uid: 7459 + pos: -102.5,-9.5 + parent: 2 + - uid: 2053 components: - type: Transform - pos: -94.5,14.5 - parent: 89 - - uid: 9443 + pos: -103.5,-9.5 + parent: 2 + - uid: 2054 components: - type: Transform - pos: 22.5,1.5 - parent: 89 - - uid: 9456 + pos: -104.5,-9.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 9457 + pos: -104.5,-8.5 + parent: 2 + - uid: 2056 components: - type: Transform - pos: -13.5,1.5 - parent: 89 - - uid: 9469 + pos: -105.5,-12.5 + parent: 2 + - uid: 2057 components: - type: Transform - pos: -24.5,5.5 - parent: 89 - - uid: 9472 + pos: -105.5,-13.5 + parent: 2 + - uid: 2058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,3.5 - parent: 89 - - uid: 9490 + pos: -105.5,-14.5 + parent: 2 + - uid: 2059 components: - type: Transform - pos: -41.5,-2.5 - parent: 89 - - uid: 9502 + pos: -105.5,-15.5 + parent: 2 + - uid: 2060 components: - type: Transform - pos: -55.5,3.5 - parent: 89 - - uid: 9514 + pos: -105.5,-16.5 + parent: 2 + - uid: 2061 components: - type: Transform - pos: -64.5,9.5 - parent: 89 - - uid: 9515 + pos: -105.5,-17.5 + parent: 2 + - uid: 2062 components: - type: Transform - pos: -71.5,13.5 - parent: 89 - - uid: 9516 + pos: -105.5,-18.5 + parent: 2 + - uid: 2063 components: - type: Transform - pos: -56.5,13.5 - parent: 89 - - uid: 9517 + pos: -105.5,-19.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: -57.5,16.5 - parent: 89 - - uid: 9520 + pos: -104.5,-12.5 + parent: 2 + - uid: 2065 components: - type: Transform - pos: -48.5,14.5 - parent: 89 - - uid: 9521 + pos: -103.5,-12.5 + parent: 2 + - uid: 2066 components: - type: Transform - pos: -31.5,12.5 - parent: 89 - - uid: 9522 + pos: -102.5,-12.5 + parent: 2 + - uid: 2067 components: - type: Transform - pos: -40.5,16.5 - parent: 89 - - uid: 9569 + pos: -101.5,-12.5 + parent: 2 + - uid: 2068 components: - type: Transform - pos: -85.5,8.5 - parent: 89 - - uid: 9579 + pos: -100.5,-12.5 + parent: 2 + - uid: 2069 components: - type: Transform - pos: -21.5,-11.5 - parent: 89 - - uid: 9584 + pos: -99.5,-12.5 + parent: 2 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 89 - - uid: 9585 + pos: -98.5,-12.5 + parent: 2 + - uid: 2071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 89 - - uid: 9595 + pos: -98.5,-13.5 + parent: 2 + - uid: 2072 components: - type: Transform - pos: -20.5,-4.5 - parent: 89 - - uid: 10051 + pos: -97.5,-13.5 + parent: 2 + - uid: 2073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,4.5 - parent: 89 - - uid: 10174 + pos: -96.5,-13.5 + parent: 2 + - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,22.5 - parent: 89 - - uid: 10817 + pos: -96.5,-12.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 12239 + pos: -96.5,-11.5 + parent: 2 + - uid: 2076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 89 - - uid: 12847 + pos: -96.5,-10.5 + parent: 2 + - uid: 2077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 89 - - uid: 13204 + pos: -96.5,-9.5 + parent: 2 + - uid: 2078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,6.5 - parent: 89 - - uid: 15195 + pos: -96.5,-8.5 + parent: 2 + - uid: 2079 components: - type: Transform - pos: 31.5,30.5 - parent: 89 - - uid: 15431 + pos: -95.5,-8.5 + parent: 2 + - uid: 2080 components: - type: Transform - pos: 17.5,30.5 - parent: 89 - - uid: 15656 + pos: -95.5,-7.5 + parent: 2 + - uid: 2081 components: - type: Transform - pos: -100.5,27.5 - parent: 89 - - uid: 16549 + pos: -92.5,-8.5 + parent: 2 + - uid: 2082 components: - type: Transform - pos: 0.5,18.5 - parent: 89 - - uid: 16796 + pos: -91.5,-8.5 + parent: 2 + - uid: 2083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,43.5 - parent: 89 - - uid: 17017 + pos: -91.5,-10.5 + parent: 2 + - uid: 2084 components: - type: Transform - pos: -29.5,36.5 - parent: 89 - - uid: 17039 + pos: -91.5,-9.5 + parent: 2 + - uid: 2085 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 17088 + pos: -103.5,-13.5 + parent: 2 + - uid: 2086 components: - type: Transform - pos: -28.5,47.5 - parent: 89 - - uid: 19409 + pos: -101.5,-13.5 + parent: 2 + - uid: 2087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,11.5 - parent: 89 - - uid: 20016 + pos: -92.5,-13.5 + parent: 2 + - uid: 2088 components: - type: Transform - pos: 9.5,33.5 - parent: 89 - - uid: 20017 + pos: -91.5,-13.5 + parent: 2 + - uid: 2089 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 20103 + pos: -90.5,-13.5 + parent: 2 + - uid: 2090 components: - type: Transform - pos: -130.5,3.5 - parent: 89 - - uid: 20107 + pos: -89.5,-13.5 + parent: 2 + - uid: 2091 components: - type: Transform - pos: -120.5,3.5 - parent: 89 - - uid: 20110 + pos: -88.5,-13.5 + parent: 2 + - uid: 2092 components: - type: Transform - pos: -1.5,8.5 - parent: 89 - - uid: 20114 + pos: -87.5,-13.5 + parent: 2 + - uid: 2093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,34.5 - parent: 89 - - uid: 20118 + pos: -86.5,-13.5 + parent: 2 + - uid: 2094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 89 - - uid: 20121 + pos: -85.5,-13.5 + parent: 2 + - uid: 2095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,12.5 - parent: 89 - - uid: 20135 + pos: -84.5,-13.5 + parent: 2 + - uid: 2096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 89 - - uid: 20139 + pos: -83.5,-13.5 + parent: 2 + - uid: 2097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,22.5 - parent: 89 - - uid: 20140 + pos: -82.5,-13.5 + parent: 2 + - uid: 2098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 89 - - uid: 20144 + pos: -81.5,-13.5 + parent: 2 + - uid: 2099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,40.5 - parent: 89 - - uid: 20146 + pos: -80.5,-13.5 + parent: 2 + - uid: 2100 components: - type: Transform - pos: -6.5,-43.5 - parent: 89 - - uid: 20147 + pos: -79.5,-13.5 + parent: 2 + - uid: 2101 components: - type: Transform - pos: 1.5,-43.5 - parent: 89 - - uid: 20148 + pos: -78.5,-13.5 + parent: 2 + - uid: 2102 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 20149 + pos: -78.5,-14.5 + parent: 2 + - uid: 2103 components: - type: Transform - pos: -0.5,-34.5 - parent: 89 - - uid: 20150 + pos: -78.5,-15.5 + parent: 2 + - uid: 2104 components: - type: Transform - pos: -1.5,-29.5 - parent: 89 - - uid: 20151 + pos: -78.5,-16.5 + parent: 2 + - uid: 2105 components: - type: Transform - pos: -11.5,-17.5 - parent: 89 - - uid: 20152 + pos: -78.5,-17.5 + parent: 2 + - uid: 2106 components: - type: Transform - pos: -18.5,-21.5 - parent: 89 - - uid: 20153 + pos: -78.5,-18.5 + parent: 2 + - uid: 2107 components: - type: Transform - pos: 4.5,-28.5 - parent: 89 - - uid: 20154 + pos: -78.5,-19.5 + parent: 2 + - uid: 2108 components: - type: Transform - pos: 2.5,-20.5 - parent: 89 - - uid: 20156 + pos: -79.5,-19.5 + parent: 2 + - uid: 2109 components: - type: Transform - pos: -9.5,-30.5 - parent: 89 - - uid: 20158 + pos: -80.5,-19.5 + parent: 2 + - uid: 2110 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 20823 + pos: -81.5,-19.5 + parent: 2 + - uid: 2111 components: - type: Transform - pos: -11.5,18.5 - parent: 89 - - uid: 21631 + pos: -83.5,-10.5 + parent: 2 + - uid: 2112 components: - type: Transform - pos: 1.5,-2.5 - parent: 21627 - - uid: 22314 + pos: -83.5,-11.5 + parent: 2 + - uid: 2113 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - uid: 22473 + pos: -83.5,-12.5 + parent: 2 + - uid: 2114 components: - type: Transform - pos: 44.5,-24.5 - parent: 89 - - uid: 22631 + pos: -78.5,-21.5 + parent: 2 + - uid: 2115 components: - type: Transform - pos: 5.5,4.5 - parent: 22565 - - uid: 22632 + pos: -77.5,-21.5 + parent: 2 + - uid: 2116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 22565 - - uid: 22633 + pos: -77.5,-19.5 + parent: 2 + - uid: 2117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,4.5 - parent: 22565 - - uid: 22634 + pos: -76.5,-19.5 + parent: 2 + - uid: 2118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 22565 - - uid: 22635 + pos: -76.5,-21.5 + parent: 2 + - uid: 2119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 22565 - - uid: 22636 + pos: -76.5,-20.5 + parent: 2 + - uid: 2120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 22565 - - uid: 22637 + pos: -79.5,-21.5 + parent: 2 + - uid: 2121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 22565 - - uid: 22638 + pos: -80.5,-21.5 + parent: 2 + - uid: 2122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 22565 - - uid: 22639 + pos: -81.5,-21.5 + parent: 2 + - uid: 2123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 22565 - - uid: 22640 + pos: -82.5,-21.5 + parent: 2 + - uid: 2124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 22565 - - uid: 25416 + pos: -83.5,-21.5 + parent: 2 + - uid: 2125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 89 - - uid: 25417 + pos: -83.5,-22.5 + parent: 2 + - uid: 2126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 89 - - uid: 25424 + pos: -83.5,-23.5 + parent: 2 + - uid: 2127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 18153 - - uid: 25425 + pos: -83.5,-24.5 + parent: 2 + - uid: 2128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 18153 - - uid: 25426 + pos: -82.5,-24.5 + parent: 2 + - uid: 2129 components: - type: Transform - pos: 3.5,-2.5 - parent: 18153 -- proto: AltarSpawner - entities: - - uid: 5195 + pos: -81.5,-24.5 + parent: 2 + - uid: 2130 components: - type: Transform - pos: -50.5,-3.5 - parent: 89 -- proto: AlwaysPoweredWallLight - entities: - - uid: 18229 + pos: -80.5,-24.5 + parent: 2 + - uid: 2131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-25.5 - parent: 89 - - uid: 18238 + pos: -104.5,-19.5 + parent: 2 + - uid: 2132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-25.5 - parent: 89 - - uid: 18246 + pos: -95.5,3.5 + parent: 2 + - uid: 2133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-25.5 - parent: 89 - - uid: 18247 + pos: -94.5,3.5 + parent: 2 + - uid: 2134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-25.5 - parent: 89 - - uid: 18248 + pos: -93.5,3.5 + parent: 2 + - uid: 2135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-25.5 - parent: 89 - - uid: 18251 + pos: -96.5,3.5 + parent: 2 + - uid: 2136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-25.5 - parent: 89 - - uid: 18252 + pos: -93.5,4.5 + parent: 2 + - uid: 2137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-25.5 - parent: 89 - - uid: 18253 + pos: -93.5,5.5 + parent: 2 + - uid: 2138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-25.5 - parent: 89 - - uid: 18269 + pos: -93.5,6.5 + parent: 2 + - uid: 2139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-25.5 - parent: 89 -- proto: AnomalyScanner - entities: - - uid: 12037 + pos: -93.5,7.5 + parent: 2 + - uid: 2140 components: - type: Transform - pos: -4.4272065,-27.335176 - parent: 89 - - uid: 12048 + pos: -93.5,8.5 + parent: 2 + - uid: 2141 components: - type: Transform - pos: -4.4272065,-28.007051 - parent: 89 - - uid: 12193 + pos: -93.5,9.5 + parent: 2 + - uid: 2142 components: - type: Transform - pos: -4.3334565,-27.663301 - parent: 89 - - uid: 15657 + pos: -93.5,10.5 + parent: 2 + - uid: 2143 components: - type: Transform - pos: -4.3334565,-28.335176 - parent: 89 -- proto: AntiPoisonMedipen - entities: - - uid: 22642 + pos: -93.5,11.5 + parent: 2 + - uid: 2144 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: APCBasic - entities: - - uid: 201 + pos: -93.5,12.5 + parent: 2 + - uid: 2145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,26.5 - parent: 89 - - uid: 599 + pos: -93.5,13.5 + parent: 2 + - uid: 2146 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 1224 + pos: -93.5,14.5 + parent: 2 + - uid: 2147 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 1458 + pos: -93.5,15.5 + parent: 2 + - uid: 2148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-19.5 - parent: 89 - - uid: 1464 + pos: -93.5,16.5 + parent: 2 + - uid: 2149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-29.5 - parent: 89 - - uid: 1552 + pos: -92.5,16.5 + parent: 2 + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 89 - - uid: 1736 + pos: -91.5,16.5 + parent: 2 + - uid: 2151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 89 - - uid: 2092 + pos: -92.5,14.5 + parent: 2 + - uid: 2152 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 2254 + pos: -91.5,14.5 + parent: 2 + - uid: 2153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 89 - - uid: 2430 + pos: -94.5,16.5 + parent: 2 + - uid: 2154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 89 - - uid: 5439 + pos: -95.5,16.5 + parent: 2 + - uid: 2155 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 5440 + pos: -92.5,12.5 + parent: 2 + - uid: 2156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-8.5 - parent: 89 - - uid: 5443 + pos: -91.5,12.5 + parent: 2 + - uid: 2157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 89 - - uid: 8217 + pos: -93.5,2.5 + parent: 2 + - uid: 2158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,38.5 - parent: 89 - - uid: 10526 + pos: -93.5,1.5 + parent: 2 + - uid: 2159 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 11048 + pos: -93.5,0.5 + parent: 2 + - uid: 2160 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 11105 + pos: -93.5,-0.5 + parent: 2 + - uid: 2161 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11204 + pos: -93.5,-1.5 + parent: 2 + - uid: 2162 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11225 + pos: -92.5,-1.5 + parent: 2 + - uid: 2163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,23.5 - parent: 89 - - uid: 11275 + pos: -91.5,-1.5 + parent: 2 + - uid: 2164 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 11329 + pos: -90.5,-1.5 + parent: 2 + - uid: 2165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,31.5 - parent: 89 - - uid: 12001 + pos: -89.5,-1.5 + parent: 2 + - uid: 2166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-2.5 - parent: 89 - - uid: 12002 + pos: -88.5,-1.5 + parent: 2 + - uid: 2167 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12131 + pos: -87.5,-1.5 + parent: 2 + - uid: 2168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,3.5 - parent: 89 - - uid: 12195 + pos: -88.5,-0.5 + parent: 2 + - uid: 2169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,9.5 - parent: 89 - - uid: 12218 + pos: -94.5,7.5 + parent: 2 + - uid: 2170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,1.5 - parent: 89 - - uid: 12331 + pos: -103.5,10.5 + parent: 2 + - uid: 2171 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12395 + pos: -100.5,9.5 + parent: 2 + - uid: 2172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,25.5 - parent: 89 - - uid: 12430 + pos: -101.5,9.5 + parent: 2 + - uid: 2173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,14.5 - parent: 89 - - uid: 12990 + pos: -102.5,9.5 + parent: 2 + - uid: 2174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,15.5 - parent: 89 - - uid: 13139 + pos: -102.5,8.5 + parent: 2 + - uid: 2175 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13182 + pos: -102.5,7.5 + parent: 2 + - uid: 2176 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13207 + pos: -102.5,10.5 + parent: 2 + - uid: 2177 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 13307 + pos: -104.5,10.5 + parent: 2 + - uid: 2178 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13376 + pos: -104.5,11.5 + parent: 2 + - uid: 2179 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13447 + pos: -103.5,7.5 + parent: 2 + - uid: 2180 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13450 + pos: -105.5,7.5 + parent: 2 + - uid: 2181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 89 - - uid: 13755 + pos: -104.5,7.5 + parent: 2 + - uid: 2182 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13848 + pos: -111.5,1.5 + parent: 2 + - uid: 2183 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 14079 + pos: -110.5,1.5 + parent: 2 + - uid: 2184 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14121 + pos: -109.5,1.5 + parent: 2 + - uid: 2185 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14385 + pos: -108.5,1.5 + parent: 2 + - uid: 2186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,8.5 - parent: 89 - - uid: 14431 + pos: -108.5,0.5 + parent: 2 + - uid: 2187 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14909 + pos: -108.5,-0.5 + parent: 2 + - uid: 2188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-37.5 - parent: 89 - - uid: 15336 + pos: -108.5,-1.5 + parent: 2 + - uid: 2189 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 15463 + pos: -109.5,-1.5 + parent: 2 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 89 - - uid: 15641 + pos: -110.5,-1.5 + parent: 2 + - uid: 2191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-15.5 - parent: 89 - - uid: 16212 + pos: -111.5,-1.5 + parent: 2 + - uid: 2192 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16246 + pos: -112.5,-1.5 + parent: 2 + - uid: 2193 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16720 + pos: -111.5,-2.5 + parent: 2 + - uid: 2194 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 17624 + pos: -108.5,-2.5 + parent: 2 + - uid: 2195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 89 - - uid: 18362 + pos: -108.5,-3.5 + parent: 2 + - uid: 2196 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 20829 + pos: -108.5,-4.5 + parent: 2 + - uid: 2197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 89 - - uid: 21597 + pos: -107.5,-3.5 + parent: 2 + - uid: 2198 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 21606 + pos: -108.5,-5.5 + parent: 2 + - uid: 2199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 89 - - uid: 21632 + pos: -108.5,-6.5 + parent: 2 + - uid: 2200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 21627 - - uid: 22666 + pos: -108.5,-7.5 + parent: 2 + - uid: 2201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 22565 - - uid: 22667 + pos: -108.5,-8.5 + parent: 2 + - uid: 2202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 22565 - - uid: 22668 + pos: -108.5,-9.5 + parent: 2 + - uid: 2203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 22565 - - uid: 24762 + pos: -108.5,-10.5 + parent: 2 + - uid: 2204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 89 -- proto: APCElectronics - entities: - - uid: 6987 + pos: -108.5,-11.5 + parent: 2 + - uid: 2205 components: - type: Transform - pos: -98.65839,-10.332106 - parent: 89 - - uid: 7042 + pos: -108.5,-12.5 + parent: 2 + - uid: 2206 components: - type: Transform - pos: -98.34589,-10.613356 - parent: 89 -- proto: APCHighCapacity - entities: - - uid: 596 + pos: -108.5,-13.5 + parent: 2 + - uid: 2207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,5.5 - parent: 89 - - uid: 801 + pos: -108.5,-14.5 + parent: 2 + - uid: 2208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,12.5 - parent: 89 - - uid: 2477 + pos: -108.5,-15.5 + parent: 2 + - uid: 2209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,4.5 - parent: 89 -- proto: APCSuperCapacity - entities: - - uid: 6951 + pos: -108.5,-16.5 + parent: 2 + - uid: 2210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-23.5 - parent: 89 - - uid: 21920 + pos: -108.5,-17.5 + parent: 2 + - uid: 2211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 89 - - uid: 25427 + pos: -107.5,-17.5 + parent: 2 + - uid: 2212 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 -- proto: ArrivalsShuttleTimer - entities: - - uid: 14123 + pos: -108.5,2.5 + parent: 2 + - uid: 2213 components: - type: Transform - pos: -68.5,38.5 - parent: 89 - - uid: 14527 + pos: -108.5,3.5 + parent: 2 + - uid: 2214 components: - type: Transform - pos: -82.5,29.5 - parent: 89 - - uid: 25800 + pos: -108.5,4.5 + parent: 2 + - uid: 2215 components: - type: Transform - pos: -68.5,29.5 - parent: 89 - - uid: 25805 + pos: -108.5,5.5 + parent: 2 + - uid: 2216 components: - type: Transform - pos: -82.5,38.5 - parent: 89 -- proto: ArrowRegular - entities: - - uid: 25645 + pos: -108.5,6.5 + parent: 2 + - uid: 2217 components: - type: Transform - pos: -30.792511,-0.52710724 - parent: 22565 - - uid: 25649 + pos: -108.5,7.5 + parent: 2 + - uid: 2218 components: - type: Transform - pos: -30.417511,-0.55835724 - parent: 22565 - - uid: 25650 + pos: -108.5,8.5 + parent: 2 + - uid: 2219 components: - type: Transform - pos: -30.605011,-0.58960724 - parent: 22565 -- proto: Ash - entities: - - uid: 1175 + pos: -108.5,9.5 + parent: 2 + - uid: 2220 components: - type: Transform - pos: 44.32567,17.431087 - parent: 89 - - uid: 6025 + pos: -108.5,10.5 + parent: 2 + - uid: 2221 components: - type: Transform - pos: 44.457054,17.606356 - parent: 89 - - uid: 6979 + pos: -108.5,11.5 + parent: 2 + - uid: 2222 components: - type: Transform - pos: 44.457054,17.693989 - parent: 89 - - uid: 8477 + pos: -108.5,12.5 + parent: 2 + - uid: 2223 components: - type: Transform - pos: 44.610336,17.803532 - parent: 89 - - uid: 10530 + pos: -108.5,13.5 + parent: 2 + - uid: 2224 components: - type: Transform - pos: 44.719826,17.584446 - parent: 89 - - uid: 15032 + pos: -108.5,14.5 + parent: 2 + - uid: 2225 components: - type: Transform - pos: 44.69793,17.803532 - parent: 89 - - uid: 15326 + pos: -107.5,14.5 + parent: 2 + - uid: 2226 components: - type: Transform - pos: 44.238075,17.781624 - parent: 89 -- proto: Ashtray - entities: - - uid: 14521 + pos: -106.5,14.5 + parent: 2 + - uid: 2227 components: - type: Transform - pos: -76.28542,-2.3884234 - parent: 89 -- proto: AsteroidRock - entities: - - uid: 186 + pos: -105.5,14.5 + parent: 2 + - uid: 2228 components: - type: Transform - pos: 41.5,30.5 - parent: 89 - - uid: 187 + pos: -109.5,9.5 + parent: 2 + - uid: 2229 components: - type: Transform - pos: 37.5,32.5 - parent: 89 - - uid: 202 + pos: -110.5,9.5 + parent: 2 + - uid: 2230 components: - type: Transform - pos: 38.5,32.5 - parent: 89 - - uid: 458 + pos: -111.5,9.5 + parent: 2 + - uid: 2231 components: - type: Transform - pos: 38.5,33.5 - parent: 89 - - uid: 546 + pos: -112.5,9.5 + parent: 2 + - uid: 2232 components: - type: Transform - pos: 38.5,34.5 - parent: 89 - - uid: 550 + pos: -113.5,9.5 + parent: 2 + - uid: 2233 components: - type: Transform - pos: 40.5,29.5 - parent: 89 - - uid: 554 + pos: -114.5,9.5 + parent: 2 + - uid: 2234 components: - type: Transform - pos: 41.5,29.5 - parent: 89 - - uid: 561 + pos: -115.5,9.5 + parent: 2 + - uid: 2235 components: - type: Transform - pos: 41.5,42.5 - parent: 89 - - uid: 567 + pos: -116.5,9.5 + parent: 2 + - uid: 2236 components: - type: Transform - pos: 28.5,42.5 - parent: 89 - - uid: 1120 + pos: -117.5,9.5 + parent: 2 + - uid: 2237 components: - type: Transform - pos: 32.5,42.5 - parent: 89 - - uid: 1126 + pos: -113.5,-1.5 + parent: 2 + - uid: 2238 components: - type: Transform - pos: 32.5,39.5 - parent: 89 - - uid: 1634 + pos: -114.5,-1.5 + parent: 2 + - uid: 2239 components: - type: Transform - pos: 31.5,41.5 - parent: 89 - - uid: 1844 + pos: -115.5,-1.5 + parent: 2 + - uid: 2240 components: - type: Transform - pos: 30.5,40.5 - parent: 89 - - uid: 2076 + pos: -116.5,-1.5 + parent: 2 + - uid: 2241 components: - type: Transform - pos: 31.5,38.5 - parent: 89 - - uid: 2718 + pos: -117.5,-1.5 + parent: 2 + - uid: 2242 components: - type: Transform - pos: 32.5,38.5 - parent: 89 - - uid: 2759 + pos: -111.5,-3.5 + parent: 2 + - uid: 2243 components: - type: Transform - pos: 30.5,38.5 - parent: 89 - - uid: 2760 + pos: -111.5,-4.5 + parent: 2 + - uid: 2244 components: - type: Transform - pos: 32.5,40.5 - parent: 89 - - uid: 2761 + pos: -111.5,-5.5 + parent: 2 + - uid: 2245 components: - type: Transform - pos: 30.5,39.5 - parent: 89 - - uid: 2762 + pos: -111.5,-6.5 + parent: 2 + - uid: 2246 components: - type: Transform - pos: 42.5,42.5 - parent: 89 - - uid: 2823 + pos: -111.5,-7.5 + parent: 2 + - uid: 2247 components: - type: Transform - pos: 27.5,43.5 - parent: 89 - - uid: 2824 + pos: -111.5,-8.5 + parent: 2 + - uid: 2248 components: - type: Transform - pos: 28.5,43.5 - parent: 89 - - uid: 22669 + pos: -111.5,-9.5 + parent: 2 + - uid: 2249 components: - type: Transform - pos: -4.5,-14.5 - parent: 22565 - - uid: 22670 + pos: -111.5,-10.5 + parent: 2 + - uid: 2250 components: - type: Transform - pos: -18.5,-16.5 - parent: 22565 - - uid: 22671 + pos: -107.5,4.5 + parent: 2 + - uid: 2251 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22672 + pos: -112.5,-10.5 + parent: 2 + - uid: 2252 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22673 + pos: -113.5,-10.5 + parent: 2 + - uid: 2253 components: - type: Transform - pos: -19.5,-15.5 - parent: 22565 - - uid: 22674 + pos: -111.5,10.5 + parent: 2 + - uid: 2254 components: - type: Transform - pos: -6.5,-14.5 - parent: 22565 - - uid: 22675 + pos: -111.5,11.5 + parent: 2 + - uid: 2255 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 - - uid: 22676 + pos: -111.5,12.5 + parent: 2 + - uid: 2256 components: - type: Transform - pos: -18.5,-3.5 - parent: 22565 - - uid: 22677 + pos: -111.5,13.5 + parent: 2 + - uid: 2257 components: - type: Transform - pos: -32.5,-0.5 - parent: 22565 - - uid: 22678 + pos: -111.5,14.5 + parent: 2 + - uid: 2258 components: - type: Transform - pos: 1.5,-11.5 - parent: 22565 - - uid: 22679 + pos: -111.5,15.5 + parent: 2 + - uid: 2259 components: - type: Transform - pos: 1.5,-10.5 - parent: 22565 - - uid: 22680 + pos: -111.5,16.5 + parent: 2 + - uid: 2260 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22681 + pos: -111.5,17.5 + parent: 2 + - uid: 2261 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22682 + pos: -112.5,17.5 + parent: 2 + - uid: 2262 components: - type: Transform - pos: 0.5,-10.5 - parent: 22565 - - uid: 22683 + pos: -113.5,17.5 + parent: 2 + - uid: 2263 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22684 + pos: -114.5,17.5 + parent: 2 + - uid: 2264 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22685 + pos: -115.5,17.5 + parent: 2 + - uid: 2265 components: - type: Transform - pos: -0.5,-10.5 - parent: 22565 - - uid: 22686 + pos: -116.5,17.5 + parent: 2 + - uid: 2266 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 22687 + pos: -117.5,17.5 + parent: 2 + - uid: 2267 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 22688 + pos: -106.5,4.5 + parent: 2 + - uid: 2268 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22689 + pos: -105.5,4.5 + parent: 2 + - uid: 2269 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22690 + pos: -104.5,4.5 + parent: 2 + - uid: 2270 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22691 + pos: -103.5,4.5 + parent: 2 + - uid: 2271 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22692 + pos: -102.5,4.5 + parent: 2 + - uid: 2272 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 22693 + pos: -102.5,5.5 + parent: 2 + - uid: 2273 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22694 + pos: -101.5,4.5 + parent: 2 + - uid: 2274 components: - type: Transform - pos: 5.5,-9.5 - parent: 22565 - - uid: 22695 + pos: -100.5,4.5 + parent: 2 + - uid: 2275 components: - type: Transform - pos: 3.5,-10.5 - parent: 22565 - - uid: 22696 + pos: -99.5,4.5 + parent: 2 + - uid: 2276 components: - type: Transform - pos: 3.5,-10.5 - parent: 22565 - - uid: 22697 + pos: -98.5,4.5 + parent: 2 + - uid: 2277 components: - type: Transform - pos: 4.5,-10.5 - parent: 22565 - - uid: 22698 + pos: -98.5,5.5 + parent: 2 + - uid: 2278 components: - type: Transform - pos: 6.5,-8.5 - parent: 22565 - - uid: 22699 + pos: -98.5,6.5 + parent: 2 + - uid: 2279 components: - type: Transform - pos: 5.5,-9.5 - parent: 22565 - - uid: 22700 + pos: -98.5,7.5 + parent: 2 + - uid: 2280 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22701 + pos: -98.5,8.5 + parent: 2 + - uid: 2281 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 22702 + pos: -97.5,8.5 + parent: 2 + - uid: 2282 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22703 + pos: -97.5,7.5 + parent: 2 + - uid: 2283 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22704 + pos: -104.5,14.5 + parent: 2 + - uid: 2284 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22705 + pos: -108.5,15.5 + parent: 2 + - uid: 2285 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22706 + pos: -107.5,22.5 + parent: 2 + - uid: 2286 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22707 + pos: -107.5,21.5 + parent: 2 + - uid: 2287 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22708 + pos: -108.5,21.5 + parent: 2 + - uid: 2288 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22709 + pos: -108.5,20.5 + parent: 2 + - uid: 2289 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22710 + pos: -108.5,19.5 + parent: 2 + - uid: 2290 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22711 + pos: -108.5,18.5 + parent: 2 + - uid: 2291 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 22712 + pos: -108.5,17.5 + parent: 2 + - uid: 2292 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 22713 + pos: -109.5,17.5 + parent: 2 + - uid: 2293 components: - type: Transform - pos: -0.5,-7.5 - parent: 22565 - - uid: 22714 + pos: -107.5,17.5 + parent: 2 + - uid: 2294 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 22715 + pos: -108.5,22.5 + parent: 2 + - uid: 2295 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22716 + pos: -108.5,23.5 + parent: 2 + - uid: 2296 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22717 + pos: -109.5,23.5 + parent: 2 + - uid: 2297 components: - type: Transform - pos: 0.5,-7.5 - parent: 22565 - - uid: 22718 + pos: -110.5,23.5 + parent: 2 + - uid: 2298 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 22719 + pos: -111.5,23.5 + parent: 2 + - uid: 2299 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22720 + pos: -112.5,23.5 + parent: 2 + - uid: 2300 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22721 + pos: -107.5,23.5 + parent: 2 + - uid: 2301 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 22722 + pos: -106.5,23.5 + parent: 2 + - uid: 2302 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 22723 + pos: -105.5,23.5 + parent: 2 + - uid: 2303 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22724 + pos: -104.5,23.5 + parent: 2 + - uid: 2304 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22725 + pos: -103.5,23.5 + parent: 2 + - uid: 2305 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 22726 + pos: -102.5,23.5 + parent: 2 + - uid: 2306 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22727 + pos: -108.5,24.5 + parent: 2 + - uid: 2307 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22728 + pos: -108.5,25.5 + parent: 2 + - uid: 2308 components: - type: Transform - pos: 3.5,-7.5 - parent: 22565 - - uid: 22729 + pos: -107.5,25.5 + parent: 2 + - uid: 2309 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22730 + pos: -106.5,25.5 + parent: 2 + - uid: 2310 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22731 + pos: -105.5,25.5 + parent: 2 + - uid: 2311 components: - type: Transform - pos: 5.5,-7.5 - parent: 22565 - - uid: 22732 + pos: -104.5,25.5 + parent: 2 + - uid: 2312 components: - type: Transform - pos: 5.5,-6.5 - parent: 22565 - - uid: 22733 + pos: -103.5,25.5 + parent: 2 + - uid: 2313 components: - type: Transform - pos: 5.5,-5.5 - parent: 22565 - - uid: 22734 + pos: -109.5,25.5 + parent: 2 + - uid: 2314 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22735 + pos: -110.5,25.5 + parent: 2 + - uid: 2315 components: - type: Transform - pos: 4.5,-7.5 - parent: 22565 - - uid: 22736 + pos: -111.5,25.5 + parent: 2 + - uid: 2316 components: - type: Transform - pos: 4.5,-6.5 - parent: 22565 - - uid: 22737 + pos: -112.5,25.5 + parent: 2 + - uid: 2317 components: - type: Transform - pos: 4.5,-5.5 - parent: 22565 - - uid: 22738 + pos: -108.5,26.5 + parent: 2 + - uid: 2318 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22739 + pos: -108.5,27.5 + parent: 2 + - uid: 2319 components: - type: Transform - pos: 3.5,-7.5 - parent: 22565 - - uid: 22740 + pos: -109.5,27.5 + parent: 2 + - uid: 2320 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22741 + pos: -110.5,27.5 + parent: 2 + - uid: 2321 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 22742 + pos: -111.5,27.5 + parent: 2 + - uid: 2322 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 22743 + pos: -107.5,27.5 + parent: 2 + - uid: 2323 components: - type: Transform - pos: 0.5,-5.5 - parent: 22565 - - uid: 22744 + pos: -106.5,27.5 + parent: 2 + - uid: 2324 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 22745 + pos: -105.5,27.5 + parent: 2 + - uid: 2325 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 22746 + pos: -104.5,27.5 + parent: 2 + - uid: 2326 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 22747 + pos: -103.5,27.5 + parent: 2 + - uid: 2327 components: - type: Transform - pos: 1.5,-4.5 - parent: 22565 - - uid: 22748 + pos: -102.5,27.5 + parent: 2 + - uid: 2328 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 22749 + pos: -101.5,25.5 + parent: 2 + - uid: 2329 components: - type: Transform - pos: 2.5,-5.5 - parent: 22565 - - uid: 22750 + pos: -100.5,25.5 + parent: 2 + - uid: 2330 components: - type: Transform - pos: 2.5,-4.5 - parent: 22565 - - uid: 22751 + pos: -99.5,25.5 + parent: 2 + - uid: 2331 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22752 + pos: -99.5,24.5 + parent: 2 + - uid: 2332 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 22753 + pos: -99.5,26.5 + parent: 2 + - uid: 2333 components: - type: Transform - pos: -19.5,-14.5 - parent: 22565 - - uid: 22754 + pos: -98.5,25.5 + parent: 2 + - uid: 2334 components: - type: Transform - pos: -27.5,-7.5 - parent: 22565 - - uid: 22755 + pos: -97.5,25.5 + parent: 2 + - uid: 2335 components: - type: Transform - pos: -27.5,-6.5 - parent: 22565 - - uid: 22756 + pos: -97.5,26.5 + parent: 2 + - uid: 2336 components: - type: Transform - pos: -28.5,-7.5 - parent: 22565 - - uid: 22757 + pos: -97.5,27.5 + parent: 2 + - uid: 2337 components: - type: Transform - pos: -28.5,-8.5 - parent: 22565 - - uid: 22758 + pos: -97.5,28.5 + parent: 2 + - uid: 2338 components: - type: Transform - pos: -28.5,-9.5 - parent: 22565 - - uid: 22759 + pos: -98.5,28.5 + parent: 2 + - uid: 2339 components: - type: Transform - pos: -27.5,-9.5 - parent: 22565 - - uid: 22760 + pos: -98.5,29.5 + parent: 2 + - uid: 2340 components: - type: Transform - pos: -26.5,-10.5 - parent: 22565 - - uid: 22761 + pos: -99.5,29.5 + parent: 2 + - uid: 2341 components: - type: Transform - pos: -27.5,-10.5 - parent: 22565 - - uid: 22762 + pos: -100.5,29.5 + parent: 2 + - uid: 2342 components: - type: Transform - pos: -26.5,-9.5 - parent: 22565 - - uid: 22763 + pos: -101.5,29.5 + parent: 2 + - uid: 2343 components: - type: Transform - pos: -25.5,-11.5 - parent: 22565 - - uid: 22764 + pos: -118.5,14.5 + parent: 2 + - uid: 2344 components: - type: Transform - pos: -25.5,-10.5 - parent: 22565 - - uid: 22765 + pos: -119.5,14.5 + parent: 2 + - uid: 2345 components: - type: Transform - pos: -24.5,-11.5 - parent: 22565 - - uid: 22766 + pos: -119.5,15.5 + parent: 2 + - uid: 2346 components: - type: Transform - pos: -24.5,-10.5 - parent: 22565 - - uid: 22767 + pos: -119.5,16.5 + parent: 2 + - uid: 2347 components: - type: Transform - pos: -24.5,-12.5 - parent: 22565 - - uid: 22768 + pos: -119.5,17.5 + parent: 2 + - uid: 2348 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22769 + pos: -119.5,13.5 + parent: 2 + - uid: 2349 components: - type: Transform - pos: -22.5,-13.5 - parent: 22565 - - uid: 22770 + pos: -119.5,12.5 + parent: 2 + - uid: 2350 components: - type: Transform - pos: -22.5,-12.5 - parent: 22565 - - uid: 22771 + pos: -119.5,11.5 + parent: 2 + - uid: 2351 components: - type: Transform - pos: -22.5,-11.5 - parent: 22565 - - uid: 22772 + pos: -119.5,10.5 + parent: 2 + - uid: 2352 components: - type: Transform - pos: -22.5,-10.5 - parent: 22565 - - uid: 22773 + pos: -119.5,9.5 + parent: 2 + - uid: 2353 components: - type: Transform - pos: -22.5,-9.5 - parent: 22565 - - uid: 22774 + pos: -120.5,11.5 + parent: 2 + - uid: 2354 components: - type: Transform - pos: -23.5,-13.5 - parent: 22565 - - uid: 22775 + pos: -121.5,11.5 + parent: 2 + - uid: 2355 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22776 + pos: -122.5,11.5 + parent: 2 + - uid: 2356 components: - type: Transform - pos: -23.5,-11.5 - parent: 22565 - - uid: 22777 + pos: -123.5,11.5 + parent: 2 + - uid: 2357 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22778 + pos: -124.5,11.5 + parent: 2 + - uid: 2358 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22779 + pos: -125.5,11.5 + parent: 2 + - uid: 2359 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22780 + pos: -124.5,12.5 + parent: 2 + - uid: 2360 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22781 + pos: -124.5,13.5 + parent: 2 + - uid: 2361 components: - type: Transform - pos: -24.5,-9.5 - parent: 22565 - - uid: 22782 + pos: -125.5,13.5 + parent: 2 + - uid: 2362 components: - type: Transform - pos: -24.5,-8.5 - parent: 22565 - - uid: 22783 + pos: -126.5,11.5 + parent: 2 + - uid: 2363 components: - type: Transform - pos: -25.5,-9.5 - parent: 22565 - - uid: 22784 + pos: -127.5,11.5 + parent: 2 + - uid: 2364 components: - type: Transform - pos: -25.5,-8.5 - parent: 22565 - - uid: 22785 + pos: -127.5,12.5 + parent: 2 + - uid: 2365 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22786 + pos: -128.5,12.5 + parent: 2 + - uid: 2366 components: - type: Transform - pos: -24.5,-7.5 - parent: 22565 - - uid: 22787 + pos: -129.5,12.5 + parent: 2 + - uid: 2367 components: - type: Transform - pos: -24.5,-6.5 - parent: 22565 - - uid: 22788 + pos: -130.5,13.5 + parent: 2 + - uid: 2368 components: - type: Transform - pos: -23.5,-7.5 - parent: 22565 - - uid: 22789 + pos: -130.5,14.5 + parent: 2 + - uid: 2369 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22790 + pos: -130.5,15.5 + parent: 2 + - uid: 2370 components: - type: Transform - pos: -25.5,-6.5 - parent: 22565 - - uid: 22791 + pos: -130.5,16.5 + parent: 2 + - uid: 2371 components: - type: Transform - pos: -24.5,-5.5 - parent: 22565 - - uid: 22792 + pos: -131.5,15.5 + parent: 2 + - uid: 2372 components: - type: Transform - pos: -22.5,-8.5 - parent: 22565 - - uid: 22793 + pos: -129.5,15.5 + parent: 2 + - uid: 2373 components: - type: Transform - pos: -21.5,-8.5 - parent: 22565 - - uid: 22794 + pos: -120.5,9.5 + parent: 2 + - uid: 2374 components: - type: Transform - pos: -20.5,-8.5 - parent: 22565 - - uid: 22795 + pos: -120.5,8.5 + parent: 2 + - uid: 2375 components: - type: Transform - pos: -20.5,-7.5 - parent: 22565 - - uid: 22796 + pos: -120.5,7.5 + parent: 2 + - uid: 2376 components: - type: Transform - pos: -20.5,-6.5 - parent: 22565 - - uid: 22797 + pos: -120.5,6.5 + parent: 2 + - uid: 2377 components: - type: Transform - pos: -20.5,-7.5 - parent: 22565 - - uid: 22798 + pos: -120.5,5.5 + parent: 2 + - uid: 2378 components: - type: Transform - pos: -20.5,-4.5 - parent: 22565 - - uid: 22799 + pos: -120.5,4.5 + parent: 2 + - uid: 2379 components: - type: Transform - pos: -21.5,-5.5 - parent: 22565 - - uid: 22800 + pos: -120.5,3.5 + parent: 2 + - uid: 2380 components: - type: Transform - pos: -21.5,-6.5 - parent: 22565 - - uid: 22801 + pos: -120.5,2.5 + parent: 2 + - uid: 2381 components: - type: Transform - pos: -21.5,-4.5 - parent: 22565 - - uid: 22802 + pos: -120.5,1.5 + parent: 2 + - uid: 2382 components: - type: Transform - pos: -21.5,-7.5 - parent: 22565 - - uid: 22803 + pos: -120.5,0.5 + parent: 2 + - uid: 2383 components: - type: Transform - pos: -22.5,-5.5 - parent: 22565 - - uid: 22804 + pos: -120.5,-0.5 + parent: 2 + - uid: 2384 components: - type: Transform - pos: -22.5,-4.5 - parent: 22565 - - uid: 22805 + pos: -120.5,-1.5 + parent: 2 + - uid: 2385 components: - type: Transform - pos: -22.5,-3.5 - parent: 22565 - - uid: 22806 + pos: -119.5,-1.5 + parent: 2 + - uid: 2386 components: - type: Transform - pos: -23.5,-3.5 - parent: 22565 - - uid: 22807 + pos: -120.5,-2.5 + parent: 2 + - uid: 2387 components: - type: Transform - pos: -22.5,-6.5 - parent: 22565 - - uid: 22808 + pos: -120.5,-3.5 + parent: 2 + - uid: 2388 components: - type: Transform - pos: -23.5,-5.5 - parent: 22565 - - uid: 22809 + pos: -121.5,-3.5 + parent: 2 + - uid: 2389 components: - type: Transform - pos: -25.5,-4.5 - parent: 22565 - - uid: 22810 + pos: -121.5,-4.5 + parent: 2 + - uid: 2390 components: - type: Transform - pos: -25.5,-4.5 - parent: 22565 - - uid: 22811 + pos: -121.5,-5.5 + parent: 2 + - uid: 2391 components: - type: Transform - pos: -25.5,-3.5 - parent: 22565 - - uid: 22812 + pos: -121.5,-6.5 + parent: 2 + - uid: 2392 components: - type: Transform - pos: -26.5,-2.5 - parent: 22565 - - uid: 22813 + pos: -121.5,-7.5 + parent: 2 + - uid: 2393 components: - type: Transform - pos: -27.5,-2.5 - parent: 22565 - - uid: 22814 + pos: -121.5,-8.5 + parent: 2 + - uid: 2394 components: - type: Transform - pos: -27.5,-3.5 - parent: 22565 - - uid: 22815 + pos: -121.5,-9.5 + parent: 2 + - uid: 2395 components: - type: Transform - pos: -27.5,-3.5 - parent: 22565 - - uid: 22816 + pos: -121.5,-10.5 + parent: 2 + - uid: 2396 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22817 + pos: -120.5,-10.5 + parent: 2 + - uid: 2397 components: - type: Transform - pos: -26.5,-5.5 - parent: 22565 - - uid: 22818 + pos: -119.5,-10.5 + parent: 2 + - uid: 2398 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22819 + pos: -118.5,-10.5 + parent: 2 + - uid: 2399 components: - type: Transform - pos: -28.5,-4.5 - parent: 22565 - - uid: 22820 + pos: -117.5,-10.5 + parent: 2 + - uid: 2400 components: - type: Transform - pos: -27.5,-4.5 - parent: 22565 - - uid: 22821 + pos: -116.5,-10.5 + parent: 2 + - uid: 2401 components: - type: Transform - pos: -28.5,-5.5 - parent: 22565 - - uid: 22822 + pos: -115.5,-10.5 + parent: 2 + - uid: 2402 components: - type: Transform - pos: -28.5,-6.5 - parent: 22565 - - uid: 22823 + pos: -122.5,-7.5 + parent: 2 + - uid: 2403 components: - type: Transform - pos: -28.5,-7.5 - parent: 22565 - - uid: 22824 + pos: -123.5,-7.5 + parent: 2 + - uid: 2404 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22825 + pos: -124.5,-7.5 + parent: 2 + - uid: 2405 components: - type: Transform - pos: -27.5,-6.5 - parent: 22565 - - uid: 22826 + pos: -125.5,-7.5 + parent: 2 + - uid: 2406 components: - type: Transform - pos: -27.5,-7.5 - parent: 22565 - - uid: 22827 + pos: -126.5,-7.5 + parent: 2 + - uid: 2407 components: - type: Transform - pos: -24.5,-6.5 - parent: 22565 - - uid: 22828 + pos: -126.5,-6.5 + parent: 2 + - uid: 2408 components: - type: Transform - pos: -24.5,-7.5 - parent: 22565 - - uid: 22829 + pos: -122.5,-3.5 + parent: 2 + - uid: 2409 components: - type: Transform - pos: -24.5,-8.5 - parent: 22565 - - uid: 22830 + pos: -123.5,-3.5 + parent: 2 + - uid: 2410 components: - type: Transform - pos: -24.5,-9.5 - parent: 22565 - - uid: 22831 + pos: -124.5,-3.5 + parent: 2 + - uid: 2411 components: - type: Transform - pos: -24.5,-10.5 - parent: 22565 - - uid: 22832 + pos: -125.5,-3.5 + parent: 2 + - uid: 2412 components: - type: Transform - pos: -24.5,-11.5 - parent: 22565 - - uid: 22833 + pos: -126.5,-3.5 + parent: 2 + - uid: 2413 components: - type: Transform - pos: -24.5,-12.5 - parent: 22565 - - uid: 22834 + pos: -127.5,-3.5 + parent: 2 + - uid: 2414 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22835 + pos: -128.5,-3.5 + parent: 2 + - uid: 2415 components: - type: Transform - pos: -23.5,-7.5 - parent: 22565 - - uid: 22836 + pos: -129.5,-3.5 + parent: 2 + - uid: 2416 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22837 + pos: -129.5,-0.5 + parent: 2 + - uid: 2417 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22838 + pos: -129.5,0.5 + parent: 2 + - uid: 2418 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22839 + pos: -129.5,1.5 + parent: 2 + - uid: 2419 components: - type: Transform - pos: -23.5,-11.5 - parent: 22565 - - uid: 22840 + pos: -129.5,2.5 + parent: 2 + - uid: 2420 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22841 + pos: -129.5,3.5 + parent: 2 + - uid: 2421 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22842 + pos: -129.5,4.5 + parent: 2 + - uid: 2422 components: - type: Transform - pos: -22.5,-6.5 - parent: 22565 - - uid: 22843 + pos: -129.5,5.5 + parent: 2 + - uid: 2423 components: - type: Transform - pos: -21.5,-6.5 - parent: 22565 - - uid: 22844 + pos: -129.5,6.5 + parent: 2 + - uid: 2424 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22845 + pos: -129.5,7.5 + parent: 2 + - uid: 2425 components: - type: Transform - pos: -22.5,-10.5 - parent: 22565 - - uid: 22846 + pos: -129.5,8.5 + parent: 2 + - uid: 2426 components: - type: Transform - pos: -22.5,-9.5 - parent: 22565 - - uid: 22847 + pos: -129.5,9.5 + parent: 2 + - uid: 2427 components: - type: Transform - pos: -29.5,-6.5 - parent: 22565 - - uid: 22848 + pos: -128.5,9.5 + parent: 2 + - uid: 2428 components: - type: Transform - pos: -30.5,-5.5 - parent: 22565 - - uid: 22849 + pos: -127.5,9.5 + parent: 2 + - uid: 2429 components: - type: Transform - pos: -30.5,-4.5 - parent: 22565 - - uid: 22850 + pos: -126.5,9.5 + parent: 2 + - uid: 2430 components: - type: Transform - pos: -29.5,-4.5 - parent: 22565 - - uid: 22851 + pos: -125.5,9.5 + parent: 2 + - uid: 2431 components: - type: Transform - pos: -31.5,-2.5 - parent: 22565 - - uid: 22852 + pos: -124.5,9.5 + parent: 2 + - uid: 2432 components: - type: Transform - pos: -30.5,-2.5 - parent: 22565 - - uid: 22853 + pos: -123.5,9.5 + parent: 2 + - uid: 2433 components: - type: Transform - pos: -29.5,-2.5 - parent: 22565 - - uid: 22854 + pos: -122.5,9.5 + parent: 2 + - uid: 2434 components: - type: Transform - pos: -28.5,-2.5 - parent: 22565 - - uid: 22855 + pos: -121.5,9.5 + parent: 2 + - uid: 2435 components: - type: Transform - pos: -30.5,-3.5 - parent: 22565 - - uid: 22856 + pos: -126.5,-9.5 + parent: 2 + - uid: 2436 components: - type: Transform - pos: -29.5,-3.5 - parent: 22565 - - uid: 22857 + pos: -126.5,-10.5 + parent: 2 + - uid: 2437 components: - type: Transform - pos: -26.5,-3.5 - parent: 22565 - - uid: 22858 + pos: -125.5,-10.5 + parent: 2 + - uid: 2438 components: - type: Transform - pos: -24.5,-4.5 - parent: 22565 - - uid: 22859 + pos: -124.5,-10.5 + parent: 2 + - uid: 2439 components: - type: Transform - pos: -29.5,-1.5 - parent: 22565 - - uid: 22860 + pos: -123.5,-10.5 + parent: 2 + - uid: 2440 components: - type: Transform - pos: -30.5,-1.5 - parent: 22565 - - uid: 22861 + pos: -122.5,17.5 + parent: 2 + - uid: 2441 components: - type: Transform - pos: -33.5,-0.5 - parent: 22565 - - uid: 22862 + pos: -123.5,17.5 + parent: 2 + - uid: 2442 components: - type: Transform - pos: -34.5,-0.5 - parent: 22565 - - uid: 22863 + pos: -124.5,17.5 + parent: 2 + - uid: 2443 components: - type: Transform - pos: -35.5,-0.5 - parent: 22565 - - uid: 22864 + pos: -125.5,17.5 + parent: 2 + - uid: 2444 components: - type: Transform - pos: -31.5,-0.5 - parent: 22565 - - uid: 22865 + pos: -125.5,16.5 + parent: 2 + - uid: 2445 components: - type: Transform - pos: 6.5,-5.5 - parent: 22565 - - uid: 22866 + pos: -125.5,15.5 + parent: 2 + - uid: 2446 components: - type: Transform - pos: -36.5,0.5 - parent: 22565 - - uid: 22867 + pos: -121.5,4.5 + parent: 2 + - uid: 2447 components: - type: Transform - pos: -36.5,-0.5 - parent: 22565 - - uid: 22868 + pos: -122.5,4.5 + parent: 2 + - uid: 2448 components: - type: Transform - pos: -37.5,3.5 - parent: 22565 - - uid: 22869 + pos: -123.5,4.5 + parent: 2 + - uid: 2449 components: - type: Transform - pos: -37.5,4.5 - parent: 22565 - - uid: 22870 + pos: -123.5,3.5 + parent: 2 + - uid: 2450 components: - type: Transform - pos: -37.5,5.5 - parent: 22565 - - uid: 22871 + pos: 28.5,30.5 + parent: 2 + - uid: 2451 components: - type: Transform - pos: -37.5,7.5 - parent: 22565 - - uid: 22872 + pos: -31.5,9.5 + parent: 2 + - uid: 2452 components: - type: Transform - pos: -37.5,8.5 - parent: 22565 - - uid: 22873 + pos: 29.5,30.5 + parent: 2 + - uid: 2453 components: - - type: Transform - pos: -9.5,-12.5 - parent: 22565 - - uid: 22874 + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 2454 components: - type: Transform - pos: -37.5,12.5 - parent: 22565 - - uid: 22875 + pos: 23.5,25.5 + parent: 2 + - uid: 2455 components: - type: Transform - pos: -9.5,-11.5 - parent: 22565 - - uid: 22876 + pos: -109.5,4.5 + parent: 2 + - uid: 2456 components: - type: Transform - pos: -10.5,-10.5 - parent: 22565 - - uid: 22877 + pos: -110.5,4.5 + parent: 2 + - uid: 2457 components: - type: Transform - pos: -8.5,-10.5 - parent: 22565 - - uid: 22878 + pos: -111.5,4.5 + parent: 2 + - uid: 2458 components: - type: Transform - pos: -8.5,-11.5 - parent: 22565 - - uid: 22879 + pos: -112.5,4.5 + parent: 2 + - uid: 2459 components: - type: Transform - pos: -9.5,-10.5 - parent: 22565 - - uid: 22880 + pos: -113.5,4.5 + parent: 2 + - uid: 2460 components: - type: Transform - pos: -9.5,-8.5 - parent: 22565 - - uid: 22881 + pos: -114.5,4.5 + parent: 2 + - uid: 2461 components: - type: Transform - pos: -8.5,-9.5 - parent: 22565 - - uid: 22882 + pos: -115.5,4.5 + parent: 2 + - uid: 2462 components: - type: Transform - pos: -9.5,-9.5 - parent: 22565 - - uid: 22883 + pos: -116.5,4.5 + parent: 2 + - uid: 2463 components: - type: Transform - pos: -8.5,-8.5 - parent: 22565 - - uid: 22884 + pos: -116.5,3.5 + parent: 2 + - uid: 2464 components: - type: Transform - pos: -10.5,-7.5 - parent: 22565 - - uid: 22885 + pos: -116.5,2.5 + parent: 2 + - uid: 2465 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 22886 + pos: -116.5,1.5 + parent: 2 + - uid: 2466 components: - type: Transform - pos: -5.5,-6.5 - parent: 22565 - - uid: 22887 + pos: -116.5,5.5 + parent: 2 + - uid: 2467 components: - type: Transform - pos: -8.5,-6.5 - parent: 22565 - - uid: 22888 + pos: -116.5,6.5 + parent: 2 + - uid: 2468 components: - type: Transform - pos: -3.5,-8.5 - parent: 22565 - - uid: 22889 + pos: -86.5,15.5 + parent: 2 + - uid: 2469 components: - type: Transform - pos: -2.5,-8.5 - parent: 22565 - - uid: 22890 + pos: -85.5,15.5 + parent: 2 + - uid: 2470 components: - type: Transform - pos: -2.5,-7.5 - parent: 22565 - - uid: 22891 + pos: -85.5,16.5 + parent: 2 + - uid: 2471 components: - type: Transform - pos: -2.5,-9.5 - parent: 22565 - - uid: 22892 + pos: -85.5,17.5 + parent: 2 + - uid: 2472 components: - type: Transform - pos: -1.5,-10.5 - parent: 22565 - - uid: 22893 + pos: -85.5,14.5 + parent: 2 + - uid: 2473 components: - type: Transform - pos: -3.5,-10.5 - parent: 22565 - - uid: 22894 + pos: -85.5,13.5 + parent: 2 + - uid: 2474 components: - type: Transform - pos: -2.5,-10.5 - parent: 22565 - - uid: 22895 + pos: -85.5,12.5 + parent: 2 + - uid: 2475 components: - type: Transform - pos: -3.5,-14.5 - parent: 22565 - - uid: 22896 + pos: -86.5,13.5 + parent: 2 + - uid: 2476 components: - type: Transform - pos: -2.5,-14.5 - parent: 22565 - - uid: 22897 + pos: -87.5,13.5 + parent: 2 + - uid: 2477 components: - type: Transform - pos: -0.5,-14.5 - parent: 22565 - - uid: 22898 + pos: -88.5,13.5 + parent: 2 + - uid: 2478 components: - type: Transform - pos: -11.5,-13.5 - parent: 22565 - - uid: 22899 + pos: -86.5,16.5 + parent: 2 + - uid: 2479 components: - type: Transform - pos: -12.5,-15.5 - parent: 22565 - - uid: 22900 + pos: -87.5,16.5 + parent: 2 + - uid: 2480 components: - type: Transform - pos: -13.5,-16.5 - parent: 22565 - - uid: 22901 + pos: -87.5,17.5 + parent: 2 + - uid: 2481 components: - type: Transform - pos: -13.5,-15.5 - parent: 22565 - - uid: 22902 + pos: -87.5,18.5 + parent: 2 + - uid: 2482 components: - type: Transform - pos: -13.5,-14.5 - parent: 22565 - - uid: 22903 + pos: -87.5,19.5 + parent: 2 + - uid: 2483 components: - type: Transform - pos: -12.5,-14.5 - parent: 22565 - - uid: 22904 + pos: -87.5,20.5 + parent: 2 + - uid: 2484 components: - type: Transform - pos: -11.5,-14.5 - parent: 22565 - - uid: 22905 + pos: -87.5,21.5 + parent: 2 + - uid: 2485 components: - type: Transform - pos: -16.5,-15.5 - parent: 22565 - - uid: 22906 + pos: -87.5,22.5 + parent: 2 + - uid: 2486 components: - type: Transform - pos: -16.5,-14.5 - parent: 22565 - - uid: 22907 + pos: -87.5,23.5 + parent: 2 + - uid: 2487 components: - type: Transform - pos: -20.5,-17.5 - parent: 22565 - - uid: 22908 + pos: -87.5,24.5 + parent: 2 + - uid: 2488 components: - type: Transform - pos: -20.5,-16.5 - parent: 22565 - - uid: 22909 + pos: -87.5,26.5 + parent: 2 + - uid: 2489 components: - type: Transform - pos: -21.5,-16.5 - parent: 22565 - - uid: 22910 + pos: -87.5,27.5 + parent: 2 + - uid: 2490 components: - type: Transform - pos: -22.5,-15.5 - parent: 22565 - - uid: 22911 + pos: -87.5,28.5 + parent: 2 + - uid: 2491 components: - type: Transform - pos: -21.5,-15.5 - parent: 22565 - - uid: 22912 + pos: -88.5,28.5 + parent: 2 + - uid: 2492 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22913 + pos: -89.5,28.5 + parent: 2 + - uid: 2493 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22914 + pos: -90.5,28.5 + parent: 2 + - uid: 2494 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22915 + pos: -92.5,28.5 + parent: 2 + - uid: 2495 components: - type: Transform - pos: -19.5,-15.5 - parent: 22565 - - uid: 22916 + pos: -92.5,27.5 + parent: 2 + - uid: 2496 components: - type: Transform - pos: -20.5,-16.5 - parent: 22565 - - uid: 22917 + pos: -92.5,26.5 + parent: 2 + - uid: 2497 components: - type: Transform - pos: -18.5,-18.5 - parent: 22565 - - uid: 22918 + pos: -92.5,25.5 + parent: 2 + - uid: 2498 components: - type: Transform - pos: -18.5,-19.5 - parent: 22565 - - uid: 22919 + pos: -92.5,24.5 + parent: 2 + - uid: 2499 components: - type: Transform - pos: -17.5,-19.5 - parent: 22565 - - uid: 22920 + pos: -92.5,23.5 + parent: 2 + - uid: 2500 components: - type: Transform - pos: -17.5,-18.5 - parent: 22565 - - uid: 22921 + pos: -92.5,22.5 + parent: 2 + - uid: 2501 components: - type: Transform - pos: -9.5,-19.5 - parent: 22565 - - uid: 22922 + pos: -93.5,22.5 + parent: 2 + - uid: 2502 components: - type: Transform - pos: -9.5,-18.5 - parent: 22565 - - uid: 22923 + pos: -94.5,22.5 + parent: 2 + - uid: 2503 components: - type: Transform - pos: -1.5,-2.5 - parent: 22565 - - uid: 22924 + pos: -95.5,22.5 + parent: 2 + - uid: 2504 components: - type: Transform - pos: 1.5,-3.5 - parent: 22565 - - uid: 22925 + pos: -96.5,22.5 + parent: 2 + - uid: 2505 components: - type: Transform - pos: 3.5,-2.5 - parent: 22565 - - uid: 22926 + pos: -84.5,13.5 + parent: 2 + - uid: 2506 components: - type: Transform - pos: -0.5,-4.5 - parent: 22565 - - uid: 22927 + pos: -93.5,21.5 + parent: 2 + - uid: 2507 components: - type: Transform - pos: -2.5,-4.5 - parent: 22565 - - uid: 22928 + pos: -93.5,20.5 + parent: 2 + - uid: 2508 components: - type: Transform - pos: -1.5,-3.5 - parent: 22565 - - uid: 22929 + pos: -93.5,19.5 + parent: 2 + - uid: 2509 components: - type: Transform - pos: -1.5,-6.5 - parent: 22565 - - uid: 22930 + pos: -100.5,19.5 + parent: 2 + - uid: 2510 components: - type: Transform - pos: -0.5,-5.5 - parent: 22565 - - uid: 22931 + pos: -98.5,21.5 + parent: 2 + - uid: 2511 components: - type: Transform - pos: -1.5,-7.5 - parent: 22565 - - uid: 22932 + pos: -98.5,20.5 + parent: 2 + - uid: 2512 components: - type: Transform - pos: -1.5,-9.5 - parent: 22565 - - uid: 22933 + pos: -98.5,19.5 + parent: 2 + - uid: 2513 components: - type: Transform - pos: -1.5,-4.5 - parent: 22565 - - uid: 22934 + pos: -98.5,18.5 + parent: 2 + - uid: 2514 components: - type: Transform - pos: -1.5,-5.5 - parent: 22565 - - uid: 22935 + pos: -99.5,22.5 + parent: 2 + - uid: 2515 components: - type: Transform - pos: -4.5,-5.5 - parent: 22565 - - uid: 22936 + pos: -99.5,23.5 + parent: 2 + - uid: 2516 components: - type: Transform - pos: -4.5,-3.5 - parent: 22565 - - uid: 22937 + pos: -99.5,19.5 + parent: 2 + - uid: 2517 components: - type: Transform - pos: -5.5,-3.5 - parent: 22565 - - uid: 22938 + pos: -100.5,18.5 + parent: 2 + - uid: 2518 components: - type: Transform - pos: -6.5,-3.5 - parent: 22565 - - uid: 22939 + pos: -99.5,21.5 + parent: 2 + - uid: 2519 components: - type: Transform - pos: -6.5,-4.5 - parent: 22565 - - uid: 22940 + pos: -99.5,27.5 + parent: 2 + - uid: 2520 components: - type: Transform - pos: -3.5,-6.5 - parent: 22565 - - uid: 22941 + pos: -101.5,18.5 + parent: 2 + - uid: 2521 components: - type: Transform - pos: -3.5,-5.5 - parent: 22565 - - uid: 22942 + pos: -102.5,18.5 + parent: 2 + - uid: 2522 components: - type: Transform - pos: -2.5,-6.5 - parent: 22565 - - uid: 22943 + pos: -103.5,18.5 + parent: 2 + - uid: 2523 components: - type: Transform - pos: 6.5,-4.5 - parent: 22565 - - uid: 22944 + pos: -104.5,18.5 + parent: 2 + - uid: 2524 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22945 + pos: -105.5,18.5 + parent: 2 + - uid: 2525 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22946 + pos: -100.5,17.5 + parent: 2 + - uid: 2526 components: - type: Transform - pos: 5.5,-3.5 - parent: 22565 - - uid: 22947 + pos: -100.5,16.5 + parent: 2 + - uid: 2527 components: - type: Transform - pos: 5.5,-2.5 - parent: 22565 - - uid: 22948 + pos: -100.5,15.5 + parent: 2 + - uid: 2528 components: - type: Transform - pos: 4.5,-2.5 - parent: 22565 - - uid: 22949 + pos: -100.5,14.5 + parent: 2 + - uid: 2529 components: - type: Transform - pos: 4.5,-3.5 - parent: 22565 - - uid: 22950 + pos: -100.5,13.5 + parent: 2 + - uid: 2530 components: - type: Transform - pos: 4.5,-4.5 - parent: 22565 - - uid: 22951 + pos: -100.5,12.5 + parent: 2 + - uid: 2531 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 22952 + pos: -99.5,13.5 + parent: 2 + - uid: 2532 components: - type: Transform - pos: 2.5,-3.5 - parent: 22565 - - uid: 22953 + pos: -98.5,13.5 + parent: 2 + - uid: 2533 components: - type: Transform - pos: 2.5,-2.5 - parent: 22565 - - uid: 22954 + pos: -97.5,13.5 + parent: 2 + - uid: 2534 components: - type: Transform - pos: 1.5,-2.5 - parent: 22565 - - uid: 22955 + pos: -83.5,13.5 + parent: 2 + - uid: 2535 components: - type: Transform - pos: -0.5,-3.5 - parent: 22565 - - uid: 22956 + pos: -82.5,13.5 + parent: 2 + - uid: 2536 components: - type: Transform - pos: 0.5,-3.5 - parent: 22565 - - uid: 22957 + pos: -81.5,13.5 + parent: 2 + - uid: 2537 components: - type: Transform - pos: -0.5,-2.5 - parent: 22565 - - uid: 22958 + pos: -81.5,12.5 + parent: 2 + - uid: 2538 components: - type: Transform - pos: 0.5,-2.5 - parent: 22565 - - uid: 22959 + pos: -81.5,11.5 + parent: 2 + - uid: 2539 components: - type: Transform - pos: 8.5,-0.5 - parent: 22565 - - uid: 22960 + pos: -81.5,10.5 + parent: 2 + - uid: 2540 components: - type: Transform - pos: 9.5,-0.5 - parent: 22565 - - uid: 22961 + pos: -81.5,9.5 + parent: 2 + - uid: 2541 components: - type: Transform - pos: 10.5,-0.5 - parent: 22565 - - uid: 22962 + pos: -81.5,14.5 + parent: 2 + - uid: 2542 components: - type: Transform - pos: 11.5,-0.5 - parent: 22565 - - uid: 22963 + pos: -81.5,15.5 + parent: 2 + - uid: 2543 components: - type: Transform - pos: 12.5,0.5 - parent: 22565 - - uid: 22964 + pos: -81.5,16.5 + parent: 2 + - uid: 2544 components: - type: Transform - pos: 13.5,3.5 - parent: 22565 - - uid: 22965 + pos: -81.5,17.5 + parent: 2 + - uid: 2545 components: - type: Transform - pos: 13.5,4.5 - parent: 22565 - - uid: 22966 + pos: -81.5,18.5 + parent: 2 + - uid: 2546 components: - type: Transform - pos: 13.5,5.5 - parent: 22565 - - uid: 22967 + pos: -86.5,36.5 + parent: 2 + - uid: 2547 components: - type: Transform - pos: 13.5,9.5 - parent: 22565 - - uid: 22968 + pos: -86.5,35.5 + parent: 2 + - uid: 2548 components: - type: Transform - pos: 13.5,13.5 - parent: 22565 - - uid: 22969 + pos: -86.5,34.5 + parent: 2 + - uid: 2549 components: - type: Transform - pos: 13.5,12.5 - parent: 22565 - - uid: 22970 + pos: -86.5,33.5 + parent: 2 + - uid: 2550 components: - type: Transform - pos: 13.5,1.5 - parent: 22565 - - uid: 22971 + pos: -85.5,33.5 + parent: 2 + - uid: 2551 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22972 + pos: -84.5,33.5 + parent: 2 + - uid: 2552 components: - type: Transform - pos: -5.5,-10.5 - parent: 22565 - - uid: 22973 + pos: -84.5,32.5 + parent: 2 + - uid: 2553 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22974 + pos: -84.5,31.5 + parent: 2 + - uid: 2554 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22975 + pos: -84.5,30.5 + parent: 2 + - uid: 2555 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22976 + pos: -84.5,29.5 + parent: 2 + - uid: 2556 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22977 + pos: -84.5,28.5 + parent: 2 + - uid: 2557 components: - type: Transform - pos: 6.5,-3.5 - parent: 22565 - - uid: 22978 + pos: -84.5,27.5 + parent: 2 + - uid: 2558 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22979 + pos: -84.5,26.5 + parent: 2 + - uid: 2559 components: - type: Transform - pos: 6.5,-3.5 - parent: 22565 - - uid: 22980 + pos: -84.5,25.5 + parent: 2 + - uid: 2560 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22981 + pos: -84.5,34.5 + parent: 2 + - uid: 2561 components: - type: Transform - pos: 8.5,-0.5 - parent: 22565 - - uid: 22982 + pos: -84.5,35.5 + parent: 2 + - uid: 2562 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22983 + pos: -84.5,36.5 + parent: 2 + - uid: 2563 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22984 + pos: -84.5,37.5 + parent: 2 + - uid: 2564 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22985 + pos: -84.5,38.5 + parent: 2 + - uid: 2565 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22986 + pos: -84.5,39.5 + parent: 2 + - uid: 2566 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22987 + pos: -84.5,40.5 + parent: 2 + - uid: 2567 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 22988 + pos: -84.5,41.5 + parent: 2 + - uid: 2568 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 22989 + pos: -84.5,42.5 + parent: 2 + - uid: 2569 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 22990 + pos: -84.5,43.5 + parent: 2 + - uid: 2570 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 22991 + pos: -84.5,44.5 + parent: 2 + - uid: 2571 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 22992 + pos: -84.5,45.5 + parent: 2 + - uid: 2572 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 22993 + pos: -84.5,24.5 + parent: 2 + - uid: 2573 components: - type: Transform - pos: -19.5,-8.5 - parent: 22565 - - uid: 22994 + pos: -84.5,23.5 + parent: 2 + - uid: 2574 components: - type: Transform - pos: -18.5,-6.5 - parent: 22565 - - uid: 22995 + pos: -84.5,22.5 + parent: 2 + - uid: 2575 components: - type: Transform - pos: -18.5,-4.5 - parent: 22565 - - uid: 22996 + pos: -84.5,21.5 + parent: 2 + - uid: 2576 components: - type: Transform - pos: -20.5,-3.5 - parent: 22565 - - uid: 22997 + pos: -84.5,20.5 + parent: 2 + - uid: 2577 components: - type: Transform - pos: -16.5,-5.5 - parent: 22565 - - uid: 22998 + pos: -84.5,19.5 + parent: 2 + - uid: 2578 components: - type: Transform - pos: -21.5,-3.5 - parent: 22565 - - uid: 22999 + pos: -83.5,20.5 + parent: 2 + - uid: 2579 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 23000 + pos: -82.5,20.5 + parent: 2 + - uid: 2580 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 23001 + pos: -81.5,20.5 + parent: 2 + - uid: 2581 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23002 + pos: -18.5,10.5 + parent: 2 + - uid: 2582 components: - type: Transform - pos: -17.5,-3.5 - parent: 22565 - - uid: 23003 + pos: -18.5,9.5 + parent: 2 + - uid: 2583 components: - type: Transform - pos: -22.5,-2.5 - parent: 22565 - - uid: 23004 + pos: -18.5,8.5 + parent: 2 + - uid: 2584 components: - type: Transform - pos: -37.5,10.5 - parent: 22565 - - uid: 23005 + pos: -18.5,7.5 + parent: 2 + - uid: 2585 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 23006 + pos: -18.5,6.5 + parent: 2 + - uid: 2586 components: - type: Transform - pos: -23.5,-2.5 - parent: 22565 - - uid: 23007 + pos: -17.5,7.5 + parent: 2 + - uid: 2587 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23008 + pos: -16.5,7.5 + parent: 2 + - uid: 2588 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23009 + pos: -19.5,7.5 + parent: 2 + - uid: 2589 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 23010 + pos: -20.5,7.5 + parent: 2 + - uid: 2590 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23011 + pos: -18.5,5.5 + parent: 2 + - uid: 2591 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23012 + pos: -16.5,8.5 + parent: 2 + - uid: 2592 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 23013 + pos: -16.5,9.5 + parent: 2 + - uid: 2593 components: - type: Transform - pos: -19.5,-18.5 - parent: 22565 - - uid: 23014 + pos: -10.5,5.5 + parent: 2 + - uid: 2594 components: - type: Transform - pos: -19.5,-17.5 - parent: 22565 - - uid: 23015 + pos: -10.5,4.5 + parent: 2 + - uid: 2595 components: - type: Transform - pos: -18.5,-17.5 - parent: 22565 - - uid: 23016 + pos: -10.5,3.5 + parent: 2 + - uid: 2596 components: - type: Transform - pos: -19.5,-16.5 - parent: 22565 - - uid: 23017 + pos: -10.5,2.5 + parent: 2 + - uid: 2597 components: - type: Transform - pos: -19.5,-16.5 - parent: 22565 - - uid: 23018 + pos: -11.5,2.5 + parent: 2 + - uid: 2598 components: - type: Transform - pos: -19.5,-17.5 - parent: 22565 - - uid: 23019 + pos: -12.5,2.5 + parent: 2 + - uid: 2599 components: - type: Transform - pos: -18.5,-18.5 - parent: 22565 - - uid: 23020 + pos: -13.5,2.5 + parent: 2 + - uid: 2600 components: - type: Transform - pos: -19.5,-18.5 - parent: 22565 - - uid: 23021 + pos: -14.5,2.5 + parent: 2 + - uid: 2601 components: - type: Transform - pos: -4.5,-9.5 - parent: 22565 - - uid: 23022 + pos: -15.5,2.5 + parent: 2 + - uid: 2602 components: - type: Transform - pos: -4.5,-8.5 - parent: 22565 - - uid: 23023 + pos: -16.5,2.5 + parent: 2 + - uid: 2603 components: - type: Transform - pos: -4.5,-7.5 - parent: 22565 - - uid: 23024 + pos: -17.5,2.5 + parent: 2 + - uid: 2604 components: - type: Transform - pos: -4.5,-6.5 - parent: 22565 - - uid: 23025 + pos: -18.5,2.5 + parent: 2 + - uid: 2605 components: - type: Transform - pos: -3.5,-7.5 - parent: 22565 - - uid: 23026 + pos: -19.5,2.5 + parent: 2 + - uid: 2606 components: - type: Transform - pos: -6.5,-5.5 - parent: 22565 - - uid: 23027 + pos: -20.5,2.5 + parent: 2 + - uid: 2607 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23028 + pos: -9.5,2.5 + parent: 2 + - uid: 2608 components: - type: Transform - pos: -5.5,-5.5 - parent: 22565 - - uid: 23029 + pos: -8.5,2.5 + parent: 2 + - uid: 2609 components: - type: Transform - pos: -5.5,-4.5 - parent: 22565 - - uid: 23030 + pos: -7.5,2.5 + parent: 2 + - uid: 2610 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23031 + pos: -6.5,2.5 + parent: 2 + - uid: 2611 components: - type: Transform - pos: -7.5,-6.5 - parent: 22565 - - uid: 23032 + pos: -5.5,2.5 + parent: 2 + - uid: 2612 components: - type: Transform - pos: -7.5,-5.5 - parent: 22565 - - uid: 23033 + pos: -10.5,6.5 + parent: 2 + - uid: 2613 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23034 + pos: -10.5,7.5 + parent: 2 + - uid: 2614 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 23035 + pos: -10.5,8.5 + parent: 2 + - uid: 2615 components: - type: Transform - pos: -4.5,-9.5 - parent: 22565 - - uid: 23036 + pos: -10.5,9.5 + parent: 2 + - uid: 2616 components: - type: Transform - pos: -5.5,-9.5 - parent: 22565 - - uid: 23037 + pos: -11.5,7.5 + parent: 2 + - uid: 2617 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23038 + pos: -12.5,7.5 + parent: 2 + - uid: 2618 components: - type: Transform - pos: -5.5,-6.5 - parent: 22565 - - uid: 23039 + pos: -13.5,7.5 + parent: 2 + - uid: 2619 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23040 + pos: -14.5,7.5 + parent: 2 + - uid: 2620 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23041 + pos: -14.5,8.5 + parent: 2 + - uid: 2621 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23042 + pos: -14.5,9.5 + parent: 2 + - uid: 2622 components: - type: Transform - pos: -6.5,-9.5 - parent: 22565 - - uid: 23043 + pos: -14.5,10.5 + parent: 2 + - uid: 2623 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23044 + pos: -14.5,11.5 + parent: 2 + - uid: 2624 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23045 + pos: -31.5,12.5 + parent: 2 + - uid: 2625 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23046 + pos: -31.5,11.5 + parent: 2 + - uid: 2626 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23047 + pos: -31.5,8.5 + parent: 2 + - uid: 2627 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 23048 + pos: -28.5,0.5 + parent: 2 + - uid: 2628 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23049 + pos: -28.5,-0.5 + parent: 2 + - uid: 2629 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23050 + pos: -28.5,-1.5 + parent: 2 + - uid: 2630 components: - type: Transform - pos: -11.5,-8.5 - parent: 22565 - - uid: 23051 + pos: -29.5,-0.5 + parent: 2 + - uid: 2631 components: - type: Transform - pos: -11.5,-7.5 - parent: 22565 - - uid: 23052 + pos: -30.5,-0.5 + parent: 2 + - uid: 2632 components: - type: Transform - pos: -10.5,-8.5 - parent: 22565 - - uid: 23053 + pos: -31.5,-0.5 + parent: 2 + - uid: 2633 components: - type: Transform - pos: -10.5,-8.5 - parent: 22565 - - uid: 23054 + pos: -32.5,-0.5 + parent: 2 + - uid: 2634 components: - type: Transform - pos: -10.5,-9.5 - parent: 22565 - - uid: 23055 + pos: -33.5,-0.5 + parent: 2 + - uid: 2635 components: - type: Transform - pos: -12.5,-6.5 - parent: 22565 - - uid: 23056 + pos: -34.5,-0.5 + parent: 2 + - uid: 2636 components: - type: Transform - pos: -13.5,-6.5 - parent: 22565 - - uid: 23057 + pos: -35.5,-0.5 + parent: 2 + - uid: 2637 components: - type: Transform - pos: -14.5,-6.5 - parent: 22565 - - uid: 23058 + pos: -36.5,-0.5 + parent: 2 + - uid: 2638 components: - type: Transform - pos: -20.5,-5.5 - parent: 22565 - - uid: 23059 + pos: -27.5,-1.5 + parent: 2 + - uid: 2639 components: - type: Transform - pos: -2.5,-11.5 - parent: 22565 - - uid: 23060 + pos: -26.5,-1.5 + parent: 2 + - uid: 2640 components: - type: Transform - pos: -3.5,-11.5 - parent: 22565 - - uid: 23061 + pos: -25.5,-1.5 + parent: 2 + - uid: 2641 components: - type: Transform - pos: -3.5,-12.5 - parent: 22565 - - uid: 23062 + pos: -24.5,-1.5 + parent: 2 + - uid: 2642 components: - type: Transform - pos: -2.5,-12.5 - parent: 22565 - - uid: 23063 + pos: -23.5,-1.5 + parent: 2 + - uid: 2643 components: - type: Transform - pos: -3.5,-13.5 - parent: 22565 - - uid: 23064 + pos: -22.5,-1.5 + parent: 2 + - uid: 2644 components: - type: Transform - pos: -2.5,-13.5 - parent: 22565 - - uid: 23065 + pos: -21.5,-1.5 + parent: 2 + - uid: 2645 components: - type: Transform - pos: -1.5,-14.5 - parent: 22565 - - uid: 23066 + pos: -20.5,-1.5 + parent: 2 + - uid: 2646 components: - type: Transform - pos: 0.5,-14.5 - parent: 22565 - - uid: 23067 + pos: -19.5,-1.5 + parent: 2 + - uid: 2647 components: - type: Transform - pos: -4.5,-10.5 - parent: 22565 - - uid: 23068 + pos: -18.5,-1.5 + parent: 2 + - uid: 2648 components: - type: Transform - pos: -19.5,-4.5 - parent: 22565 - - uid: 23069 + pos: -18.5,-2.5 + parent: 2 + - uid: 2649 components: - type: Transform - pos: -19.5,-6.5 - parent: 22565 - - uid: 23070 + pos: -18.5,-3.5 + parent: 2 + - uid: 2650 components: - type: Transform - pos: -19.5,-5.5 - parent: 22565 - - uid: 23071 + pos: -18.5,-4.5 + parent: 2 + - uid: 2651 components: - type: Transform - pos: -0.5,-5.5 - parent: 22565 - - uid: 23072 + pos: -18.5,-5.5 + parent: 2 + - uid: 2652 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 23073 + pos: -18.5,-6.5 + parent: 2 + - uid: 2653 components: - type: Transform - pos: 0.5,-5.5 - parent: 22565 - - uid: 23074 + pos: -18.5,-7.5 + parent: 2 + - uid: 2654 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 23075 + pos: -19.5,-7.5 + parent: 2 + - uid: 2655 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 23076 + pos: -20.5,-7.5 + parent: 2 + - uid: 2656 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 23077 + pos: -21.5,-7.5 + parent: 2 + - uid: 2657 components: - type: Transform - pos: 2.5,-5.5 - parent: 22565 - - uid: 23078 + pos: -22.5,-7.5 + parent: 2 + - uid: 2658 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 23079 + pos: -23.5,-7.5 + parent: 2 + - uid: 2659 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 23080 + pos: -24.5,-7.5 + parent: 2 + - uid: 2660 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 23081 + pos: -25.5,-7.5 + parent: 2 + - uid: 2661 components: - type: Transform - pos: -0.5,-7.5 - parent: 22565 - - uid: 23082 + pos: -26.5,-7.5 + parent: 2 + - uid: 2662 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 23083 + pos: -27.5,-7.5 + parent: 2 + - uid: 2663 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 23084 + pos: -28.5,-7.5 + parent: 2 + - uid: 2664 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 23085 + pos: -29.5,-7.5 + parent: 2 + - uid: 2665 components: - type: Transform - pos: 0.5,-7.5 - parent: 22565 - - uid: 23086 + pos: -30.5,-7.5 + parent: 2 + - uid: 2666 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 23087 + pos: -30.5,-8.5 + parent: 2 + - uid: 2667 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 23088 + pos: -30.5,-9.5 + parent: 2 + - uid: 2668 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 23089 + pos: -30.5,-6.5 + parent: 2 + - uid: 2669 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 23090 + pos: -30.5,-5.5 + parent: 2 + - uid: 2670 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 23091 + pos: -30.5,-4.5 + parent: 2 + - uid: 2671 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 23092 + pos: -37.5,-0.5 + parent: 2 + - uid: 2672 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 23093 + pos: -37.5,-1.5 + parent: 2 + - uid: 2673 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 23094 + pos: -37.5,-2.5 + parent: 2 + - uid: 2674 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 23095 + pos: -37.5,-4.5 + parent: 2 + - uid: 2675 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 23096 + pos: -37.5,-5.5 + parent: 2 + - uid: 2676 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 23097 + pos: -37.5,-6.5 + parent: 2 + - uid: 2677 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 23098 + pos: -37.5,-7.5 + parent: 2 + - uid: 2678 components: - type: Transform - pos: 4.5,-6.5 - parent: 22565 - - uid: 23099 + pos: -37.5,-8.5 + parent: 2 + - uid: 2679 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 23100 + pos: -35.5,-8.5 + parent: 2 + - uid: 2680 components: - type: Transform - pos: 1.5,-3.5 - parent: 22565 - - uid: 23101 + pos: -34.5,-8.5 + parent: 2 + - uid: 2681 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 23102 + pos: -36.5,-4.5 + parent: 2 + - uid: 2682 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 23103 + pos: -35.5,-4.5 + parent: 2 + - uid: 2683 components: - type: Transform - pos: -0.5,-2.5 - parent: 22565 - - uid: 23104 + pos: -34.5,-4.5 + parent: 2 + - uid: 2684 components: - type: Transform - pos: -0.5,-3.5 - parent: 22565 - - uid: 23105 + pos: -34.5,-5.5 + parent: 2 + - uid: 2685 components: - type: Transform - pos: 5.5,-3.5 - parent: 22565 - - uid: 23106 + pos: -34.5,-7.5 + parent: 2 + - uid: 2686 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 25646 + pos: -11.5,-7.5 + parent: 2 + - uid: 2687 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25647 + pos: -12.5,-7.5 + parent: 2 + - uid: 2688 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25648 + pos: -15.5,-7.5 + parent: 2 + - uid: 2689 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25651 + pos: -14.5,-7.5 + parent: 2 + - uid: 2690 components: - type: Transform - pos: -30.5,-1.5 - parent: 22565 - - uid: 25652 + pos: -13.5,-7.5 + parent: 2 + - uid: 2691 components: - type: Transform - pos: -31.5,-0.5 - parent: 22565 - - uid: 25653 + pos: -17.5,-3.5 + parent: 2 + - uid: 2692 components: - type: Transform - pos: -31.5,-1.5 - parent: 22565 -- proto: AtmosDeviceFanTiny - entities: - - uid: 588 + pos: -15.5,-3.5 + parent: 2 + - uid: 2693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,21.5 - parent: 89 - - uid: 794 + pos: -14.5,-3.5 + parent: 2 + - uid: 2694 components: - type: Transform - pos: -103.5,-21.5 - parent: 89 - - uid: 3398 + pos: -13.5,-3.5 + parent: 2 + - uid: 2695 components: - type: Transform - pos: -84.5,48.5 - parent: 89 - - uid: 3512 + pos: -12.5,-3.5 + parent: 2 + - uid: 2696 components: - type: Transform - pos: -16.5,-7.5 - parent: 89 - - uid: 3514 + pos: -11.5,-3.5 + parent: 2 + - uid: 2697 components: - type: Transform - pos: -13.5,-6.5 - parent: 89 - - uid: 3572 + pos: -10.5,-3.5 + parent: 2 + - uid: 2698 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 6035 + pos: -9.5,-3.5 + parent: 2 + - uid: 2699 components: - type: Transform - pos: -70.5,30.5 - parent: 89 - - uid: 6426 + pos: -8.5,-3.5 + parent: 2 + - uid: 2700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,49.5 - parent: 89 - - uid: 9906 + pos: -7.5,-3.5 + parent: 2 + - uid: 2701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,49.5 - parent: 89 - - uid: 9907 + pos: -4.5,-3.5 + parent: 2 + - uid: 2702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,49.5 - parent: 89 - - uid: 9908 + pos: -5.5,-3.5 + parent: 2 + - uid: 2703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,49.5 - parent: 89 - - uid: 17160 + pos: -6.5,-1.5 + parent: 2 + - uid: 2704 components: - type: Transform - pos: -62.5,-21.5 - parent: 89 - - uid: 17162 + pos: -6.5,-0.5 + parent: 2 + - uid: 2705 components: - type: Transform - pos: -60.5,-21.5 - parent: 89 - - uid: 17163 + pos: -9.5,-2.5 + parent: 2 + - uid: 2706 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 17181 + pos: -9.5,-1.5 + parent: 2 + - uid: 2707 components: - type: Transform - pos: -70.5,37.5 - parent: 89 - - uid: 17204 + pos: -12.5,-2.5 + parent: 2 + - uid: 2708 components: - type: Transform - pos: -80.5,37.5 - parent: 89 - - uid: 20307 + pos: -12.5,-1.5 + parent: 2 + - uid: 2709 components: - type: Transform - pos: -80.5,30.5 - parent: 89 - - uid: 20314 + pos: -9.5,-4.5 + parent: 2 + - uid: 2710 components: - type: Transform - pos: -89.5,37.5 - parent: 89 - - uid: 20356 + pos: -9.5,-5.5 + parent: 2 + - uid: 2711 components: - type: Transform - pos: -89.5,39.5 - parent: 89 - - uid: 20946 + pos: -6.5,-3.5 + parent: 2 + - uid: 2712 components: - type: Transform - pos: 49.5,20.5 - parent: 89 - - uid: 21310 + pos: -6.5,-5.5 + parent: 2 + - uid: 2713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,46.5 - parent: 89 - - uid: 21311 + pos: -79.5,2.5 + parent: 2 + - uid: 2714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,38.5 - parent: 89 - - uid: 21312 + pos: -79.5,1.5 + parent: 2 + - uid: 2715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,38.5 - parent: 89 - - uid: 21313 + pos: -79.5,0.5 + parent: 2 + - uid: 2716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,46.5 - parent: 89 - - uid: 21633 + pos: -78.5,0.5 + parent: 2 + - uid: 2717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 21627 - - uid: 22545 + pos: -77.5,0.5 + parent: 2 + - uid: 2718 components: - type: Transform - pos: -3.5,-35.5 - parent: 89 - - uid: 23107 + pos: -76.5,0.5 + parent: 2 + - uid: 2719 components: - type: Transform - pos: -9.5,-27.5 - parent: 22565 - - uid: 23108 + pos: -76.5,-0.5 + parent: 2 + - uid: 2720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 - parent: 22565 - - uid: 23109 + pos: -76.5,-1.5 + parent: 2 + - uid: 2721 components: - type: Transform - pos: -11.5,-27.5 - parent: 22565 - - uid: 23110 + pos: -76.5,-2.5 + parent: 2 + - uid: 2722 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - uid: 23111 + pos: -76.5,-3.5 + parent: 2 + - uid: 2723 components: - type: Transform - pos: -15.5,-27.5 - parent: 22565 - - uid: 23112 + pos: -77.5,-3.5 + parent: 2 + - uid: 2724 components: - type: Transform - pos: -17.5,-27.5 - parent: 22565 - - uid: 23113 + pos: -78.5,-3.5 + parent: 2 + - uid: 2725 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - uid: 23114 + pos: -79.5,-3.5 + parent: 2 + - uid: 2726 components: - type: Transform - pos: -15.5,-20.5 - parent: 22565 - - uid: 23115 + pos: -75.5,-3.5 + parent: 2 + - uid: 2727 components: - type: Transform - pos: -12.5,-4.5 - parent: 22565 - - uid: 23116 + pos: -74.5,-3.5 + parent: 2 + - uid: 2728 components: - type: Transform - pos: -11.5,-4.5 - parent: 22565 - - uid: 23117 + pos: -74.5,-4.5 + parent: 2 + - uid: 2729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 22565 - - uid: 23118 + pos: -74.5,-5.5 + parent: 2 + - uid: 2730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,21.5 - parent: 22565 - - uid: 23119 + pos: -74.5,-6.5 + parent: 2 + - uid: 2731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,23.5 - parent: 22565 - - uid: 23120 + pos: -74.5,-7.5 + parent: 2 + - uid: 2732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 22565 - - uid: 23121 + pos: -82.5,9.5 + parent: 2 + - uid: 2733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 22565 - - uid: 23122 + pos: -83.5,9.5 + parent: 2 + - uid: 2734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 22565 - - uid: 23123 + pos: -84.5,9.5 + parent: 2 + - uid: 2735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 22565 - - uid: 23124 + pos: -85.5,9.5 + parent: 2 + - uid: 2736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,15.5 - parent: 22565 - - uid: 23125 + pos: -86.5,9.5 + parent: 2 + - uid: 2737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 22565 - - uid: 23126 + pos: -87.5,9.5 + parent: 2 + - uid: 2738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,21.5 - parent: 22565 - - uid: 23127 + pos: -86.5,8.5 + parent: 2 + - uid: 2739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,23.5 - parent: 22565 - - uid: 23128 + pos: -86.5,7.5 + parent: 2 + - uid: 2740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 22565 - - uid: 23129 + pos: -86.5,6.5 + parent: 2 + - uid: 2741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,21.5 - parent: 22565 - - uid: 23130 + pos: -86.5,5.5 + parent: 2 + - uid: 2742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,17.5 - parent: 22565 - - uid: 23131 + pos: -86.5,4.5 + parent: 2 + - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 22565 - - uid: 25365 + pos: -86.5,3.5 + parent: 2 + - uid: 2744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 89 - - uid: 25366 + pos: -86.5,2.5 + parent: 2 + - uid: 2745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 89 - - uid: 25428 + pos: -85.5,3.5 + parent: 2 + - uid: 2746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 18153 - - uid: 25429 + pos: -87.5,3.5 + parent: 2 + - uid: 2747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 18153 -- proto: AtmosFixBlockerMarker - entities: - - uid: 7571 + pos: -88.5,3.5 + parent: 2 + - uid: 2748 components: - type: Transform - pos: -88.5,-5.5 - parent: 89 - - uid: 7572 + pos: -88.5,9.5 + parent: 2 + - uid: 2749 components: - type: Transform - pos: -88.5,-4.5 - parent: 89 - - uid: 7573 + pos: -88.5,8.5 + parent: 2 + - uid: 2750 components: - type: Transform - pos: -87.5,-5.5 - parent: 89 - - uid: 7574 + pos: -84.5,3.5 + parent: 2 + - uid: 2751 components: - type: Transform - pos: -87.5,-4.5 - parent: 89 - - uid: 17763 + pos: -84.5,2.5 + parent: 2 + - uid: 2752 components: - type: Transform - pos: -81.5,-23.5 - parent: 89 - - uid: 17764 + pos: -67.5,15.5 + parent: 2 + - uid: 2753 components: - type: Transform - pos: -81.5,-24.5 - parent: 89 - - uid: 17765 + pos: -67.5,14.5 + parent: 2 + - uid: 2754 components: - type: Transform - pos: -81.5,-25.5 - parent: 89 - - uid: 17766 + pos: -67.5,13.5 + parent: 2 + - uid: 2755 components: - type: Transform - pos: -80.5,-23.5 - parent: 89 - - uid: 17767 + pos: -67.5,12.5 + parent: 2 + - uid: 2756 components: - type: Transform - pos: -80.5,-24.5 - parent: 89 - - uid: 17768 + pos: -67.5,11.5 + parent: 2 + - uid: 2757 components: - type: Transform - pos: -80.5,-25.5 - parent: 89 - - uid: 17769 + pos: -67.5,10.5 + parent: 2 + - uid: 2758 components: - type: Transform - pos: -79.5,-23.5 - parent: 89 - - uid: 17770 + pos: -67.5,9.5 + parent: 2 + - uid: 2759 components: - type: Transform - pos: -79.5,-24.5 - parent: 89 - - uid: 17771 + pos: -67.5,8.5 + parent: 2 + - uid: 2760 components: - type: Transform - pos: -79.5,-25.5 - parent: 89 - - uid: 18254 + pos: -66.5,9.5 + parent: 2 + - uid: 2761 components: - type: Transform - pos: -90.5,-23.5 - parent: 89 - - uid: 18255 + pos: -65.5,9.5 + parent: 2 + - uid: 2762 components: - type: Transform - pos: -90.5,-24.5 - parent: 89 - - uid: 18256 + pos: -64.5,9.5 + parent: 2 + - uid: 2763 components: - type: Transform - pos: -90.5,-25.5 - parent: 89 - - uid: 18257 + pos: -63.5,9.5 + parent: 2 + - uid: 2764 components: - type: Transform - pos: -88.5,-23.5 - parent: 89 - - uid: 18258 + pos: -66.5,13.5 + parent: 2 + - uid: 2765 components: - type: Transform - pos: -88.5,-24.5 - parent: 89 - - uid: 18259 + pos: -65.5,13.5 + parent: 2 + - uid: 2766 components: - type: Transform - pos: -88.5,-25.5 - parent: 89 - - uid: 18260 + pos: -64.5,13.5 + parent: 2 + - uid: 2767 components: - type: Transform - pos: -86.5,-25.5 - parent: 89 - - uid: 18261 + pos: -63.5,13.5 + parent: 2 + - uid: 2768 components: - type: Transform - pos: -86.5,-24.5 - parent: 89 - - uid: 18262 + pos: -62.5,13.5 + parent: 2 + - uid: 2769 components: - type: Transform - pos: -86.5,-23.5 - parent: 89 - - uid: 18263 + pos: -61.5,13.5 + parent: 2 + - uid: 2770 components: - type: Transform - pos: -94.5,-23.5 - parent: 89 - - uid: 18264 + pos: -60.5,13.5 + parent: 2 + - uid: 2771 components: - type: Transform - pos: -94.5,-24.5 - parent: 89 - - uid: 18265 + pos: -59.5,13.5 + parent: 2 + - uid: 2772 components: - type: Transform - pos: -94.5,-25.5 - parent: 89 - - uid: 18266 + pos: -58.5,13.5 + parent: 2 + - uid: 2773 components: - type: Transform - pos: -96.5,-25.5 - parent: 89 - - uid: 18267 + pos: -57.5,13.5 + parent: 2 + - uid: 2774 components: - type: Transform - pos: -96.5,-24.5 - parent: 89 - - uid: 18268 + pos: -56.5,13.5 + parent: 2 + - uid: 2775 components: - type: Transform - pos: -96.5,-23.5 - parent: 89 -- proto: AtmosFixFreezerMarker - entities: - - uid: 17632 + pos: -55.5,13.5 + parent: 2 + - uid: 2776 components: - type: Transform - pos: -15.5,-9.5 - parent: 89 - - uid: 17726 + pos: -54.5,13.5 + parent: 2 + - uid: 2777 components: - type: Transform - pos: -15.5,-8.5 - parent: 89 - - uid: 17727 + pos: -59.5,12.5 + parent: 2 + - uid: 2778 components: - type: Transform - pos: -14.5,-8.5 - parent: 89 - - uid: 17728 + pos: -59.5,11.5 + parent: 2 + - uid: 2779 components: - type: Transform - pos: -14.5,-9.5 - parent: 89 - - uid: 17729 + pos: -59.5,10.5 + parent: 2 + - uid: 2780 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 17730 + pos: -59.5,9.5 + parent: 2 + - uid: 2781 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 17734 + pos: -59.5,8.5 + parent: 2 + - uid: 2782 components: - type: Transform - pos: -12.5,-8.5 - parent: 89 - - uid: 17735 + pos: -68.5,9.5 + parent: 2 + - uid: 2783 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 17736 + pos: -69.5,9.5 + parent: 2 + - uid: 2784 components: - type: Transform - pos: -13.5,-9.5 - parent: 89 - - uid: 17737 + pos: -70.5,9.5 + parent: 2 + - uid: 2785 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 17738 + pos: -71.5,9.5 + parent: 2 + - uid: 2786 components: - type: Transform - pos: -13.5,-8.5 - parent: 89 - - uid: 17746 + pos: -72.5,9.5 + parent: 2 + - uid: 2787 components: - type: Transform - pos: -12.5,-9.5 - parent: 89 - - uid: 22547 + pos: -73.5,9.5 + parent: 2 + - uid: 2788 components: - type: Transform - pos: -7.5,-36.5 - parent: 89 - - uid: 22548 + pos: -74.5,9.5 + parent: 2 + - uid: 2789 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 22549 + pos: -72.5,8.5 + parent: 2 + - uid: 2790 components: - type: Transform - pos: -7.5,-34.5 - parent: 89 - - uid: 22550 + pos: -80.5,9.5 + parent: 2 + - uid: 2791 components: - type: Transform - pos: -6.5,-34.5 - parent: 89 - - uid: 22551 + pos: -80.5,8.5 + parent: 2 + - uid: 2792 components: - type: Transform - pos: -6.5,-35.5 - parent: 89 - - uid: 22552 + pos: -79.5,8.5 + parent: 2 + - uid: 2793 components: - type: Transform - pos: -6.5,-36.5 - parent: 89 - - uid: 22553 + pos: -78.5,8.5 + parent: 2 + - uid: 2794 components: - type: Transform - pos: -5.5,-36.5 - parent: 89 - - uid: 22554 + pos: -78.5,9.5 + parent: 2 + - uid: 2795 components: - type: Transform - pos: -5.5,-35.5 - parent: 89 - - uid: 22555 + pos: -78.5,10.5 + parent: 2 + - uid: 2796 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - uid: 22556 + pos: -72.5,10.5 + parent: 2 + - uid: 2797 components: - type: Transform - pos: -4.5,-34.5 - parent: 89 - - uid: 22557 + pos: -72.5,11.5 + parent: 2 + - uid: 2798 components: - type: Transform - pos: -4.5,-35.5 - parent: 89 - - uid: 22558 + pos: -72.5,12.5 + parent: 2 + - uid: 2799 components: - type: Transform - pos: -4.5,-36.5 - parent: 89 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 17744 + pos: -72.5,13.5 + parent: 2 + - uid: 2800 components: - type: Transform - pos: -98.5,-25.5 - parent: 89 - - uid: 17745 + pos: -72.5,14.5 + parent: 2 + - uid: 2801 components: - type: Transform - pos: -98.5,-24.5 - parent: 89 - - uid: 17747 + pos: -72.5,15.5 + parent: 2 + - uid: 2802 components: - type: Transform - pos: -98.5,-23.5 - parent: 89 - - uid: 23132 + pos: -72.5,16.5 + parent: 2 + - uid: 2803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-10.5 - parent: 22565 - - uid: 23133 + pos: -72.5,17.5 + parent: 2 + - uid: 2804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 - - uid: 23134 + pos: -71.5,17.5 + parent: 2 + - uid: 2805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 -- proto: AtmosFixOxygenMarker - entities: - - uid: 17751 + pos: -70.5,17.5 + parent: 2 + - uid: 2806 components: - type: Transform - pos: -100.5,-23.5 - parent: 89 - - uid: 17752 + pos: -69.5,17.5 + parent: 2 + - uid: 2807 components: - type: Transform - pos: -100.5,-24.5 - parent: 89 - - uid: 17753 + pos: -68.5,17.5 + parent: 2 + - uid: 2808 components: - type: Transform - pos: -100.5,-25.5 - parent: 89 - - uid: 23135 + pos: -67.5,17.5 + parent: 2 + - uid: 2809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 22565 - - uid: 23136 + pos: -66.5,17.5 + parent: 2 + - uid: 2810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 22565 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 17760 + pos: -65.5,17.5 + parent: 2 + - uid: 2811 components: - type: Transform - pos: -92.5,-23.5 - parent: 89 - - uid: 17761 + pos: -64.5,17.5 + parent: 2 + - uid: 2812 components: - type: Transform - pos: -92.5,-24.5 - parent: 89 - - uid: 17762 + pos: -63.5,17.5 + parent: 2 + - uid: 2813 components: - type: Transform - pos: -92.5,-25.5 - parent: 89 -- proto: Autolathe - entities: - - uid: 45 + pos: -62.5,17.5 + parent: 2 + - uid: 2814 components: - type: Transform - pos: -16.5,-18.5 - parent: 89 - - uid: 4239 + pos: -61.5,17.5 + parent: 2 + - uid: 2815 components: - type: Transform - pos: -64.5,-4.5 - parent: 89 - - uid: 6909 + pos: -60.5,17.5 + parent: 2 + - uid: 2816 components: - type: Transform - pos: -103.5,-5.5 - parent: 89 - - uid: 7076 + pos: -59.5,17.5 + parent: 2 + - uid: 2817 components: - type: Transform - pos: -90.5,14.5 - parent: 89 - - uid: 23137 + pos: -58.5,17.5 + parent: 2 + - uid: 2818 components: - type: Transform - pos: 3.5,2.5 - parent: 22565 - - uid: 23138 + pos: -57.5,17.5 + parent: 2 + - uid: 2819 components: - type: Transform - pos: -27.5,2.5 - parent: 22565 -- proto: BalloonCorgi - entities: - - uid: 18047 + pos: -56.5,17.5 + parent: 2 + - uid: 2820 components: - type: Transform - pos: 1.3953991,-34.48816 - parent: 89 -- proto: BalloonSyn - entities: - - uid: 10770 + pos: -55.5,17.5 + parent: 2 + - uid: 2821 components: - type: Transform - pos: 31.830946,31.551973 - parent: 89 - - uid: 10779 + pos: -54.5,17.5 + parent: 2 + - uid: 2822 components: - type: Transform - pos: 27.481878,40.471504 - parent: 89 - - uid: 20932 + pos: -52.5,29.5 + parent: 2 + - uid: 2823 components: - type: Transform - pos: -51.44482,29.548405 - parent: 89 -- proto: BananaSeeds - entities: - - uid: 5346 + pos: -51.5,29.5 + parent: 2 + - uid: 2824 components: - type: Transform - pos: 31.440456,-5.666168 - parent: 89 -- proto: BannerCargo - entities: - - uid: 5775 + pos: -51.5,30.5 + parent: 2 + - uid: 2825 components: - type: Transform - pos: -67.5,-4.5 - parent: 89 - - uid: 5818 + pos: -51.5,31.5 + parent: 2 + - uid: 2826 components: - type: Transform - pos: -70.5,-7.5 - parent: 89 - - uid: 5819 + pos: -58.5,31.5 + parent: 2 + - uid: 2827 components: - type: Transform - pos: -55.5,-10.5 - parent: 89 - - uid: 5820 + pos: -58.5,30.5 + parent: 2 + - uid: 2828 components: - type: Transform - pos: -67.5,-2.5 - parent: 89 - - uid: 5821 + pos: -58.5,29.5 + parent: 2 + - uid: 2829 components: - type: Transform - pos: -58.5,-2.5 - parent: 89 - - uid: 5822 + pos: -57.5,29.5 + parent: 2 + - uid: 2830 components: - type: Transform - pos: -58.5,-4.5 - parent: 89 - - uid: 5824 + pos: -56.5,29.5 + parent: 2 + - uid: 2831 components: - type: Transform - pos: -74.5,-17.5 - parent: 89 -- proto: BannerEngineering - entities: - - uid: 7177 + pos: -59.5,31.5 + parent: 2 + - uid: 2832 components: - type: Transform - pos: -105.5,-5.5 - parent: 89 - - uid: 7178 + pos: -60.5,31.5 + parent: 2 + - uid: 2833 components: - type: Transform - pos: -95.5,6.5 - parent: 89 - - uid: 7179 + pos: -61.5,31.5 + parent: 2 + - uid: 2834 components: - type: Transform - pos: -95.5,9.5 - parent: 89 - - uid: 9240 + pos: -62.5,31.5 + parent: 2 + - uid: 2835 components: - type: Transform - pos: -119.5,8.5 - parent: 89 - - uid: 9241 + pos: -63.5,31.5 + parent: 2 + - uid: 2836 components: - type: Transform - pos: -119.5,-0.5 - parent: 89 -- proto: BannerNanotrasen - entities: - - uid: 1974 + pos: -64.5,31.5 + parent: 2 + - uid: 2837 components: - type: Transform - pos: 30.5,16.5 - parent: 89 - - uid: 2130 + pos: -65.5,31.5 + parent: 2 + - uid: 2838 components: - type: Transform - pos: 38.5,16.5 - parent: 89 - - uid: 2135 + pos: -65.5,30.5 + parent: 2 + - uid: 2839 components: - type: Transform - pos: 44.5,2.5 - parent: 89 - - uid: 2139 + pos: -65.5,29.5 + parent: 2 + - uid: 2840 components: - type: Transform - pos: 38.5,11.5 - parent: 89 - - uid: 2142 + pos: -65.5,28.5 + parent: 2 + - uid: 2841 components: - type: Transform - pos: 62.5,9.5 - parent: 89 - - uid: 2145 + pos: -65.5,27.5 + parent: 2 + - uid: 2842 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 2168 + pos: -65.5,26.5 + parent: 2 + - uid: 2843 components: - type: Transform - pos: 30.5,11.5 - parent: 89 - - uid: 6162 + pos: -65.5,25.5 + parent: 2 + - uid: 2844 components: - type: Transform - pos: -16.5,5.5 - parent: 89 - - uid: 6817 + pos: -65.5,32.5 + parent: 2 + - uid: 2845 components: - type: Transform - pos: -45.5,-0.5 - parent: 89 - - uid: 8167 + pos: -65.5,33.5 + parent: 2 + - uid: 2846 components: - type: Transform - pos: -60.5,10.5 - parent: 89 - - uid: 8171 + pos: -65.5,34.5 + parent: 2 + - uid: 2847 components: - type: Transform - pos: -63.5,22.5 - parent: 89 - - uid: 10562 + pos: -65.5,35.5 + parent: 2 + - uid: 2848 components: - type: Transform - pos: -84.5,14.5 - parent: 89 -- proto: BannerScience - entities: - - uid: 2080 + pos: -65.5,36.5 + parent: 2 + - uid: 2849 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 2081 + pos: -65.5,37.5 + parent: 2 + - uid: 2850 components: - type: Transform - pos: -3.5,-17.5 - parent: 89 - - uid: 2082 + pos: -65.5,38.5 + parent: 2 + - uid: 2851 components: - type: Transform - pos: 0.5,-17.5 - parent: 89 - - uid: 2084 + pos: -65.5,39.5 + parent: 2 + - uid: 2852 components: - type: Transform - pos: -9.5,-23.5 - parent: 89 - - uid: 2087 + pos: -65.5,40.5 + parent: 2 + - uid: 2853 components: - type: Transform - pos: -5.5,-38.5 - parent: 89 - - uid: 2088 + pos: -65.5,41.5 + parent: 2 + - uid: 2854 components: - type: Transform - pos: -4.5,-34.5 - parent: 89 - - uid: 8395 + pos: -65.5,42.5 + parent: 2 + - uid: 2855 components: - type: Transform - pos: -4.5,-36.5 - parent: 89 -- proto: BannerSecurity - entities: - - uid: 6177 + pos: -65.5,43.5 + parent: 2 + - uid: 2856 components: - type: Transform - pos: -16.5,9.5 - parent: 89 -- proto: BannerSyndicate - entities: - - uid: 3408 + pos: -65.5,44.5 + parent: 2 + - uid: 2857 components: - type: Transform - pos: -89.5,26.5 - parent: 89 -- proto: Barricade - entities: - - uid: 6228 + pos: -65.5,45.5 + parent: 2 + - uid: 2858 components: - type: Transform - pos: -128.5,-7.5 - parent: 89 - - uid: 8011 + pos: -65.5,46.5 + parent: 2 + - uid: 2859 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8012 + pos: -65.5,47.5 + parent: 2 + - uid: 2860 components: - type: Transform - pos: 1.5,39.5 - parent: 89 - - uid: 8032 + pos: -59.5,35.5 + parent: 2 + - uid: 2861 components: - type: Transform - pos: -1.5,35.5 - parent: 89 - - uid: 8053 + pos: -59.5,36.5 + parent: 2 + - uid: 2862 components: - type: Transform - pos: -7.5,34.5 - parent: 89 - - uid: 8175 + pos: -59.5,37.5 + parent: 2 + - uid: 2863 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8908 + pos: -59.5,38.5 + parent: 2 + - uid: 2864 components: - type: Transform - pos: -133.5,-4.5 - parent: 89 - - uid: 8912 + pos: -59.5,39.5 + parent: 2 + - uid: 2865 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - uid: 8927 + pos: -59.5,40.5 + parent: 2 + - uid: 2866 components: - type: Transform - pos: -128.5,-6.5 - parent: 89 - - uid: 9182 + pos: -59.5,41.5 + parent: 2 + - uid: 2867 components: - type: Transform - pos: 32.5,-16.5 - parent: 89 - - uid: 14546 + pos: -59.5,43.5 + parent: 2 + - uid: 2868 components: - type: Transform - pos: -125.5,20.5 - parent: 89 - - uid: 14591 + pos: -59.5,42.5 + parent: 2 + - uid: 2869 components: - type: Transform - pos: -125.5,21.5 - parent: 89 - - uid: 14785 + pos: -59.5,44.5 + parent: 2 + - uid: 2870 components: - type: Transform - pos: -53.5,32.5 - parent: 89 - - uid: 14811 + pos: -60.5,44.5 + parent: 2 + - uid: 2871 components: - type: Transform - pos: -46.5,21.5 - parent: 89 - - uid: 14815 + pos: -61.5,44.5 + parent: 2 + - uid: 2872 components: - type: Transform - pos: -47.5,21.5 - parent: 89 - - uid: 14816 + pos: -62.5,44.5 + parent: 2 + - uid: 2873 components: - type: Transform - pos: -48.5,21.5 - parent: 89 - - uid: 14860 + pos: -63.5,44.5 + parent: 2 + - uid: 2874 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 14861 + pos: -64.5,44.5 + parent: 2 + - uid: 2875 components: - type: Transform - pos: -77.5,14.5 - parent: 89 - - uid: 14863 + pos: -66.5,47.5 + parent: 2 + - uid: 2876 components: - type: Transform - pos: -78.5,11.5 - parent: 89 - - uid: 14864 + pos: -59.5,34.5 + parent: 2 + - uid: 2877 components: - type: Transform - pos: -11.5,-28.5 - parent: 89 - - uid: 14895 + pos: -58.5,35.5 + parent: 2 + - uid: 2878 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 14896 + pos: -57.5,35.5 + parent: 2 + - uid: 2879 components: - type: Transform - pos: -11.5,-33.5 - parent: 89 - - uid: 14938 + pos: -56.5,35.5 + parent: 2 + - uid: 2880 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 21524 + pos: -56.5,36.5 + parent: 2 + - uid: 2881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,23.5 - parent: 89 - - uid: 23139 + pos: -56.5,37.5 + parent: 2 + - uid: 2882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 22565 -- proto: BarricadeBlock - entities: - - uid: 10450 + pos: -56.5,38.5 + parent: 2 + - uid: 2883 components: - type: Transform - pos: -2.5,28.5 - parent: 89 - - uid: 23140 + pos: -56.5,39.5 + parent: 2 + - uid: 2884 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 - - uid: 23141 + pos: -56.5,40.5 + parent: 2 + - uid: 2885 components: - type: Transform - pos: 0.5,11.5 - parent: 22565 - - uid: 25686 + pos: -56.5,41.5 + parent: 2 + - uid: 2886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 89 -- proto: BarricadeDirectional - entities: - - uid: 3260 + pos: -56.5,42.5 + parent: 2 + - uid: 2887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 89 - - uid: 3389 + pos: -56.5,43.5 + parent: 2 + - uid: 2888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 89 - - uid: 8461 + pos: -56.5,44.5 + parent: 2 + - uid: 2889 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 23142 + pos: -56.5,45.5 + parent: 2 + - uid: 2890 components: - type: Transform - pos: 3.5,8.5 - parent: 22565 - - uid: 23143 + pos: -56.5,46.5 + parent: 2 + - uid: 2891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 22565 - - uid: 23144 + pos: -56.5,47.5 + parent: 2 + - uid: 2892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 22565 - - uid: 25685 + pos: -56.5,48.5 + parent: 2 + - uid: 2893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 89 - - uid: 25687 + pos: -58.5,44.5 + parent: 2 + - uid: 2894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 89 -- proto: BarSign - entities: - - uid: 82 + pos: -58.5,45.5 + parent: 2 + - uid: 2895 components: - type: Transform - pos: -25.5,0.5 - parent: 89 -- proto: BaseBallBat - entities: - - uid: 3254 + pos: -58.5,46.5 + parent: 2 + - uid: 2896 components: - type: Transform - pos: -34.46009,24.006712 - parent: 89 - - uid: 18211 + pos: -58.5,47.5 + parent: 2 + - uid: 2897 components: - type: Transform - pos: -29.434896,-19.43375 - parent: 89 - - uid: 23145 + pos: -58.5,48.5 + parent: 2 + - uid: 2898 components: - type: Transform - pos: 3.7139354,11.511048 - parent: 22565 - - uid: 23146 + pos: -55.5,44.5 + parent: 2 + - uid: 2899 components: - type: Transform - pos: 4.5576854,11.448548 - parent: 22565 -- proto: BassGuitarInstrument - entities: - - uid: 4884 + pos: -54.5,44.5 + parent: 2 + - uid: 2900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.462486,-1.5650146 - parent: 89 -- proto: Beaker - entities: - - uid: 19587 + pos: -53.5,44.5 + parent: 2 + - uid: 2901 components: - type: Transform - pos: -1.8334813,-41.39243 - parent: 89 - - uid: 20360 + pos: -52.5,44.5 + parent: 2 + - uid: 2902 components: - type: Transform - pos: 46.722706,-26.49298 - parent: 89 - - uid: 21771 + pos: -51.5,44.5 + parent: 2 + - uid: 2903 components: - type: Transform - pos: 46.410206,-26.508604 - parent: 89 -- proto: Bed - entities: - - uid: 2990 + pos: -55.5,40.5 + parent: 2 + - uid: 2904 components: - type: Transform - pos: 28.5,-14.5 - parent: 89 - - uid: 2991 + pos: -54.5,40.5 + parent: 2 + - uid: 2905 components: - type: Transform - pos: 25.5,-14.5 - parent: 89 - - uid: 2993 + pos: -53.5,40.5 + parent: 2 + - uid: 2906 components: - type: Transform - pos: 22.5,-14.5 - parent: 89 - - uid: 2994 + pos: -52.5,40.5 + parent: 2 + - uid: 2907 components: - type: Transform - pos: 19.5,-14.5 - parent: 89 - - uid: 3547 + pos: -51.5,40.5 + parent: 2 + - uid: 2908 components: - type: Transform - pos: -56.5,7.5 - parent: 89 - - uid: 4187 + pos: -55.5,35.5 + parent: 2 + - uid: 2909 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 - - uid: 4188 + pos: -54.5,35.5 + parent: 2 + - uid: 2910 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 - - uid: 4189 + pos: -53.5,35.5 + parent: 2 + - uid: 2911 components: - type: Transform - pos: -31.5,-2.5 - parent: 89 - - uid: 4253 + pos: -52.5,35.5 + parent: 2 + - uid: 2912 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 5471 + pos: -52.5,36.5 + parent: 2 + - uid: 2913 components: - type: Transform - pos: -46.5,-7.5 - parent: 89 - - uid: 5793 + pos: -64.5,25.5 + parent: 2 + - uid: 2914 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 - - uid: 6608 + pos: -63.5,25.5 + parent: 2 + - uid: 2915 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 - - uid: 6895 + pos: -62.5,25.5 + parent: 2 + - uid: 2916 components: - type: Transform - pos: -101.5,10.5 - parent: 89 - - uid: 7098 + pos: -61.5,25.5 + parent: 2 + - uid: 2917 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 - - uid: 7114 + pos: -60.5,25.5 + parent: 2 + - uid: 2918 components: - type: Transform - pos: 46.5,13.5 - parent: 89 - - uid: 7877 + pos: -59.5,25.5 + parent: 2 + - uid: 2919 components: - type: Transform - pos: 3.5,36.5 - parent: 89 - - uid: 9017 + pos: -58.5,25.5 + parent: 2 + - uid: 2920 components: - type: Transform - pos: 12.5,37.5 - parent: 89 - - uid: 10011 + pos: -57.5,25.5 + parent: 2 + - uid: 2921 components: - type: Transform - pos: -50.5,41.5 - parent: 89 - - uid: 10012 + pos: -56.5,25.5 + parent: 2 + - uid: 2922 components: - type: Transform - pos: -50.5,45.5 - parent: 89 - - uid: 10137 + pos: -55.5,48.5 + parent: 2 + - uid: 2923 components: - type: Transform - pos: -25.5,23.5 - parent: 89 - - uid: 10138 + pos: -120.5,-7.5 + parent: 2 + - uid: 2924 components: - type: Transform - pos: -25.5,27.5 - parent: 89 - - uid: 10139 + pos: -119.5,-7.5 + parent: 2 + - uid: 2925 components: - type: Transform - pos: -25.5,31.5 - parent: 89 - - uid: 10140 + pos: -118.5,-7.5 + parent: 2 + - uid: 2926 components: - type: Transform - pos: -32.5,33.5 - parent: 89 - - uid: 10141 + pos: -117.5,-7.5 + parent: 2 + - uid: 2927 components: - type: Transform - pos: -32.5,29.5 - parent: 89 - - uid: 10142 + pos: -116.5,-7.5 + parent: 2 + - uid: 2928 components: - type: Transform - pos: -32.5,25.5 - parent: 89 - - uid: 10289 + pos: -75.5,0.5 + parent: 2 + - uid: 2929 components: - type: Transform - pos: -39.5,32.5 - parent: 89 - - uid: 10293 + pos: -74.5,0.5 + parent: 2 + - uid: 2930 components: - type: Transform - pos: -40.5,32.5 - parent: 89 - - uid: 10362 + pos: -64.5,6.5 + parent: 2 + - uid: 2931 components: - type: Transform - pos: -19.5,32.5 - parent: 89 - - uid: 10363 + pos: -64.5,5.5 + parent: 2 + - uid: 2932 components: - type: Transform - pos: -20.5,32.5 - parent: 89 - - uid: 15069 + pos: -64.5,4.5 + parent: 2 + - uid: 2933 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 15505 + pos: -65.5,4.5 + parent: 2 + - uid: 2934 components: - type: Transform - pos: 14.5,37.5 - parent: 89 - - uid: 16164 + pos: -66.5,4.5 + parent: 2 + - uid: 2935 components: - type: Transform - pos: 21.5,23.5 - parent: 89 - - uid: 16279 + pos: -67.5,4.5 + parent: 2 + - uid: 2936 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16280 + pos: -68.5,4.5 + parent: 2 + - uid: 2937 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 17877 + pos: -69.5,4.5 + parent: 2 + - uid: 2938 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 19913 + pos: -70.5,4.5 + parent: 2 + - uid: 2939 components: - type: Transform - pos: 25.5,43.5 - parent: 89 -- proto: BedsheetBlack - entities: - - uid: 5476 + pos: -71.5,4.5 + parent: 2 + - uid: 2940 components: - type: Transform - pos: -46.5,-7.5 - parent: 89 -- proto: BedsheetBlue - entities: - - uid: 3199 + pos: -72.5,4.5 + parent: 2 + - uid: 2941 components: - type: Transform - pos: 21.5,23.5 - parent: 89 -- proto: BedsheetCaptain - entities: - - uid: 6948 + pos: -73.5,4.5 + parent: 2 + - uid: 2942 components: - type: Transform - pos: 46.5,13.5 - parent: 89 -- proto: BedsheetCE - entities: - - uid: 6896 + pos: -74.5,4.5 + parent: 2 + - uid: 2943 components: - type: Transform - pos: -101.5,10.5 - parent: 89 -- proto: BedsheetCentcom - entities: - - uid: 10182 + pos: -75.5,4.5 + parent: 2 + - uid: 2944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 89 -- proto: BedsheetClown - entities: - - uid: 4191 + pos: -76.5,4.5 + parent: 2 + - uid: 2945 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 -- proto: BedsheetCMO - entities: - - uid: 19914 + pos: -77.5,4.5 + parent: 2 + - uid: 2946 components: - type: Transform - pos: 25.5,43.5 - parent: 89 -- proto: BedsheetCosmos - entities: - - uid: 10181 + pos: -78.5,4.5 + parent: 2 + - uid: 2947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,27.5 - parent: 89 -- proto: BedsheetGreen - entities: - - uid: 16180 + pos: -62.5,4.5 + parent: 2 + - uid: 2948 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 16186 + pos: -63.5,4.5 + parent: 2 + - uid: 2949 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16277 + pos: -61.5,4.5 + parent: 2 + - uid: 2950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 89 - - uid: 16278 + pos: -60.5,4.5 + parent: 2 + - uid: 2951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,37.5 - parent: 89 -- proto: BedsheetHOP - entities: - - uid: 17743 + pos: -59.5,4.5 + parent: 2 + - uid: 2952 components: - type: Transform - pos: 41.5,14.5 - parent: 89 -- proto: BedsheetHOS - entities: - - uid: 6077 + pos: -58.5,4.5 + parent: 2 + - uid: 2953 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 -- proto: BedsheetIan - entities: - - uid: 4255 + pos: -57.5,4.5 + parent: 2 + - uid: 2954 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 10196 + pos: -56.5,4.5 + parent: 2 + - uid: 2955 components: - type: Transform - pos: -32.5,29.5 - parent: 89 -- proto: BedsheetMedical - entities: - - uid: 16764 + pos: -55.5,4.5 + parent: 2 + - uid: 2956 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 16765 + pos: -54.5,4.5 + parent: 2 + - uid: 2957 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 16770 + pos: -53.5,4.5 + parent: 2 + - uid: 2958 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 16772 + pos: -55.5,3.5 + parent: 2 + - uid: 2959 components: - type: Transform - pos: 3.5,21.5 - parent: 89 -- proto: BedsheetMime - entities: - - uid: 4190 + pos: -55.5,2.5 + parent: 2 + - uid: 2960 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 -- proto: BedsheetOrange - entities: - - uid: 6027 + pos: -55.5,1.5 + parent: 2 + - uid: 2961 components: - type: Transform - pos: 28.5,-14.5 - parent: 89 - - uid: 6028 + pos: -55.5,0.5 + parent: 2 + - uid: 2962 components: - type: Transform - pos: 25.5,-14.5 - parent: 89 - - uid: 6030 + pos: -55.5,-0.5 + parent: 2 + - uid: 2963 components: - type: Transform - pos: 22.5,-14.5 - parent: 89 -- proto: BedsheetPurple - entities: - - uid: 17598 + pos: -55.5,-1.5 + parent: 2 + - uid: 2964 components: - type: Transform - pos: 21.5,17.5 - parent: 89 -- proto: BedsheetQM - entities: - - uid: 2983 + pos: -55.5,-2.5 + parent: 2 + - uid: 2965 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 -- proto: BedsheetRD - entities: - - uid: 7049 + pos: -56.5,-0.5 + parent: 2 + - uid: 2966 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 -- proto: BedsheetSpawner - entities: - - uid: 5739 + pos: -57.5,-0.5 + parent: 2 + - uid: 2967 components: - type: Transform - pos: -31.5,-2.5 - parent: 89 - - uid: 6017 + pos: -58.5,-0.5 + parent: 2 + - uid: 2968 components: - type: Transform - pos: -56.5,7.5 - parent: 89 - - uid: 10013 + pos: -59.5,-0.5 + parent: 2 + - uid: 2969 components: - type: Transform - pos: -50.5,41.5 - parent: 89 - - uid: 10014 + pos: -60.5,-0.5 + parent: 2 + - uid: 2970 components: - type: Transform - pos: -50.5,45.5 - parent: 89 - - uid: 23147 + pos: -61.5,-0.5 + parent: 2 + - uid: 2971 components: - type: Transform - pos: -35.5,6.5 - parent: 22565 - - uid: 23148 + pos: -62.5,-0.5 + parent: 2 + - uid: 2972 components: - type: Transform - pos: -35.5,8.5 - parent: 22565 - - uid: 23149 + pos: -63.5,-0.5 + parent: 2 + - uid: 2973 components: - type: Transform - pos: -35.5,12.5 - parent: 22565 - - uid: 23150 + pos: -64.5,-0.5 + parent: 2 + - uid: 2974 components: - type: Transform - pos: 11.5,6.5 - parent: 22565 - - uid: 23151 + pos: -65.5,-0.5 + parent: 2 + - uid: 2975 components: - type: Transform - pos: 11.5,8.5 - parent: 22565 - - uid: 23152 + pos: -66.5,-0.5 + parent: 2 + - uid: 2976 components: - type: Transform - pos: 11.5,12.5 - parent: 22565 -- proto: BedsheetSyndie - entities: - - uid: 6038 + pos: -67.5,-0.5 + parent: 2 + - uid: 2977 components: - type: Transform - pos: 19.5,-14.5 - parent: 89 -- proto: BedsheetUSA - entities: - - uid: 10183 + pos: -68.5,-0.5 + parent: 2 + - uid: 2978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 89 -- proto: BedsheetWhite - entities: - - uid: 10364 + pos: -69.5,-0.5 + parent: 2 + - uid: 2979 components: - type: Transform - pos: -19.5,32.5 - parent: 89 - - uid: 10365 + pos: -70.5,-0.5 + parent: 2 + - uid: 2980 components: - type: Transform - pos: -20.5,32.5 - parent: 89 -- proto: BedsheetWiz - entities: - - uid: 10209 + pos: -70.5,-1.5 + parent: 2 + - uid: 2981 components: - type: Transform - pos: -32.5,25.5 - parent: 89 -- proto: BedsheetYellow - entities: - - uid: 10219 + pos: -70.5,0.5 + parent: 2 + - uid: 2982 components: - type: Transform - pos: -25.5,23.5 - parent: 89 -- proto: BigBox - entities: - - uid: 20805 + pos: -70.5,1.5 + parent: 2 + - uid: 2983 components: - type: Transform - pos: -27.541355,52.552795 - parent: 89 -- proto: BiomassReclaimer - entities: - - uid: 8510 + pos: -70.5,2.5 + parent: 2 + - uid: 2984 components: - type: Transform - pos: 6.5,18.5 - parent: 89 -- proto: BlastDoor - entities: - - uid: 246 + pos: -59.5,-1.5 + parent: 2 + - uid: 2985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-42.5 - parent: 89 - - type: DeviceLinkSink - links: - - 5413 - - uid: 254 + pos: -66.5,-1.5 + parent: 2 + - uid: 2986 components: - type: Transform - pos: -6.5,-46.5 - parent: 89 - - type: DeviceLinkSink - links: - - 1284 - - uid: 259 + pos: -66.5,0.5 + parent: 2 + - uid: 2987 components: - type: Transform - pos: -120.5,-6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 260 + pos: -59.5,0.5 + parent: 2 + - uid: 2988 components: - type: Transform - pos: 1.5,-46.5 - parent: 89 - - type: DeviceLinkSink - links: - - 1283 - - uid: 2200 + pos: -41.5,3.5 + parent: 2 + - uid: 2989 components: - type: Transform - pos: 30.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9413 - - uid: 2295 + pos: -42.5,3.5 + parent: 2 + - uid: 2990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-24.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2627 - - 2626 - - uid: 4720 + pos: -43.5,3.5 + parent: 2 + - uid: 2991 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 9420 - - uid: 4735 + pos: -44.5,3.5 + parent: 2 + - uid: 2992 components: - type: Transform - pos: -56.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 4736 + pos: -45.5,3.5 + parent: 2 + - uid: 2993 components: - type: Transform - pos: -55.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 4794 + pos: -46.5,3.5 + parent: 2 + - uid: 2994 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 9420 - - uid: 4795 + pos: -47.5,3.5 + parent: 2 + - uid: 2995 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 4798 - - uid: 4797 + pos: -40.5,2.5 + parent: 2 + - uid: 2996 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 4798 - - uid: 4856 + pos: -40.5,1.5 + parent: 2 + - uid: 2997 components: - type: Transform - pos: -54.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 5430 + pos: -40.5,0.5 + parent: 2 + - uid: 2998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-42.5 - parent: 89 - - type: DeviceLinkSink - links: - - 16804 - - uid: 6306 + pos: -40.5,-0.5 + parent: 2 + - uid: 2999 components: - type: Transform - pos: 25.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7159 - - uid: 8821 + pos: -41.5,-0.5 + parent: 2 + - uid: 3000 components: - type: Transform - pos: -120.5,-8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 8822 + pos: -42.5,-0.5 + parent: 2 + - uid: 3001 components: - type: Transform - pos: -120.5,-7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 8825 + pos: -43.5,-0.5 + parent: 2 + - uid: 3002 components: - type: Transform - pos: -120.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 23153 + pos: -44.5,-0.5 + parent: 2 + - uid: 3003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23154 + pos: -44.5,0.5 + parent: 2 + - uid: 3004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23155 + pos: -46.5,-5.5 + parent: 2 + - uid: 3005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23156 + pos: -46.5,-6.5 + parent: 2 + - uid: 3006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23157 + pos: -47.5,-5.5 + parent: 2 + - uid: 3007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23158 + pos: -47.5,-4.5 + parent: 2 + - uid: 3008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23159 + pos: -47.5,-3.5 + parent: 2 + - uid: 3009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23160 + pos: -47.5,-2.5 + parent: 2 + - uid: 3010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 -- proto: BlastDoorOpen - entities: - - uid: 8506 + pos: -47.5,-1.5 + parent: 2 + - uid: 3011 components: - type: Transform - pos: -127.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8507 + pos: -47.5,-0.5 + parent: 2 + - uid: 3012 components: - type: Transform - pos: -126.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8508 + pos: -48.5,-1.5 + parent: 2 + - uid: 3013 components: - type: Transform - pos: -125.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8538 + pos: -49.5,-1.5 + parent: 2 + - uid: 3014 components: - type: Transform - pos: -127.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8539 + pos: -50.5,-1.5 + parent: 2 + - uid: 3015 components: - type: Transform - pos: -126.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8540 + pos: -51.5,-1.5 + parent: 2 + - uid: 3016 components: - type: Transform - pos: -125.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 23161 + pos: -51.5,-0.5 + parent: 2 + - uid: 3017 components: - type: Transform - pos: -8.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24814 - - uid: 23162 + pos: -51.5,0.5 + parent: 2 + - uid: 3018 components: - type: Transform - pos: -15.5,10.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24813 - - uid: 23163 + pos: -51.5,-7.5 + parent: 2 + - uid: 3019 components: - type: Transform - pos: -8.5,10.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24814 - - uid: 23164 + pos: -51.5,-6.5 + parent: 2 + - uid: 3020 components: - type: Transform - pos: -15.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24813 - - uid: 23165 + pos: -51.5,-5.5 + parent: 2 + - uid: 3021 components: - type: Transform - pos: -8.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24811 - - uid: 23166 + pos: -51.5,-4.5 + parent: 2 + - uid: 3022 components: - type: Transform - pos: -15.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24812 - - uid: 23167 + pos: -50.5,-4.5 + parent: 2 + - uid: 3023 components: - type: Transform - pos: -15.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24812 - - uid: 23168 + pos: -49.5,-4.5 + parent: 2 + - uid: 3024 components: - type: Transform - pos: -8.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24811 -- proto: BlockGameArcade - entities: - - uid: 14907 + pos: -48.5,-4.5 + parent: 2 + - uid: 3025 components: - type: Transform - pos: -9.5,-34.5 - parent: 89 - - uid: 19483 + pos: -47.5,-6.5 + parent: 2 + - uid: 3026 components: - type: Transform - pos: -58.5,26.5 - parent: 89 -- proto: Bloodpack - entities: - - uid: 20819 + pos: -47.5,-7.5 + parent: 2 + - uid: 3027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.3417411,15.598124 - parent: 89 -- proto: BodyBag_Container - entities: - - uid: 25845 + pos: -46.5,-2.5 + parent: 2 + - uid: 3028 components: - type: Transform - pos: 10.528219,9.687132 - parent: 89 -- proto: BookAtmosAirAlarms - entities: - - uid: 16448 + pos: -45.5,-2.5 + parent: 2 + - uid: 3029 components: - type: Transform - pos: -113.607376,-4.7557926 - parent: 89 -- proto: BookAtmosDistro - entities: - - uid: 16450 + pos: -34.5,17.5 + parent: 2 + - uid: 3030 components: - type: Transform - pos: -113.326126,-4.8182926 - parent: 89 -- proto: BookAtmosVentsMore - entities: - - uid: 16447 + pos: -35.5,17.5 + parent: 2 + - uid: 3031 components: - type: Transform - pos: -113.61827,-4.3182926 - parent: 89 -- proto: BookAtmosWaste - entities: - - uid: 16449 + pos: -36.5,17.5 + parent: 2 + - uid: 3032 components: - type: Transform - pos: -113.290146,-4.3339176 - parent: 89 -- proto: BookBase - entities: - - uid: 15887 + pos: -37.5,17.5 + parent: 2 + - uid: 3033 components: - - type: MetaData - name: Анатомия для чайников - type: Transform - pos: 9.534124,9.582435 - parent: 89 -- proto: BookDetective - entities: - - uid: 12845 + pos: -38.5,17.5 + parent: 2 + - uid: 3034 components: - type: Transform - pos: 18.493877,8.552801 - parent: 89 - - uid: 15458 + pos: -39.5,17.5 + parent: 2 + - uid: 3035 components: - type: Transform - pos: -36.530155,28.398226 - parent: 89 -- proto: BookEscalationSecurity - entities: - - uid: 8358 + pos: -40.5,17.5 + parent: 2 + - uid: 3036 components: - type: Transform - pos: -19.895487,5.6136208 - parent: 89 -- proto: BookRandom - entities: - - uid: 6104 + pos: -41.5,17.5 + parent: 2 + - uid: 3037 components: - type: Transform - pos: -52.542038,8.649527 - parent: 89 - - uid: 6105 + pos: -42.5,17.5 + parent: 2 + - uid: 3038 components: - type: Transform - pos: -52.526413,7.8995266 - parent: 89 - - uid: 6106 + pos: -43.5,17.5 + parent: 2 + - uid: 3039 components: - type: Transform - pos: -56.714577,10.714533 - parent: 89 - - uid: 6107 + pos: -44.5,17.5 + parent: 2 + - uid: 3040 components: - type: Transform - pos: -56.32395,10.714533 - parent: 89 - - uid: 15497 + pos: -45.5,17.5 + parent: 2 + - uid: 3041 components: - type: Transform - pos: -91.549774,5.6631217 - parent: 89 -- proto: BooksBag - entities: - - uid: 2569 + pos: -46.5,17.5 + parent: 2 + - uid: 3042 components: - type: Transform - pos: -55.479183,7.443512 - parent: 89 -- proto: Bookshelf - entities: - - uid: 6031 + pos: -47.5,17.5 + parent: 2 + - uid: 3043 components: - type: Transform - pos: -56.5,10.5 - parent: 89 - - uid: 10377 + pos: -48.5,17.5 + parent: 2 + - uid: 3044 components: - type: Transform - pos: -19.5,26.5 - parent: 89 - - uid: 18358 + pos: -48.5,16.5 + parent: 2 + - uid: 3045 components: - type: Transform - pos: 58.5,-27.5 - parent: 89 -- proto: BookshelfFilled - entities: - - uid: 630 + pos: -48.5,15.5 + parent: 2 + - uid: 3046 components: - type: Transform - pos: -47.5,11.5 - parent: 89 - - uid: 723 + pos: -48.5,14.5 + parent: 2 + - uid: 3047 components: - type: Transform - pos: -50.5,11.5 - parent: 89 - - uid: 725 + pos: -48.5,18.5 + parent: 2 + - uid: 3048 components: - type: Transform - pos: -47.5,9.5 - parent: 89 - - uid: 7147 + pos: -49.5,17.5 + parent: 2 + - uid: 3049 components: - type: Transform - pos: -47.5,8.5 - parent: 89 - - uid: 17074 + pos: -50.5,17.5 + parent: 2 + - uid: 3050 components: - type: Transform - pos: 58.5,-28.5 - parent: 89 - - uid: 17092 + pos: -51.5,17.5 + parent: 2 + - uid: 3051 components: - type: Transform - pos: 58.5,-25.5 - parent: 89 - - uid: 17095 + pos: -21.5,2.5 + parent: 2 + - uid: 3052 components: - type: Transform - pos: 58.5,-26.5 - parent: 89 - - uid: 17935 + pos: -22.5,2.5 + parent: 2 + - uid: 3053 components: - type: Transform - pos: 58.5,-30.5 - parent: 89 - - uid: 18329 + pos: -23.5,2.5 + parent: 2 + - uid: 3054 components: - type: Transform - pos: 58.5,-29.5 - parent: 89 - - uid: 19903 + pos: -24.5,2.5 + parent: 2 + - uid: 3055 components: - type: Transform - pos: 21.5,21.5 - parent: 89 -- proto: BoozeDispenser - entities: - - uid: 57 + pos: -25.5,2.5 + parent: 2 + - uid: 3056 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 - - uid: 7744 + pos: -25.5,3.5 + parent: 2 + - uid: 3057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,45.5 - parent: 89 - - uid: 7752 + pos: -25.5,4.5 + parent: 2 + - uid: 3058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,45.5 - parent: 89 -- proto: BoozeDispenserEmpty - entities: - - uid: 3093 + pos: -25.5,5.5 + parent: 2 + - uid: 3059 components: - type: Transform - pos: -104.5,0.5 - parent: 89 -- proto: BorgCharger - entities: - - uid: 14226 + pos: -25.5,6.5 + parent: 2 + - uid: 3060 components: - type: Transform - pos: -20.5,-20.5 - parent: 89 -- proto: BowImprovised - entities: - - uid: 25644 + pos: -25.5,7.5 + parent: 2 + - uid: 3061 components: - type: Transform - pos: -30.526886,-0.51148224 - parent: 22565 -- proto: BoxBeaker - entities: - - uid: 10415 + pos: -25.5,8.5 + parent: 2 + - uid: 3062 components: - type: Transform - parent: 9799 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17610 + pos: -24.5,8.5 + parent: 2 + - uid: 3063 components: - type: Transform - pos: 9.0787525,20.674503 - parent: 89 - - uid: 21552 + pos: -23.5,8.5 + parent: 2 + - uid: 3064 components: - type: Transform - pos: -1.4276239,5.5878706 - parent: 89 -- proto: BoxBeanbag - entities: - - uid: 3046 + pos: -26.5,4.5 + parent: 2 + - uid: 3065 components: - type: Transform - pos: 42.70259,-9.505611 - parent: 89 - - uid: 4033 + pos: -26.5,8.5 + parent: 2 + - uid: 3066 components: - type: Transform - pos: 42.69796,-9.325056 - parent: 89 - - uid: 4222 + pos: -62.5,-4.5 + parent: 2 + - uid: 3067 components: - type: Transform - pos: -28.49978,-2.404027 - parent: 89 - - uid: 7092 + pos: 35.5,-9.5 + parent: 2 + - uid: 3068 components: - type: Transform - pos: 42.70259,-9.445426 - parent: 89 - - uid: 22643 + pos: 36.5,-9.5 + parent: 2 + - uid: 3069 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxBodyBag - entities: - - uid: 8710 + pos: 38.5,-9.5 + parent: 2 + - uid: 3070 components: - type: Transform - pos: 10.347248,5.518587 - parent: 89 - - uid: 10398 + pos: 39.5,-9.5 + parent: 2 + - uid: 3071 components: - type: Transform - pos: 10.847248,5.690462 - parent: 89 - - uid: 12669 + pos: 38.5,-11.5 + parent: 2 + - uid: 3072 components: - type: Transform - pos: 8.513576,18.630486 - parent: 89 - - uid: 14062 + pos: 38.5,-12.5 + parent: 2 + - uid: 3073 components: - type: Transform - pos: 22.512924,11.537976 - parent: 89 - - uid: 16043 + pos: 58.5,-1.5 + parent: 2 + - uid: 3074 components: - type: Transform - pos: 17.453873,23.65856 - parent: 89 - - uid: 23169 + pos: 36.5,-9.5 + parent: 2 + - uid: 3075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.358505,7.6814413 - parent: 22565 -- proto: BoxCardboard - entities: - - uid: 127 + pos: 38.5,-5.5 + parent: 2 + - uid: 3076 components: - type: Transform - pos: -44.606075,-17.155802 - parent: 89 - - uid: 128 + pos: 47.5,-5.5 + parent: 2 + - uid: 3077 components: - type: Transform - pos: -44.418575,-17.390177 - parent: 89 -- proto: BoxCartridgeCap - entities: - - uid: 10586 + pos: 36.5,-5.5 + parent: 2 + - uid: 3078 components: - type: Transform - pos: -34.500256,33.591328 - parent: 89 -- proto: BoxDonkSoftBox - entities: - - uid: 21792 + pos: 36.5,-4.5 + parent: 2 + - uid: 3079 components: - type: Transform - pos: 51.50729,-18.488604 - parent: 89 -- proto: BoxFolderBlack - entities: - - uid: 2259 + pos: 36.5,-3.5 + parent: 2 + - uid: 3080 components: - type: Transform - pos: -103.35947,21.741177 - parent: 89 - - uid: 2636 + pos: 36.5,-2.5 + parent: 2 + - uid: 3081 components: - - type: MetaData - name: папка с грифом секретности - type: Transform - pos: 47.511196,-5.408685 - parent: 89 - - uid: 15280 + pos: 36.5,-1.5 + parent: 2 + - uid: 3082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.848522,16.598705 - parent: 89 -- proto: BoxFolderBlue - entities: - - uid: 2019 + pos: 35.5,-1.5 + parent: 2 + - uid: 3083 components: - type: Transform - pos: 44.351154,4.7485046 - parent: 89 - - uid: 14520 + pos: 34.5,-1.5 + parent: 2 + - uid: 3084 components: - type: Transform - pos: -74.33679,-1.436574 - parent: 89 -- proto: BoxFolderClipboard - entities: - - uid: 25803 + pos: 33.5,-1.5 + parent: 2 + - uid: 3085 components: - type: Transform - pos: -76.62917,-2.4311993 - parent: 89 -- proto: BoxFolderGreen - entities: - - uid: 1360 + pos: 32.5,-1.5 + parent: 2 + - uid: 3086 components: - type: Transform - pos: -75.51346,-5.5499306 - parent: 89 -- proto: BoxFolderGrey - entities: - - uid: 2646 + pos: 31.5,-1.5 + parent: 2 + - uid: 3087 components: - type: Transform - pos: -103.23447,21.506802 - parent: 89 - - uid: 7368 + pos: 35.5,-7.5 + parent: 2 + - uid: 3088 components: - type: Transform - pos: -25.305325,9.497218 - parent: 89 -- proto: BoxFolderRed - entities: - - uid: 10434 + pos: 34.5,-7.5 + parent: 2 + - uid: 3089 components: - type: Transform - pos: 20.624432,6.395512 - parent: 89 - - uid: 14518 + pos: 33.5,-7.5 + parent: 2 + - uid: 3090 components: - type: Transform - pos: -78.613785,-1.420949 - parent: 89 -- proto: BoxFolderWhite - entities: - - uid: 3285 + pos: 32.5,-7.5 + parent: 2 + - uid: 3091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.542812,17.657099 - parent: 89 - - uid: 10962 + pos: 31.5,-7.5 + parent: 2 + - uid: 3092 components: - type: Transform - pos: 25.482803,29.552721 - parent: 89 - - uid: 10985 + pos: 30.5,-7.5 + parent: 2 + - uid: 3093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.550704,32.649754 - parent: 89 - - uid: 11223 + pos: 34.5,-8.5 + parent: 2 + - uid: 3094 components: - type: Transform - pos: 24.664398,13.078537 - parent: 89 - - uid: 15420 + pos: 34.5,-9.5 + parent: 2 + - uid: 3095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.503829,32.63413 - parent: 89 - - uid: 15533 + pos: 34.5,-12.5 + parent: 2 + - uid: 3096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.550704,32.63413 - parent: 89 - - uid: 15758 + pos: 34.5,-13.5 + parent: 2 + - uid: 3097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.477533,12.397864 - parent: 89 - - uid: 15895 + pos: 33.5,-9.5 + parent: 2 + - uid: 3098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.354307,5.5851474 - parent: 89 - - uid: 16868 + pos: 32.5,-9.5 + parent: 2 + - uid: 3099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.890072,36.674587 - parent: 89 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 16879 - - 16880 - - 16882 - - uid: 17600 + pos: 31.5,-9.5 + parent: 2 + - uid: 3100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.574062,17.672724 - parent: 89 -- proto: BoxFolderYellow - entities: - - uid: 2075 + pos: 30.5,-9.5 + parent: 2 + - uid: 3101 components: - type: Transform - pos: -101.9492,-2.3743103 - parent: 89 - - uid: 7369 + pos: 29.5,-9.5 + parent: 2 + - uid: 3102 components: - type: Transform - pos: -25.69595,9.497218 - parent: 89 -- proto: BoxHandcuff - entities: - - uid: 23170 + pos: 28.5,-9.5 + parent: 2 + - uid: 3103 components: - type: Transform - pos: -11.794121,7.5770445 - parent: 22565 -- proto: BoxLatexGloves - entities: - - uid: 3904 + pos: 27.5,-9.5 + parent: 2 + - uid: 3104 components: - type: Transform - pos: 12.33461,-1.4402026 - parent: 89 - - uid: 15364 + pos: 27.5,-8.5 + parent: 2 + - uid: 3105 components: - type: Transform - pos: 5.604253,33.525932 - parent: 89 - - uid: 15440 + pos: 27.5,-7.5 + parent: 2 + - uid: 3106 components: - type: Transform - pos: 33.688656,20.37791 - parent: 89 -- proto: BoxLethalshot - entities: - - uid: 17111 + pos: 27.5,-6.5 + parent: 2 + - uid: 3107 components: - type: Transform - pos: 40.39422,-9.286816 - parent: 89 - - uid: 17117 + pos: 27.5,-5.5 + parent: 2 + - uid: 3108 components: - type: Transform - pos: 41.08172,-9.614941 - parent: 89 - - uid: 17119 + pos: 27.5,-4.5 + parent: 2 + - uid: 3109 components: - type: Transform - pos: 40.39422,-9.599316 - parent: 89 - - uid: 17125 + pos: 27.5,-3.5 + parent: 2 + - uid: 3110 components: - type: Transform - pos: 41.066093,-9.302441 - parent: 89 - - uid: 22644 + pos: 27.5,-2.5 + parent: 2 + - uid: 3111 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxLightMixed - entities: - - uid: 9510 + pos: 27.5,-1.5 + parent: 2 + - uid: 3112 components: - type: Transform - pos: -36.14434,9.678255 - parent: 89 - - uid: 9513 + pos: 26.5,-2.5 + parent: 2 + - uid: 3113 components: - type: Transform - pos: -36.14434,9.428255 - parent: 89 -- proto: BoxMagazinePistolHighCapacityPractice - entities: - - uid: 22459 + pos: 25.5,-2.5 + parent: 2 + - uid: 3114 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRiflePractice - entities: - - uid: 533 + pos: 24.5,-2.5 + parent: 2 + - uid: 3115 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifleRubber - entities: - - uid: 530 + pos: 23.5,-2.5 + parent: 2 + - uid: 3116 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 713 + pos: 23.5,-3.5 + parent: 2 + - uid: 3117 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMousetrap - entities: - - uid: 9509 + pos: 23.5,-4.5 + parent: 2 + - uid: 3118 components: - type: Transform - pos: -36.61309,9.647005 - parent: 89 -- proto: BoxMouthSwab - entities: - - uid: 15360 + pos: 23.5,-5.5 + parent: 2 + - uid: 3119 components: - type: Transform - pos: 5.317952,30.635622 - parent: 89 - - uid: 15407 + pos: 28.5,-10.5 + parent: 2 + - uid: 3120 components: - type: Transform - pos: 5.7715664,30.619997 - parent: 89 -- proto: BoxMRE - entities: - - uid: 23171 + pos: 28.5,-11.5 + parent: 2 + - uid: 3121 components: - type: Transform - pos: 11.59539,5.523186 - parent: 22565 - - uid: 23172 + pos: 28.5,-12.5 + parent: 2 + - uid: 3122 components: - type: Transform - pos: 11.611015,9.488903 - parent: 22565 - - uid: 23173 + pos: 28.5,-13.5 + parent: 2 + - uid: 3123 components: - type: Transform - pos: 11.548515,11.535778 - parent: 22565 - - uid: 23174 + pos: 31.5,-10.5 + parent: 2 + - uid: 3124 components: - type: Transform - pos: -35.65962,9.535778 - parent: 22565 - - uid: 23175 + pos: 31.5,-11.5 + parent: 2 + - uid: 3125 components: - type: Transform - pos: -35.65962,11.535778 - parent: 22565 - - uid: 23176 + pos: 31.5,-12.5 + parent: 2 + - uid: 3126 components: - type: Transform - pos: -35.62837,5.4420276 - parent: 22565 -- proto: BoxNitrileGloves - entities: - - uid: 19253 + pos: 31.5,-13.5 + parent: 2 + - uid: 3127 components: - type: Transform - pos: -10.460536,17.614714 - parent: 89 -- proto: BoxShotgunPractice - entities: - - uid: 22457 + pos: 10.5,-6.5 + parent: 2 + - uid: 3128 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22461 + pos: 10.5,-3.5 + parent: 2 + - uid: 3129 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxSterileMask - entities: - - uid: 3873 + pos: 10.5,-2.5 + parent: 2 + - uid: 3130 components: - type: Transform - pos: 12.70961,-1.4714526 - parent: 89 - - uid: 15108 + pos: 10.5,-1.5 + parent: 2 + - uid: 3131 components: - type: Transform - pos: -12.570879,13.642749 - parent: 89 - - uid: 15363 + pos: 11.5,-1.5 + parent: 2 + - uid: 3132 components: - type: Transform - pos: 5.479253,33.229057 - parent: 89 - - uid: 15408 + pos: 12.5,-1.5 + parent: 2 + - uid: 3133 components: - type: Transform - pos: 5.5059414,30.260622 - parent: 89 - - uid: 17026 + pos: 13.5,-1.5 + parent: 2 + - uid: 3134 components: - type: Transform - pos: 33.262108,20.3741 - parent: 89 -- proto: BrbSign - entities: - - uid: 2225 + pos: 14.5,-1.5 + parent: 2 + - uid: 3135 components: - type: Transform - pos: 41.54235,9.564385 - parent: 89 - - uid: 3261 + pos: 14.5,-2.5 + parent: 2 + - uid: 3136 components: - type: Transform - pos: 40.5,14.5 - parent: 89 -- proto: BriefcaseBrown - entities: - - uid: 15197 + pos: 15.5,-2.5 + parent: 2 + - uid: 3137 components: - type: Transform - pos: 20.488884,12.603939 - parent: 89 -- proto: BrigTimer - entities: - - uid: 7134 + pos: 18.5,0.5 + parent: 2 + - uid: 3138 components: - type: Transform - pos: 20.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3682: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7137 + pos: 18.5,-0.5 + parent: 2 + - uid: 3139 components: - type: Transform - pos: 29.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3694: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7363 + pos: 18.5,1.5 + parent: 2 + - uid: 3140 components: - type: Transform - pos: 26.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3693: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7364 + pos: 11.5,-6.5 + parent: 2 + - uid: 3141 components: - type: Transform - pos: 23.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3686: - - Start: Close - - Timer: AutoClose - - Timer: Open -- proto: BrokenBottle - entities: - - uid: 10318 + pos: 12.5,-6.5 + parent: 2 + - uid: 3142 components: - type: Transform - pos: -39.725395,28.237118 - parent: 89 -- proto: BruteAutoInjector - entities: - - uid: 22645 + pos: 13.5,-6.5 + parent: 2 + - uid: 3143 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Brutepack - entities: - - uid: 5474 + pos: 13.5,-7.5 + parent: 2 + - uid: 3144 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7113 + pos: 13.5,-8.5 + parent: 2 + - uid: 3145 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10609 + pos: 13.5,-9.5 + parent: 2 + - uid: 3146 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21635 + pos: 14.5,-9.5 + parent: 2 + - uid: 3147 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23178 + pos: 15.5,-9.5 + parent: 2 + - uid: 3148 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23186 + pos: 16.5,-9.5 + parent: 2 + - uid: 3149 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23193 + pos: 17.5,-9.5 + parent: 2 + - uid: 3150 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23200 + pos: 18.5,-9.5 + parent: 2 + - uid: 3151 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23208 + pos: 19.5,-9.5 + parent: 2 + - uid: 3152 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23215 + pos: 20.5,-9.5 + parent: 2 + - uid: 3153 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BrutepackAdvanced1 - entities: - - uid: 15059 + pos: 21.5,-9.5 + parent: 2 + - uid: 3154 components: - type: Transform - pos: -10.536647,19.594604 - parent: 89 -- proto: Bucket - entities: - - uid: 328 + pos: 22.5,-9.5 + parent: 2 + - uid: 3155 components: - type: Transform - pos: -8.91569,-1.1623886 - parent: 89 - - uid: 8065 + pos: 23.5,-9.5 + parent: 2 + - uid: 3156 components: - type: Transform - pos: -6.1851063,35.372414 - parent: 89 - - uid: 17712 + pos: 24.5,-9.5 + parent: 2 + - uid: 3157 components: - type: Transform - pos: 28.68244,25.837227 - parent: 89 - - uid: 21786 + pos: 25.5,-9.5 + parent: 2 + - uid: 3158 components: - type: Transform - pos: 35.65477,-19.538193 - parent: 89 - - uid: 21836 + pos: 25.5,-10.5 + parent: 2 + - uid: 3159 components: - type: Transform - pos: 42.445152,-28.240416 - parent: 89 - - uid: 21877 + pos: 25.5,-11.5 + parent: 2 + - uid: 3160 components: - type: Transform - pos: 53.45202,-26.642078 - parent: 89 - - uid: 21880 + pos: 25.5,-12.5 + parent: 2 + - uid: 3161 components: - type: Transform - pos: 53.436394,-23.626453 - parent: 89 - - uid: 21881 + pos: 25.5,-13.5 + parent: 2 + - uid: 3162 components: - type: Transform - pos: 53.405144,-19.517078 - parent: 89 -- proto: BulletFoam - entities: - - uid: 21353 + pos: 22.5,-10.5 + parent: 2 + - uid: 3163 components: - type: Transform - pos: 48.772915,-21.37861 - parent: 89 - - uid: 21816 + pos: 22.5,-11.5 + parent: 2 + - uid: 3164 components: - type: Transform - pos: 48.897915,-21.47236 - parent: 89 - - uid: 21819 + pos: 22.5,-12.5 + parent: 2 + - uid: 3165 components: - type: Transform - pos: 49.63229,-21.394236 - parent: 89 - - uid: 21822 + pos: 22.5,-13.5 + parent: 2 + - uid: 3166 components: - type: Transform - pos: 49.741665,-21.50361 - parent: 89 -- proto: BurnAutoInjector - entities: - - uid: 22646 + pos: 19.5,-10.5 + parent: 2 + - uid: 3167 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CableApcExtension - entities: - - uid: 1 + pos: 19.5,-11.5 + parent: 2 + - uid: 3168 components: - type: Transform - pos: 1.5,-41.5 - parent: 89 - - uid: 3 + pos: 19.5,-12.5 + parent: 2 + - uid: 3169 components: - type: Transform - pos: -126.5,-8.5 - parent: 89 - - uid: 7 + pos: 19.5,-13.5 + parent: 2 + - uid: 3170 components: - type: Transform - pos: -3.5,-41.5 - parent: 89 - - uid: 10 + pos: 12.5,-9.5 + parent: 2 + - uid: 3171 components: - type: Transform - pos: 2.5,-30.5 - parent: 89 - - uid: 11 + pos: 11.5,-9.5 + parent: 2 + - uid: 3172 components: - type: Transform - pos: 2.5,-27.5 - parent: 89 - - uid: 12 + pos: 10.5,-9.5 + parent: 2 + - uid: 3173 components: - type: Transform - pos: 2.5,-28.5 - parent: 89 - - uid: 18 + pos: 9.5,-9.5 + parent: 2 + - uid: 3174 components: - type: Transform - pos: -34.5,-6.5 - parent: 89 - - uid: 169 + pos: 8.5,-9.5 + parent: 2 + - uid: 3175 components: - type: Transform - pos: -86.5,-9.5 - parent: 89 - - uid: 272 + pos: 8.5,-10.5 + parent: 2 + - uid: 3176 components: - type: Transform - pos: -5.5,-31.5 - parent: 89 - - uid: 273 + pos: 8.5,-11.5 + parent: 2 + - uid: 3177 components: - type: Transform - pos: -5.5,-32.5 - parent: 89 - - uid: 274 + pos: 9.5,-6.5 + parent: 2 + - uid: 3178 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 276 + pos: 8.5,-6.5 + parent: 2 + - uid: 3179 components: - type: Transform - pos: -10.5,-17.5 - parent: 89 - - uid: 290 + pos: 7.5,-6.5 + parent: 2 + - uid: 3180 components: - type: Transform - pos: -5.5,-28.5 - parent: 89 - - uid: 291 + pos: 6.5,-6.5 + parent: 2 + - uid: 3181 components: - type: Transform - pos: -8.5,-31.5 - parent: 89 - - uid: 292 + pos: 5.5,-6.5 + parent: 2 + - uid: 3182 components: - type: Transform - pos: -8.5,-28.5 - parent: 89 - - uid: 293 + pos: 4.5,-6.5 + parent: 2 + - uid: 3183 components: - type: Transform - pos: -8.5,-29.5 - parent: 89 - - uid: 294 + pos: 4.5,-7.5 + parent: 2 + - uid: 3184 components: - type: Transform - pos: -7.5,-24.5 - parent: 89 - - uid: 298 + pos: 4.5,-8.5 + parent: 2 + - uid: 3185 components: - type: Transform - pos: -1.5,-40.5 - parent: 89 - - uid: 302 + pos: 3.5,-8.5 + parent: 2 + - uid: 3186 components: - type: Transform - pos: -1.5,-38.5 - parent: 89 - - uid: 303 + pos: 3.5,-9.5 + parent: 2 + - uid: 3187 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 - - uid: 340 + pos: 3.5,-10.5 + parent: 2 + - uid: 3188 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 342 + pos: 3.5,-11.5 + parent: 2 + - uid: 3189 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 343 + pos: 3.5,-12.5 + parent: 2 + - uid: 3190 components: - type: Transform - pos: 50.5,5.5 - parent: 89 - - uid: 375 + pos: 4.5,-12.5 + parent: 2 + - uid: 3191 components: - type: Transform - pos: -81.5,37.5 - parent: 89 - - uid: 516 + pos: 5.5,-5.5 + parent: 2 + - uid: 3192 components: - type: Transform - pos: 51.5,-25.5 - parent: 89 - - uid: 673 + pos: 5.5,-4.5 + parent: 2 + - uid: 3193 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 802 + pos: 5.5,-3.5 + parent: 2 + - uid: 3194 components: - type: Transform - pos: 49.5,12.5 - parent: 89 - - uid: 803 + pos: 5.5,-2.5 + parent: 2 + - uid: 3195 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 804 + pos: 5.5,-1.5 + parent: 2 + - uid: 3196 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 805 + pos: 2.5,-10.5 + parent: 2 + - uid: 3197 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 806 + pos: -62.5,18.5 + parent: 2 + - uid: 3198 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 807 + pos: -62.5,19.5 + parent: 2 + - uid: 3199 components: - type: Transform - pos: 47.5,10.5 - parent: 89 - - uid: 809 + pos: -62.5,20.5 + parent: 2 + - uid: 3200 components: - type: Transform - pos: 50.5,13.5 - parent: 89 - - uid: 810 + pos: -62.5,21.5 + parent: 2 + - uid: 3201 components: - type: Transform - pos: 49.5,13.5 - parent: 89 - - uid: 830 + pos: -61.5,21.5 + parent: 2 + - uid: 3202 components: - type: Transform - pos: 1.5,-24.5 - parent: 89 - - uid: 853 + pos: -60.5,21.5 + parent: 2 + - uid: 3203 components: - type: Transform - pos: 61.5,10.5 - parent: 89 - - uid: 977 + pos: -40.5,-1.5 + parent: 2 + - uid: 3204 components: - type: Transform - pos: 60.5,11.5 - parent: 89 - - uid: 996 + pos: -40.5,-2.5 + parent: 2 + - uid: 3205 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 997 + pos: -40.5,-3.5 + parent: 2 + - uid: 3206 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 998 + pos: -40.5,-4.5 + parent: 2 + - uid: 3207 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - uid: 999 + pos: -40.5,-5.5 + parent: 2 + - uid: 3208 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - uid: 1000 + pos: -40.5,-6.5 + parent: 2 + - uid: 3209 components: - type: Transform - pos: 52.5,2.5 - parent: 89 - - uid: 1001 + pos: -40.5,-7.5 + parent: 2 + - uid: 3210 components: - type: Transform - pos: 52.5,1.5 - parent: 89 - - uid: 1002 + pos: -40.5,-8.5 + parent: 2 + - uid: 3211 components: - type: Transform - pos: 52.5,0.5 - parent: 89 - - uid: 1006 + pos: -40.5,-9.5 + parent: 2 + - uid: 3212 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - uid: 1007 + pos: -40.5,-10.5 + parent: 2 + - uid: 3213 components: - type: Transform - pos: 52.5,6.5 - parent: 89 - - uid: 1008 + pos: -40.5,-11.5 + parent: 2 + - uid: 3214 components: - type: Transform - pos: 52.5,7.5 - parent: 89 - - uid: 1009 + pos: -40.5,-12.5 + parent: 2 + - uid: 3215 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - uid: 1010 + pos: -39.5,-12.5 + parent: 2 + - uid: 3216 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - uid: 1011 + pos: -38.5,-12.5 + parent: 2 + - uid: 3217 components: - type: Transform - pos: 52.5,10.5 - parent: 89 - - uid: 1012 + pos: -37.5,-12.5 + parent: 2 + - uid: 3218 components: - type: Transform - pos: 52.5,11.5 - parent: 89 - - uid: 1013 + pos: -36.5,-12.5 + parent: 2 + - uid: 3219 components: - type: Transform - pos: 53.5,11.5 - parent: 89 - - uid: 1014 + pos: -35.5,-12.5 + parent: 2 + - uid: 3220 components: - type: Transform - pos: 53.5,12.5 - parent: 89 - - uid: 1015 + pos: -34.5,-12.5 + parent: 2 + - uid: 3221 components: - type: Transform - pos: 53.5,13.5 - parent: 89 - - uid: 1016 + pos: -33.5,-12.5 + parent: 2 + - uid: 3222 components: - type: Transform - pos: 53.5,14.5 - parent: 89 - - uid: 1017 + pos: -32.5,-12.5 + parent: 2 + - uid: 3223 components: - type: Transform - pos: 54.5,11.5 - parent: 89 - - uid: 1018 + pos: -31.5,-12.5 + parent: 2 + - uid: 3224 components: - type: Transform - pos: 55.5,11.5 - parent: 89 - - uid: 1019 + pos: -30.5,-12.5 + parent: 2 + - uid: 3225 components: - type: Transform - pos: 56.5,11.5 - parent: 89 - - uid: 1020 + pos: -29.5,-12.5 + parent: 2 + - uid: 3226 components: - type: Transform - pos: 57.5,11.5 - parent: 89 - - uid: 1021 + pos: -22.5,-8.5 + parent: 2 + - uid: 3227 components: - type: Transform - pos: 58.5,11.5 - parent: 89 - - uid: 1022 + pos: -22.5,-9.5 + parent: 2 + - uid: 3228 components: - type: Transform - pos: 59.5,11.5 - parent: 89 - - uid: 1023 + pos: -22.5,-10.5 + parent: 2 + - uid: 3229 components: - type: Transform - pos: 58.5,12.5 - parent: 89 - - uid: 1024 + pos: -22.5,-11.5 + parent: 2 + - uid: 3230 components: - type: Transform - pos: 58.5,13.5 - parent: 89 - - uid: 1025 + pos: -20.5,-11.5 + parent: 2 + - uid: 3231 components: - type: Transform - pos: 58.5,14.5 - parent: 89 - - uid: 1026 + pos: -20.5,-10.5 + parent: 2 + - uid: 3232 components: - type: Transform - pos: 54.5,14.5 - parent: 89 - - uid: 1027 + pos: -20.5,-9.5 + parent: 2 + - uid: 3233 components: - type: Transform - pos: 55.5,14.5 - parent: 89 - - uid: 1028 + pos: -20.5,-8.5 + parent: 2 + - uid: 3234 components: - type: Transform - pos: 56.5,14.5 - parent: 89 - - uid: 1029 + pos: 1.5,-3.5 + parent: 2 + - uid: 3235 components: - type: Transform - pos: 57.5,14.5 - parent: 89 - - uid: 1030 + pos: 0.5,-3.5 + parent: 2 + - uid: 3236 components: - type: Transform - pos: 61.5,11.5 - parent: 89 - - uid: 1031 + pos: -0.5,-3.5 + parent: 2 + - uid: 3237 components: - type: Transform - pos: 62.5,11.5 - parent: 89 - - uid: 1032 + pos: -1.5,-12.5 + parent: 2 + - uid: 3238 components: - type: Transform - pos: 63.5,11.5 - parent: 89 - - uid: 1033 + pos: -1.5,-13.5 + parent: 2 + - uid: 3239 components: - type: Transform - pos: 64.5,11.5 - parent: 89 - - uid: 1034 + pos: -1.5,-14.5 + parent: 2 + - uid: 3240 components: - type: Transform - pos: 65.5,11.5 - parent: 89 - - uid: 1035 + pos: -1.5,-15.5 + parent: 2 + - uid: 3241 components: - type: Transform - pos: 64.5,12.5 - parent: 89 - - uid: 1036 + pos: -1.5,-16.5 + parent: 2 + - uid: 3242 components: - type: Transform - pos: 61.5,9.5 - parent: 89 - - uid: 1037 + pos: -0.5,-15.5 + parent: 2 + - uid: 3243 components: - type: Transform - pos: 61.5,8.5 - parent: 89 - - uid: 1038 + pos: -2.5,-12.5 + parent: 2 + - uid: 3244 components: - type: Transform - pos: 61.5,7.5 - parent: 89 - - uid: 1039 + pos: -3.5,-12.5 + parent: 2 + - uid: 3245 components: - type: Transform - pos: 61.5,6.5 - parent: 89 - - uid: 1040 + pos: -1.5,2.5 + parent: 2 + - uid: 3246 components: - type: Transform - pos: 61.5,5.5 - parent: 89 - - uid: 1041 + pos: -0.5,2.5 + parent: 2 + - uid: 3247 components: - type: Transform - pos: 61.5,4.5 - parent: 89 - - uid: 1042 + pos: 0.5,2.5 + parent: 2 + - uid: 3248 components: - type: Transform - pos: 61.5,3.5 - parent: 89 - - uid: 1043 + pos: 1.5,2.5 + parent: 2 + - uid: 3249 components: - type: Transform - pos: 61.5,2.5 - parent: 89 - - uid: 1044 + pos: 2.5,2.5 + parent: 2 + - uid: 3250 components: - type: Transform - pos: 61.5,1.5 - parent: 89 - - uid: 1045 + pos: 3.5,2.5 + parent: 2 + - uid: 3251 components: - type: Transform - pos: 61.5,0.5 - parent: 89 - - uid: 1049 + pos: 4.5,2.5 + parent: 2 + - uid: 3252 components: - type: Transform - pos: 58.5,1.5 - parent: 89 - - uid: 1066 + pos: 5.5,2.5 + parent: 2 + - uid: 3253 components: - type: Transform - pos: 53.5,8.5 - parent: 89 - - uid: 1074 + pos: 6.5,2.5 + parent: 2 + - uid: 3254 components: - type: Transform - pos: 54.5,8.5 - parent: 89 - - uid: 1075 + pos: 7.5,2.5 + parent: 2 + - uid: 3255 components: - type: Transform - pos: 55.5,8.5 - parent: 89 - - uid: 1076 + pos: 8.5,2.5 + parent: 2 + - uid: 3256 components: - type: Transform - pos: 56.5,8.5 - parent: 89 - - uid: 1077 + pos: 9.5,2.5 + parent: 2 + - uid: 3257 components: - type: Transform - pos: 57.5,8.5 - parent: 89 - - uid: 1078 + pos: 10.5,2.5 + parent: 2 + - uid: 3258 components: - type: Transform - pos: 58.5,8.5 - parent: 89 - - uid: 1079 + pos: 11.5,2.5 + parent: 2 + - uid: 3259 components: - type: Transform - pos: 59.5,8.5 - parent: 89 - - uid: 1080 + pos: 12.5,2.5 + parent: 2 + - uid: 3260 components: - type: Transform - pos: 60.5,8.5 - parent: 89 - - uid: 1082 + pos: 13.5,2.5 + parent: 2 + - uid: 3261 components: - type: Transform - pos: 60.5,0.5 - parent: 89 - - uid: 1083 + pos: 14.5,2.5 + parent: 2 + - uid: 3262 components: - type: Transform - pos: 59.5,0.5 - parent: 89 - - uid: 1084 + pos: 15.5,2.5 + parent: 2 + - uid: 3263 components: - type: Transform - pos: 58.5,0.5 - parent: 89 - - uid: 1085 + pos: 16.5,2.5 + parent: 2 + - uid: 3264 components: - type: Transform - pos: 57.5,0.5 - parent: 89 - - uid: 1086 + pos: 17.5,2.5 + parent: 2 + - uid: 3265 components: - type: Transform - pos: 56.5,0.5 - parent: 89 - - uid: 1087 + pos: 18.5,2.5 + parent: 2 + - uid: 3266 components: - type: Transform - pos: 55.5,0.5 - parent: 89 - - uid: 1088 + pos: 19.5,2.5 + parent: 2 + - uid: 3267 components: - type: Transform - pos: 54.5,0.5 - parent: 89 - - uid: 1089 + pos: 20.5,2.5 + parent: 2 + - uid: 3268 components: - type: Transform - pos: 53.5,0.5 - parent: 89 - - uid: 1090 + pos: 21.5,2.5 + parent: 2 + - uid: 3269 components: - type: Transform - pos: 58.5,2.5 - parent: 89 - - uid: 1091 + pos: 22.5,2.5 + parent: 2 + - uid: 3270 components: - type: Transform - pos: 58.5,3.5 - parent: 89 - - uid: 1092 + pos: 23.5,2.5 + parent: 2 + - uid: 3271 components: - type: Transform - pos: 58.5,4.5 - parent: 89 - - uid: 1093 + pos: 24.5,2.5 + parent: 2 + - uid: 3272 components: - type: Transform - pos: 57.5,4.5 - parent: 89 - - uid: 1094 + pos: 25.5,2.5 + parent: 2 + - uid: 3273 components: - type: Transform - pos: 56.5,4.5 - parent: 89 - - uid: 1095 + pos: 26.5,2.5 + parent: 2 + - uid: 3274 components: - type: Transform - pos: 55.5,4.5 - parent: 89 - - uid: 1096 + pos: 27.5,2.5 + parent: 2 + - uid: 3275 components: - type: Transform - pos: 55.5,5.5 - parent: 89 - - uid: 1098 + pos: 28.5,2.5 + parent: 2 + - uid: 3276 components: - type: Transform - pos: 55.5,3.5 - parent: 89 - - uid: 1099 + pos: 29.5,2.5 + parent: 2 + - uid: 3277 components: - type: Transform - pos: 58.5,5.5 - parent: 89 - - uid: 1100 + pos: 30.5,2.5 + parent: 2 + - uid: 3278 components: - type: Transform - pos: 58.5,6.5 - parent: 89 - - uid: 1101 + pos: 31.5,2.5 + parent: 2 + - uid: 3279 components: - type: Transform - pos: 58.5,7.5 - parent: 89 - - uid: 1102 + pos: -2.5,2.5 + parent: 2 + - uid: 3280 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 1103 + pos: -27.5,16.5 + parent: 2 + - uid: 3281 components: - type: Transform - pos: 50.5,7.5 - parent: 89 - - uid: 1104 + pos: -14.5,21.5 + parent: 2 + - uid: 3282 components: - type: Transform - pos: 48.5,7.5 - parent: 89 - - uid: 1105 + pos: 11.5,-3.5 + parent: 2 + - uid: 3283 components: - type: Transform - pos: 49.5,7.5 - parent: 89 - - uid: 1106 + pos: -12.5,-37.5 + parent: 2 + - uid: 3284 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 1107 + pos: -12.5,-36.5 + parent: 2 + - uid: 3285 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 1108 + pos: -12.5,-35.5 + parent: 2 + - uid: 3286 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 1109 + pos: -11.5,-35.5 + parent: 2 + - uid: 3287 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 1169 + pos: -10.5,-35.5 + parent: 2 + - uid: 3288 components: - type: Transform - pos: 2.5,-24.5 - parent: 89 - - uid: 1172 + pos: -9.5,-35.5 + parent: 2 + - uid: 3289 components: - type: Transform - pos: 2.5,-25.5 - parent: 89 - - uid: 1198 + pos: 11.5,-4.5 + parent: 2 + - uid: 3290 components: - type: Transform - pos: 2.5,-20.5 - parent: 89 - - uid: 1204 + pos: 11.5,-5.5 + parent: 2 + - uid: 3291 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 1205 + pos: -63.5,-7.5 + parent: 2 + - uid: 3292 components: - type: Transform - pos: -8.5,-16.5 - parent: 89 - - uid: 1206 + pos: 18.5,26.5 + parent: 2 + - uid: 3293 components: - type: Transform - pos: -7.5,-16.5 - parent: 89 - - uid: 1208 + pos: 23.5,24.5 + parent: 2 + - uid: 3294 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 1209 + pos: 19.5,30.5 + parent: 2 + - uid: 3295 components: - type: Transform - pos: -1.5,-36.5 - parent: 89 - - uid: 1211 + pos: 25.5,30.5 + parent: 2 + - uid: 3296 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1212 + pos: 26.5,30.5 + parent: 2 + - uid: 3297 components: - type: Transform - pos: -2.5,-30.5 - parent: 89 - - uid: 1213 + pos: 27.5,30.5 + parent: 2 + - uid: 3298 components: - type: Transform - pos: -3.5,-30.5 - parent: 89 - - uid: 1214 + pos: 23.5,30.5 + parent: 2 + - uid: 3299 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 1236 + pos: 22.5,30.5 + parent: 2 + - uid: 3300 components: - type: Transform - pos: -14.5,-16.5 - parent: 89 - - uid: 1237 + pos: 21.5,30.5 + parent: 2 + - uid: 3301 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 1238 + pos: 23.5,31.5 + parent: 2 + - uid: 3302 components: - type: Transform - pos: -5.5,-16.5 - parent: 89 - - uid: 1239 + pos: 20.5,30.5 + parent: 2 + - uid: 3303 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 - - uid: 1240 + pos: -31.5,38.5 + parent: 2 + - uid: 3304 components: - type: Transform - pos: -6.5,-16.5 - parent: 89 - - uid: 1241 + pos: -31.5,37.5 + parent: 2 + - uid: 3305 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 1242 + pos: -31.5,36.5 + parent: 2 + - uid: 3306 components: - type: Transform - pos: -83.5,30.5 - parent: 89 - - uid: 1365 + pos: -31.5,35.5 + parent: 2 + - uid: 3307 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1366 + pos: -30.5,35.5 + parent: 2 + - uid: 3308 components: - type: Transform - pos: 2.5,-21.5 - parent: 89 - - uid: 1385 + pos: -29.5,35.5 + parent: 2 + - uid: 3309 components: - type: Transform - pos: -5.5,-22.5 - parent: 89 - - uid: 1388 + pos: -28.5,35.5 + parent: 2 + - uid: 3310 components: - type: Transform - pos: -9.5,-22.5 - parent: 89 - - uid: 1391 + pos: -28.5,36.5 + parent: 2 + - uid: 3311 components: - type: Transform - pos: -15.5,-22.5 - parent: 89 - - uid: 1393 + pos: -28.5,37.5 + parent: 2 + - uid: 3312 components: - type: Transform - pos: -16.5,-22.5 - parent: 89 - - uid: 1395 + pos: 10.5,32.5 + parent: 2 + - uid: 3313 components: - type: Transform - pos: -19.5,-22.5 - parent: 89 - - uid: 1398 + pos: 12.5,32.5 + parent: 2 + - uid: 3314 components: - type: Transform - pos: -20.5,-20.5 - parent: 89 - - uid: 1407 + pos: 11.5,32.5 + parent: 2 + - uid: 3315 components: - type: Transform - pos: -22.5,-17.5 - parent: 89 - - uid: 1409 + pos: 13.5,29.5 + parent: 2 + - uid: 3316 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 1412 + pos: -30.5,37.5 + parent: 2 + - uid: 3317 components: - type: Transform - pos: -20.5,-16.5 - parent: 89 - - uid: 1421 + pos: 13.5,35.5 + parent: 2 + - uid: 3318 components: - type: Transform - pos: -16.5,-18.5 - parent: 89 - - uid: 1433 + pos: 13.5,36.5 + parent: 2 + - uid: 3319 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1437 + pos: 12.5,29.5 + parent: 2 + - uid: 3320 components: - type: Transform - pos: -16.5,-17.5 - parent: 89 - - uid: 1646 + pos: 8.5,30.5 + parent: 2 + - uid: 3321 components: - type: Transform - pos: -4.5,-35.5 - parent: 89 - - uid: 1647 + pos: 13.5,30.5 + parent: 2 + - uid: 3322 components: - type: Transform - pos: -3.5,-35.5 - parent: 89 - - uid: 1653 + pos: 22.5,31.5 + parent: 2 + - uid: 3323 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 - - uid: 1659 + pos: 22.5,25.5 + parent: 2 + - uid: 3324 components: - type: Transform - pos: -1.5,-24.5 - parent: 89 - - uid: 1686 + pos: 6.5,36.5 + parent: 2 + - uid: 3325 components: - type: Transform - pos: -6.5,-35.5 - parent: 89 - - uid: 1690 + pos: 10.5,33.5 + parent: 2 + - uid: 3326 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 1692 + pos: -29.5,37.5 + parent: 2 + - uid: 3327 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 - - uid: 1693 + pos: 19.5,26.5 + parent: 2 + - uid: 3328 components: - type: Transform - pos: -13.5,-16.5 - parent: 89 - - uid: 1694 + pos: 20.5,26.5 + parent: 2 + - uid: 3329 components: - type: Transform - pos: -5.5,-30.5 - parent: 89 - - uid: 1695 + pos: 11.5,29.5 + parent: 2 + - uid: 3330 components: - type: Transform - pos: -6.5,-30.5 - parent: 89 - - uid: 1696 + pos: 13.5,33.5 + parent: 2 + - uid: 3331 components: - type: Transform - pos: -7.5,-30.5 - parent: 89 - - uid: 1697 + pos: 6.5,35.5 + parent: 2 + - uid: 3332 components: - type: Transform - pos: -8.5,-30.5 - parent: 89 - - uid: 1698 + pos: 9.5,32.5 + parent: 2 + - uid: 3333 components: - type: Transform - pos: -9.5,-30.5 - parent: 89 - - uid: 1699 + pos: 10.5,37.5 + parent: 2 + - uid: 3334 components: - type: Transform - pos: -4.5,-30.5 - parent: 89 - - uid: 1700 + pos: 13.5,34.5 + parent: 2 + - uid: 3335 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 1701 + pos: 6.5,34.5 + parent: 2 + - uid: 3336 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 - - uid: 1702 + pos: 26.5,21.5 + parent: 2 + - uid: 3337 components: - type: Transform - pos: -1.5,-35.5 - parent: 89 - - uid: 1703 + pos: 26.5,20.5 + parent: 2 + - uid: 3338 components: - type: Transform - pos: -1.5,-33.5 - parent: 89 - - uid: 1704 + pos: 26.5,19.5 + parent: 2 + - uid: 3339 components: - type: Transform - pos: -5.5,-41.5 - parent: 89 - - uid: 1710 + pos: 26.5,18.5 + parent: 2 + - uid: 3340 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 - - uid: 1716 + pos: 27.5,18.5 + parent: 2 + - uid: 3341 components: - type: Transform - pos: -82.5,30.5 - parent: 89 - - uid: 1733 + pos: 27.5,17.5 + parent: 2 + - uid: 3342 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 1735 + pos: 27.5,16.5 + parent: 2 + - uid: 3343 components: - type: Transform - pos: -5.5,-35.5 - parent: 89 - - uid: 1762 + pos: 27.5,15.5 + parent: 2 + - uid: 3344 components: - type: Transform - pos: -4.5,-18.5 - parent: 89 - - uid: 1763 + pos: 27.5,14.5 + parent: 2 + - uid: 3345 components: - type: Transform - pos: -4.5,-17.5 - parent: 89 - - uid: 1764 + pos: 26.5,13.5 + parent: 2 + - uid: 3346 components: - type: Transform - pos: -4.5,-16.5 - parent: 89 - - uid: 1765 + pos: 28.5,18.5 + parent: 2 + - uid: 3347 components: - type: Transform - pos: -4.5,-15.5 - parent: 89 - - uid: 1766 + pos: 29.5,18.5 + parent: 2 + - uid: 3348 components: - type: Transform - pos: -4.5,-14.5 - parent: 89 - - uid: 1767 + pos: 30.5,18.5 + parent: 2 + - uid: 3349 components: - type: Transform - pos: -5.5,-14.5 - parent: 89 - - uid: 1768 + pos: 31.5,18.5 + parent: 2 + - uid: 3350 components: - type: Transform - pos: -6.5,-14.5 - parent: 89 - - uid: 1769 + pos: 31.5,19.5 + parent: 2 + - uid: 3351 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1770 + pos: 32.5,19.5 + parent: 2 + - uid: 3352 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1771 + pos: 33.5,19.5 + parent: 2 + - uid: 3353 components: - type: Transform - pos: -8.5,-14.5 - parent: 89 - - uid: 1772 + pos: 26.5,12.5 + parent: 2 + - uid: 3354 components: - type: Transform - pos: -9.5,-14.5 - parent: 89 - - uid: 1773 + pos: 26.5,14.5 + parent: 2 + - uid: 3355 components: - type: Transform - pos: -10.5,-14.5 - parent: 89 - - uid: 1774 + pos: 25.5,14.5 + parent: 2 + - uid: 3356 components: - type: Transform - pos: -11.5,-14.5 - parent: 89 - - uid: 1775 + pos: 24.5,14.5 + parent: 2 + - uid: 3357 components: - type: Transform - pos: -12.5,-14.5 - parent: 89 - - uid: 1776 + pos: 23.5,14.5 + parent: 2 + - uid: 3358 components: - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 1777 + pos: 22.5,14.5 + parent: 2 + - uid: 3359 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1778 + pos: 21.5,14.5 + parent: 2 + - uid: 3360 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1780 + pos: 20.5,14.5 + parent: 2 + - uid: 3361 components: - type: Transform - pos: 2.5,-31.5 - parent: 89 - - uid: 1781 + pos: 21.5,17.5 + parent: 2 + - uid: 3362 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1782 + pos: 21.5,18.5 + parent: 2 + - uid: 3363 components: - type: Transform - pos: -14.5,-14.5 - parent: 89 - - uid: 1783 + pos: 20.5,17.5 + parent: 2 + - uid: 3364 components: - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 1784 + pos: 19.5,17.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 3366 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1785 + pos: 17.5,17.5 + parent: 2 + - uid: 3367 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 1786 + pos: 17.5,18.5 + parent: 2 + - uid: 3368 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 1787 + pos: 24.5,15.5 + parent: 2 + - uid: 3369 components: - type: Transform - pos: 2.5,-23.5 - parent: 89 - - uid: 1788 + pos: 24.5,16.5 + parent: 2 + - uid: 3370 components: - type: Transform - pos: 2.5,-22.5 - parent: 89 - - uid: 1789 + pos: 24.5,17.5 + parent: 2 + - uid: 3371 components: - type: Transform - pos: 2.5,-19.5 - parent: 89 - - uid: 1790 + pos: 24.5,18.5 + parent: 2 + - uid: 3372 components: - type: Transform - pos: 2.5,-41.5 - parent: 89 - - uid: 1791 + pos: 24.5,19.5 + parent: 2 + - uid: 3373 components: - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 1793 + pos: 24.5,20.5 + parent: 2 + - uid: 3374 components: - type: Transform - pos: -18.5,-16.5 - parent: 89 - - uid: 1795 + pos: 24.5,28.5 + parent: 2 + - uid: 3375 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 1796 + pos: 24.5,27.5 + parent: 2 + - uid: 3376 components: - type: Transform - pos: 0.5,23.5 - parent: 89 - - uid: 1800 + pos: 24.5,26.5 + parent: 2 + - uid: 3377 components: - type: Transform - pos: -15.5,-19.5 - parent: 89 - - uid: 1801 + pos: 25.5,27.5 + parent: 2 + - uid: 3378 components: - type: Transform - pos: -16.5,-16.5 - parent: 89 - - uid: 1802 + pos: 10.5,40.5 + parent: 2 + - uid: 3379 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 1803 + pos: 23.5,27.5 + parent: 2 + - uid: 3380 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 - - uid: 1804 + pos: 10.5,38.5 + parent: 2 + - uid: 3381 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 - - uid: 1805 + pos: 10.5,39.5 + parent: 2 + - uid: 3382 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1806 + pos: 7.5,32.5 + parent: 2 + - uid: 3383 components: - type: Transform - pos: -7.5,-21.5 - parent: 89 - - uid: 1808 + pos: 8.5,32.5 + parent: 2 + - uid: 3384 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 - - uid: 1809 + pos: 6.5,32.5 + parent: 2 + - uid: 3385 components: - type: Transform - pos: -14.5,-22.5 - parent: 89 - - uid: 1811 + pos: 6.5,33.5 + parent: 2 + - uid: 3386 components: - type: Transform - pos: -8.5,-22.5 - parent: 89 - - uid: 1812 + pos: -7.5,15.5 + parent: 2 + - uid: 3387 components: - type: Transform - pos: -13.5,-22.5 - parent: 89 - - uid: 1814 + pos: -7.5,13.5 + parent: 2 + - uid: 3388 components: - type: Transform - pos: -18.5,-22.5 - parent: 89 - - uid: 1815 + pos: -7.5,12.5 + parent: 2 + - uid: 3389 components: - type: Transform - pos: -22.5,-20.5 - parent: 89 - - uid: 1816 + pos: -8.5,15.5 + parent: 2 + - uid: 3390 components: - type: Transform - pos: -19.5,-21.5 - parent: 89 - - uid: 1817 + pos: -9.5,15.5 + parent: 2 + - uid: 3391 components: - type: Transform - pos: -22.5,-19.5 - parent: 89 - - uid: 1818 + pos: -10.5,15.5 + parent: 2 + - uid: 3392 components: - type: Transform - pos: -21.5,-20.5 - parent: 89 - - uid: 1819 + pos: -10.5,14.5 + parent: 2 + - uid: 3393 components: - type: Transform - pos: -22.5,-18.5 - parent: 89 - - uid: 1820 + pos: -10.5,13.5 + parent: 2 + - uid: 3394 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 1822 + pos: -10.5,12.5 + parent: 2 + - uid: 3395 components: - type: Transform - pos: -19.5,-16.5 - parent: 89 - - uid: 1823 + pos: -10.5,11.5 + parent: 2 + - uid: 3396 components: - type: Transform - pos: -19.5,-20.5 - parent: 89 - - uid: 1824 + pos: -6.5,12.5 + parent: 2 + - uid: 3397 components: - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 1827 + pos: -5.5,12.5 + parent: 2 + - uid: 3398 components: - type: Transform - pos: -1.5,-34.5 - parent: 89 - - uid: 1828 + pos: -4.5,12.5 + parent: 2 + - uid: 3399 components: - type: Transform - pos: -4.5,-41.5 - parent: 89 - - uid: 1832 + pos: -3.5,12.5 + parent: 2 + - uid: 3400 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1833 + pos: -2.5,12.5 + parent: 2 + - uid: 3401 components: - type: Transform - pos: -7.5,-41.5 - parent: 89 - - uid: 1838 + pos: -1.5,12.5 + parent: 2 + - uid: 3402 components: - type: Transform - pos: -0.5,-41.5 - parent: 89 - - uid: 1841 + pos: -0.5,12.5 + parent: 2 + - uid: 3403 components: - type: Transform - pos: 0.5,-26.5 - parent: 89 - - uid: 1845 + pos: 0.5,12.5 + parent: 2 + - uid: 3404 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1846 + pos: 1.5,12.5 + parent: 2 + - uid: 3405 components: - type: Transform - pos: -14.5,-19.5 - parent: 89 - - uid: 1847 + pos: 2.5,12.5 + parent: 2 + - uid: 3406 components: - type: Transform - pos: -1.5,-22.5 - parent: 89 - - uid: 1848 + pos: 2.5,13.5 + parent: 2 + - uid: 3407 components: - type: Transform - pos: -1.5,-21.5 - parent: 89 - - uid: 1849 + pos: 3.5,13.5 + parent: 2 + - uid: 3408 components: - type: Transform - pos: -1.5,-20.5 - parent: 89 - - uid: 1850 + pos: 4.5,13.5 + parent: 2 + - uid: 3409 components: - type: Transform - pos: -1.5,-19.5 - parent: 89 - - uid: 1874 + pos: 5.5,13.5 + parent: 2 + - uid: 3410 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 1878 + pos: 6.5,13.5 + parent: 2 + - uid: 3411 components: - type: Transform - pos: -13.5,-19.5 - parent: 89 - - uid: 1880 + pos: 7.5,13.5 + parent: 2 + - uid: 3412 components: - type: Transform - pos: -16.5,-19.5 - parent: 89 - - uid: 1884 + pos: 8.5,13.5 + parent: 2 + - uid: 3413 components: - type: Transform - pos: -2.5,-41.5 - parent: 89 - - uid: 1897 + pos: 19.5,14.5 + parent: 2 + - uid: 3414 components: - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 1902 + pos: 18.5,14.5 + parent: 2 + - uid: 3415 components: - type: Transform - pos: -11.5,-19.5 - parent: 89 - - uid: 1908 + pos: 17.5,14.5 + parent: 2 + - uid: 3416 components: - type: Transform - pos: -12.5,-22.5 - parent: 89 - - uid: 1923 + pos: 16.5,14.5 + parent: 2 + - uid: 3417 components: - type: Transform - pos: -8.5,-32.5 - parent: 89 - - uid: 1942 + pos: 15.5,14.5 + parent: 2 + - uid: 3418 components: - type: Transform - pos: 39.5,5.5 - parent: 89 - - uid: 1947 + pos: 15.5,13.5 + parent: 2 + - uid: 3419 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 1948 + pos: 14.5,13.5 + parent: 2 + - uid: 3420 components: - type: Transform - pos: 44.5,12.5 - parent: 89 - - uid: 1950 + pos: 7.5,14.5 + parent: 2 + - uid: 3421 components: - type: Transform - pos: 43.5,12.5 - parent: 89 - - uid: 1951 + pos: 7.5,15.5 + parent: 2 + - uid: 3422 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 1953 + pos: 7.5,16.5 + parent: 2 + - uid: 3423 components: - type: Transform - pos: 41.5,12.5 - parent: 89 - - uid: 1957 + pos: 7.5,17.5 + parent: 2 + - uid: 3424 components: - type: Transform - pos: 44.5,10.5 - parent: 89 - - uid: 1958 + pos: 6.5,17.5 + parent: 2 + - uid: 3425 components: - type: Transform - pos: 44.5,9.5 - parent: 89 - - uid: 1959 + pos: 9.5,13.5 + parent: 2 + - uid: 3426 components: - type: Transform - pos: 44.5,8.5 - parent: 89 - - uid: 1960 + pos: 9.5,14.5 + parent: 2 + - uid: 3427 components: - type: Transform - pos: 44.5,7.5 - parent: 89 - - uid: 1961 + pos: 9.5,15.5 + parent: 2 + - uid: 3428 components: - type: Transform - pos: 44.5,6.5 - parent: 89 - - uid: 1962 + pos: 9.5,16.5 + parent: 2 + - uid: 3429 components: - type: Transform - pos: 44.5,5.5 - parent: 89 - - uid: 1963 + pos: 9.5,17.5 + parent: 2 + - uid: 3430 components: - type: Transform - pos: 44.5,4.5 - parent: 89 - - uid: 1967 + pos: 10.5,17.5 + parent: 2 + - uid: 3431 components: - type: Transform - pos: 43.5,6.5 - parent: 89 - - uid: 1968 + pos: 7.5,12.5 + parent: 2 + - uid: 3432 components: - type: Transform - pos: 42.5,6.5 - parent: 89 - - uid: 1969 + pos: 7.5,11.5 + parent: 2 + - uid: 3433 components: - type: Transform - pos: 43.5,9.5 - parent: 89 - - uid: 1970 + pos: 6.5,11.5 + parent: 2 + - uid: 3434 components: - type: Transform - pos: 42.5,9.5 - parent: 89 - - uid: 1971 + pos: 6.5,10.5 + parent: 2 + - uid: 3435 components: - type: Transform - pos: 45.5,9.5 - parent: 89 - - uid: 1972 + pos: 6.5,9.5 + parent: 2 + - uid: 3436 components: - type: Transform - pos: 45.5,6.5 - parent: 89 - - uid: 2113 + pos: 6.5,8.5 + parent: 2 + - uid: 3437 components: - type: Transform - pos: 1.5,23.5 - parent: 89 - - uid: 2369 + pos: 6.5,7.5 + parent: 2 + - uid: 3438 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2375 + pos: 7.5,7.5 + parent: 2 + - uid: 3439 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2376 + pos: 8.5,7.5 + parent: 2 + - uid: 3440 components: - type: Transform - pos: 32.5,5.5 - parent: 89 - - uid: 2384 + pos: 9.5,7.5 + parent: 2 + - uid: 3441 components: - type: Transform - pos: 39.5,6.5 - parent: 89 - - uid: 2427 + pos: 10.5,7.5 + parent: 2 + - uid: 3442 components: - type: Transform - pos: 31.5,8.5 - parent: 89 - - uid: 2428 + pos: 11.5,7.5 + parent: 2 + - uid: 3443 components: - type: Transform - pos: 32.5,8.5 - parent: 89 - - uid: 2440 + pos: 12.5,7.5 + parent: 2 + - uid: 3444 components: - type: Transform - pos: 30.5,8.5 - parent: 89 - - uid: 2441 + pos: 13.5,7.5 + parent: 2 + - uid: 3445 components: - type: Transform - pos: 31.5,7.5 - parent: 89 - - uid: 2442 + pos: 9.5,12.5 + parent: 2 + - uid: 3446 components: - type: Transform - pos: 31.5,6.5 - parent: 89 - - uid: 2444 + pos: 10.5,12.5 + parent: 2 + - uid: 3447 components: - type: Transform - pos: 30.5,6.5 - parent: 89 - - uid: 2445 + pos: 0.5,13.5 + parent: 2 + - uid: 3448 components: - type: Transform - pos: 30.5,5.5 - parent: 89 - - uid: 2447 + pos: 33.5,23.5 + parent: 2 + - uid: 3449 components: - type: Transform - pos: 32.5,6.5 - parent: 89 - - uid: 2449 + pos: 0.5,11.5 + parent: 2 + - uid: 3450 components: - type: Transform - pos: 39.5,14.5 - parent: 89 - - uid: 2450 + pos: 0.5,10.5 + parent: 2 + - uid: 3451 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 2451 + pos: 0.5,9.5 + parent: 2 + - uid: 3452 components: - type: Transform - pos: 37.5,14.5 - parent: 89 - - uid: 2452 + pos: 0.5,8.5 + parent: 2 + - uid: 3453 components: - type: Transform - pos: 37.5,15.5 - parent: 89 - - uid: 2453 + pos: 0.5,7.5 + parent: 2 + - uid: 3454 components: - type: Transform - pos: 36.5,15.5 - parent: 89 - - uid: 2454 + pos: -2.5,11.5 + parent: 2 + - uid: 3455 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 2455 + pos: -2.5,10.5 + parent: 2 + - uid: 3456 components: - type: Transform - pos: 34.5,15.5 - parent: 89 - - uid: 2456 + pos: -2.5,9.5 + parent: 2 + - uid: 3457 components: - type: Transform - pos: 33.5,15.5 - parent: 89 - - uid: 2457 + pos: -2.5,8.5 + parent: 2 + - uid: 3458 components: - type: Transform - pos: 32.5,15.5 - parent: 89 - - uid: 2458 + pos: -2.5,7.5 + parent: 2 + - uid: 3459 components: - type: Transform - pos: 31.5,15.5 - parent: 89 - - uid: 2459 + pos: -2.5,6.5 + parent: 2 + - uid: 3460 components: - type: Transform - pos: 31.5,14.5 - parent: 89 - - uid: 2460 + pos: -6.5,11.5 + parent: 2 + - uid: 3461 components: - type: Transform - pos: 31.5,13.5 - parent: 89 - - uid: 2461 + pos: -6.5,10.5 + parent: 2 + - uid: 3462 components: - type: Transform - pos: 31.5,12.5 - parent: 89 - - uid: 2462 + pos: -6.5,9.5 + parent: 2 + - uid: 3463 components: - type: Transform - pos: 32.5,12.5 - parent: 89 - - uid: 2463 + pos: -6.5,8.5 + parent: 2 + - uid: 3464 components: - type: Transform - pos: 33.5,12.5 - parent: 89 - - uid: 2464 + pos: -6.5,7.5 + parent: 2 + - uid: 3465 components: - type: Transform - pos: 34.5,12.5 - parent: 89 - - uid: 2465 + pos: 13.5,27.5 + parent: 2 + - uid: 3466 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 2466 + pos: 10.5,34.5 + parent: 2 + - uid: 3467 components: - type: Transform - pos: 36.5,12.5 - parent: 89 - - uid: 2467 + pos: 10.5,35.5 + parent: 2 + - uid: 3468 components: - type: Transform - pos: 37.5,12.5 - parent: 89 - - uid: 2468 + pos: 10.5,36.5 + parent: 2 + - uid: 3469 components: - type: Transform - pos: 37.5,13.5 - parent: 89 - - uid: 2469 + pos: 9.5,36.5 + parent: 2 + - uid: 3470 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 2470 + pos: 13.5,26.5 + parent: 2 + - uid: 3471 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 2482 + pos: 13.5,25.5 + parent: 2 + - uid: 3472 components: - type: Transform - pos: 41.5,4.5 - parent: 89 - - uid: 2483 + pos: 13.5,24.5 + parent: 2 + - uid: 3473 components: - type: Transform - pos: 40.5,4.5 - parent: 89 - - uid: 2484 + pos: 13.5,14.5 + parent: 2 + - uid: 3474 components: - type: Transform - pos: 39.5,4.5 - parent: 89 - - uid: 2485 + pos: 13.5,14.5 + parent: 2 + - uid: 3475 components: - type: Transform - pos: 38.5,4.5 - parent: 89 - - uid: 2486 + pos: 13.5,15.5 + parent: 2 + - uid: 3476 components: - type: Transform - pos: 36.5,2.5 - parent: 89 - - uid: 2488 + pos: 13.5,16.5 + parent: 2 + - uid: 3477 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 2489 + pos: 13.5,17.5 + parent: 2 + - uid: 3478 components: - type: Transform - pos: 34.5,4.5 - parent: 89 - - uid: 2490 + pos: 40.5,1.5 + parent: 2 + - uid: 3479 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 2491 + pos: -10.5,-6.5 + parent: 2 + - uid: 3480 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 2492 + pos: 34.5,26.5 + parent: 2 + - uid: 3481 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 2493 + pos: 34.5,25.5 + parent: 2 + - uid: 3482 components: - type: Transform - pos: 39.5,7.5 - parent: 89 - - uid: 2494 + pos: 34.5,24.5 + parent: 2 + - uid: 3483 components: - type: Transform - pos: 39.5,8.5 - parent: 89 - - uid: 2495 + pos: 34.5,23.5 + parent: 2 + - uid: 3484 components: - type: Transform - pos: 39.5,3.5 - parent: 89 - - uid: 2496 + pos: 34.5,22.5 + parent: 2 + - uid: 3485 components: - type: Transform - pos: 39.5,2.5 - parent: 89 - - uid: 2497 + pos: 35.5,22.5 + parent: 2 + - uid: 3486 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 2499 + pos: 36.5,22.5 + parent: 2 + - uid: 3487 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 2500 + pos: 33.5,22.5 + parent: 2 + - uid: 3488 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 2501 + pos: 32.5,22.5 + parent: 2 + - uid: 3489 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 2568 + pos: 31.5,22.5 + parent: 2 + - uid: 3490 components: - type: Transform - pos: 56.5,-5.5 - parent: 89 - - uid: 2574 + pos: 30.5,22.5 + parent: 2 + - uid: 3491 components: - type: Transform - pos: 57.5,-5.5 - parent: 89 - - uid: 2576 + pos: 29.5,22.5 + parent: 2 + - uid: 3492 components: - type: Transform - pos: 58.5,-5.5 - parent: 89 - - uid: 2612 + pos: 28.5,22.5 + parent: 2 + - uid: 3493 components: - type: Transform - pos: -5.5,-29.5 - parent: 89 - - uid: 2783 + pos: 27.5,22.5 + parent: 2 + - uid: 3494 components: - type: Transform - pos: 49.5,-3.5 - parent: 89 - - uid: 2784 + pos: 26.5,22.5 + parent: 2 + - uid: 3495 components: - type: Transform - pos: 48.5,-3.5 - parent: 89 - - uid: 2785 + pos: 25.5,22.5 + parent: 2 + - uid: 3496 components: - type: Transform - pos: 47.5,-3.5 - parent: 89 - - uid: 2786 + pos: 24.5,22.5 + parent: 2 + - uid: 3497 components: - type: Transform - pos: 48.5,-2.5 - parent: 89 - - uid: 2841 + pos: 23.5,22.5 + parent: 2 + - uid: 3498 components: - type: Transform - pos: 37.5,7.5 - parent: 89 - - uid: 2942 + pos: 13.5,13.5 + parent: 2 + - uid: 3499 components: - type: Transform - pos: 58.5,-4.5 - parent: 89 - - uid: 2953 + pos: 20.5,9.5 + parent: 2 + - uid: 3500 components: - type: Transform - pos: 38.5,2.5 - parent: 89 - - uid: 2954 + pos: 20.5,8.5 + parent: 2 + - uid: 3501 components: - type: Transform - pos: 36.5,7.5 - parent: 89 - - uid: 2956 + pos: 20.5,7.5 + parent: 2 + - uid: 3502 components: - type: Transform - pos: 37.5,2.5 - parent: 89 - - uid: 2958 + pos: 19.5,7.5 + parent: 2 + - uid: 3503 components: - type: Transform - pos: 22.5,-5.5 - parent: 89 - - uid: 2962 + pos: 18.5,7.5 + parent: 2 + - uid: 3504 components: - type: Transform - pos: 38.5,7.5 - parent: 89 - - uid: 2987 + pos: 17.5,7.5 + parent: 2 + - uid: 3505 components: - type: Transform - pos: 20.5,-5.5 - parent: 89 - - uid: 2988 + pos: 19.5,6.5 + parent: 2 + - uid: 3506 components: - type: Transform - pos: 19.5,-5.5 - parent: 89 - - uid: 3082 + pos: 21.5,9.5 + parent: 2 + - uid: 3507 components: - type: Transform - pos: -11.5,-22.5 - parent: 89 - - uid: 3083 + pos: 21.5,10.5 + parent: 2 + - uid: 3508 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 - - uid: 3102 + pos: 21.5,11.5 + parent: 2 + - uid: 3509 components: - type: Transform - pos: 58.5,-3.5 - parent: 89 - - uid: 3107 + pos: 20.5,11.5 + parent: 2 + - uid: 3510 components: - type: Transform - pos: 53.5,-2.5 - parent: 89 - - uid: 3109 + pos: 19.5,11.5 + parent: 2 + - uid: 3511 components: - type: Transform - pos: 53.5,-4.5 - parent: 89 - - uid: 3110 + pos: 21.5,7.5 + parent: 2 + - uid: 3512 components: - type: Transform - pos: 50.5,-2.5 - parent: 89 - - uid: 3111 + pos: 21.5,6.5 + parent: 2 + - uid: 3513 components: - type: Transform - pos: 53.5,-1.5 - parent: 89 - - uid: 3112 + pos: -117.5,-11.5 + parent: 2 + - uid: 3514 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 3113 + pos: -117.5,-12.5 + parent: 2 + - uid: 3515 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 3114 + pos: -117.5,-13.5 + parent: 2 + - uid: 3516 components: - type: Transform - pos: 53.5,-0.5 - parent: 89 - - uid: 3246 + pos: -118.5,-13.5 + parent: 2 + - uid: 3517 components: - type: Transform - pos: 53.5,-3.5 - parent: 89 - - uid: 3291 + pos: -119.5,-13.5 + parent: 2 + - uid: 3518 components: - type: Transform - pos: -73.5,-16.5 - parent: 89 - - uid: 3293 + pos: -120.5,-13.5 + parent: 2 + - uid: 3519 components: - type: Transform - pos: -74.5,-16.5 - parent: 89 - - uid: 3299 + pos: -120.5,-12.5 + parent: 2 + - uid: 3520 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 3373 + pos: -122.5,-12.5 + parent: 2 + - uid: 3521 components: - type: Transform - pos: 48.5,-4.5 - parent: 89 - - uid: 3399 + pos: -121.5,-12.5 + parent: 2 + - uid: 3522 components: - type: Transform - pos: 58.5,-2.5 - parent: 89 - - uid: 4037 + pos: -57.5,8.5 + parent: 2 + - uid: 3523 components: - type: Transform - pos: 18.5,-1.5 - parent: 89 - - uid: 4518 + pos: -56.5,8.5 + parent: 2 + - uid: 3524 components: - type: Transform - pos: 14.5,18.5 - parent: 89 - - uid: 4916 + pos: -55.5,8.5 + parent: 2 + - uid: 3525 components: - type: Transform - pos: 62.5,-3.5 - parent: 89 - - uid: 5040 + pos: -55.5,9.5 + parent: 2 + - uid: 3526 components: - type: Transform - pos: 58.5,-0.5 - parent: 89 - - uid: 5061 + pos: -55.5,10.5 + parent: 2 + - uid: 3527 components: - type: Transform - pos: 54.5,-5.5 - parent: 89 - - uid: 5402 + pos: -54.5,10.5 + parent: 2 + - uid: 3528 components: - type: Transform - pos: 53.5,-5.5 - parent: 89 - - uid: 5403 + pos: -53.5,10.5 + parent: 2 + - uid: 3529 components: - type: Transform - pos: 55.5,-5.5 - parent: 89 - - uid: 5404 + pos: -52.5,10.5 + parent: 2 + - uid: 3530 components: - type: Transform - pos: 64.5,-3.5 - parent: 89 - - uid: 5406 + pos: -51.5,10.5 + parent: 2 + - uid: 3531 components: - type: Transform - pos: 63.5,-3.5 - parent: 89 - - uid: 5444 + pos: -50.5,10.5 + parent: 2 + - uid: 3532 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 5449 + pos: -49.5,10.5 + parent: 2 + - uid: 3533 components: - type: Transform - pos: 61.5,-3.5 - parent: 89 - - uid: 5450 + pos: -48.5,10.5 + parent: 2 + - uid: 3534 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - uid: 5477 + pos: -47.5,10.5 + parent: 2 + - uid: 3535 components: - type: Transform - pos: -18.5,13.5 - parent: 89 - - uid: 5862 + pos: -46.5,10.5 + parent: 2 + - uid: 3536 components: - type: Transform - pos: -73.5,-15.5 - parent: 89 - - uid: 5863 + pos: -45.5,10.5 + parent: 2 + - uid: 3537 components: - type: Transform - pos: -73.5,-14.5 - parent: 89 - - uid: 5864 + pos: -44.5,10.5 + parent: 2 + - uid: 3538 components: - type: Transform - pos: -73.5,-13.5 - parent: 89 - - uid: 5865 + pos: -44.5,9.5 + parent: 2 + - uid: 3539 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 5866 + pos: -44.5,8.5 + parent: 2 + - uid: 3540 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 5867 + pos: -44.5,7.5 + parent: 2 + - uid: 3541 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 5868 + pos: -50.5,9.5 + parent: 2 + - uid: 3542 components: - type: Transform - pos: -69.5,-16.5 - parent: 89 - - uid: 5869 + pos: -50.5,8.5 + parent: 2 + - uid: 3543 components: - type: Transform - pos: -70.5,-7.5 - parent: 89 - - uid: 5870 + pos: -50.5,7.5 + parent: 2 + - uid: 3544 components: - type: Transform - pos: -65.5,-8.5 - parent: 89 - - uid: 5871 + pos: -63.5,-6.5 + parent: 2 + - uid: 3545 components: - type: Transform - pos: -66.5,-8.5 - parent: 89 - - uid: 5872 + pos: -21.5,28.5 + parent: 2 + - uid: 3546 components: - type: Transform - pos: -67.5,-8.5 - parent: 89 - - uid: 5873 + pos: -21.5,29.5 + parent: 2 + - uid: 3547 components: - type: Transform - pos: -68.5,-8.5 - parent: 89 - - uid: 5874 + pos: -20.5,29.5 + parent: 2 + - uid: 3548 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 5875 + pos: -20.5,30.5 + parent: 2 + - uid: 3549 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 - - uid: 5876 + pos: -38.5,28.5 + parent: 2 + - uid: 3550 components: - type: Transform - pos: -64.5,-8.5 - parent: 89 - - uid: 5877 + pos: -38.5,29.5 + parent: 2 + - uid: 3551 components: - type: Transform - pos: -63.5,-8.5 - parent: 89 - - uid: 5878 + pos: -39.5,29.5 + parent: 2 + - uid: 3552 components: - type: Transform - pos: -62.5,-8.5 - parent: 89 - - uid: 5879 + pos: -39.5,30.5 + parent: 2 + - uid: 3553 components: - type: Transform - pos: -63.5,-9.5 - parent: 89 - - uid: 5880 + pos: -39.5,31.5 + parent: 2 + - uid: 3554 components: - type: Transform - pos: -63.5,-10.5 - parent: 89 - - uid: 5881 + pos: -38.5,31.5 + parent: 2 + - uid: 3555 components: - type: Transform - pos: -63.5,-11.5 - parent: 89 - - uid: 5882 + pos: 37.5,22.5 + parent: 2 + - uid: 3556 components: - type: Transform - pos: -63.5,-12.5 - parent: 89 - - uid: 5883 + pos: -12.5,-34.5 + parent: 2 + - uid: 3557 components: - type: Transform - pos: -63.5,-13.5 - parent: 89 - - uid: 5884 + pos: -12.5,-33.5 + parent: 2 + - uid: 3558 components: - type: Transform - pos: -63.5,-14.5 - parent: 89 - - uid: 5885 + pos: -12.5,-32.5 + parent: 2 + - uid: 3559 components: - type: Transform - pos: -63.5,-15.5 - parent: 89 - - uid: 5886 + pos: -12.5,-31.5 + parent: 2 + - uid: 3560 components: - type: Transform - pos: -63.5,-16.5 - parent: 89 - - uid: 5887 + pos: -12.5,-30.5 + parent: 2 + - uid: 3561 components: - type: Transform - pos: -63.5,-17.5 - parent: 89 - - uid: 5889 + pos: -12.5,-29.5 + parent: 2 + - uid: 3562 components: - type: Transform - pos: -62.5,-17.5 - parent: 89 - - uid: 5890 + pos: -12.5,-28.5 + parent: 2 + - uid: 3563 components: - type: Transform - pos: -62.5,-18.5 - parent: 89 - - uid: 5891 + pos: -11.5,-27.5 + parent: 2 + - uid: 3564 components: - type: Transform - pos: -62.5,-19.5 - parent: 89 - - uid: 5892 + pos: -14.5,-26.5 + parent: 2 + - uid: 3565 components: - type: Transform - pos: -60.5,-17.5 - parent: 89 - - uid: 5893 + pos: -15.5,-26.5 + parent: 2 + - uid: 3566 components: - type: Transform - pos: -60.5,-18.5 - parent: 89 - - uid: 5894 + pos: -16.5,-26.5 + parent: 2 + - uid: 3567 components: - type: Transform - pos: -60.5,-19.5 - parent: 89 - - uid: 5895 + pos: -17.5,-26.5 + parent: 2 + - uid: 3568 components: - type: Transform - pos: -61.5,-17.5 - parent: 89 - - uid: 5896 + pos: -18.5,-26.5 + parent: 2 + - uid: 3569 components: - type: Transform - pos: -59.5,-17.5 - parent: 89 - - uid: 5897 + pos: -19.5,-26.5 + parent: 2 + - uid: 3570 components: - type: Transform - pos: -59.5,-16.5 - parent: 89 - - uid: 5898 + pos: -20.5,-26.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: -59.5,-15.5 - parent: 89 - - uid: 5899 + pos: -20.5,-25.5 + parent: 2 + - uid: 3572 components: - type: Transform - pos: -59.5,-14.5 - parent: 89 - - uid: 5900 + pos: -21.5,-25.5 + parent: 2 + - uid: 3573 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 - - uid: 5901 + pos: -22.5,-25.5 + parent: 2 + - uid: 3574 components: - type: Transform - pos: -59.5,-12.5 - parent: 89 - - uid: 5902 + pos: -23.5,-25.5 + parent: 2 + - uid: 3575 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 - - uid: 5903 + pos: -24.5,-25.5 + parent: 2 + - uid: 3576 components: - type: Transform - pos: -59.5,-10.5 - parent: 89 - - uid: 5904 + pos: -25.5,-25.5 + parent: 2 + - uid: 3577 components: - type: Transform - pos: -59.5,-9.5 - parent: 89 - - uid: 5905 + pos: -25.5,-24.5 + parent: 2 + - uid: 3578 components: - type: Transform - pos: -59.5,-8.5 - parent: 89 - - uid: 5906 + pos: -25.5,-23.5 + parent: 2 + - uid: 3579 components: - type: Transform - pos: -60.5,-8.5 - parent: 89 - - uid: 5907 + pos: -25.5,-22.5 + parent: 2 + - uid: 3580 components: - type: Transform - pos: -61.5,-8.5 - parent: 89 - - uid: 5908 + pos: -25.5,-21.5 + parent: 2 + - uid: 3581 components: - type: Transform - pos: -59.5,-7.5 - parent: 89 - - uid: 5909 + pos: -25.5,-20.5 + parent: 2 + - uid: 3582 components: - type: Transform - pos: -59.5,-6.5 - parent: 89 - - uid: 5910 + pos: -25.5,-19.5 + parent: 2 + - uid: 3583 components: - type: Transform - pos: -58.5,-6.5 - parent: 89 - - uid: 5911 + pos: -25.5,-18.5 + parent: 2 + - uid: 3584 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 5912 + pos: -25.5,-17.5 + parent: 2 + - uid: 3585 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 5913 + pos: -25.5,-16.5 + parent: 2 + - uid: 3586 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - uid: 5914 + pos: -26.5,-16.5 + parent: 2 + - uid: 3587 components: - type: Transform - pos: -55.5,-7.5 - parent: 89 - - uid: 5915 + pos: -27.5,-16.5 + parent: 2 + - uid: 3588 components: - type: Transform - pos: -55.5,-8.5 - parent: 89 - - uid: 5916 + pos: -28.5,-16.5 + parent: 2 + - uid: 3589 components: - type: Transform - pos: -55.5,-9.5 - parent: 89 - - uid: 5917 + pos: -29.5,-16.5 + parent: 2 + - uid: 3590 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 5918 + pos: -30.5,-16.5 + parent: 2 + - uid: 3591 components: - type: Transform - pos: -55.5,-5.5 - parent: 89 - - uid: 5919 + pos: -31.5,-16.5 + parent: 2 + - uid: 3592 components: - type: Transform - pos: -66.5,-7.5 - parent: 89 - - uid: 5920 + pos: -32.5,-16.5 + parent: 2 + - uid: 3593 components: - type: Transform - pos: -66.5,-6.5 - parent: 89 - - uid: 5926 + pos: -35.5,-16.5 + parent: 2 + - uid: 3594 components: - type: Transform - pos: -67.5,-6.5 - parent: 89 - - uid: 5927 + pos: -37.5,-15.5 + parent: 2 + - uid: 3595 components: - type: Transform - pos: -68.5,-6.5 - parent: 89 - - uid: 5928 + pos: -38.5,-15.5 + parent: 2 + - uid: 3596 components: - type: Transform - pos: -69.5,-6.5 - parent: 89 - - uid: 5929 + pos: -39.5,-15.5 + parent: 2 + - uid: 3597 components: - type: Transform - pos: -70.5,-6.5 - parent: 89 - - uid: 5930 + pos: -40.5,-15.5 + parent: 2 + - uid: 3598 components: - type: Transform - pos: -70.5,-5.5 - parent: 89 - - uid: 5931 + pos: -41.5,-15.5 + parent: 2 + - uid: 3599 components: - type: Transform - pos: -52.5,-11.5 - parent: 89 - - uid: 5932 + pos: -42.5,-15.5 + parent: 2 + - uid: 3600 components: - type: Transform - pos: -51.5,-11.5 - parent: 89 - - uid: 5933 + pos: -43.5,-15.5 + parent: 2 + - uid: 3601 components: - type: Transform - pos: -50.5,-11.5 - parent: 89 - - uid: 5934 + pos: -43.5,-14.5 + parent: 2 + - uid: 3602 components: - type: Transform - pos: -49.5,-11.5 - parent: 89 - - uid: 5935 + pos: -43.5,-13.5 + parent: 2 + - uid: 3603 components: - type: Transform - pos: -48.5,-11.5 - parent: 89 - - uid: 5936 + pos: -43.5,-12.5 + parent: 2 + - uid: 3604 components: - type: Transform - pos: -47.5,-11.5 - parent: 89 - - uid: 5937 + pos: -43.5,-11.5 + parent: 2 + - uid: 3605 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 5938 + pos: -43.5,-10.5 + parent: 2 + - uid: 3606 components: - type: Transform - pos: -51.5,-9.5 - parent: 89 - - uid: 5939 + pos: -43.5,-9.5 + parent: 2 + - uid: 3607 components: - type: Transform - pos: -51.5,-12.5 - parent: 89 - - uid: 5940 + pos: -43.5,-8.5 + parent: 2 + - uid: 3608 components: - type: Transform - pos: -51.5,-13.5 - parent: 89 - - uid: 5941 + pos: -43.5,-7.5 + parent: 2 + - uid: 3609 components: - type: Transform - pos: -51.5,-14.5 - parent: 89 - - uid: 5942 + pos: -43.5,-6.5 + parent: 2 + - uid: 3610 components: - type: Transform - pos: -51.5,-15.5 - parent: 89 - - uid: 5943 + pos: 6.5,-16.5 + parent: 2 + - uid: 3611 components: - type: Transform - pos: -51.5,-16.5 - parent: 89 - - uid: 5944 + pos: -10.5,-24.5 + parent: 2 + - uid: 3612 components: - type: Transform - pos: -51.5,-17.5 - parent: 89 - - uid: 5961 + pos: -10.5,-25.5 + parent: 2 + - uid: 3613 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 5962 + pos: -11.5,-25.5 + parent: 2 + - uid: 3614 components: - type: Transform - pos: -47.5,-13.5 - parent: 89 - - uid: 5963 + pos: 15.5,-10.5 + parent: 2 + - uid: 3615 components: - type: Transform - pos: -47.5,-14.5 - parent: 89 - - uid: 5964 + pos: 15.5,-11.5 + parent: 2 + - uid: 3616 components: - type: Transform - pos: -47.5,-15.5 - parent: 89 - - uid: 5965 + pos: 15.5,-12.5 + parent: 2 + - uid: 3617 components: - type: Transform - pos: -47.5,-16.5 - parent: 89 - - uid: 5966 + pos: 12.5,-15.5 + parent: 2 + - uid: 3618 components: - type: Transform - pos: -47.5,-17.5 - parent: 89 - - uid: 5967 + pos: 11.5,-15.5 + parent: 2 + - uid: 3619 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 5968 + pos: 10.5,-15.5 + parent: 2 + - uid: 3620 components: - type: Transform - pos: -47.5,-19.5 - parent: 89 - - uid: 5970 + pos: 9.5,-15.5 + parent: 2 + - uid: 3621 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 5972 + pos: 8.5,-15.5 + parent: 2 + - uid: 3622 components: - type: Transform - pos: -48.5,-19.5 - parent: 89 - - uid: 5973 + pos: 7.5,-15.5 + parent: 2 + - uid: 3623 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 5974 + pos: 6.5,-15.5 + parent: 2 + - uid: 3624 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 - - uid: 5975 + pos: 6.5,-17.5 + parent: 2 + - uid: 3625 components: - type: Transform - pos: -52.5,-13.5 - parent: 89 - - uid: 5977 + pos: 6.5,-18.5 + parent: 2 + - uid: 3626 components: - type: Transform - pos: -53.5,-13.5 - parent: 89 - - uid: 5978 + pos: 6.5,-19.5 + parent: 2 + - uid: 3627 components: - type: Transform - pos: -54.5,-13.5 - parent: 89 - - uid: 5980 + pos: 6.5,-20.5 + parent: 2 + - uid: 3628 components: - type: Transform - pos: -55.5,-13.5 - parent: 89 - - uid: 5981 + pos: 6.5,-21.5 + parent: 2 + - uid: 3629 components: - type: Transform - pos: -52.5,-16.5 - parent: 89 - - uid: 5982 + pos: 6.5,-22.5 + parent: 2 + - uid: 3630 components: - type: Transform - pos: -53.5,-16.5 - parent: 89 - - uid: 5983 + pos: 6.5,-23.5 + parent: 2 + - uid: 3631 components: - type: Transform - pos: -54.5,-16.5 - parent: 89 - - uid: 5984 + pos: 6.5,-24.5 + parent: 2 + - uid: 3632 components: - type: Transform - pos: -55.5,-16.5 - parent: 89 - - uid: 5985 + pos: 5.5,-24.5 + parent: 2 + - uid: 3633 components: - type: Transform - pos: -64.5,-16.5 - parent: 89 - - uid: 5986 + pos: 5.5,-15.5 + parent: 2 + - uid: 3634 components: - type: Transform - pos: -65.5,-16.5 - parent: 89 - - uid: 5987 + pos: 4.5,-15.5 + parent: 2 + - uid: 3635 components: - type: Transform - pos: -66.5,-16.5 - parent: 89 - - uid: 5991 + pos: 3.5,-15.5 + parent: 2 + - uid: 3636 components: - type: Transform - pos: -66.5,-14.5 - parent: 89 - - uid: 5992 + pos: 24.5,28.5 + parent: 2 + - uid: 3637 components: - type: Transform - pos: -66.5,-13.5 - parent: 89 - - uid: 5993 + pos: -91.5,28.5 + parent: 2 + - uid: 3638 components: - type: Transform - pos: -66.5,-12.5 - parent: 89 - - uid: 5994 + pos: -54.5,48.5 + parent: 2 + - uid: 3639 components: - type: Transform - pos: -66.5,-11.5 - parent: 89 - - uid: 5995 + pos: -51.5,47.5 + parent: 2 + - uid: 3640 components: - type: Transform - pos: -66.5,-10.5 - parent: 89 - - uid: 5996 + pos: -52.5,48.5 + parent: 2 + - uid: 3641 components: - type: Transform - pos: -66.5,-9.5 - parent: 89 - - uid: 5998 + pos: -52.5,47.5 + parent: 2 + - uid: 3642 components: - type: Transform - pos: -66.5,-15.5 - parent: 89 - - uid: 5999 + pos: 33.5,26.5 + parent: 2 + - uid: 3643 components: - type: Transform - pos: -70.5,-11.5 - parent: 89 - - uid: 6000 + pos: 1.5,7.5 + parent: 2 + - uid: 3644 components: - type: Transform - pos: -70.5,-12.5 - parent: 89 - - uid: 6001 + pos: 2.5,7.5 + parent: 2 + - uid: 3645 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 6002 + pos: 3.5,7.5 + parent: 2 + - uid: 3646 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 6003 + pos: 2.5,6.5 + parent: 2 + - uid: 3647 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 6023 + pos: 2.5,8.5 + parent: 2 + - uid: 3648 components: - type: Transform - pos: -36.5,22.5 - parent: 89 - - uid: 6140 + pos: -66.5,30.5 + parent: 2 + - uid: 3649 components: - type: Transform - pos: 34.5,-12.5 - parent: 89 - - uid: 6227 + pos: 21.5,-5.5 + parent: 2 + - uid: 3650 components: - type: Transform - pos: 34.5,-10.5 - parent: 89 - - uid: 6231 + pos: -83.5,-12.5 + parent: 2 + - uid: 3651 components: - type: Transform - pos: -130.5,-7.5 - parent: 89 - - uid: 6315 + pos: -86.5,-20.5 + parent: 2 + - uid: 3652 components: - type: Transform - pos: -94.5,-8.5 - parent: 89 - - uid: 6317 + pos: -87.5,-20.5 + parent: 2 + - uid: 3653 components: - type: Transform - pos: -93.5,-8.5 - parent: 89 - - uid: 6332 + pos: -88.5,-20.5 + parent: 2 + - uid: 3654 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 6335 + pos: -89.5,-20.5 + parent: 2 + - uid: 3655 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 6336 + pos: -90.5,-20.5 + parent: 2 + - uid: 3656 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 6337 + pos: -91.5,-20.5 + parent: 2 + - uid: 3657 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 6340 + pos: -92.5,-20.5 + parent: 2 + - uid: 3658 components: - type: Transform - pos: -63.5,-5.5 - parent: 89 - - uid: 6373 + pos: -93.5,-20.5 + parent: 2 + - uid: 3659 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 6378 + pos: -94.5,-20.5 + parent: 2 + - uid: 3660 components: - type: Transform - pos: -2.5,23.5 - parent: 89 - - uid: 6379 + pos: -95.5,-20.5 + parent: 2 + - uid: 3661 components: - type: Transform - pos: -0.5,23.5 - parent: 89 - - uid: 6460 + pos: -96.5,-20.5 + parent: 2 + - uid: 3662 components: - type: Transform - pos: -83.5,37.5 - parent: 89 - - uid: 6463 + pos: -97.5,-20.5 + parent: 2 + - uid: 3663 components: - type: Transform - pos: -67.5,30.5 - parent: 89 - - uid: 6465 + pos: -98.5,-20.5 + parent: 2 + - uid: 3664 components: - type: Transform - pos: -82.5,37.5 - parent: 89 - - uid: 6466 + pos: -99.5,-20.5 + parent: 2 + - uid: 3665 components: - type: Transform - pos: -68.5,30.5 - parent: 89 - - uid: 6477 + pos: -100.5,-20.5 + parent: 2 + - uid: 3666 components: - type: Transform - pos: -69.5,30.5 - parent: 89 - - uid: 6481 + pos: -101.5,-20.5 + parent: 2 + - uid: 3667 components: - type: Transform - pos: -66.5,37.5 - parent: 89 - - uid: 6482 + pos: 40.5,-5.5 + parent: 2 + - uid: 3668 components: - type: Transform - pos: -69.5,37.5 - parent: 89 - - uid: 6483 + pos: 40.5,-4.5 + parent: 2 + - uid: 3669 components: - type: Transform - pos: -68.5,37.5 - parent: 89 - - uid: 6484 + pos: 40.5,-3.5 + parent: 2 + - uid: 3670 components: - type: Transform - pos: -67.5,37.5 - parent: 89 - - uid: 6520 + pos: 41.5,-3.5 + parent: 2 + - uid: 3671 components: - type: Transform - pos: -130.5,-6.5 - parent: 89 - - uid: 6522 + pos: 42.5,-3.5 + parent: 2 + - uid: 3672 components: - type: Transform - pos: -81.5,30.5 - parent: 89 - - uid: 6718 + pos: 43.5,-3.5 + parent: 2 + - uid: 3673 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 6719 + pos: 43.5,-4.5 + parent: 2 + - uid: 3674 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 6942 + pos: 43.5,-5.5 + parent: 2 + - uid: 3675 components: - type: Transform - pos: -132.5,-7.5 - parent: 89 - - uid: 6955 + pos: 43.5,-6.5 + parent: 2 + - uid: 3676 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 6956 + pos: 43.5,-7.5 + parent: 2 + - uid: 3677 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - uid: 6957 + pos: 43.5,-8.5 + parent: 2 + - uid: 3678 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 6981 + pos: 42.5,-8.5 + parent: 2 + - uid: 3679 components: - type: Transform - pos: 34.5,-11.5 - parent: 89 - - uid: 7139 + pos: 41.5,-8.5 + parent: 2 + - uid: 3680 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 7301 + pos: 42.5,-10.5 + parent: 2 + - uid: 3681 components: - type: Transform - pos: -87.5,-11.5 - parent: 89 - - uid: 7327 + pos: 42.5,-11.5 + parent: 2 + - uid: 3682 components: - type: Transform - pos: -83.5,-12.5 - parent: 89 - - uid: 7466 + pos: 42.5,-12.5 + parent: 2 + - uid: 3683 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 7475 + pos: 42.5,-13.5 + parent: 2 + - uid: 3684 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 7476 + pos: 42.5,-14.5 + parent: 2 + - uid: 3685 components: - type: Transform - pos: -86.5,-10.5 - parent: 89 - - uid: 7488 + pos: 42.5,-15.5 + parent: 2 + - uid: 3686 components: - type: Transform - pos: -83.5,-11.5 - parent: 89 - - uid: 7498 + pos: 43.5,-12.5 + parent: 2 + - uid: 3687 components: - type: Transform - pos: -86.5,-11.5 - parent: 89 - - uid: 7504 + pos: 44.5,-12.5 + parent: 2 + - uid: 3688 components: - type: Transform - pos: -85.5,-11.5 - parent: 89 - - uid: 7508 + pos: 45.5,-12.5 + parent: 2 + - uid: 3689 components: - type: Transform - pos: -84.5,-11.5 - parent: 89 - - uid: 7509 + pos: 46.5,-12.5 + parent: 2 + - uid: 3690 components: - type: Transform - pos: -86.5,-8.5 - parent: 89 - - uid: 7533 + pos: 47.5,-12.5 + parent: 2 + - uid: 3691 components: - type: Transform - pos: -86.5,-7.5 - parent: 89 - - uid: 7614 + pos: 48.5,-12.5 + parent: 2 + - uid: 3692 components: - type: Transform - pos: -34.5,-17.5 - parent: 89 - - uid: 7615 + pos: 49.5,-12.5 + parent: 2 + - uid: 3693 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 8139 + pos: 38.5,-13.5 + parent: 2 + - uid: 3694 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 8148 + pos: 50.5,-12.5 + parent: 2 + - uid: 3695 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 8166 + pos: 51.5,-12.5 + parent: 2 + - uid: 3696 components: - type: Transform - pos: -1.5,23.5 - parent: 89 - - uid: 8219 + pos: 43.5,-15.5 + parent: 2 + - uid: 3697 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8244 + pos: 44.5,-15.5 + parent: 2 + - uid: 3698 components: - type: Transform - pos: -2.5,30.5 - parent: 89 - - uid: 8247 + pos: 45.5,-15.5 + parent: 2 + - uid: 3699 components: - type: Transform - pos: -3.5,37.5 - parent: 89 - - uid: 8260 + pos: 46.5,-15.5 + parent: 2 + - uid: 3700 components: - type: Transform - pos: -2.5,38.5 - parent: 89 - - uid: 8261 + pos: 47.5,-15.5 + parent: 2 + - uid: 3701 components: - type: Transform - pos: -2.5,39.5 - parent: 89 - - uid: 8262 + pos: 48.5,-15.5 + parent: 2 + - uid: 3702 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8263 + pos: 49.5,-15.5 + parent: 2 + - uid: 3703 components: - type: Transform - pos: -3.5,39.5 - parent: 89 - - uid: 8264 + pos: 50.5,-15.5 + parent: 2 + - uid: 3704 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 8265 + pos: 51.5,-15.5 + parent: 2 + - uid: 3705 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8266 + pos: 42.5,-16.5 + parent: 2 + - uid: 3706 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 8267 + pos: 0.5,14.5 + parent: 2 + - uid: 3707 components: - type: Transform - pos: -3.5,33.5 - parent: 89 - - uid: 8269 + pos: 55.5,9.5 + parent: 2 + - uid: 3708 components: - type: Transform - pos: -3.5,31.5 - parent: 89 - - uid: 8270 + pos: 55.5,10.5 + parent: 2 + - uid: 3709 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 8271 + pos: 62.5,8.5 + parent: 2 + - uid: 3710 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 8272 + pos: 63.5,8.5 + parent: 2 + - uid: 3711 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8273 + pos: -44.5,11.5 + parent: 2 + - uid: 3712 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8274 + pos: 31.5,23.5 + parent: 2 + - uid: 3713 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8275 + pos: 31.5,24.5 + parent: 2 + - uid: 3714 components: - type: Transform - pos: -3.5,41.5 - parent: 89 - - uid: 8276 + pos: 12.5,26.5 + parent: 2 + - uid: 3715 components: - type: Transform - pos: -4.5,36.5 - parent: 89 - - uid: 8277 + pos: 11.5,26.5 + parent: 2 + - uid: 3716 components: - type: Transform - pos: -5.5,36.5 - parent: 89 - - uid: 8278 + pos: -85.5,37.5 + parent: 2 + - uid: 3717 components: - type: Transform - pos: -6.5,36.5 - parent: 89 - - uid: 8279 + pos: -86.5,37.5 + parent: 2 + - uid: 3718 components: - type: Transform - pos: -7.5,36.5 - parent: 89 - - uid: 8280 + pos: -85.5,39.5 + parent: 2 + - uid: 3719 components: - type: Transform - pos: -7.5,35.5 - parent: 89 - - uid: 8281 + pos: -86.5,39.5 + parent: 2 + - uid: 3720 components: - type: Transform - pos: -7.5,34.5 - parent: 89 - - uid: 8282 + pos: -87.5,39.5 + parent: 2 + - uid: 3721 components: - type: Transform - pos: -7.5,33.5 - parent: 89 - - uid: 8285 + pos: -87.5,37.5 + parent: 2 + - uid: 3722 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8286 + pos: -84.5,46.5 + parent: 2 + - uid: 3723 components: - type: Transform - pos: -2.5,35.5 - parent: 89 - - uid: 8287 + pos: -84.5,47.5 + parent: 2 + - uid: 3724 components: - type: Transform - pos: -1.5,35.5 - parent: 89 - - uid: 8289 + pos: -128.5,-11.5 + parent: 2 + - uid: 3725 components: - type: Transform - pos: 0.5,35.5 - parent: 89 - - uid: 8290 + pos: 10.5,26.5 + parent: 2 + - uid: 3726 components: - type: Transform - pos: 1.5,35.5 - parent: 89 - - uid: 8291 + pos: -128.5,-12.5 + parent: 2 + - uid: 3727 components: - type: Transform - pos: 1.5,36.5 - parent: 89 - - uid: 8296 + pos: 9.5,26.5 + parent: 2 + - uid: 3728 components: - type: Transform - pos: 0.5,30.5 - parent: 89 - - uid: 8297 + pos: 8.5,26.5 + parent: 2 + - uid: 3729 components: - type: Transform - pos: 1.5,30.5 - parent: 89 - - uid: 8298 + pos: -15.5,23.5 + parent: 2 + - uid: 3730 components: - type: Transform - pos: 2.5,30.5 - parent: 89 - - uid: 8300 + pos: 24.5,29.5 + parent: 2 + - uid: 3731 components: - type: Transform - pos: -4.5,30.5 - parent: 89 - - uid: 8301 + pos: 24.5,30.5 + parent: 2 + - uid: 3732 components: - type: Transform - pos: -5.5,30.5 - parent: 89 - - uid: 8303 + pos: 24.5,31.5 + parent: 2 + - uid: 3733 components: - type: Transform - pos: -7.5,30.5 - parent: 89 - - uid: 8304 + pos: 24.5,32.5 + parent: 2 + - uid: 3734 components: - type: Transform - pos: -8.5,30.5 - parent: 89 - - uid: 8306 + pos: 24.5,33.5 + parent: 2 + - uid: 3735 components: - type: Transform - pos: -2.5,26.5 - parent: 89 - - uid: 8307 + pos: 24.5,34.5 + parent: 2 + - uid: 3736 components: - type: Transform - pos: -1.5,26.5 - parent: 89 - - uid: 8308 + pos: 24.5,35.5 + parent: 2 + - uid: 3737 components: - type: Transform - pos: -0.5,26.5 - parent: 89 - - uid: 8309 + pos: 24.5,36.5 + parent: 2 + - uid: 3738 components: - type: Transform - pos: 0.5,26.5 - parent: 89 - - uid: 8311 + pos: 24.5,37.5 + parent: 2 + - uid: 3739 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8312 + pos: 24.5,38.5 + parent: 2 + - uid: 3740 components: - type: Transform - pos: -3.5,42.5 - parent: 89 - - uid: 8314 + pos: 24.5,39.5 + parent: 2 + - uid: 3741 components: - type: Transform - pos: -3.5,44.5 - parent: 89 - - uid: 8315 + pos: 24.5,40.5 + parent: 2 + - uid: 3742 components: - type: Transform - pos: -3.5,45.5 - parent: 89 - - uid: 8317 + pos: 23.5,40.5 + parent: 2 + - uid: 3743 components: - type: Transform - pos: -5.5,45.5 - parent: 89 - - uid: 8318 + pos: 23.5,41.5 + parent: 2 + - uid: 3744 components: - type: Transform - pos: -6.5,45.5 - parent: 89 - - uid: 8319 + pos: 23.5,42.5 + parent: 2 + - uid: 3745 components: - type: Transform - pos: -7.5,45.5 - parent: 89 - - uid: 8321 + pos: 24.5,42.5 + parent: 2 + - uid: 3746 components: - type: Transform - pos: -1.5,45.5 - parent: 89 - - uid: 8322 + pos: 23.5,35.5 + parent: 2 + - uid: 3747 components: - type: Transform - pos: -0.5,45.5 - parent: 89 - - uid: 8323 + pos: 25.5,35.5 + parent: 2 + - uid: 3748 components: - type: Transform - pos: 0.5,45.5 - parent: 89 - - uid: 8324 + pos: 26.5,35.5 + parent: 2 + - uid: 3749 components: - type: Transform - pos: -4.5,41.5 - parent: 89 - - uid: 8325 + pos: 35.5,26.5 + parent: 2 + - uid: 3750 components: - type: Transform - pos: -5.5,41.5 - parent: 89 - - uid: 8326 + pos: 36.5,26.5 + parent: 2 + - uid: 3751 components: - type: Transform - pos: -6.5,41.5 - parent: 89 - - uid: 8327 + pos: 37.5,26.5 + parent: 2 + - uid: 3752 components: - type: Transform - pos: -7.5,41.5 - parent: 89 - - uid: 8329 + pos: 38.5,26.5 + parent: 2 + - uid: 3753 components: - type: Transform - pos: -1.5,41.5 - parent: 89 - - uid: 8331 + pos: -128.5,-13.5 + parent: 2 + - uid: 3754 components: - type: Transform - pos: 0.5,41.5 - parent: 89 - - uid: 8332 + pos: -128.5,-14.5 + parent: 2 + - uid: 3755 components: - type: Transform - pos: 1.5,41.5 - parent: 89 - - uid: 8333 + pos: -128.5,-15.5 + parent: 2 + - uid: 3756 components: - type: Transform - pos: 2.5,41.5 - parent: 89 - - uid: 8334 + pos: -129.5,-15.5 + parent: 2 + - uid: 3757 components: - type: Transform - pos: -6.5,33.5 - parent: 89 - - uid: 8367 + pos: -127.5,-15.5 + parent: 2 + - uid: 3758 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 8368 + pos: 18.5,15.5 + parent: 2 + - uid: 3759 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 8449 + pos: -7.5,16.5 + parent: 2 + - uid: 3760 components: - type: Transform - pos: -15.5,22.5 - parent: 89 - - uid: 8769 + pos: -6.5,16.5 + parent: 2 + - uid: 3761 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 8837 + pos: -5.5,16.5 + parent: 2 + - uid: 3762 components: - type: Transform - pos: -129.5,-9.5 - parent: 89 - - uid: 8842 + pos: -5.5,17.5 + parent: 2 + - uid: 3763 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 8855 + pos: -5.5,18.5 + parent: 2 + - uid: 3764 components: - type: Transform - pos: -129.5,-8.5 - parent: 89 - - uid: 8911 + pos: -6.5,18.5 + parent: 2 + - uid: 3765 components: - type: Transform - pos: -129.5,-7.5 - parent: 89 - - uid: 9019 + pos: -7.5,18.5 + parent: 2 + - uid: 3766 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 9020 + pos: -8.5,18.5 + parent: 2 + - uid: 3767 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 9043 + pos: -9.5,18.5 + parent: 2 + - uid: 3768 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 9069 + pos: -10.5,18.5 + parent: 2 + - uid: 3769 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 9180 + pos: -4.5,18.5 + parent: 2 + - uid: 3770 components: - type: Transform - pos: -6.5,-41.5 - parent: 89 - - uid: 9268 + pos: -3.5,18.5 + parent: 2 + - uid: 3771 components: - type: Transform - pos: 29.5,8.5 - parent: 89 - - uid: 9269 + pos: -2.5,18.5 + parent: 2 + - uid: 3772 components: - type: Transform - pos: 28.5,8.5 - parent: 89 - - uid: 9270 + pos: -1.5,18.5 + parent: 2 + - uid: 3773 components: - type: Transform - pos: 27.5,8.5 - parent: 89 - - uid: 9271 + pos: -0.5,18.5 + parent: 2 + - uid: 3774 components: - type: Transform - pos: 26.5,8.5 - parent: 89 - - uid: 9272 + pos: -0.5,17.5 + parent: 2 + - uid: 3775 components: - type: Transform - pos: 25.5,8.5 - parent: 89 - - uid: 9273 + pos: -0.5,16.5 + parent: 2 + - uid: 3776 components: - type: Transform - pos: 28.5,6.5 - parent: 89 - - uid: 9274 + pos: -46.5,24.5 + parent: 2 + - uid: 3777 components: - type: Transform - pos: 29.5,6.5 - parent: 89 - - uid: 9275 + pos: 37.5,19.5 + parent: 2 + - uid: 3778 components: - type: Transform - pos: 27.5,6.5 - parent: 89 - - uid: 9276 + pos: 38.5,19.5 + parent: 2 + - uid: 3779 components: - type: Transform - pos: 26.5,6.5 - parent: 89 - - uid: 9277 + pos: 39.5,19.5 + parent: 2 + - uid: 3780 components: - type: Transform - pos: 25.5,6.5 - parent: 89 - - uid: 9318 + pos: 40.5,19.5 + parent: 2 + - uid: 3781 components: - type: Transform - pos: -63.5,-4.5 - parent: 89 - - uid: 9340 + pos: 0.5,16.5 + parent: 2 + - uid: 3782 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 9646 + pos: 41.5,19.5 + parent: 2 + - uid: 3783 components: - type: Transform - pos: -88.5,22.5 - parent: 89 - - uid: 9647 + pos: 42.5,19.5 + parent: 2 + - uid: 3784 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 9665 + pos: 1.5,16.5 + parent: 2 + - uid: 3785 components: - type: Transform - pos: -53.5,48.5 - parent: 89 - - uid: 9881 + pos: 2.5,16.5 + parent: 2 + - uid: 3786 components: - type: Transform - pos: 22.5,-2.5 - parent: 89 - - uid: 9884 + pos: -0.5,19.5 + parent: 2 + - uid: 3787 components: - type: Transform - pos: 18.5,-5.5 - parent: 89 - - uid: 10229 + pos: -0.5,20.5 + parent: 2 + - uid: 3788 components: - type: Transform - pos: 61.5,-0.5 - parent: 89 - - uid: 10418 + pos: 0.5,20.5 + parent: 2 + - uid: 3789 components: - type: Transform - pos: 61.5,-1.5 - parent: 89 - - uid: 10419 + pos: 1.5,20.5 + parent: 2 + - uid: 3790 components: - type: Transform - pos: 61.5,-2.5 - parent: 89 - - uid: 10508 + pos: 47.5,16.5 + parent: 2 + - uid: 3791 components: - type: Transform - pos: -17.5,-22.5 - parent: 89 - - uid: 10617 + pos: 47.5,17.5 + parent: 2 + - uid: 3792 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 10625 + pos: 47.5,18.5 + parent: 2 + - uid: 3793 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 10680 + pos: 47.5,19.5 + parent: 2 + - uid: 3794 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - uid: 10726 + pos: 47.5,20.5 + parent: 2 + - uid: 3795 components: - type: Transform - pos: 7.5,30.5 - parent: 89 - - uid: 10736 + pos: 48.5,20.5 + parent: 2 + - uid: 3796 components: - type: Transform - pos: -3.5,-42.5 - parent: 89 - - uid: 10737 + pos: 2.5,20.5 + parent: 2 + - uid: 3797 components: - type: Transform - pos: -3.5,-43.5 - parent: 89 - - uid: 10738 + pos: -1.5,16.5 + parent: 2 + - uid: 3798 components: - type: Transform - pos: -3.5,-44.5 - parent: 89 - - uid: 10740 + pos: -1.5,20.5 + parent: 2 + - uid: 3799 components: - type: Transform - pos: -7.5,-44.5 - parent: 89 - - uid: 10741 + pos: -5.5,19.5 + parent: 2 + - uid: 3800 components: - type: Transform - pos: -7.5,-43.5 - parent: 89 - - uid: 10742 + pos: -5.5,20.5 + parent: 2 + - uid: 3801 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 10743 + pos: 50.5,-30.5 + parent: 2 + - uid: 3802 components: - type: Transform - pos: 0.5,-44.5 - parent: 89 - - uid: 10744 + pos: 14.5,19.5 + parent: 2 + - uid: 3803 components: - type: Transform - pos: 0.5,-43.5 - parent: 89 - - uid: 10745 + pos: 15.5,19.5 + parent: 2 + - uid: 3804 components: - type: Transform - pos: 0.5,-42.5 - parent: 89 - - uid: 10776 + pos: 14.5,20.5 + parent: 2 + - uid: 3805 components: - type: Transform - pos: -129.5,-2.5 - parent: 89 - - uid: 10786 + pos: 37.5,21.5 + parent: 2 + - uid: 3806 components: - type: Transform - pos: -129.5,-1.5 - parent: 89 - - uid: 10801 + pos: 37.5,20.5 + parent: 2 + - uid: 3807 components: - type: Transform - pos: 8.5,31.5 - parent: 89 - - uid: 10845 + pos: 14.5,21.5 + parent: 2 + - uid: 3808 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 10860 + pos: 14.5,22.5 + parent: 2 + - uid: 3809 components: - type: Transform - pos: 20.5,25.5 - parent: 89 - - uid: 10861 + pos: 15.5,22.5 + parent: 2 + - uid: 3810 components: - type: Transform - pos: 21.5,25.5 - parent: 89 - - uid: 10874 + pos: 16.5,22.5 + parent: 2 + - uid: 3811 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 10910 + pos: 17.5,22.5 + parent: 2 + - uid: 3812 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 10968 + pos: 18.5,22.5 + parent: 2 + - uid: 3813 components: - type: Transform - pos: 0.5,6.5 - parent: 89 - - uid: 10977 + pos: -45.5,24.5 + parent: 2 + - uid: 3814 components: - type: Transform - pos: 13.5,32.5 - parent: 89 - - uid: 10981 + pos: -44.5,24.5 + parent: 2 + - uid: 3815 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 10987 + pos: -43.5,24.5 + parent: 2 + - uid: 3816 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 11106 + pos: -42.5,24.5 + parent: 2 + - uid: 3817 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 11107 + pos: 19.5,22.5 + parent: 2 + - uid: 3818 components: - type: Transform - pos: -28.5,21.5 - parent: 89 - - uid: 11108 + pos: 13.5,22.5 + parent: 2 + - uid: 3819 components: - type: Transform - pos: -29.5,21.5 - parent: 89 - - uid: 11109 + pos: 12.5,22.5 + parent: 2 + - uid: 3820 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11110 + pos: 11.5,22.5 + parent: 2 + - uid: 3821 components: - type: Transform - pos: -29.5,22.5 - parent: 89 - - uid: 11111 + pos: 10.5,22.5 + parent: 2 + - uid: 3822 components: - type: Transform - pos: -29.5,23.5 - parent: 89 - - uid: 11112 + pos: 9.5,22.5 + parent: 2 + - uid: 3823 components: - type: Transform - pos: -29.5,24.5 - parent: 89 - - uid: 11113 + pos: 8.5,22.5 + parent: 2 + - uid: 3824 components: - type: Transform - pos: -29.5,25.5 - parent: 89 - - uid: 11114 + pos: 7.5,22.5 + parent: 2 + - uid: 3825 components: - type: Transform - pos: -29.5,26.5 - parent: 89 - - uid: 11115 + pos: 6.5,22.5 + parent: 2 + - uid: 3826 components: - type: Transform - pos: -29.5,27.5 - parent: 89 - - uid: 11116 + pos: 6.5,23.5 + parent: 2 + - uid: 3827 components: - type: Transform - pos: -29.5,28.5 - parent: 89 - - uid: 11117 + pos: 11.5,23.5 + parent: 2 + - uid: 3828 components: - type: Transform - pos: -29.5,29.5 - parent: 89 - - uid: 11118 + pos: 6.5,21.5 + parent: 2 + - uid: 3829 components: - type: Transform - pos: -29.5,30.5 - parent: 89 - - uid: 11119 + pos: 18.5,16.5 + parent: 2 + - uid: 3830 components: - type: Transform - pos: -29.5,31.5 - parent: 89 - - uid: 11120 + pos: 13.5,23.5 + parent: 2 + - uid: 3831 components: - type: Transform - pos: -29.5,32.5 - parent: 89 - - uid: 11121 + pos: 51.5,-26.5 + parent: 2 + - uid: 3832 components: - type: Transform - pos: -29.5,33.5 - parent: 89 - - uid: 11122 + pos: -132.5,-8.5 + parent: 2 + - uid: 3833 components: - type: Transform - pos: -30.5,31.5 - parent: 89 - - uid: 11123 + pos: -132.5,-9.5 + parent: 2 + - uid: 3834 components: - type: Transform - pos: -31.5,31.5 - parent: 89 - - uid: 11124 + pos: -132.5,-10.5 + parent: 2 + - uid: 3835 components: - type: Transform - pos: -32.5,31.5 - parent: 89 - - uid: 11125 + pos: -134.5,-11.5 + parent: 2 + - uid: 3836 components: - type: Transform - pos: -28.5,33.5 - parent: 89 - - uid: 11126 + pos: -133.5,-7.5 + parent: 2 + - uid: 3837 components: - type: Transform - pos: -27.5,33.5 - parent: 89 - - uid: 11127 + pos: -131.5,-7.5 + parent: 2 + - uid: 3838 components: - type: Transform - pos: -28.5,29.5 - parent: 89 - - uid: 11128 + pos: 45.5,-27.5 + parent: 2 + - uid: 3839 components: - type: Transform - pos: -27.5,29.5 - parent: 89 - - uid: 11129 + pos: 37.5,-18.5 + parent: 2 + - uid: 3840 components: - type: Transform - pos: -30.5,27.5 - parent: 89 - - uid: 11130 + pos: 38.5,-18.5 + parent: 2 + - uid: 3841 components: - type: Transform - pos: -31.5,27.5 - parent: 89 - - uid: 11131 + pos: 38.5,-18.5 + parent: 2 + - uid: 3842 components: - type: Transform - pos: -32.5,27.5 - parent: 89 - - uid: 11132 + pos: 38.5,-19.5 + parent: 2 + - uid: 3843 components: - type: Transform - pos: -30.5,23.5 - parent: 89 - - uid: 11133 + pos: 38.5,-20.5 + parent: 2 + - uid: 3844 components: - type: Transform - pos: -31.5,23.5 - parent: 89 - - uid: 11134 + pos: 38.5,-20.5 + parent: 2 + - uid: 3845 components: - type: Transform - pos: -32.5,23.5 - parent: 89 - - uid: 11135 + pos: 37.5,-20.5 + parent: 2 + - uid: 3846 components: - type: Transform - pos: -28.5,25.5 - parent: 89 - - uid: 11136 + pos: 36.5,-20.5 + parent: 2 + - uid: 3847 components: - type: Transform - pos: -27.5,25.5 - parent: 89 - - uid: 11137 + pos: 35.5,-20.5 + parent: 2 + - uid: 3848 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11138 + pos: 39.5,-20.5 + parent: 2 + - uid: 3849 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 11139 + pos: 39.5,-21.5 + parent: 2 + - uid: 3850 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 11141 + pos: 39.5,-22.5 + parent: 2 + - uid: 3851 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11142 + pos: 39.5,-23.5 + parent: 2 + - uid: 3852 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11143 + pos: 39.5,-24.5 + parent: 2 + - uid: 3853 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11144 + pos: 39.5,-25.5 + parent: 2 + - uid: 3854 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11145 + pos: 39.5,-26.5 + parent: 2 + - uid: 3855 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11146 + pos: 40.5,-20.5 + parent: 2 + - uid: 3856 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 11147 + pos: 41.5,-20.5 + parent: 2 + - uid: 3857 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11148 + pos: 42.5,-20.5 + parent: 2 + - uid: 3858 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11149 + pos: 43.5,-20.5 + parent: 2 + - uid: 3859 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11150 + pos: 44.5,-20.5 + parent: 2 + - uid: 3860 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11182 + pos: 45.5,-20.5 + parent: 2 + - uid: 3861 components: - type: Transform - pos: -27.5,14.5 - parent: 89 - - uid: 11183 + pos: 42.5,-19.5 + parent: 2 + - uid: 3862 components: - type: Transform - pos: -27.5,13.5 - parent: 89 - - uid: 11184 + pos: 42.5,-18.5 + parent: 2 + - uid: 3863 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11185 + pos: 39.5,-18.5 + parent: 2 + - uid: 3864 components: - type: Transform - pos: -29.5,13.5 - parent: 89 - - uid: 11186 + pos: 39.5,-17.5 + parent: 2 + - uid: 3865 components: - type: Transform - pos: -26.5,13.5 - parent: 89 - - uid: 11187 + pos: 39.5,-16.5 + parent: 2 + - uid: 3866 components: - type: Transform - pos: -25.5,13.5 - parent: 89 - - uid: 11188 + pos: 39.5,-15.5 + parent: 2 + - uid: 3867 components: - type: Transform - pos: -24.5,13.5 - parent: 89 - - uid: 11189 + pos: 45.5,-21.5 + parent: 2 + - uid: 3868 components: - type: Transform - pos: -23.5,13.5 - parent: 89 - - uid: 11190 + pos: 45.5,-22.5 + parent: 2 + - uid: 3869 components: - type: Transform - pos: -22.5,13.5 - parent: 89 - - uid: 11191 + pos: 45.5,-23.5 + parent: 2 + - uid: 3870 components: - type: Transform - pos: -21.5,13.5 - parent: 89 - - uid: 11228 + pos: 45.5,-24.5 + parent: 2 + - uid: 3871 components: - type: Transform - pos: -39.5,23.5 - parent: 89 - - uid: 11229 + pos: 45.5,-25.5 + parent: 2 + - uid: 3872 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11230 + pos: 45.5,-26.5 + parent: 2 + - uid: 3873 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 11231 + pos: 49.5,-30.5 + parent: 2 + - uid: 3874 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 11232 + pos: 45.5,-28.5 + parent: 2 + - uid: 3875 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 11234 + pos: 45.5,-29.5 + parent: 2 + - uid: 3876 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 11235 + pos: 45.5,-29.5 + parent: 2 + - uid: 3877 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 11236 + pos: 44.5,-29.5 + parent: 2 + - uid: 3878 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 11237 + pos: 43.5,-29.5 + parent: 2 + - uid: 3879 components: - type: Transform - pos: -45.5,20.5 - parent: 89 - - uid: 11238 + pos: 42.5,-29.5 + parent: 2 + - uid: 3880 components: - type: Transform - pos: -46.5,20.5 - parent: 89 - - uid: 11239 + pos: 41.5,-29.5 + parent: 2 + - uid: 3881 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 11240 + pos: 40.5,-29.5 + parent: 2 + - uid: 3882 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 11241 + pos: 44.5,-25.5 + parent: 2 + - uid: 3883 components: - type: Transform - pos: -49.5,20.5 - parent: 89 - - uid: 11242 + pos: 43.5,-25.5 + parent: 2 + - uid: 3884 components: - type: Transform - pos: -50.5,20.5 - parent: 89 - - uid: 11243 + pos: 42.5,-25.5 + parent: 2 + - uid: 3885 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 11244 + pos: 44.5,-22.5 + parent: 2 + - uid: 3886 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 11245 + pos: 43.5,-22.5 + parent: 2 + - uid: 3887 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 11247 + pos: 42.5,-22.5 + parent: 2 + - uid: 3888 components: - type: Transform - pos: -53.5,21.5 - parent: 89 - - uid: 11248 + pos: 45.5,-30.5 + parent: 2 + - uid: 3889 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 11249 + pos: 45.5,-31.5 + parent: 2 + - uid: 3890 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 11250 + pos: 45.5,-32.5 + parent: 2 + - uid: 3891 components: - type: Transform - pos: -53.5,24.5 - parent: 89 - - uid: 11251 + pos: 45.5,-33.5 + parent: 2 + - uid: 3892 components: - type: Transform - pos: -53.5,25.5 - parent: 89 - - uid: 11252 + pos: 44.5,-32.5 + parent: 2 + - uid: 3893 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 11253 + pos: 43.5,-32.5 + parent: 2 + - uid: 3894 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 11254 + pos: 42.5,-32.5 + parent: 2 + - uid: 3895 components: - type: Transform - pos: -53.5,28.5 - parent: 89 - - uid: 11255 + pos: 41.5,-32.5 + parent: 2 + - uid: 3896 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 11256 + pos: 40.5,-32.5 + parent: 2 + - uid: 3897 components: - type: Transform - pos: -53.5,30.5 - parent: 89 - - uid: 11257 + pos: 52.5,-23.5 + parent: 2 + - uid: 3898 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 11258 + pos: 51.5,-23.5 + parent: 2 + - uid: 3899 components: - type: Transform - pos: -53.5,32.5 - parent: 89 - - uid: 11259 + pos: 50.5,-23.5 + parent: 2 + - uid: 3900 components: - type: Transform - pos: -52.5,32.5 - parent: 89 - - uid: 11260 + pos: 49.5,-23.5 + parent: 2 + - uid: 3901 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 11261 + pos: 48.5,-23.5 + parent: 2 + - uid: 3902 components: - type: Transform - pos: -31.5,10.5 - parent: 89 - - uid: 11264 + pos: 47.5,-23.5 + parent: 2 + - uid: 3903 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11265 + pos: 48.5,-23.5 + parent: 2 + - uid: 3904 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 11266 + pos: 48.5,-22.5 + parent: 2 + - uid: 3905 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11267 + pos: 48.5,-21.5 + parent: 2 + - uid: 3906 components: - type: Transform - pos: -37.5,21.5 - parent: 89 - - uid: 11268 + pos: 48.5,-20.5 + parent: 2 + - uid: 3907 components: - type: Transform - pos: -37.5,22.5 - parent: 89 - - uid: 11269 + pos: 48.5,-19.5 + parent: 2 + - uid: 3908 components: - type: Transform - pos: -37.5,23.5 - parent: 89 - - uid: 11270 + pos: 48.5,-18.5 + parent: 2 + - uid: 3909 components: - type: Transform - pos: -37.5,24.5 - parent: 89 - - uid: 11271 + pos: 51.5,-22.5 + parent: 2 + - uid: 3910 components: - type: Transform - pos: -37.5,25.5 - parent: 89 - - uid: 11272 + pos: 51.5,-21.5 + parent: 2 + - uid: 3911 components: - type: Transform - pos: -37.5,26.5 - parent: 89 - - uid: 11273 + pos: 51.5,-20.5 + parent: 2 + - uid: 3912 components: - type: Transform - pos: -37.5,27.5 - parent: 89 - - uid: 11274 + pos: 51.5,-19.5 + parent: 2 + - uid: 3913 components: - type: Transform - pos: -37.5,28.5 - parent: 89 - - uid: 11283 + pos: 51.5,-18.5 + parent: 2 + - uid: 3914 components: - type: Transform - pos: -21.5,19.5 - parent: 89 - - uid: 11284 + pos: 52.5,-20.5 + parent: 2 + - uid: 3915 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11285 + pos: 53.5,-20.5 + parent: 2 + - uid: 3916 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 11286 + pos: 53.5,-23.5 + parent: 2 + - uid: 3917 components: - type: Transform - pos: -22.5,21.5 - parent: 89 - - uid: 11287 + pos: 52.5,-25.5 + parent: 2 + - uid: 3918 components: - type: Transform - pos: -22.5,22.5 - parent: 89 - - uid: 11288 + pos: 52.5,-23.5 + parent: 2 + - uid: 3919 components: - type: Transform - pos: -22.5,23.5 - parent: 89 - - uid: 11289 + pos: 52.5,-22.5 + parent: 2 + - uid: 3920 components: - type: Transform - pos: -22.5,24.5 - parent: 89 - - uid: 11290 + pos: 53.5,-25.5 + parent: 2 + - uid: 3921 components: - type: Transform - pos: -22.5,25.5 - parent: 89 - - uid: 11291 + pos: 53.5,-23.5 + parent: 2 + - uid: 3922 components: - type: Transform - pos: -22.5,26.5 - parent: 89 - - uid: 11292 + pos: 51.5,-29.5 + parent: 2 + - uid: 3923 components: - type: Transform - pos: -22.5,27.5 - parent: 89 - - uid: 11293 + pos: 54.5,-25.5 + parent: 2 + - uid: 3924 components: - type: Transform - pos: -22.5,28.5 - parent: 89 - - uid: 11294 + pos: 51.5,-27.5 + parent: 2 + - uid: 3925 components: - type: Transform - pos: -20.5,20.5 - parent: 89 - - uid: 11295 + pos: 51.5,-28.5 + parent: 2 + - uid: 3926 components: - type: Transform - pos: -19.5,20.5 - parent: 89 - - uid: 11296 + pos: 55.5,-25.5 + parent: 2 + - uid: 3927 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 11297 + pos: 51.5,-24.5 + parent: 2 + - uid: 3928 components: - type: Transform - pos: -17.5,20.5 - parent: 89 - - uid: 11298 + pos: 51.5,-30.5 + parent: 2 + - uid: 3929 components: - type: Transform - pos: -16.5,20.5 - parent: 89 - - uid: 11299 + pos: 50.5,-25.5 + parent: 2 + - uid: 3930 components: - type: Transform - pos: -15.5,20.5 - parent: 89 - - uid: 11300 + pos: 49.5,-25.5 + parent: 2 + - uid: 3931 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11315 + pos: 48.5,-25.5 + parent: 2 + - uid: 3932 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11316 + pos: 47.5,-25.5 + parent: 2 + - uid: 3933 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11317 + pos: 48.5,-26.5 + parent: 2 + - uid: 3934 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11318 + pos: 48.5,-27.5 + parent: 2 + - uid: 3935 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11319 + pos: 48.5,-28.5 + parent: 2 + - uid: 3936 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11320 + pos: 47.5,-27.5 + parent: 2 + - uid: 3937 components: - type: Transform - pos: -19.5,11.5 - parent: 89 - - uid: 11321 + pos: 46.5,-25.5 + parent: 2 + - uid: 3938 components: - type: Transform - pos: -19.5,12.5 - parent: 89 - - uid: 11322 + pos: 48.5,-30.5 + parent: 2 + - uid: 3939 components: - type: Transform - pos: -19.5,13.5 - parent: 89 - - uid: 11323 + pos: 47.5,-30.5 + parent: 2 + - uid: 3940 components: - type: Transform - pos: -19.5,14.5 - parent: 89 - - uid: 11324 + pos: 49.5,-31.5 + parent: 2 + - uid: 3941 components: - type: Transform - pos: 2.5,23.5 - parent: 89 - - uid: 11325 + pos: 49.5,-32.5 + parent: 2 + - uid: 3942 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - uid: 11326 + pos: 49.5,-33.5 + parent: 2 + - uid: 3943 components: - type: Transform - pos: -17.5,14.5 - parent: 89 - - uid: 11327 + pos: 47.5,-31.5 + parent: 2 + - uid: 3944 components: - type: Transform - pos: -16.5,14.5 - parent: 89 - - uid: 11328 + pos: 47.5,-32.5 + parent: 2 + - uid: 3945 components: - type: Transform - pos: -15.5,14.5 - parent: 89 - - uid: 11331 + pos: 47.5,-33.5 + parent: 2 + - uid: 3946 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11332 + pos: 51.5,-31.5 + parent: 2 + - uid: 3947 components: - type: Transform - pos: -36.5,5.5 - parent: 89 - - uid: 11333 + pos: 51.5,-32.5 + parent: 2 + - uid: 3948 components: - type: Transform - pos: -36.5,4.5 - parent: 89 - - uid: 11334 + pos: 51.5,-33.5 + parent: 2 + - uid: 3949 components: - type: Transform - pos: -36.5,3.5 - parent: 89 - - uid: 11335 + pos: 53.5,-30.5 + parent: 2 + - uid: 3950 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 11336 + pos: 53.5,-31.5 + parent: 2 + - uid: 3951 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 11337 + pos: 53.5,-32.5 + parent: 2 + - uid: 3952 components: - type: Transform - pos: -39.5,3.5 - parent: 89 - - uid: 11338 + pos: 53.5,-33.5 + parent: 2 + - uid: 3953 components: - type: Transform - pos: -40.5,3.5 - parent: 89 - - uid: 11342 + pos: 52.5,-30.5 + parent: 2 + - uid: 3954 components: - type: Transform - pos: -40.5,4.5 - parent: 89 - - uid: 11343 + pos: 54.5,-30.5 + parent: 2 + - uid: 3955 components: - type: Transform - pos: -40.5,5.5 - parent: 89 - - uid: 11344 + pos: 55.5,-30.5 + parent: 2 + - uid: 3956 components: - type: Transform - pos: -40.5,6.5 - parent: 89 - - uid: 11345 + pos: 56.5,-30.5 + parent: 2 + - uid: 3957 components: - type: Transform - pos: -40.5,7.5 - parent: 89 - - uid: 11346 + pos: 56.5,-31.5 + parent: 2 + - uid: 3958 components: - type: Transform - pos: -40.5,8.5 - parent: 89 - - uid: 11347 + pos: 56.5,-32.5 + parent: 2 + - uid: 3959 components: - type: Transform - pos: -39.5,8.5 - parent: 89 - - uid: 11348 + pos: 56.5,-33.5 + parent: 2 + - uid: 3960 components: - type: Transform - pos: -38.5,8.5 - parent: 89 - - uid: 11349 + pos: 56.5,-29.5 + parent: 2 + - uid: 3961 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - uid: 11351 + pos: 56.5,-28.5 + parent: 2 + - uid: 3962 components: - type: Transform - pos: -37.5,9.5 - parent: 89 - - uid: 11353 + pos: 56.5,-27.5 + parent: 2 + - uid: 3963 components: - type: Transform - pos: -36.5,8.5 - parent: 89 - - uid: 11354 + pos: 57.5,-27.5 + parent: 2 + - uid: 3964 components: - type: Transform - pos: -35.5,4.5 - parent: 89 - - uid: 11355 + pos: 57.5,-26.5 + parent: 2 + - uid: 3965 components: - type: Transform - pos: -34.5,4.5 - parent: 89 - - uid: 11356 + pos: 57.5,-25.5 + parent: 2 + - uid: 3966 components: - type: Transform - pos: -33.5,4.5 - parent: 89 - - uid: 11357 + pos: 57.5,-24.5 + parent: 2 + - uid: 3967 components: - type: Transform - pos: -32.5,4.5 - parent: 89 - - uid: 11358 + pos: 57.5,-29.5 + parent: 2 + - uid: 3968 components: - type: Transform - pos: -31.5,4.5 - parent: 89 - - uid: 11359 + pos: 58.5,-29.5 + parent: 2 + - uid: 3969 components: - type: Transform - pos: -30.5,4.5 - parent: 89 - - uid: 11360 + pos: 57.5,-23.5 + parent: 2 + - uid: 3970 components: - type: Transform - pos: -29.5,4.5 - parent: 89 - - uid: 11363 + pos: 57.5,-22.5 + parent: 2 + - uid: 3971 components: - type: Transform - pos: -31.5,5.5 - parent: 89 - - uid: 11364 + pos: 57.5,-21.5 + parent: 2 + - uid: 3972 components: - type: Transform - pos: -30.5,13.5 - parent: 89 - - uid: 11365 + pos: 57.5,-20.5 + parent: 2 + - uid: 3973 components: - type: Transform - pos: -31.5,13.5 - parent: 89 - - uid: 11366 + pos: 57.5,-19.5 + parent: 2 + - uid: 3974 components: - type: Transform - pos: -32.5,13.5 - parent: 89 - - uid: 11367 + pos: -133.5,-6.5 + parent: 2 + - uid: 3975 components: - type: Transform - pos: -33.5,13.5 - parent: 89 - - uid: 11368 + pos: -133.5,-5.5 + parent: 2 + - uid: 3976 components: - type: Transform - pos: -33.5,14.5 - parent: 89 - - uid: 11369 + pos: -133.5,-4.5 + parent: 2 + - uid: 3977 components: - type: Transform - pos: -33.5,15.5 - parent: 89 - - uid: 11370 + pos: -133.5,-3.5 + parent: 2 + - uid: 3978 components: - type: Transform - pos: -33.5,16.5 - parent: 89 - - uid: 11371 + pos: -134.5,-10.5 + parent: 2 + - uid: 3979 components: - type: Transform - pos: -33.5,17.5 - parent: 89 - - uid: 11372 + pos: -133.5,-10.5 + parent: 2 + - uid: 3980 components: - type: Transform - pos: -33.5,18.5 - parent: 89 - - uid: 11389 + pos: 52.5,-28.5 + parent: 2 + - uid: 3981 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 11762 + pos: 53.5,-28.5 + parent: 2 + - uid: 3982 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 11763 + pos: 26.5,-17.5 + parent: 2 + - uid: 3983 components: - type: Transform - pos: -37.5,-16.5 - parent: 89 - - uid: 11999 + pos: 26.5,-16.5 + parent: 2 + - uid: 3984 components: - type: Transform - pos: -101.5,-1.5 - parent: 89 - - uid: 12000 + pos: 26.5,-16.5 + parent: 2 + - uid: 3985 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 12009 + pos: 25.5,-16.5 + parent: 2 + - uid: 3986 components: - type: Transform - pos: -105.5,-3.5 - parent: 89 - - uid: 12010 + pos: 24.5,-16.5 + parent: 2 + - uid: 3987 components: - type: Transform - pos: -105.5,-4.5 - parent: 89 - - uid: 12013 + pos: 23.5,-16.5 + parent: 2 + - uid: 3988 components: - type: Transform - pos: -104.5,-2.5 - parent: 89 - - uid: 12014 + pos: 22.5,-16.5 + parent: 2 + - uid: 3989 components: - type: Transform - pos: -103.5,-2.5 - parent: 89 - - uid: 12015 + pos: 21.5,-16.5 + parent: 2 + - uid: 3990 components: - type: Transform - pos: -102.5,-2.5 - parent: 89 - - uid: 12016 + pos: 20.5,-16.5 + parent: 2 + - uid: 3991 components: - type: Transform - pos: -101.5,-2.5 - parent: 89 - - uid: 12017 + pos: 19.5,-16.5 + parent: 2 + - uid: 3992 components: - type: Transform - pos: -100.5,-2.5 - parent: 89 - - uid: 12018 + pos: 18.5,-16.5 + parent: 2 + - uid: 3993 components: - type: Transform - pos: -99.5,-2.5 - parent: 89 - - uid: 12019 + pos: 17.5,-16.5 + parent: 2 + - uid: 3994 components: - type: Transform - pos: -106.5,-2.5 - parent: 89 - - uid: 12020 + pos: 17.5,-16.5 + parent: 2 + - uid: 3995 components: - type: Transform - pos: -101.5,-0.5 - parent: 89 - - uid: 12022 + pos: 17.5,-17.5 + parent: 2 + - uid: 3996 components: - type: Transform - pos: -102.5,-3.5 - parent: 89 - - uid: 12023 + pos: 17.5,-18.5 + parent: 2 + - uid: 3997 components: - type: Transform - pos: -102.5,-4.5 - parent: 89 - - uid: 12024 + pos: 17.5,-18.5 + parent: 2 + - uid: 3998 components: - type: Transform - pos: -99.5,-3.5 - parent: 89 - - uid: 12025 + pos: 16.5,-18.5 + parent: 2 + - uid: 3999 components: - type: Transform - pos: -99.5,-4.5 - parent: 89 - - uid: 12026 + pos: 15.5,-18.5 + parent: 2 + - uid: 4000 components: - type: Transform - pos: -99.5,-5.5 - parent: 89 - - uid: 12027 + pos: 15.5,-19.5 + parent: 2 + - uid: 4001 components: - type: Transform - pos: -99.5,-6.5 - parent: 89 - - uid: 12028 + pos: 14.5,-19.5 + parent: 2 + - uid: 4002 components: - type: Transform - pos: -99.5,-7.5 - parent: 89 - - uid: 12029 + pos: 13.5,-19.5 + parent: 2 + - uid: 4003 components: - type: Transform - pos: -99.5,-8.5 - parent: 89 - - uid: 12030 + pos: 12.5,-19.5 + parent: 2 + - uid: 4004 components: - type: Transform - pos: -99.5,-9.5 - parent: 89 - - uid: 12031 + pos: 11.5,-19.5 + parent: 2 + - uid: 4005 components: - type: Transform - pos: -100.5,-9.5 - parent: 89 - - uid: 12032 + pos: 10.5,-19.5 + parent: 2 + - uid: 4006 components: - type: Transform - pos: -101.5,-9.5 - parent: 89 - - uid: 12033 + pos: 38.5,-22.5 + parent: 2 + - uid: 4007 components: - type: Transform - pos: -102.5,-9.5 - parent: 89 - - uid: 12034 + pos: 37.5,-22.5 + parent: 2 + - uid: 4008 components: - type: Transform - pos: -103.5,-9.5 - parent: 89 - - uid: 12035 + pos: 36.5,-22.5 + parent: 2 + - uid: 4009 components: - type: Transform - pos: -104.5,-9.5 - parent: 89 - - uid: 12036 + pos: 35.5,-22.5 + parent: 2 + - uid: 4010 components: - type: Transform - pos: -104.5,-8.5 - parent: 89 - - uid: 12050 + pos: 34.5,-22.5 + parent: 2 + - uid: 4011 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12051 + pos: 35.5,-23.5 + parent: 2 + - uid: 4012 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 12052 + pos: 35.5,-24.5 + parent: 2 + - uid: 4013 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 - - uid: 12053 + pos: 35.5,-25.5 + parent: 2 + - uid: 4014 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 12054 + pos: 35.5,-26.5 + parent: 2 + - uid: 4015 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 - - uid: 12055 + pos: 35.5,-27.5 + parent: 2 + - uid: 4016 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 - - uid: 12056 + pos: 10.5,-18.5 + parent: 2 + - uid: 4017 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 12057 + pos: 9.5,-18.5 + parent: 2 + - uid: 4018 components: - type: Transform - pos: -105.5,-18.5 - parent: 89 - - uid: 12058 + pos: 27.5,-16.5 + parent: 2 + - uid: 4019 components: - type: Transform - pos: -105.5,-19.5 - parent: 89 - - uid: 12059 + pos: 28.5,-16.5 + parent: 2 + - uid: 4020 components: - type: Transform - pos: -104.5,-12.5 - parent: 89 - - uid: 12060 + pos: 29.5,-16.5 + parent: 2 + - uid: 4021 components: - type: Transform - pos: -103.5,-12.5 - parent: 89 - - uid: 12061 + pos: 30.5,-16.5 + parent: 2 + - uid: 4022 components: - type: Transform - pos: -102.5,-12.5 - parent: 89 - - uid: 12062 + pos: 31.5,-16.5 + parent: 2 + - uid: 4023 components: - type: Transform - pos: -101.5,-12.5 - parent: 89 - - uid: 12063 + pos: 32.5,-16.5 + parent: 2 + - uid: 4024 components: - type: Transform - pos: -100.5,-12.5 - parent: 89 - - uid: 12064 + pos: 33.5,-16.5 + parent: 2 + - uid: 4025 components: - type: Transform - pos: -99.5,-12.5 - parent: 89 - - uid: 12065 + pos: 34.5,-16.5 + parent: 2 + - uid: 4026 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 - - uid: 12066 + pos: 35.5,-16.5 + parent: 2 + - uid: 4027 components: - type: Transform - pos: -98.5,-13.5 - parent: 89 - - uid: 12067 + pos: 36.5,-16.5 + parent: 2 + - uid: 4028 components: - type: Transform - pos: -97.5,-13.5 - parent: 89 - - uid: 12068 + pos: 36.5,-17.5 + parent: 2 + - uid: 4029 components: - type: Transform - pos: -96.5,-13.5 - parent: 89 - - uid: 12069 + pos: -26.5,16.5 + parent: 2 + - uid: 4030 components: - type: Transform - pos: -96.5,-12.5 - parent: 89 - - uid: 12070 + pos: -26.5,17.5 + parent: 2 + - uid: 4031 components: - type: Transform - pos: -96.5,-11.5 - parent: 89 - - uid: 12071 + pos: -14.5,-25.5 + parent: 2 + - uid: 4032 components: - type: Transform - pos: -96.5,-10.5 - parent: 89 - - uid: 12072 + pos: 37.5,-9.5 + parent: 2 + - uid: 4033 components: - type: Transform - pos: -96.5,-9.5 - parent: 89 - - uid: 12073 + pos: 35.5,-6.5 + parent: 2 + - uid: 4034 components: - type: Transform - pos: -96.5,-8.5 - parent: 89 - - uid: 12074 + pos: -0.5,-0.5 + parent: 2 + - uid: 4035 components: - type: Transform - pos: -95.5,-8.5 - parent: 89 - - uid: 12075 + pos: -0.5,-2.5 + parent: 2 + - uid: 4036 components: - type: Transform - pos: -95.5,-7.5 - parent: 89 - - uid: 12076 + pos: -0.5,-1.5 + parent: 2 + - uid: 4037 components: - type: Transform - pos: -92.5,-8.5 - parent: 89 - - uid: 12077 + pos: 45.5,-5.5 + parent: 2 + - uid: 4038 components: - type: Transform - pos: -91.5,-8.5 - parent: 89 - - uid: 12078 + pos: 47.5,-9.5 + parent: 2 + - uid: 4039 components: - type: Transform - pos: -91.5,-10.5 - parent: 89 - - uid: 12079 + pos: 48.5,-9.5 + parent: 2 + - uid: 4040 components: - type: Transform - pos: -91.5,-9.5 - parent: 89 - - uid: 12080 + pos: 46.5,-9.5 + parent: 2 + - uid: 4041 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 - - uid: 12081 + pos: 44.5,-5.5 + parent: 2 + - uid: 4042 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - uid: 12082 + pos: -0.5,1.5 + parent: 2 + - uid: 4043 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - uid: 12083 + pos: 35.5,-5.5 + parent: 2 + - uid: 4044 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - uid: 12084 + pos: 45.5,-9.5 + parent: 2 + - uid: 4045 components: - type: Transform - pos: -91.5,-13.5 - parent: 89 - - uid: 12085 + pos: 44.5,-9.5 + parent: 2 + - uid: 4046 components: - type: Transform - pos: -90.5,-13.5 - parent: 89 - - uid: 12086 + pos: 43.5,-9.5 + parent: 2 + - uid: 4047 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - uid: 12087 + pos: 48.5,-5.5 + parent: 2 + - uid: 4048 components: - type: Transform - pos: -88.5,-13.5 - parent: 89 - - uid: 12088 + pos: -0.5,-4.5 + parent: 2 + - uid: 4049 components: - type: Transform - pos: -87.5,-13.5 - parent: 89 - - uid: 12089 + pos: -0.5,-5.5 + parent: 2 + - uid: 4050 components: - type: Transform - pos: -86.5,-13.5 - parent: 89 - - uid: 12090 + pos: -0.5,-6.5 + parent: 2 + - uid: 4051 components: - type: Transform - pos: -85.5,-13.5 - parent: 89 - - uid: 12091 + pos: -0.5,-7.5 + parent: 2 + - uid: 4052 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - uid: 12092 + pos: -0.5,-8.5 + parent: 2 + - uid: 4053 components: - type: Transform - pos: -83.5,-13.5 - parent: 89 - - uid: 12093 + pos: -0.5,-9.5 + parent: 2 + - uid: 4054 components: - type: Transform - pos: -82.5,-13.5 - parent: 89 - - uid: 12094 + pos: -0.5,-10.5 + parent: 2 + - uid: 4055 components: - type: Transform - pos: -81.5,-13.5 - parent: 89 - - uid: 12095 + pos: -0.5,-11.5 + parent: 2 + - uid: 4056 components: - type: Transform - pos: -80.5,-13.5 - parent: 89 - - uid: 12096 + pos: -0.5,-12.5 + parent: 2 + - uid: 4057 components: - type: Transform - pos: -79.5,-13.5 - parent: 89 - - uid: 12097 + pos: 13.5,-14.5 + parent: 2 + - uid: 4058 components: - type: Transform - pos: -78.5,-13.5 - parent: 89 - - uid: 12098 + pos: 13.5,-15.5 + parent: 2 + - uid: 4059 components: - type: Transform - pos: -78.5,-14.5 - parent: 89 - - uid: 12099 + pos: 14.5,-15.5 + parent: 2 + - uid: 4060 components: - type: Transform - pos: -78.5,-15.5 - parent: 89 - - uid: 12100 + pos: -12.5,-27.5 + parent: 2 + - uid: 4061 components: - type: Transform - pos: -78.5,-16.5 - parent: 89 - - uid: 12101 + pos: -13.5,-27.5 + parent: 2 + - uid: 4062 components: - type: Transform - pos: -78.5,-17.5 - parent: 89 - - uid: 12102 + pos: -14.5,-27.5 + parent: 2 + - uid: 4063 components: - type: Transform - pos: -78.5,-18.5 - parent: 89 - - uid: 12103 + pos: -11.5,-26.5 + parent: 2 + - uid: 4064 components: - type: Transform - pos: -78.5,-19.5 - parent: 89 - - uid: 12104 + pos: -5.5,-5.5 + parent: 2 + - uid: 4065 components: - type: Transform - pos: -79.5,-19.5 - parent: 89 - - uid: 12105 + pos: -4.5,-5.5 + parent: 2 + - uid: 4066 components: - type: Transform - pos: -80.5,-19.5 - parent: 89 - - uid: 12106 + pos: -3.5,-5.5 + parent: 2 + - uid: 4067 components: - type: Transform - pos: -81.5,-19.5 - parent: 89 - - uid: 12107 + pos: -3.5,-3.5 + parent: 2 + - uid: 4068 components: - type: Transform - pos: -82.5,-19.5 - parent: 89 - - uid: 12108 + pos: -3.5,-4.5 + parent: 2 + - uid: 4069 components: - type: Transform - pos: -83.5,-19.5 - parent: 89 - - uid: 12109 + pos: -3.5,-2.5 + parent: 2 + - uid: 4070 components: - type: Transform - pos: -84.5,-19.5 - parent: 89 - - uid: 12110 + pos: -3.5,-1.5 + parent: 2 + - uid: 4071 components: - type: Transform - pos: -78.5,-21.5 - parent: 89 - - uid: 12111 + pos: -4.5,-1.5 + parent: 2 + - uid: 4072 components: - type: Transform - pos: -77.5,-21.5 - parent: 89 - - uid: 12112 + pos: -5.5,-1.5 + parent: 2 + - uid: 4073 components: - type: Transform - pos: -77.5,-19.5 - parent: 89 - - uid: 12113 + pos: -7.5,-1.5 + parent: 2 + - uid: 4074 components: - type: Transform - pos: -76.5,-19.5 - parent: 89 - - uid: 12114 + pos: -8.5,-1.5 + parent: 2 + - uid: 4075 components: - type: Transform - pos: -76.5,-21.5 - parent: 89 - - uid: 12115 + pos: -9.5,-1.5 + parent: 2 + - uid: 4076 components: - type: Transform - pos: -76.5,-20.5 - parent: 89 - - uid: 12116 + pos: -4.5,-6.5 + parent: 2 + - uid: 4077 components: - type: Transform - pos: -79.5,-21.5 - parent: 89 - - uid: 12117 + pos: -4.5,-7.5 + parent: 2 + - uid: 4078 components: - type: Transform - pos: -80.5,-21.5 - parent: 89 - - uid: 12118 + pos: -4.5,-8.5 + parent: 2 + - uid: 4079 components: - type: Transform - pos: -81.5,-21.5 - parent: 89 - - uid: 12119 + pos: -4.5,-9.5 + parent: 2 + - uid: 4080 components: - type: Transform - pos: -82.5,-21.5 - parent: 89 - - uid: 12120 + pos: -5.5,-9.5 + parent: 2 + - uid: 4081 components: - type: Transform - pos: -83.5,-21.5 - parent: 89 - - uid: 12122 + pos: -8.5,-5.5 + parent: 2 + - uid: 4082 components: - type: Transform - pos: -83.5,-22.5 - parent: 89 - - uid: 12123 + pos: -7.5,-5.5 + parent: 2 + - uid: 4083 components: - type: Transform - pos: -83.5,-23.5 - parent: 89 - - uid: 12124 + pos: -130.5,12.5 + parent: 2 + - uid: 4084 components: - type: Transform - pos: -83.5,-24.5 - parent: 89 - - uid: 12125 + pos: -24.5,16.5 + parent: 2 + - uid: 4085 components: - type: Transform - pos: -82.5,-24.5 - parent: 89 - - uid: 12126 + pos: -23.5,16.5 + parent: 2 + - uid: 4086 components: - type: Transform - pos: -81.5,-24.5 - parent: 89 - - uid: 12127 + pos: -23.5,17.5 + parent: 2 + - uid: 4087 components: - type: Transform - pos: -80.5,-24.5 - parent: 89 - - uid: 12130 + pos: -25.5,16.5 + parent: 2 + - uid: 4088 components: - type: Transform - pos: -104.5,-19.5 - parent: 89 - - uid: 12144 + pos: -23.5,18.5 + parent: 2 + - uid: 4089 components: - type: Transform - pos: -95.5,3.5 - parent: 89 - - uid: 12145 + pos: -117.5,24.5 + parent: 2 + - uid: 4090 components: - type: Transform - pos: -94.5,3.5 - parent: 89 - - uid: 12146 + pos: -116.5,23.5 + parent: 2 + - uid: 4091 components: - type: Transform - pos: -93.5,3.5 - parent: 89 - - uid: 12147 + pos: -114.5,24.5 + parent: 2 + - uid: 4092 components: - type: Transform - pos: -96.5,3.5 - parent: 89 - - uid: 12149 + pos: -116.5,23.5 + parent: 2 + - uid: 4093 components: - type: Transform - pos: -93.5,4.5 - parent: 89 - - uid: 12150 + pos: -115.5,25.5 + parent: 2 + - uid: 4094 components: - type: Transform - pos: -93.5,5.5 - parent: 89 - - uid: 12151 + pos: -115.5,25.5 + parent: 2 + - uid: 4095 components: - type: Transform - pos: -93.5,6.5 - parent: 89 - - uid: 12152 + pos: -117.5,25.5 + parent: 2 + - uid: 4096 components: - type: Transform - pos: -93.5,7.5 - parent: 89 - - uid: 12153 + pos: -115.5,23.5 + parent: 2 + - uid: 4097 components: - type: Transform - pos: -93.5,8.5 - parent: 89 - - uid: 12154 + pos: -116.5,25.5 + parent: 2 + - uid: 4098 components: - type: Transform - pos: -93.5,9.5 - parent: 89 - - uid: 12155 + pos: -114.5,23.5 + parent: 2 + - uid: 4099 components: - type: Transform - pos: -93.5,10.5 - parent: 89 - - uid: 12156 + pos: -117.5,23.5 + parent: 2 + - uid: 4100 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 12157 + pos: -113.5,24.5 + parent: 2 + - uid: 4101 components: - type: Transform - pos: -93.5,12.5 - parent: 89 - - uid: 12158 + pos: -114.5,25.5 + parent: 2 + - uid: 4102 components: - type: Transform - pos: -93.5,13.5 - parent: 89 - - uid: 12159 + pos: -26.5,18.5 + parent: 2 + - uid: 4103 components: - type: Transform - pos: -93.5,14.5 - parent: 89 - - uid: 12160 + pos: -134.5,-13.5 + parent: 2 + - uid: 4104 components: - type: Transform - pos: -93.5,15.5 - parent: 89 - - uid: 12161 + pos: -102.5,-20.5 + parent: 2 + - uid: 4105 components: - type: Transform - pos: -93.5,16.5 - parent: 89 - - uid: 12162 + pos: -134.5,-14.5 + parent: 2 + - uid: 4106 components: - type: Transform - pos: -92.5,16.5 - parent: 89 - - uid: 12163 + pos: -134.5,-11.5 + parent: 2 + - uid: 4107 components: - type: Transform - pos: -91.5,16.5 - parent: 89 - - uid: 12164 + pos: -134.5,-12.5 + parent: 2 + - uid: 4108 components: - type: Transform - pos: -92.5,14.5 - parent: 89 - - uid: 12165 + pos: -136.5,-14.5 + parent: 2 + - uid: 4109 components: - type: Transform - pos: -91.5,14.5 - parent: 89 - - uid: 12166 + pos: -137.5,-14.5 + parent: 2 + - uid: 4110 components: - type: Transform - pos: -94.5,16.5 - parent: 89 - - uid: 12167 + pos: -138.5,-14.5 + parent: 2 + - uid: 4111 components: - type: Transform - pos: -95.5,16.5 - parent: 89 - - uid: 12168 + pos: -139.5,-14.5 + parent: 2 + - uid: 4112 components: - type: Transform - pos: -92.5,12.5 - parent: 89 - - uid: 12169 + pos: -140.5,-14.5 + parent: 2 + - uid: 4113 components: - type: Transform - pos: -91.5,12.5 - parent: 89 - - uid: 12170 + pos: -141.5,-14.5 + parent: 2 + - uid: 4114 components: - type: Transform - pos: -93.5,2.5 - parent: 89 - - uid: 12171 + pos: -142.5,-14.5 + parent: 2 + - uid: 4115 components: - type: Transform - pos: -93.5,1.5 - parent: 89 - - uid: 12172 + pos: -143.5,-14.5 + parent: 2 + - uid: 4116 components: - type: Transform - pos: -93.5,0.5 - parent: 89 - - uid: 12173 + pos: -144.5,-14.5 + parent: 2 + - uid: 4117 components: - type: Transform - pos: -93.5,-0.5 - parent: 89 - - uid: 12174 + pos: -145.5,-14.5 + parent: 2 + - uid: 4118 components: - type: Transform - pos: -93.5,-1.5 - parent: 89 - - uid: 12175 + pos: -146.5,-14.5 + parent: 2 + - uid: 4119 components: - type: Transform - pos: -93.5,-2.5 - parent: 89 - - uid: 12176 + pos: -147.5,-14.5 + parent: 2 + - uid: 4120 components: - type: Transform - pos: -93.5,-3.5 - parent: 89 - - uid: 12177 + pos: -148.5,-14.5 + parent: 2 + - uid: 4121 components: - type: Transform - pos: -93.5,-4.5 - parent: 89 - - uid: 12178 + pos: -149.5,-14.5 + parent: 2 + - uid: 4122 components: - type: Transform - pos: -94.5,-4.5 - parent: 89 - - uid: 12179 + pos: -149.5,-13.5 + parent: 2 + - uid: 4123 components: - type: Transform - pos: -95.5,-4.5 - parent: 89 - - uid: 12180 + pos: -150.5,-13.5 + parent: 2 + - uid: 4124 components: - type: Transform - pos: -95.5,-5.5 - parent: 89 - - uid: 12181 + pos: -150.5,-12.5 + parent: 2 + - uid: 4125 components: - type: Transform - pos: -92.5,-4.5 - parent: 89 - - uid: 12183 + pos: -150.5,-11.5 + parent: 2 + - uid: 4126 components: - type: Transform - pos: -92.5,-5.5 - parent: 89 - - uid: 12184 + pos: -150.5,-10.5 + parent: 2 + - uid: 4127 components: - type: Transform - pos: -92.5,-1.5 - parent: 89 - - uid: 12185 + pos: -150.5,-9.5 + parent: 2 + - uid: 4128 components: - type: Transform - pos: -91.5,-1.5 - parent: 89 - - uid: 12186 + pos: -150.5,-8.5 + parent: 2 + - uid: 4129 components: - type: Transform - pos: -90.5,-1.5 - parent: 89 - - uid: 12187 + pos: -150.5,-7.5 + parent: 2 + - uid: 4130 components: - type: Transform - pos: -89.5,-1.5 - parent: 89 - - uid: 12188 + pos: -150.5,-6.5 + parent: 2 + - uid: 4131 components: - type: Transform - pos: -88.5,-1.5 - parent: 89 - - uid: 12189 + pos: -150.5,-5.5 + parent: 2 + - uid: 4132 components: - type: Transform - pos: -87.5,-1.5 - parent: 89 - - uid: 12191 + pos: -150.5,-4.5 + parent: 2 + - uid: 4133 components: - type: Transform - pos: -88.5,-0.5 - parent: 89 - - uid: 12192 + pos: -150.5,-3.5 + parent: 2 + - uid: 4134 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 12202 + pos: -150.5,-2.5 + parent: 2 + - uid: 4135 components: - type: Transform - pos: -103.5,10.5 - parent: 89 - - uid: 12204 + pos: -150.5,-1.5 + parent: 2 + - uid: 4136 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 12205 + pos: -149.5,-1.5 + parent: 2 + - uid: 4137 components: - type: Transform - pos: -101.5,9.5 - parent: 89 - - uid: 12206 + pos: -149.5,-0.5 + parent: 2 + - uid: 4138 components: - type: Transform - pos: -102.5,9.5 - parent: 89 - - uid: 12207 + pos: -148.5,-0.5 + parent: 2 + - uid: 4139 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - uid: 12208 + pos: -147.5,-0.5 + parent: 2 + - uid: 4140 components: - type: Transform - pos: -102.5,7.5 - parent: 89 - - uid: 12210 + pos: -146.5,-0.5 + parent: 2 + - uid: 4141 components: - type: Transform - pos: -102.5,10.5 - parent: 89 - - uid: 12211 + pos: -145.5,-0.5 + parent: 2 + - uid: 4142 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - uid: 12212 + pos: -144.5,-0.5 + parent: 2 + - uid: 4143 components: - type: Transform - pos: -104.5,11.5 - parent: 89 - - uid: 12213 + pos: -143.5,-0.5 + parent: 2 + - uid: 4144 components: - type: Transform - pos: -103.5,7.5 - parent: 89 - - uid: 12214 + pos: -142.5,-0.5 + parent: 2 + - uid: 4145 components: - type: Transform - pos: -105.5,7.5 - parent: 89 - - uid: 12216 + pos: -141.5,-0.5 + parent: 2 + - uid: 4146 components: - type: Transform - pos: -104.5,7.5 - parent: 89 - - uid: 12224 + pos: -140.5,-0.5 + parent: 2 + - uid: 4147 components: - type: Transform - pos: -111.5,1.5 - parent: 89 - - uid: 12225 + pos: -139.5,-0.5 + parent: 2 + - uid: 4148 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 12226 + pos: -138.5,-0.5 + parent: 2 + - uid: 4149 components: - type: Transform - pos: -109.5,1.5 - parent: 89 - - uid: 12227 + pos: -137.5,-0.5 + parent: 2 + - uid: 4150 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 12228 + pos: -136.5,-0.5 + parent: 2 + - uid: 4151 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 12229 + pos: -136.5,-1.5 + parent: 2 + - uid: 4152 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 12230 + pos: -136.5,-2.5 + parent: 2 + - uid: 4153 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 12231 + pos: -136.5,-3.5 + parent: 2 + - uid: 4154 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 12232 + pos: -136.5,-4.5 + parent: 2 + - uid: 4155 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 12233 + pos: -136.5,-5.5 + parent: 2 + - uid: 4156 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 12234 + pos: -136.5,-6.5 + parent: 2 + - uid: 4157 components: - type: Transform - pos: -112.5,-1.5 - parent: 89 - - uid: 12235 + pos: -136.5,-7.5 + parent: 2 + - uid: 4158 components: - type: Transform - pos: -111.5,-2.5 - parent: 89 - - uid: 12236 + pos: -136.5,-8.5 + parent: 2 + - uid: 4159 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 12237 + pos: -136.5,-9.5 + parent: 2 + - uid: 4160 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 12238 + pos: -136.5,-10.5 + parent: 2 + - uid: 4161 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 12240 + pos: -136.5,-11.5 + parent: 2 + - uid: 4162 components: - type: Transform - pos: -107.5,-3.5 - parent: 89 - - uid: 12241 + pos: -136.5,-12.5 + parent: 2 + - uid: 4163 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 12242 + pos: -136.5,-13.5 + parent: 2 + - uid: 4164 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 12243 + pos: -135.5,-2.5 + parent: 2 + - uid: 4165 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 12244 + pos: -134.5,-2.5 + parent: 2 + - uid: 4166 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 12245 + pos: -133.5,-2.5 + parent: 2 + - uid: 4167 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 12246 + pos: -90.5,-10.5 + parent: 2 + - uid: 4168 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 12247 + pos: -89.5,-7.5 + parent: 2 + - uid: 4169 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 12248 + pos: -89.5,-8.5 + parent: 2 + - uid: 4170 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 12249 + pos: -89.5,-9.5 + parent: 2 + - uid: 4171 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 12250 + pos: -94.5,-11.5 + parent: 2 + - uid: 4172 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 12251 + pos: -95.5,-11.5 + parent: 2 + - uid: 4173 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 12252 + pos: -101.5,-14.5 + parent: 2 + - uid: 4174 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 12253 + pos: -100.5,-11.5 + parent: 2 + - uid: 4175 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 12254 + pos: -103.5,-14.5 + parent: 2 + - uid: 4176 components: - type: Transform - pos: -107.5,-17.5 - parent: 89 - - uid: 12256 + pos: -103.5,-15.5 + parent: 2 + - uid: 4177 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 12257 + pos: -103.5,-16.5 + parent: 2 + - uid: 4178 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 12258 + pos: -103.5,-17.5 + parent: 2 + - uid: 4179 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 12259 + pos: -103.5,-18.5 + parent: 2 + - uid: 4180 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 12260 + pos: -103.5,-19.5 + parent: 2 + - uid: 4181 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 12261 + pos: -103.5,-20.5 + parent: 2 + - uid: 4182 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 12262 + pos: -83.5,-14.5 + parent: 2 + - uid: 4183 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 12263 + pos: -83.5,-15.5 + parent: 2 + - uid: 4184 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 12264 + pos: -84.5,-15.5 + parent: 2 + - uid: 4185 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 12265 + pos: -85.5,-15.5 + parent: 2 + - uid: 4186 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 12266 + pos: -86.5,-15.5 + parent: 2 + - uid: 4187 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 12267 + pos: -87.5,-15.5 + parent: 2 + - uid: 4188 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 12268 + pos: -88.5,-15.5 + parent: 2 + - uid: 4189 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 12269 + pos: -89.5,-15.5 + parent: 2 + - uid: 4190 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 12270 + pos: -90.5,-15.5 + parent: 2 + - uid: 4191 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 12271 + pos: -91.5,-15.5 + parent: 2 + - uid: 4192 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 12272 + pos: -92.5,-15.5 + parent: 2 + - uid: 4193 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 12273 + pos: -86.5,-16.5 + parent: 2 + - uid: 4194 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 12274 + pos: 51.5,-1.5 + parent: 2 + - uid: 4195 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 12275 + pos: 39.5,-6.5 + parent: 2 + - uid: 4196 components: - type: Transform - pos: -112.5,9.5 - parent: 89 - - uid: 12276 + pos: 40.5,-6.5 + parent: 2 + - uid: 4197 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 12277 + pos: 38.5,-6.5 + parent: 2 + - uid: 4198 components: - type: Transform - pos: -114.5,9.5 - parent: 89 - - uid: 12278 + pos: -4.5,-10.5 + parent: 2 + - uid: 4199 components: - type: Transform - pos: -115.5,9.5 - parent: 89 - - uid: 12279 + pos: 10.5,-7.5 + parent: 2 + - uid: 4200 components: - type: Transform - pos: -116.5,9.5 - parent: 89 - - uid: 12280 + pos: -84.5,-11.5 + parent: 2 + - uid: 4201 components: - type: Transform - pos: -117.5,9.5 - parent: 89 - - uid: 12281 + pos: -85.5,-11.5 + parent: 2 + - uid: 4202 components: - type: Transform - pos: -113.5,-1.5 - parent: 89 - - uid: 12282 + pos: -86.5,-11.5 + parent: 2 + - uid: 4203 components: - type: Transform - pos: -114.5,-1.5 - parent: 89 - - uid: 12283 + pos: -87.5,-11.5 + parent: 2 + - uid: 4204 components: - type: Transform - pos: -115.5,-1.5 - parent: 89 - - uid: 12284 + pos: -87.5,-10.5 + parent: 2 + - uid: 4205 components: - type: Transform - pos: -116.5,-1.5 - parent: 89 - - uid: 12285 + pos: -87.5,-9.5 + parent: 2 + - uid: 4206 components: - type: Transform - pos: -117.5,-1.5 - parent: 89 - - uid: 12286 + pos: -87.5,-8.5 + parent: 2 + - uid: 4207 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 12287 + pos: -87.5,-7.5 + parent: 2 + - uid: 4208 components: - type: Transform - pos: -111.5,-4.5 - parent: 89 - - uid: 12288 + pos: -87.5,-6.5 + parent: 2 + - uid: 4209 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 12289 + pos: -87.5,-5.5 + parent: 2 + - uid: 4210 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 12290 + pos: -87.5,-4.5 + parent: 2 + - uid: 4211 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 12291 + pos: -86.5,-7.5 + parent: 2 + - uid: 4212 components: - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 12292 + pos: -85.5,-7.5 + parent: 2 + - uid: 4213 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 12293 + pos: -84.5,-7.5 + parent: 2 + - uid: 4214 components: - type: Transform - pos: -111.5,-10.5 - parent: 89 - - uid: 12294 + pos: 41.5,-6.5 + parent: 2 + - uid: 4215 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 12295 + pos: 41.5,-7.5 + parent: 2 + - uid: 4216 components: - type: Transform - pos: -112.5,-10.5 - parent: 89 - - uid: 12296 + pos: 38.5,-5.5 + parent: 2 + - uid: 4217 components: - type: Transform - pos: -113.5,-10.5 - parent: 89 - - uid: 12297 + pos: 2.5,-18.5 + parent: 2 + - uid: 4218 components: - type: Transform - pos: -111.5,10.5 - parent: 89 - - uid: 12298 + pos: -4.5,-38.5 + parent: 2 + - uid: 4219 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 12299 + pos: -3.5,-38.5 + parent: 2 + - uid: 4220 components: - type: Transform - pos: -111.5,12.5 - parent: 89 - - uid: 12300 + pos: -4.5,-37.5 + parent: 2 + - uid: 4221 components: - type: Transform - pos: -111.5,13.5 - parent: 89 - - uid: 12301 + pos: -23.5,-17.5 + parent: 2 + - uid: 4222 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 12302 + pos: 1.5,-18.5 + parent: 2 + - uid: 4223 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 12303 + pos: -36.5,-5.5 + parent: 2 + - uid: 4224 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 12304 + pos: -19.5,-18.5 + parent: 2 + - uid: 4225 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 12305 + pos: -21.5,-18.5 + parent: 2 + - uid: 4226 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 12306 + pos: -93.5,-4.5 + parent: 2 + - uid: 4227 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 12307 + pos: -93.5,-5.5 + parent: 2 + - uid: 4228 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 12308 + pos: -93.5,-6.5 + parent: 2 + - uid: 4229 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 12309 + pos: -93.5,-7.5 + parent: 2 + - uid: 4230 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 12310 + pos: -95.5,-6.5 + parent: 2 + - uid: 4231 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 12311 + pos: -95.5,-5.5 + parent: 2 + - uid: 4232 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 12312 + pos: -91.5,-4.5 + parent: 2 + - uid: 4233 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 12313 + pos: -92.5,-4.5 + parent: 2 + - uid: 4234 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 12314 + pos: -91.5,-6.5 + parent: 2 + - uid: 4235 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 12315 + pos: -91.5,-5.5 + parent: 2 + - uid: 4236 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 12316 + pos: -90.5,-6.5 + parent: 2 + - uid: 23726 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 12318 + pos: 1.5,-12.5 + parent: 23711 + - uid: 23727 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 12319 + pos: 0.5,-7.5 + parent: 23711 + - uid: 23728 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 12320 + pos: 1.5,-7.5 + parent: 23711 + - uid: 23729 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 12321 + pos: 5.5,-4.5 + parent: 23711 + - uid: 23730 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 12322 + pos: 5.5,-6.5 + parent: 23711 + - uid: 23731 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 12323 + pos: 0.5,-8.5 + parent: 23711 + - uid: 23732 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 12324 + pos: 3.5,-11.5 + parent: 23711 + - uid: 23733 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 12325 + pos: 2.5,-11.5 + parent: 23711 + - uid: 23734 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 12326 + pos: 2.5,-7.5 + parent: 23711 + - uid: 23735 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 12327 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23736 components: - type: Transform - pos: -97.5,7.5 - parent: 89 - - uid: 12329 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23737 components: - type: Transform - pos: -104.5,14.5 - parent: 89 - - uid: 12330 + pos: 3.5,-5.5 + parent: 23711 + - uid: 23738 components: - type: Transform - pos: -108.5,15.5 - parent: 89 - - uid: 12351 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23739 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12352 + pos: 3.5,-3.5 + parent: 23711 + - uid: 23740 components: - type: Transform - pos: -107.5,21.5 - parent: 89 - - uid: 12353 + pos: 3.5,-2.5 + parent: 23711 + - uid: 23741 components: - type: Transform - pos: -108.5,21.5 - parent: 89 - - uid: 12354 + pos: 3.5,-1.5 + parent: 23711 + - uid: 23742 components: - type: Transform - pos: -108.5,20.5 - parent: 89 - - uid: 12355 + pos: 4.5,-4.5 + parent: 23711 + - uid: 23743 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 12356 + pos: 4.5,-6.5 + parent: 23711 + - uid: 23744 components: - type: Transform - pos: -108.5,18.5 - parent: 89 - - uid: 12357 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23745 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 12358 + pos: 0.5,-6.5 + parent: 23711 + - uid: 23746 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 12359 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23747 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 12360 + pos: 4.5,-10.5 + parent: 23711 + - uid: 23748 components: - type: Transform - pos: -108.5,22.5 - parent: 89 - - uid: 12361 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23749 components: - type: Transform - pos: -108.5,23.5 - parent: 89 - - uid: 12362 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23750 components: - type: Transform - pos: -109.5,23.5 - parent: 89 - - uid: 12363 + pos: 4.5,-11.5 + parent: 23711 + - uid: 23751 components: - type: Transform - pos: -110.5,23.5 - parent: 89 - - uid: 12364 + pos: 3.5,-8.5 + parent: 23711 + - uid: 23752 components: - type: Transform - pos: -111.5,23.5 - parent: 89 - - uid: 12365 + pos: 4.5,-2.5 + parent: 23711 + - uid: 23753 components: - type: Transform - pos: -112.5,23.5 - parent: 89 - - uid: 12366 + pos: 5.5,-2.5 + parent: 23711 + - uid: 23754 components: - type: Transform - pos: -107.5,23.5 - parent: 89 - - uid: 12367 + pos: 2.5,-2.5 + parent: 23711 + - uid: 23755 components: - type: Transform - pos: -106.5,23.5 - parent: 89 - - uid: 12368 + pos: 1.5,-2.5 + parent: 23711 + - uid: 23756 components: - type: Transform - pos: -105.5,23.5 - parent: 89 - - uid: 12369 + pos: 5.5,-10.5 + parent: 23711 + - uid: 23757 components: - type: Transform - pos: -104.5,23.5 - parent: 89 - - uid: 12370 + pos: 1.5,-12.5 + parent: 23711 + - uid: 23758 components: - type: Transform - pos: -103.5,23.5 - parent: 89 - - uid: 12371 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23759 components: - type: Transform - pos: -102.5,23.5 - parent: 89 - - uid: 12372 + pos: 1.5,-11.5 + parent: 23711 + - uid: 23760 components: - type: Transform - pos: -108.5,24.5 - parent: 89 - - uid: 12373 + pos: 5.5,-11.5 + parent: 23711 + - uid: 23761 components: - type: Transform - pos: -108.5,25.5 - parent: 89 - - uid: 12374 + pos: 1.5,-13.5 + parent: 23711 + - uid: 23762 components: - type: Transform - pos: -107.5,25.5 - parent: 89 - - uid: 12375 + pos: 1.5,-2.5 + parent: 23711 + - uid: 23763 components: - type: Transform - pos: -106.5,25.5 - parent: 89 - - uid: 12376 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23764 components: - type: Transform - pos: -105.5,25.5 - parent: 89 - - uid: 12377 + pos: 2.5,-3.5 + parent: 23711 + - uid: 23765 components: - type: Transform - pos: -104.5,25.5 - parent: 89 - - uid: 12378 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23766 components: - type: Transform - pos: -103.5,25.5 - parent: 89 - - uid: 12379 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23767 components: - type: Transform - pos: -102.5,25.5 - parent: 89 - - uid: 12380 + pos: 5.5,-13.5 + parent: 23711 + - uid: 23768 components: - type: Transform - pos: -109.5,25.5 - parent: 89 - - uid: 12381 + pos: 3.5,-5.5 + parent: 23711 + - uid: 23769 components: - type: Transform - pos: -110.5,25.5 - parent: 89 - - uid: 12382 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23770 components: - type: Transform - pos: -111.5,25.5 - parent: 89 - - uid: 12383 + pos: 5.5,-3.5 + parent: 23711 + - uid: 23771 components: - type: Transform - pos: -112.5,25.5 - parent: 89 - - uid: 12384 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23772 components: - type: Transform - pos: -108.5,26.5 - parent: 89 - - uid: 12385 + pos: 3.5,-3.5 + parent: 23711 + - uid: 23773 components: - type: Transform - pos: -108.5,27.5 - parent: 89 - - uid: 12386 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23774 components: - type: Transform - pos: -109.5,27.5 - parent: 89 - - uid: 12387 + pos: 0.5,-4.5 + parent: 23711 + - uid: 23775 components: - type: Transform - pos: -110.5,27.5 - parent: 89 - - uid: 12388 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23982 components: - type: Transform - pos: -111.5,27.5 - parent: 89 - - uid: 12389 + pos: 4.5,4.5 + parent: 23919 + - uid: 23983 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - uid: 12390 + pos: 4.5,3.5 + parent: 23919 + - uid: 23984 components: - type: Transform - pos: -106.5,27.5 - parent: 89 - - uid: 12391 + pos: 4.5,2.5 + parent: 23919 + - uid: 23985 components: - type: Transform - pos: -105.5,27.5 - parent: 89 - - uid: 12392 + pos: 6.5,0.5 + parent: 23919 + - uid: 23986 components: - type: Transform - pos: -104.5,27.5 - parent: 89 - - uid: 12393 + pos: 4.5,-0.5 + parent: 23919 + - uid: 23987 components: - type: Transform - pos: -103.5,27.5 - parent: 89 - - uid: 12394 + pos: 4.5,-1.5 + parent: 23919 + - uid: 23988 components: - type: Transform - pos: -102.5,27.5 - parent: 89 - - uid: 12415 + pos: 4.5,5.5 + parent: 23919 + - uid: 23989 components: - type: Transform - pos: -101.5,25.5 - parent: 89 - - uid: 12416 + pos: 5.5,5.5 + parent: 23919 + - uid: 23990 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 12417 + pos: 3.5,5.5 + parent: 23919 + - uid: 23991 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 12418 + pos: 5.5,-1.5 + parent: 23919 + - uid: 23992 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 12419 + pos: 6.5,-1.5 + parent: 23919 + - uid: 23993 components: - type: Transform - pos: -99.5,26.5 - parent: 89 - - uid: 12420 + pos: 6.5,-0.5 + parent: 23919 + - uid: 23994 components: - type: Transform - pos: -98.5,25.5 - parent: 89 - - uid: 12421 + pos: 3.5,-1.5 + parent: 23919 + - uid: 23995 components: - type: Transform - pos: -97.5,25.5 - parent: 89 - - uid: 12422 + pos: 2.5,-1.5 + parent: 23919 + - uid: 23996 components: - type: Transform - pos: -97.5,26.5 - parent: 89 - - uid: 12423 + pos: 2.5,-2.5 + parent: 23919 + - uid: 23997 components: - type: Transform - pos: -97.5,27.5 - parent: 89 - - uid: 12424 + pos: 2.5,-3.5 + parent: 23919 + - uid: 23998 components: - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 12425 + pos: 2.5,-4.5 + parent: 23919 + - uid: 23999 components: - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 12426 + pos: 1.5,-8.5 + parent: 23919 + - uid: 24000 components: - type: Transform - pos: -98.5,29.5 - parent: 89 - - uid: 12427 + pos: 2.5,-8.5 + parent: 23919 + - uid: 24001 components: - type: Transform - pos: -99.5,29.5 - parent: 89 - - uid: 12428 + pos: 3.5,-8.5 + parent: 23919 + - uid: 24002 components: - type: Transform - pos: -100.5,29.5 - parent: 89 - - uid: 12429 + pos: 4.5,-8.5 + parent: 23919 + - uid: 24003 components: - type: Transform - pos: -101.5,29.5 - parent: 89 - - uid: 12432 + pos: 5.5,-8.5 + parent: 23919 + - uid: 24004 components: - type: Transform - pos: -118.5,14.5 - parent: 89 - - uid: 12433 + pos: 6.5,-8.5 + parent: 23919 + - uid: 24005 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 12434 + pos: 7.5,-8.5 + parent: 23919 + - uid: 24006 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 12435 + pos: 4.5,-9.5 + parent: 23919 + - uid: 24007 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 12436 + pos: 4.5,-10.5 + parent: 23919 + - uid: 24008 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 12437 + pos: 4.5,-11.5 + parent: 23919 + - uid: 24009 components: - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 12438 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24010 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 12439 + pos: 3.5,-6.5 + parent: 23919 + - uid: 24011 components: - type: Transform - pos: -119.5,11.5 - parent: 89 - - uid: 12440 + pos: 3.5,-4.5 + parent: 23919 + - uid: 24012 components: - type: Transform - pos: -119.5,10.5 - parent: 89 - - uid: 12441 + pos: 4.5,-4.5 + parent: 23919 + - uid: 24013 components: - type: Transform - pos: -119.5,9.5 - parent: 89 - - uid: 12442 + pos: 5.5,-4.5 + parent: 23919 + - uid: 24014 components: - type: Transform - pos: -120.5,11.5 - parent: 89 - - uid: 12443 + pos: 7.5,-9.5 + parent: 23919 + - uid: 24015 components: - type: Transform - pos: -121.5,11.5 - parent: 89 - - uid: 12444 + pos: 1.5,-9.5 + parent: 23919 + - uid: 24016 components: - type: Transform - pos: -122.5,11.5 - parent: 89 - - uid: 12445 + pos: 6.5,-4.5 + parent: 23919 + - uid: 24017 components: - type: Transform - pos: -123.5,11.5 - parent: 89 - - uid: 12446 + pos: 4.5,0.5 + parent: 23919 + - uid: 24018 components: - type: Transform - pos: -124.5,11.5 - parent: 89 - - uid: 12447 + pos: 6.5,1.5 + parent: 23919 + - uid: 24019 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 12448 + pos: 7.5,0.5 + parent: 23919 + - uid: 24020 components: - type: Transform - pos: -124.5,12.5 - parent: 89 - - uid: 12449 + pos: 4.5,1.5 + parent: 23919 + - uid: 24021 components: - type: Transform - pos: -124.5,13.5 - parent: 89 - - uid: 12450 + pos: 3.5,1.5 + parent: 23919 + - uid: 24351 components: - type: Transform - pos: -125.5,13.5 - parent: 89 - - uid: 12451 + pos: 1.5,-3.5 + parent: 24340 + - uid: 24352 components: - type: Transform - pos: -126.5,11.5 - parent: 89 - - uid: 12452 + pos: 1.5,-2.5 + parent: 24340 + - uid: 24353 components: - type: Transform - pos: -127.5,11.5 - parent: 89 - - uid: 12453 + pos: 0.5,-2.5 + parent: 24340 + - uid: 24354 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 12454 + pos: -0.5,-2.5 + parent: 24340 + - uid: 24355 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 12455 + pos: 0.5,-1.5 + parent: 24340 + - uid: 24356 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 12456 + pos: 0.5,-0.5 + parent: 24340 + - uid: 24357 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 12457 + pos: -0.5,-0.5 + parent: 24340 + - uid: 24358 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 12458 + pos: 1.5,-0.5 + parent: 24340 + - uid: 24359 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 12459 + pos: 0.5,-3.5 + parent: 24340 + - uid: 24360 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 12460 + pos: 0.5,-4.5 + parent: 24340 + - uid: 24361 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 12461 + pos: 0.5,-5.5 + parent: 24340 + - uid: 24362 components: - type: Transform - pos: -131.5,15.5 - parent: 89 - - uid: 12462 + pos: 0.5,-6.5 + parent: 24340 + - uid: 24363 components: - type: Transform - pos: -129.5,15.5 - parent: 89 - - uid: 12463 + pos: -0.5,-4.5 + parent: 24340 + - uid: 24364 components: - type: Transform - pos: -120.5,9.5 - parent: 89 - - uid: 12464 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24365 components: - type: Transform - pos: -120.5,8.5 - parent: 89 - - uid: 12465 + pos: -0.5,-6.5 + parent: 24340 + - uid: 24366 components: - type: Transform - pos: -120.5,7.5 - parent: 89 - - uid: 12466 + pos: 1.5,-6.5 + parent: 24340 + - uid: 25115 components: - type: Transform - pos: -120.5,6.5 - parent: 89 - - uid: 12467 + pos: -14.5,-22.5 + parent: 24450 + - uid: 25116 components: - type: Transform - pos: -120.5,5.5 - parent: 89 - - uid: 12468 + pos: -8.5,-24.5 + parent: 24450 + - uid: 25117 components: - type: Transform - pos: -120.5,4.5 - parent: 89 - - uid: 12469 + pos: -8.5,-2.5 + parent: 24450 + - uid: 25118 components: - type: Transform - pos: -120.5,3.5 - parent: 89 - - uid: 12470 + pos: -10.5,-24.5 + parent: 24450 + - uid: 25119 components: - type: Transform - pos: -120.5,2.5 - parent: 89 - - uid: 12471 + pos: -8.5,-25.5 + parent: 24450 + - uid: 25120 components: - type: Transform - pos: -120.5,1.5 - parent: 89 - - uid: 12472 + pos: -15.5,-22.5 + parent: 24450 + - uid: 25121 components: - type: Transform - pos: -120.5,0.5 - parent: 89 - - uid: 12473 + pos: -13.5,-18.5 + parent: 24450 + - uid: 25122 components: - type: Transform - pos: -120.5,-0.5 - parent: 89 - - uid: 12474 + pos: -10.5,-23.5 + parent: 24450 + - uid: 25123 components: - type: Transform - pos: -120.5,-1.5 - parent: 89 - - uid: 12475 + pos: -10.5,-22.5 + parent: 24450 + - uid: 25124 components: - type: Transform - pos: -119.5,-1.5 - parent: 89 - - uid: 12476 + pos: -10.5,-20.5 + parent: 24450 + - uid: 25125 components: - type: Transform - pos: -120.5,-2.5 - parent: 89 - - uid: 12477 + pos: -16.5,-20.5 + parent: 24450 + - uid: 25126 components: - type: Transform - pos: -120.5,-3.5 - parent: 89 - - uid: 12478 + pos: -12.5,-22.5 + parent: 24450 + - uid: 25127 components: - type: Transform - pos: -121.5,-3.5 - parent: 89 - - uid: 12479 + pos: -13.5,-19.5 + parent: 24450 + - uid: 25128 components: - type: Transform - pos: -121.5,-4.5 - parent: 89 - - uid: 12480 + pos: -9.5,-22.5 + parent: 24450 + - uid: 25129 components: - type: Transform - pos: -121.5,-5.5 - parent: 89 - - uid: 12481 + pos: -16.5,-19.5 + parent: 24450 + - uid: 25130 components: - type: Transform - pos: -121.5,-6.5 - parent: 89 - - uid: 12482 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25131 components: - type: Transform - pos: -121.5,-7.5 - parent: 89 - - uid: 12483 + pos: -17.5,-22.5 + parent: 24450 + - uid: 25132 components: - type: Transform - pos: -121.5,-8.5 - parent: 89 - - uid: 12484 + pos: -11.5,-22.5 + parent: 24450 + - uid: 25133 components: - type: Transform - pos: -121.5,-9.5 - parent: 89 - - uid: 12485 + pos: -10.5,-19.5 + parent: 24450 + - uid: 25134 components: - type: Transform - pos: -121.5,-10.5 - parent: 89 - - uid: 12486 + pos: -10.5,-21.5 + parent: 24450 + - uid: 25135 components: - type: Transform - pos: -120.5,-10.5 - parent: 89 - - uid: 12487 + pos: -9.5,-25.5 + parent: 24450 + - uid: 25136 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 12488 + pos: -10.5,-25.5 + parent: 24450 + - uid: 25137 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - uid: 12489 + pos: -11.5,-25.5 + parent: 24450 + - uid: 25138 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - uid: 12490 + pos: -12.5,-25.5 + parent: 24450 + - uid: 25139 components: - type: Transform - pos: -116.5,-10.5 - parent: 89 - - uid: 12491 + pos: -13.5,-25.5 + parent: 24450 + - uid: 25140 components: - type: Transform - pos: -115.5,-10.5 - parent: 89 - - uid: 12492 + pos: -14.5,-25.5 + parent: 24450 + - uid: 25141 components: - type: Transform - pos: -122.5,-7.5 - parent: 89 - - uid: 12493 + pos: -15.5,-25.5 + parent: 24450 + - uid: 25142 components: - type: Transform - pos: -123.5,-7.5 - parent: 89 - - uid: 12494 + pos: -16.5,-25.5 + parent: 24450 + - uid: 25143 components: - type: Transform - pos: -124.5,-7.5 - parent: 89 - - uid: 12495 + pos: -17.5,-25.5 + parent: 24450 + - uid: 25144 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 12496 + pos: -16.5,-24.5 + parent: 24450 + - uid: 25145 components: - type: Transform - pos: -126.5,-7.5 - parent: 89 - - uid: 12497 + pos: -16.5,-23.5 + parent: 24450 + - uid: 25146 components: - type: Transform - pos: -126.5,-6.5 - parent: 89 - - uid: 12498 + pos: -16.5,-22.5 + parent: 24450 + - uid: 25147 components: - type: Transform - pos: -122.5,-3.5 - parent: 89 - - uid: 12499 + pos: -16.5,-21.5 + parent: 24450 + - uid: 25148 components: - type: Transform - pos: -123.5,-3.5 - parent: 89 - - uid: 12500 + pos: -13.5,-24.5 + parent: 24450 + - uid: 25149 components: - type: Transform - pos: -124.5,-3.5 - parent: 89 - - uid: 12501 + pos: -13.5,-23.5 + parent: 24450 + - uid: 25150 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 12502 + pos: -13.5,-22.5 + parent: 24450 + - uid: 25151 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 12503 + pos: -13.5,-21.5 + parent: 24450 + - uid: 25152 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 12504 + pos: -13.5,-20.5 + parent: 24450 + - uid: 25153 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 12505 + pos: -8.5,-23.5 + parent: 24450 + - uid: 25154 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 12506 + pos: -8.5,-22.5 + parent: 24450 + - uid: 25155 components: - type: Transform - pos: -129.5,-0.5 - parent: 89 - - uid: 12507 + pos: -8.5,-21.5 + parent: 24450 + - uid: 25156 components: - type: Transform - pos: -129.5,0.5 - parent: 89 - - uid: 12508 + pos: -8.5,-20.5 + parent: 24450 + - uid: 25157 components: - type: Transform - pos: -129.5,1.5 - parent: 89 - - uid: 12509 + pos: -8.5,-19.5 + parent: 24450 + - uid: 25158 components: - type: Transform - pos: -129.5,2.5 - parent: 89 - - uid: 12510 + pos: -8.5,-18.5 + parent: 24450 + - uid: 25159 components: - type: Transform - pos: -129.5,3.5 - parent: 89 - - uid: 12511 + pos: -8.5,-17.5 + parent: 24450 + - uid: 25160 components: - type: Transform - pos: -129.5,4.5 - parent: 89 - - uid: 12512 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25161 components: - type: Transform - pos: -129.5,5.5 - parent: 89 - - uid: 12513 + pos: -6.5,-17.5 + parent: 24450 + - uid: 25162 components: - type: Transform - pos: -129.5,6.5 - parent: 89 - - uid: 12514 + pos: -5.5,-17.5 + parent: 24450 + - uid: 25163 components: - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 12515 + pos: -4.5,-17.5 + parent: 24450 + - uid: 25164 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 12516 + pos: -3.5,-17.5 + parent: 24450 + - uid: 25165 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - uid: 12517 + pos: -2.5,-17.5 + parent: 24450 + - uid: 25166 components: - type: Transform - pos: -128.5,9.5 - parent: 89 - - uid: 12518 + pos: -12.5,-12.5 + parent: 24450 + - uid: 25167 components: - type: Transform - pos: -127.5,9.5 - parent: 89 - - uid: 12519 + pos: -15.5,-13.5 + parent: 24450 + - uid: 25168 components: - type: Transform - pos: -126.5,9.5 - parent: 89 - - uid: 12520 + pos: -14.5,-13.5 + parent: 24450 + - uid: 25169 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 12521 + pos: -13.5,-13.5 + parent: 24450 + - uid: 25170 components: - type: Transform - pos: -124.5,9.5 - parent: 89 - - uid: 12522 + pos: -12.5,-13.5 + parent: 24450 + - uid: 25171 components: - type: Transform - pos: -123.5,9.5 - parent: 89 - - uid: 12523 + pos: -12.5,-11.5 + parent: 24450 + - uid: 25172 components: - type: Transform - pos: -122.5,9.5 - parent: 89 - - uid: 12524 + pos: -12.5,-10.5 + parent: 24450 + - uid: 25173 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 12525 + pos: -12.5,-9.5 + parent: 24450 + - uid: 25174 components: - type: Transform - pos: -126.5,-9.5 - parent: 89 - - uid: 12526 + pos: -16.5,-7.5 + parent: 24450 + - uid: 25175 components: - type: Transform - pos: -126.5,-10.5 - parent: 89 - - uid: 12527 + pos: -16.5,-8.5 + parent: 24450 + - uid: 25176 components: - type: Transform - pos: -125.5,-10.5 - parent: 89 - - uid: 12528 + pos: -16.5,-9.5 + parent: 24450 + - uid: 25177 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 12529 + pos: -16.5,-10.5 + parent: 24450 + - uid: 25178 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 12533 + pos: -16.5,-11.5 + parent: 24450 + - uid: 25179 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 12534 + pos: -16.5,-12.5 + parent: 24450 + - uid: 25180 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 12535 + pos: -16.5,-13.5 + parent: 24450 + - uid: 25181 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 12536 + pos: -16.5,-14.5 + parent: 24450 + - uid: 25182 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 12537 + pos: -16.5,-15.5 + parent: 24450 + - uid: 25183 components: - type: Transform - pos: -125.5,16.5 - parent: 89 - - uid: 12538 + pos: -16.5,-16.5 + parent: 24450 + - uid: 25184 components: - type: Transform - pos: -125.5,15.5 - parent: 89 - - uid: 12539 + pos: -16.5,-17.5 + parent: 24450 + - uid: 25185 components: - type: Transform - pos: -121.5,4.5 - parent: 89 - - uid: 12540 + pos: -16.5,-18.5 + parent: 24450 + - uid: 25186 components: - type: Transform - pos: -122.5,4.5 - parent: 89 - - uid: 12541 + pos: -13.5,1.5 + parent: 24450 + - uid: 25187 components: - type: Transform - pos: -123.5,4.5 - parent: 89 - - uid: 12542 + pos: -13.5,-1.5 + parent: 24450 + - uid: 25188 components: - type: Transform - pos: -123.5,3.5 - parent: 89 - - uid: 12624 + pos: -20.5,11.5 + parent: 24450 + - uid: 25189 components: - type: Transform - pos: 28.5,30.5 - parent: 89 - - uid: 12649 + pos: -10.5,3.5 + parent: 24450 + - uid: 25190 components: - type: Transform - pos: -31.5,9.5 - parent: 89 - - uid: 12816 + pos: -7.5,-2.5 + parent: 24450 + - uid: 25191 components: - type: Transform - pos: 29.5,30.5 - parent: 89 - - uid: 12823 + pos: -13.5,0.5 + parent: 24450 + - uid: 25192 components: - type: Transform - pos: 23.5,23.5 - parent: 89 - - uid: 12824 + pos: -23.5,9.5 + parent: 24450 + - uid: 25193 components: - type: Transform - pos: 23.5,25.5 - parent: 89 - - uid: 12944 + pos: -20.5,9.5 + parent: 24450 + - uid: 25194 components: - type: Transform - pos: -109.5,4.5 - parent: 89 - - uid: 12945 + pos: -13.5,-2.5 + parent: 24450 + - uid: 25195 components: - type: Transform - pos: -110.5,4.5 - parent: 89 - - uid: 12946 + pos: -10.5,1.5 + parent: 24450 + - uid: 25196 components: - type: Transform - pos: -111.5,4.5 - parent: 89 - - uid: 12947 + pos: -16.5,-2.5 + parent: 24450 + - uid: 25197 components: - type: Transform - pos: -112.5,4.5 - parent: 89 - - uid: 12948 + pos: -13.5,2.5 + parent: 24450 + - uid: 25198 components: - type: Transform - pos: -113.5,4.5 - parent: 89 - - uid: 12949 + pos: -10.5,-2.5 + parent: 24450 + - uid: 25199 components: - type: Transform - pos: -114.5,4.5 - parent: 89 - - uid: 12950 + pos: -9.5,-2.5 + parent: 24450 + - uid: 25200 components: - type: Transform - pos: -115.5,4.5 - parent: 89 - - uid: 12951 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25201 components: - type: Transform - pos: -116.5,4.5 - parent: 89 - - uid: 12952 + pos: -13.5,-0.5 + parent: 24450 + - uid: 25202 components: - type: Transform - pos: -116.5,3.5 - parent: 89 - - uid: 12953 + pos: -10.5,0.5 + parent: 24450 + - uid: 25203 components: - type: Transform - pos: -116.5,2.5 - parent: 89 - - uid: 12954 + pos: -10.5,-1.5 + parent: 24450 + - uid: 25204 components: - type: Transform - pos: -116.5,1.5 - parent: 89 - - uid: 12955 + pos: -10.5,-0.5 + parent: 24450 + - uid: 25205 components: - type: Transform - pos: -116.5,5.5 - parent: 89 - - uid: 12956 + pos: -10.5,2.5 + parent: 24450 + - uid: 25206 components: - type: Transform - pos: -116.5,6.5 - parent: 89 - - uid: 12991 + pos: -10.5,4.5 + parent: 24450 + - uid: 25207 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 12992 + pos: -10.5,5.5 + parent: 24450 + - uid: 25208 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 12993 + pos: -10.5,6.5 + parent: 24450 + - uid: 25209 components: - type: Transform - pos: -85.5,16.5 - parent: 89 - - uid: 12994 + pos: -10.5,7.5 + parent: 24450 + - uid: 25210 components: - type: Transform - pos: -85.5,17.5 - parent: 89 - - uid: 12995 + pos: -10.5,8.5 + parent: 24450 + - uid: 25211 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 12996 + pos: -10.5,9.5 + parent: 24450 + - uid: 25212 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 12997 + pos: -10.5,10.5 + parent: 24450 + - uid: 25213 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 12998 + pos: -13.5,3.5 + parent: 24450 + - uid: 25214 components: - type: Transform - pos: -86.5,13.5 - parent: 89 - - uid: 12999 + pos: -13.5,4.5 + parent: 24450 + - uid: 25215 components: - type: Transform - pos: -87.5,13.5 - parent: 89 - - uid: 13000 + pos: -13.5,5.5 + parent: 24450 + - uid: 25216 components: - type: Transform - pos: -88.5,13.5 - parent: 89 - - uid: 13001 + pos: -13.5,6.5 + parent: 24450 + - uid: 25217 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 13002 + pos: -13.5,7.5 + parent: 24450 + - uid: 25218 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 13003 + pos: -13.5,8.5 + parent: 24450 + - uid: 25219 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 13004 + pos: -13.5,9.5 + parent: 24450 + - uid: 25220 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 13005 + pos: -13.5,10.5 + parent: 24450 + - uid: 25221 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 13006 + pos: -9.5,10.5 + parent: 24450 + - uid: 25222 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 13007 + pos: -8.5,10.5 + parent: 24450 + - uid: 25223 components: - type: Transform - pos: -87.5,21.5 - parent: 89 - - uid: 13008 + pos: -7.5,10.5 + parent: 24450 + - uid: 25224 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 13009 + pos: -6.5,10.5 + parent: 24450 + - uid: 25225 components: - type: Transform - pos: -87.5,23.5 - parent: 89 - - uid: 13010 + pos: -5.5,10.5 + parent: 24450 + - uid: 25226 components: - type: Transform - pos: -87.5,24.5 - parent: 89 - - uid: 13012 + pos: -4.5,10.5 + parent: 24450 + - uid: 25227 components: - type: Transform - pos: -87.5,26.5 - parent: 89 - - uid: 13013 + pos: -3.5,10.5 + parent: 24450 + - uid: 25228 components: - type: Transform - pos: -87.5,27.5 - parent: 89 - - uid: 13014 + pos: -2.5,10.5 + parent: 24450 + - uid: 25229 components: - type: Transform - pos: -87.5,28.5 - parent: 89 - - uid: 13015 + pos: -1.5,10.5 + parent: 24450 + - uid: 25230 components: - type: Transform - pos: -88.5,28.5 - parent: 89 - - uid: 13016 + pos: -0.5,10.5 + parent: 24450 + - uid: 25231 components: - type: Transform - pos: -89.5,28.5 - parent: 89 - - uid: 13017 + pos: -3.5,11.5 + parent: 24450 + - uid: 25232 components: - type: Transform - pos: -90.5,28.5 - parent: 89 - - uid: 13019 + pos: -3.5,12.5 + parent: 24450 + - uid: 25233 components: - type: Transform - pos: -92.5,28.5 - parent: 89 - - uid: 13020 + pos: -3.5,13.5 + parent: 24450 + - uid: 25234 components: - type: Transform - pos: -92.5,27.5 - parent: 89 - - uid: 13021 + pos: -3.5,14.5 + parent: 24450 + - uid: 25235 components: - type: Transform - pos: -92.5,26.5 - parent: 89 - - uid: 13022 + pos: -3.5,15.5 + parent: 24450 + - uid: 25236 components: - type: Transform - pos: -92.5,25.5 - parent: 89 - - uid: 13023 + pos: -3.5,16.5 + parent: 24450 + - uid: 25237 components: - type: Transform - pos: -92.5,24.5 - parent: 89 - - uid: 13024 + pos: -3.5,17.5 + parent: 24450 + - uid: 25238 components: - type: Transform - pos: -92.5,23.5 - parent: 89 - - uid: 13025 + pos: -3.5,18.5 + parent: 24450 + - uid: 25239 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 13026 + pos: -3.5,19.5 + parent: 24450 + - uid: 25240 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 13027 + pos: -3.5,20.5 + parent: 24450 + - uid: 25241 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 13028 + pos: -3.5,21.5 + parent: 24450 + - uid: 25242 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 13029 + pos: -3.5,22.5 + parent: 24450 + - uid: 25243 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 13030 + pos: -3.5,23.5 + parent: 24450 + - uid: 25244 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 13031 + pos: -3.5,24.5 + parent: 24450 + - uid: 25245 components: - type: Transform - pos: -93.5,21.5 - parent: 89 - - uid: 13032 + pos: -3.5,25.5 + parent: 24450 + - uid: 25246 components: - type: Transform - pos: -93.5,20.5 - parent: 89 - - uid: 13033 + pos: -0.5,11.5 + parent: 24450 + - uid: 25247 components: - type: Transform - pos: -93.5,19.5 - parent: 89 - - uid: 13034 + pos: -0.5,12.5 + parent: 24450 + - uid: 25248 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 13035 + pos: -0.5,13.5 + parent: 24450 + - uid: 25249 components: - type: Transform - pos: -98.5,21.5 - parent: 89 - - uid: 13036 + pos: -0.5,14.5 + parent: 24450 + - uid: 25250 components: - type: Transform - pos: -98.5,20.5 - parent: 89 - - uid: 13037 + pos: -0.5,15.5 + parent: 24450 + - uid: 25251 components: - type: Transform - pos: -98.5,19.5 - parent: 89 - - uid: 13038 + pos: -0.5,16.5 + parent: 24450 + - uid: 25252 components: - type: Transform - pos: -98.5,18.5 - parent: 89 - - uid: 13039 + pos: -0.5,17.5 + parent: 24450 + - uid: 25253 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 13040 + pos: -0.5,18.5 + parent: 24450 + - uid: 25254 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 13041 + pos: -0.5,19.5 + parent: 24450 + - uid: 25255 components: - type: Transform - pos: -99.5,19.5 - parent: 89 - - uid: 13042 + pos: -0.5,20.5 + parent: 24450 + - uid: 25256 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 13043 + pos: -0.5,21.5 + parent: 24450 + - uid: 25257 components: - type: Transform - pos: -99.5,21.5 - parent: 89 - - uid: 13044 + pos: -0.5,22.5 + parent: 24450 + - uid: 25258 components: - type: Transform - pos: -99.5,27.5 - parent: 89 - - uid: 13045 + pos: -0.5,23.5 + parent: 24450 + - uid: 25259 components: - type: Transform - pos: -101.5,18.5 - parent: 89 - - uid: 13046 + pos: -0.5,24.5 + parent: 24450 + - uid: 25260 components: - type: Transform - pos: -102.5,18.5 - parent: 89 - - uid: 13047 + pos: -0.5,25.5 + parent: 24450 + - uid: 25261 components: - type: Transform - pos: -103.5,18.5 - parent: 89 - - uid: 13048 + pos: -1.5,25.5 + parent: 24450 + - uid: 25262 components: - type: Transform - pos: -104.5,18.5 - parent: 89 - - uid: 13049 + pos: -2.5,25.5 + parent: 24450 + - uid: 25263 components: - type: Transform - pos: -105.5,18.5 - parent: 89 - - uid: 13050 + pos: -1.5,1.5 + parent: 24450 + - uid: 25264 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 13051 + pos: -2.5,1.5 + parent: 24450 + - uid: 25265 components: - type: Transform - pos: -100.5,16.5 - parent: 89 - - uid: 13052 + pos: -3.5,1.5 + parent: 24450 + - uid: 25266 components: - type: Transform - pos: -100.5,15.5 - parent: 89 - - uid: 13053 + pos: -4.5,1.5 + parent: 24450 + - uid: 25267 components: - type: Transform - pos: -100.5,14.5 - parent: 89 - - uid: 13054 + pos: -5.5,1.5 + parent: 24450 + - uid: 25268 components: - type: Transform - pos: -100.5,13.5 - parent: 89 - - uid: 13055 + pos: -6.5,1.5 + parent: 24450 + - uid: 25269 components: - type: Transform - pos: -100.5,12.5 - parent: 89 - - uid: 13056 + pos: -7.5,1.5 + parent: 24450 + - uid: 25270 components: - type: Transform - pos: -99.5,13.5 - parent: 89 - - uid: 13057 + pos: -8.5,1.5 + parent: 24450 + - uid: 25271 components: - type: Transform - pos: -98.5,13.5 - parent: 89 - - uid: 13058 + pos: -9.5,1.5 + parent: 24450 + - uid: 25272 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 13059 + pos: 0.5,5.5 + parent: 24450 + - uid: 25273 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 13060 + pos: -2.5,5.5 + parent: 24450 + - uid: 25274 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 13061 + pos: -3.5,9.5 + parent: 24450 + - uid: 25275 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 13062 + pos: -14.5,10.5 + parent: 24450 + - uid: 25276 components: - type: Transform - pos: -81.5,12.5 - parent: 89 - - uid: 13063 + pos: -15.5,10.5 + parent: 24450 + - uid: 25277 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 13064 + pos: -16.5,10.5 + parent: 24450 + - uid: 25278 components: - type: Transform - pos: -81.5,10.5 - parent: 89 - - uid: 13065 + pos: -17.5,10.5 + parent: 24450 + - uid: 25279 components: - type: Transform - pos: -81.5,9.5 - parent: 89 - - uid: 13066 + pos: -18.5,10.5 + parent: 24450 + - uid: 25280 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 13067 + pos: -19.5,10.5 + parent: 24450 + - uid: 25281 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 13068 + pos: -20.5,10.5 + parent: 24450 + - uid: 25282 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 13069 + pos: -20.5,12.5 + parent: 24450 + - uid: 25283 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 13070 + pos: -20.5,13.5 + parent: 24450 + - uid: 25284 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 13071 + pos: -20.5,14.5 + parent: 24450 + - uid: 25285 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 13072 + pos: -20.5,15.5 + parent: 24450 + - uid: 25286 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 13073 + pos: -20.5,16.5 + parent: 24450 + - uid: 25287 components: - type: Transform - pos: -86.5,34.5 - parent: 89 - - uid: 13074 + pos: -20.5,17.5 + parent: 24450 + - uid: 25288 components: - type: Transform - pos: -86.5,33.5 - parent: 89 - - uid: 13075 + pos: -20.5,18.5 + parent: 24450 + - uid: 25289 components: - type: Transform - pos: -85.5,33.5 - parent: 89 - - uid: 13076 + pos: -20.5,19.5 + parent: 24450 + - uid: 25290 components: - type: Transform - pos: -84.5,33.5 - parent: 89 - - uid: 13077 + pos: -20.5,20.5 + parent: 24450 + - uid: 25291 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 13078 + pos: -20.5,21.5 + parent: 24450 + - uid: 25292 components: - type: Transform - pos: -84.5,31.5 - parent: 89 - - uid: 13079 + pos: -20.5,22.5 + parent: 24450 + - uid: 25293 components: - type: Transform - pos: -84.5,30.5 - parent: 89 - - uid: 13080 + pos: -20.5,23.5 + parent: 24450 + - uid: 25294 components: - type: Transform - pos: -84.5,29.5 - parent: 89 - - uid: 13081 + pos: -20.5,24.5 + parent: 24450 + - uid: 25295 components: - type: Transform - pos: -84.5,28.5 - parent: 89 - - uid: 13082 + pos: -20.5,25.5 + parent: 24450 + - uid: 25296 components: - type: Transform - pos: -84.5,27.5 - parent: 89 - - uid: 13083 + pos: -21.5,25.5 + parent: 24450 + - uid: 25297 components: - type: Transform - pos: -84.5,26.5 - parent: 89 - - uid: 13084 + pos: -22.5,25.5 + parent: 24450 + - uid: 25298 components: - type: Transform - pos: -84.5,25.5 - parent: 89 - - uid: 13085 + pos: -23.5,25.5 + parent: 24450 + - uid: 25299 components: - type: Transform - pos: -84.5,34.5 - parent: 89 - - uid: 13086 + pos: -23.5,24.5 + parent: 24450 + - uid: 25300 components: - type: Transform - pos: -84.5,35.5 - parent: 89 - - uid: 13087 + pos: -23.5,23.5 + parent: 24450 + - uid: 25301 components: - type: Transform - pos: -84.5,36.5 - parent: 89 - - uid: 13088 + pos: -23.5,22.5 + parent: 24450 + - uid: 25302 components: - type: Transform - pos: -84.5,37.5 - parent: 89 - - uid: 13089 + pos: -23.5,21.5 + parent: 24450 + - uid: 25303 components: - type: Transform - pos: -84.5,38.5 - parent: 89 - - uid: 13090 + pos: -23.5,20.5 + parent: 24450 + - uid: 25304 components: - type: Transform - pos: -84.5,39.5 - parent: 89 - - uid: 13091 + pos: -23.5,19.5 + parent: 24450 + - uid: 25305 components: - type: Transform - pos: -84.5,40.5 - parent: 89 - - uid: 13092 + pos: -23.5,18.5 + parent: 24450 + - uid: 25306 components: - type: Transform - pos: -84.5,41.5 - parent: 89 - - uid: 13093 + pos: -23.5,17.5 + parent: 24450 + - uid: 25307 components: - type: Transform - pos: -84.5,42.5 - parent: 89 - - uid: 13094 + pos: -23.5,16.5 + parent: 24450 + - uid: 25308 components: - type: Transform - pos: -84.5,43.5 - parent: 89 - - uid: 13095 + pos: -23.5,15.5 + parent: 24450 + - uid: 25309 components: - type: Transform - pos: -84.5,44.5 - parent: 89 - - uid: 13096 + pos: -23.5,14.5 + parent: 24450 + - uid: 25310 components: - type: Transform - pos: -84.5,45.5 - parent: 89 - - uid: 13097 + pos: -23.5,13.5 + parent: 24450 + - uid: 25311 components: - type: Transform - pos: -84.5,24.5 - parent: 89 - - uid: 13098 + pos: -23.5,12.5 + parent: 24450 + - uid: 25312 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 13099 + pos: -23.5,11.5 + parent: 24450 + - uid: 25313 components: - type: Transform - pos: -84.5,22.5 - parent: 89 - - uid: 13100 + pos: -23.5,10.5 + parent: 24450 + - uid: 25314 components: - type: Transform - pos: -84.5,21.5 - parent: 89 - - uid: 13101 + pos: -22.5,10.5 + parent: 24450 + - uid: 25315 components: - type: Transform - pos: -84.5,20.5 - parent: 89 - - uid: 13102 + pos: -21.5,10.5 + parent: 24450 + - uid: 25316 components: - type: Transform - pos: -84.5,19.5 - parent: 89 - - uid: 13103 + pos: -0.5,1.5 + parent: 24450 + - uid: 25317 components: - type: Transform - pos: -83.5,20.5 - parent: 89 - - uid: 13104 + pos: 0.5,1.5 + parent: 24450 + - uid: 25318 components: - type: Transform - pos: -82.5,20.5 - parent: 89 - - uid: 13105 + pos: 1.5,1.5 + parent: 24450 + - uid: 25319 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 13117 + pos: 2.5,1.5 + parent: 24450 + - uid: 25320 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 13128 + pos: 3.5,1.5 + parent: 24450 + - uid: 25321 components: - type: Transform - pos: -18.5,9.5 - parent: 89 - - uid: 13129 + pos: -3.5,8.5 + parent: 24450 + - uid: 25322 components: - type: Transform - pos: -18.5,8.5 - parent: 89 - - uid: 13130 + pos: -3.5,7.5 + parent: 24450 + - uid: 25323 components: - type: Transform - pos: -18.5,7.5 - parent: 89 - - uid: 13131 + pos: -3.5,6.5 + parent: 24450 + - uid: 25324 components: - type: Transform - pos: -18.5,6.5 - parent: 89 - - uid: 13132 + pos: -3.5,5.5 + parent: 24450 + - uid: 25325 components: - type: Transform - pos: -17.5,7.5 - parent: 89 - - uid: 13133 + pos: -3.5,4.5 + parent: 24450 + - uid: 25326 components: - type: Transform - pos: -16.5,7.5 - parent: 89 - - uid: 13134 + pos: -3.5,3.5 + parent: 24450 + - uid: 25327 components: - type: Transform - pos: -19.5,7.5 - parent: 89 - - uid: 13135 + pos: -3.5,2.5 + parent: 24450 + - uid: 25328 components: - type: Transform - pos: -20.5,7.5 - parent: 89 - - uid: 13136 + pos: -0.5,2.5 + parent: 24450 + - uid: 25329 components: - type: Transform - pos: -18.5,5.5 - parent: 89 - - uid: 13137 + pos: -0.5,3.5 + parent: 24450 + - uid: 25330 components: - type: Transform - pos: -16.5,8.5 - parent: 89 - - uid: 13138 + pos: -0.5,4.5 + parent: 24450 + - uid: 25331 components: - type: Transform - pos: -16.5,9.5 - parent: 89 - - uid: 13151 + pos: -0.5,5.5 + parent: 24450 + - uid: 25332 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13152 + pos: -0.5,6.5 + parent: 24450 + - uid: 25333 components: - type: Transform - pos: -10.5,4.5 - parent: 89 - - uid: 13153 + pos: -0.5,7.5 + parent: 24450 + - uid: 25334 components: - type: Transform - pos: -10.5,3.5 - parent: 89 - - uid: 13154 + pos: -0.5,8.5 + parent: 24450 + - uid: 25335 components: - type: Transform - pos: -10.5,2.5 - parent: 89 - - uid: 13155 + pos: -0.5,9.5 + parent: 24450 + - uid: 25336 components: - type: Transform - pos: -11.5,2.5 - parent: 89 - - uid: 13156 + pos: -1.5,5.5 + parent: 24450 + - uid: 25337 components: - type: Transform - pos: -12.5,2.5 - parent: 89 - - uid: 13157 + pos: 1.5,5.5 + parent: 24450 + - uid: 25338 components: - type: Transform - pos: -13.5,2.5 - parent: 89 - - uid: 13158 + pos: 2.5,5.5 + parent: 24450 + - uid: 25339 components: - type: Transform - pos: -14.5,2.5 - parent: 89 - - uid: 13159 + pos: 3.5,5.5 + parent: 24450 + - uid: 25340 components: - type: Transform - pos: -15.5,2.5 - parent: 89 - - uid: 13160 + pos: 4.5,5.5 + parent: 24450 + - uid: 25341 components: - type: Transform - pos: -16.5,2.5 - parent: 89 - - uid: 13161 + pos: 5.5,5.5 + parent: 24450 + - uid: 25342 components: - type: Transform - pos: -17.5,2.5 - parent: 89 - - uid: 13162 + pos: 6.5,5.5 + parent: 24450 + - uid: 25343 components: - type: Transform - pos: -18.5,2.5 - parent: 89 - - uid: 13163 + pos: 7.5,5.5 + parent: 24450 + - uid: 25344 components: - type: Transform - pos: -19.5,2.5 - parent: 89 - - uid: 13164 + pos: 7.5,6.5 + parent: 24450 + - uid: 25345 components: - type: Transform - pos: -20.5,2.5 - parent: 89 - - uid: 13165 + pos: 7.5,7.5 + parent: 24450 + - uid: 25346 components: - type: Transform - pos: -9.5,2.5 - parent: 89 - - uid: 13166 + pos: 7.5,8.5 + parent: 24450 + - uid: 25347 components: - type: Transform - pos: -8.5,2.5 - parent: 89 - - uid: 13167 + pos: 7.5,9.5 + parent: 24450 + - uid: 25348 components: - type: Transform - pos: -7.5,2.5 - parent: 89 - - uid: 13168 + pos: 7.5,10.5 + parent: 24450 + - uid: 25349 components: - type: Transform - pos: -6.5,2.5 - parent: 89 - - uid: 13169 + pos: 7.5,11.5 + parent: 24450 + - uid: 25350 components: - type: Transform - pos: -5.5,2.5 - parent: 89 - - uid: 13170 + pos: 7.5,12.5 + parent: 24450 + - uid: 25351 components: - type: Transform - pos: -10.5,6.5 - parent: 89 - - uid: 13171 + pos: 7.5,4.5 + parent: 24450 + - uid: 25352 components: - type: Transform - pos: -10.5,7.5 - parent: 89 - - uid: 13172 + pos: 7.5,3.5 + parent: 24450 + - uid: 25353 components: - type: Transform - pos: -10.5,8.5 - parent: 89 - - uid: 13173 + pos: 7.5,2.5 + parent: 24450 + - uid: 25354 components: - type: Transform - pos: -10.5,9.5 - parent: 89 - - uid: 13174 + pos: 7.5,1.5 + parent: 24450 + - uid: 25355 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 13175 + pos: 6.5,3.5 + parent: 24450 + - uid: 25356 components: - type: Transform - pos: -12.5,7.5 - parent: 89 - - uid: 13176 + pos: 5.5,3.5 + parent: 24450 + - uid: 25357 components: - type: Transform - pos: -13.5,7.5 - parent: 89 - - uid: 13177 + pos: 8.5,3.5 + parent: 24450 + - uid: 25358 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 13178 + pos: 9.5,3.5 + parent: 24450 + - uid: 25359 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 13179 + pos: 10.5,3.5 + parent: 24450 + - uid: 25360 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 13180 + pos: 8.5,5.5 + parent: 24450 + - uid: 25361 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 13181 + pos: 9.5,5.5 + parent: 24450 + - uid: 25362 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 13183 + pos: 10.5,5.5 + parent: 24450 + - uid: 25363 components: - type: Transform - pos: -31.5,12.5 - parent: 89 - - uid: 13184 + pos: 8.5,9.5 + parent: 24450 + - uid: 25364 components: - type: Transform - pos: -31.5,11.5 - parent: 89 - - uid: 13187 + pos: 9.5,9.5 + parent: 24450 + - uid: 25365 components: - type: Transform - pos: -31.5,8.5 - parent: 89 - - uid: 13214 + pos: 10.5,9.5 + parent: 24450 + - uid: 25366 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13215 + pos: 8.5,11.5 + parent: 24450 + - uid: 25367 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 - - uid: 13216 + pos: 9.5,11.5 + parent: 24450 + - uid: 25368 components: - type: Transform - pos: -28.5,-1.5 - parent: 89 - - uid: 13217 + pos: 10.5,11.5 + parent: 24450 + - uid: 25369 components: - type: Transform - pos: -29.5,-0.5 - parent: 89 - - uid: 13218 + pos: 3.5,6.5 + parent: 24450 + - uid: 25370 components: - type: Transform - pos: -30.5,-0.5 - parent: 89 - - uid: 13219 + pos: 3.5,7.5 + parent: 24450 + - uid: 25371 components: - type: Transform - pos: -31.5,-0.5 - parent: 89 - - uid: 13220 + pos: 3.5,8.5 + parent: 24450 + - uid: 25372 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 - - uid: 13221 + pos: 3.5,9.5 + parent: 24450 + - uid: 25373 components: - type: Transform - pos: -33.5,-0.5 - parent: 89 - - uid: 13222 + pos: 3.5,10.5 + parent: 24450 + - uid: 25374 components: - type: Transform - pos: -34.5,-0.5 - parent: 89 - - uid: 13223 + pos: -14.5,1.5 + parent: 24450 + - uid: 25375 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 13224 + pos: -15.5,1.5 + parent: 24450 + - uid: 25376 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 13225 + pos: -16.5,1.5 + parent: 24450 + - uid: 25377 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 - - uid: 13226 + pos: -17.5,1.5 + parent: 24450 + - uid: 25378 components: - type: Transform - pos: -26.5,-1.5 - parent: 89 - - uid: 13227 + pos: -18.5,1.5 + parent: 24450 + - uid: 25379 components: - type: Transform - pos: -25.5,-1.5 - parent: 89 - - uid: 13228 + pos: -19.5,1.5 + parent: 24450 + - uid: 25380 components: - type: Transform - pos: -24.5,-1.5 - parent: 89 - - uid: 13229 + pos: -20.5,1.5 + parent: 24450 + - uid: 25381 components: - type: Transform - pos: -23.5,-1.5 - parent: 89 - - uid: 13230 + pos: -21.5,1.5 + parent: 24450 + - uid: 25382 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 13231 + pos: -22.5,1.5 + parent: 24450 + - uid: 25383 components: - type: Transform - pos: -21.5,-1.5 - parent: 89 - - uid: 13232 + pos: -23.5,1.5 + parent: 24450 + - uid: 25384 components: - type: Transform - pos: -20.5,-1.5 - parent: 89 - - uid: 13233 + pos: -24.5,1.5 + parent: 24450 + - uid: 25385 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 13234 + pos: -25.5,1.5 + parent: 24450 + - uid: 25386 components: - type: Transform - pos: -18.5,-1.5 - parent: 89 - - uid: 13235 + pos: -26.5,1.5 + parent: 24450 + - uid: 25387 components: - type: Transform - pos: -18.5,-2.5 - parent: 89 - - uid: 13236 + pos: -26.5,2.5 + parent: 24450 + - uid: 25388 components: - type: Transform - pos: -18.5,-3.5 - parent: 89 - - uid: 13237 + pos: -26.5,3.5 + parent: 24450 + - uid: 25389 components: - type: Transform - pos: -18.5,-4.5 - parent: 89 - - uid: 13238 + pos: -26.5,4.5 + parent: 24450 + - uid: 25390 components: - type: Transform - pos: -18.5,-5.5 - parent: 89 - - uid: 13239 + pos: -26.5,5.5 + parent: 24450 + - uid: 25391 components: - type: Transform - pos: -18.5,-6.5 - parent: 89 - - uid: 13240 + pos: -27.5,5.5 + parent: 24450 + - uid: 25392 components: - type: Transform - pos: -18.5,-7.5 - parent: 89 - - uid: 13241 + pos: -27.5,5.5 + parent: 24450 + - uid: 25393 components: - type: Transform - pos: -19.5,-7.5 - parent: 89 - - uid: 13242 + pos: -27.5,6.5 + parent: 24450 + - uid: 25394 components: - type: Transform - pos: -20.5,-7.5 - parent: 89 - - uid: 13243 + pos: -27.5,7.5 + parent: 24450 + - uid: 25395 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 - - uid: 13244 + pos: -27.5,8.5 + parent: 24450 + - uid: 25396 components: - type: Transform - pos: -22.5,-7.5 - parent: 89 - - uid: 13245 + pos: -27.5,9.5 + parent: 24450 + - uid: 25397 components: - type: Transform - pos: -23.5,-7.5 - parent: 89 - - uid: 13246 + pos: -27.5,10.5 + parent: 24450 + - uid: 25398 components: - type: Transform - pos: -24.5,-7.5 - parent: 89 - - uid: 13247 + pos: -27.5,11.5 + parent: 24450 + - uid: 25399 components: - type: Transform - pos: -25.5,-7.5 - parent: 89 - - uid: 13248 + pos: -27.5,5.5 + parent: 24450 + - uid: 25400 components: - type: Transform - pos: -26.5,-7.5 - parent: 89 - - uid: 13249 + pos: -28.5,5.5 + parent: 24450 + - uid: 25401 components: - type: Transform - pos: -27.5,-7.5 - parent: 89 - - uid: 13250 + pos: -29.5,5.5 + parent: 24450 + - uid: 25402 components: - type: Transform - pos: -28.5,-7.5 - parent: 89 - - uid: 13251 + pos: -30.5,5.5 + parent: 24450 + - uid: 25403 components: - type: Transform - pos: -29.5,-7.5 - parent: 89 - - uid: 13252 + pos: -30.5,5.5 + parent: 24450 + - uid: 25404 components: - type: Transform - pos: -30.5,-7.5 - parent: 89 - - uid: 13253 + pos: -30.5,4.5 + parent: 24450 + - uid: 25405 components: - type: Transform - pos: -30.5,-8.5 - parent: 89 - - uid: 13254 + pos: -30.5,3.5 + parent: 24450 + - uid: 25406 components: - type: Transform - pos: -30.5,-9.5 - parent: 89 - - uid: 13255 + pos: -30.5,2.5 + parent: 24450 + - uid: 25407 components: - type: Transform - pos: -30.5,-6.5 - parent: 89 - - uid: 13256 + pos: -30.5,5.5 + parent: 24450 + - uid: 25408 components: - type: Transform - pos: -30.5,-5.5 - parent: 89 - - uid: 13257 + pos: -31.5,5.5 + parent: 24450 + - uid: 25409 components: - type: Transform - pos: -30.5,-4.5 - parent: 89 - - uid: 13258 + pos: -32.5,5.5 + parent: 24450 + - uid: 25410 components: - type: Transform - pos: -37.5,-0.5 - parent: 89 - - uid: 13259 + pos: -33.5,5.5 + parent: 24450 + - uid: 25411 components: - type: Transform - pos: -37.5,-1.5 - parent: 89 - - uid: 13260 + pos: -34.5,5.5 + parent: 24450 + - uid: 25412 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 13261 + pos: -30.5,6.5 + parent: 24450 + - uid: 25413 components: - type: Transform - pos: -37.5,-3.5 - parent: 89 - - uid: 13262 + pos: -30.5,7.5 + parent: 24450 + - uid: 25414 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 13263 + pos: -30.5,8.5 + parent: 24450 + - uid: 25415 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 13264 + pos: -30.5,9.5 + parent: 24450 + - uid: 25416 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 13265 + pos: -30.5,10.5 + parent: 24450 + - uid: 25417 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 13266 + pos: -30.5,11.5 + parent: 24450 + - uid: 25418 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 13268 + pos: -30.5,11.5 + parent: 24450 + - uid: 25419 components: - type: Transform - pos: -35.5,-8.5 - parent: 89 - - uid: 13269 + pos: -31.5,11.5 + parent: 24450 + - uid: 25420 components: - type: Transform - pos: -34.5,-8.5 - parent: 89 - - uid: 13270 + pos: -32.5,11.5 + parent: 24450 + - uid: 25421 components: - type: Transform - pos: -36.5,-4.5 - parent: 89 - - uid: 13271 + pos: -33.5,11.5 + parent: 24450 + - uid: 25422 components: - type: Transform - pos: -35.5,-4.5 - parent: 89 - - uid: 13272 + pos: -30.5,9.5 + parent: 24450 + - uid: 25423 components: - type: Transform - pos: -34.5,-4.5 - parent: 89 - - uid: 13273 + pos: -31.5,9.5 + parent: 24450 + - uid: 25424 components: - type: Transform - pos: -34.5,-5.5 - parent: 89 - - uid: 13274 + pos: -32.5,9.5 + parent: 24450 + - uid: 25425 components: - type: Transform - pos: -34.5,-7.5 - parent: 89 - - uid: 13275 + pos: -33.5,9.5 + parent: 24450 + - uid: 25426 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 13276 + pos: -34.5,9.5 + parent: 24450 + - uid: 25427 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 13277 + pos: -34.5,11.5 + parent: 24450 + - uid: 25428 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 13278 + pos: -34.5,4.5 + parent: 24450 + - uid: 25429 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 13279 + pos: -34.5,3.5 + parent: 24450 + - uid: 25430 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 13280 + pos: -14.5,7.5 + parent: 24450 + - uid: 25431 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 - - uid: 13281 + pos: -14.5,4.5 + parent: 24450 + - uid: 25432 components: - type: Transform - pos: -10.5,-7.5 - parent: 89 - - uid: 13282 + pos: -9.5,4.5 + parent: 24450 + - uid: 25433 components: - - type: Transform - pos: -15.5,-3.5 - parent: 89 - - uid: 13283 + - type: Transform + pos: -9.5,7.5 + parent: 24450 + - uid: 25434 components: - type: Transform - pos: -14.5,-3.5 - parent: 89 - - uid: 13284 + pos: -22.5,12.5 + parent: 24450 + - uid: 25435 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 13285 + pos: -21.5,12.5 + parent: 24450 + - uid: 25436 components: - type: Transform - pos: -12.5,-3.5 - parent: 89 - - uid: 13286 + pos: -2.5,12.5 + parent: 24450 + - uid: 25437 components: - type: Transform - pos: -11.5,-3.5 - parent: 89 - - uid: 13287 + pos: -1.5,12.5 + parent: 24450 + - uid: 25438 components: - type: Transform - pos: -10.5,-3.5 - parent: 89 - - uid: 13288 + pos: -6.5,2.5 + parent: 24450 + - uid: 25439 components: - type: Transform - pos: -9.5,-3.5 - parent: 89 - - uid: 13289 + pos: -6.5,3.5 + parent: 24450 + - uid: 25440 components: - type: Transform - pos: -8.5,-3.5 - parent: 89 - - uid: 13290 + pos: -6.5,4.5 + parent: 24450 + - uid: 25441 components: - type: Transform - pos: -7.5,-3.5 - parent: 89 - - uid: 13291 + pos: -6.5,5.5 + parent: 24450 + - uid: 25442 components: - type: Transform - pos: -6.5,-3.5 - parent: 89 - - uid: 13292 + pos: -6.5,6.5 + parent: 24450 + - uid: 25443 components: - type: Transform - pos: -6.5,-2.5 - parent: 89 - - uid: 13293 + pos: -6.5,7.5 + parent: 24450 + - uid: 25444 components: - type: Transform - pos: -6.5,-1.5 - parent: 89 - - uid: 13294 + pos: -6.5,8.5 + parent: 24450 + - uid: 25445 components: - type: Transform - pos: -6.5,-0.5 - parent: 89 - - uid: 13295 + pos: -6.5,9.5 + parent: 24450 + - uid: 25446 components: - type: Transform - pos: -9.5,-2.5 - parent: 89 - - uid: 13296 + pos: -4.5,5.5 + parent: 24450 + - uid: 25447 components: - type: Transform - pos: -9.5,-1.5 - parent: 89 - - uid: 13297 + pos: -5.5,5.5 + parent: 24450 + - uid: 25448 components: - type: Transform - pos: -12.5,-2.5 - parent: 89 - - uid: 13298 + pos: -23.5,8.5 + parent: 24450 + - uid: 25449 components: - type: Transform - pos: -12.5,-1.5 - parent: 89 - - uid: 13299 + pos: -23.5,7.5 + parent: 24450 + - uid: 25450 components: - type: Transform - pos: -9.5,-4.5 - parent: 89 - - uid: 13300 + pos: -23.5,6.5 + parent: 24450 + - uid: 25451 components: - type: Transform - pos: -9.5,-5.5 - parent: 89 - - uid: 13301 + pos: -23.5,5.5 + parent: 24450 + - uid: 25452 components: - type: Transform - pos: -9.5,-6.5 - parent: 89 - - uid: 13302 + pos: -23.5,4.5 + parent: 24450 + - uid: 25453 components: - type: Transform - pos: -10.5,-8.5 - parent: 89 - - uid: 13303 + pos: -23.5,3.5 + parent: 24450 + - uid: 25454 components: - type: Transform - pos: -9.5,-8.5 - parent: 89 - - uid: 13304 + pos: -23.5,2.5 + parent: 24450 + - uid: 25455 components: - type: Transform - pos: -9.5,-9.5 - parent: 89 - - uid: 13305 + pos: -20.5,8.5 + parent: 24450 + - uid: 25456 components: - type: Transform - pos: -6.5,-4.5 - parent: 89 - - uid: 13306 + pos: -20.5,7.5 + parent: 24450 + - uid: 25457 components: - type: Transform - pos: -6.5,-5.5 - parent: 89 - - uid: 13331 + pos: -20.5,6.5 + parent: 24450 + - uid: 25458 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13332 + pos: -20.5,5.5 + parent: 24450 + - uid: 25459 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 13333 + pos: -20.5,4.5 + parent: 24450 + - uid: 25460 components: - type: Transform - pos: -79.5,0.5 - parent: 89 - - uid: 13334 + pos: -20.5,3.5 + parent: 24450 + - uid: 25461 components: - type: Transform - pos: -78.5,0.5 - parent: 89 - - uid: 13335 + pos: -20.5,2.5 + parent: 24450 + - uid: 25462 components: - type: Transform - pos: -77.5,0.5 - parent: 89 - - uid: 13336 + pos: -25.5,5.5 + parent: 24450 + - uid: 25463 components: - type: Transform - pos: -76.5,0.5 - parent: 89 - - uid: 13337 + pos: -24.5,5.5 + parent: 24450 + - uid: 25464 components: - type: Transform - pos: -76.5,-0.5 - parent: 89 - - uid: 13338 + pos: -22.5,5.5 + parent: 24450 + - uid: 25465 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 - - uid: 13339 + pos: -21.5,5.5 + parent: 24450 + - uid: 25466 components: - type: Transform - pos: -76.5,-2.5 - parent: 89 - - uid: 13340 + pos: -19.5,5.5 + parent: 24450 + - uid: 25467 components: - type: Transform - pos: -76.5,-3.5 - parent: 89 - - uid: 13341 + pos: -18.5,5.5 + parent: 24450 + - uid: 25468 components: - type: Transform - pos: -77.5,-3.5 - parent: 89 - - uid: 13342 + pos: -17.5,5.5 + parent: 24450 + - uid: 25469 components: - type: Transform - pos: -78.5,-3.5 - parent: 89 - - uid: 13343 + pos: -16.5,5.5 + parent: 24450 + - uid: 25470 components: - type: Transform - pos: -79.5,-3.5 - parent: 89 - - uid: 13344 + pos: -16.5,6.5 + parent: 24450 + - uid: 25471 components: - type: Transform - pos: -75.5,-3.5 - parent: 89 - - uid: 13345 + pos: -16.5,7.5 + parent: 24450 + - uid: 25472 components: - type: Transform - pos: -74.5,-3.5 - parent: 89 - - uid: 13346 + pos: -16.5,8.5 + parent: 24450 + - uid: 25473 components: - type: Transform - pos: -74.5,-4.5 - parent: 89 - - uid: 13347 + pos: -16.5,9.5 + parent: 24450 + - uid: 25474 components: - type: Transform - pos: -74.5,-5.5 - parent: 89 - - uid: 13348 + pos: -16.5,4.5 + parent: 24450 + - uid: 25475 components: - type: Transform - pos: -74.5,-6.5 - parent: 89 - - uid: 13349 + pos: -16.5,3.5 + parent: 24450 + - uid: 25476 components: - type: Transform - pos: -74.5,-7.5 - parent: 89 - - uid: 13350 + pos: -16.5,2.5 + parent: 24450 + - uid: 25477 components: - type: Transform - pos: -82.5,9.5 - parent: 89 - - uid: 13351 + pos: -31.5,2.5 + parent: 24450 + - uid: 25478 components: - type: Transform - pos: -83.5,9.5 - parent: 89 - - uid: 13352 + pos: -32.5,2.5 + parent: 24450 + - uid: 25479 components: - type: Transform - pos: -84.5,9.5 - parent: 89 - - uid: 13353 + pos: -33.5,2.5 + parent: 24450 + - uid: 25480 components: - type: Transform - pos: -85.5,9.5 - parent: 89 - - uid: 13354 + pos: -18.5,-25.5 + parent: 24450 + - uid: 27328 components: - type: Transform - pos: -86.5,9.5 - parent: 89 - - uid: 13355 + pos: -5.5,-5.5 + parent: 27260 + - uid: 27329 components: - type: Transform - pos: -87.5,9.5 - parent: 89 - - uid: 13356 + pos: -4.5,-5.5 + parent: 27260 + - uid: 27330 components: - type: Transform - pos: -86.5,8.5 - parent: 89 - - uid: 13357 + pos: -3.5,-5.5 + parent: 27260 + - uid: 27331 components: - type: Transform - pos: -86.5,7.5 - parent: 89 - - uid: 13358 + pos: -2.5,-5.5 + parent: 27260 + - uid: 27332 components: - type: Transform - pos: -86.5,6.5 - parent: 89 - - uid: 13359 + pos: -1.5,-5.5 + parent: 27260 + - uid: 27333 components: - type: Transform - pos: -86.5,5.5 - parent: 89 - - uid: 13360 + pos: -0.5,-5.5 + parent: 27260 + - uid: 27334 components: - type: Transform - pos: -86.5,4.5 - parent: 89 - - uid: 13361 + pos: -0.5,-4.5 + parent: 27260 + - uid: 27335 components: - type: Transform - pos: -86.5,3.5 - parent: 89 - - uid: 13362 + pos: -0.5,-3.5 + parent: 27260 + - uid: 27336 components: - type: Transform - pos: -86.5,2.5 - parent: 89 - - uid: 13363 + pos: -0.5,-2.5 + parent: 27260 + - uid: 27337 components: - type: Transform - pos: -85.5,3.5 - parent: 89 - - uid: 13364 + pos: -0.5,-1.5 + parent: 27260 + - uid: 27338 components: - type: Transform - pos: -87.5,3.5 - parent: 89 - - uid: 13365 + pos: -0.5,-0.5 + parent: 27260 + - uid: 27339 components: - type: Transform - pos: -88.5,3.5 - parent: 89 - - uid: 13366 + pos: -1.5,-1.5 + parent: 27260 + - uid: 27340 components: - type: Transform - pos: -88.5,9.5 - parent: 89 - - uid: 13367 + pos: -2.5,-1.5 + parent: 27260 + - uid: 27341 components: - type: Transform - pos: -88.5,8.5 - parent: 89 - - uid: 13368 + pos: 1.5,-0.5 + parent: 27260 + - uid: 27342 components: - type: Transform - pos: -84.5,3.5 - parent: 89 - - uid: 13369 + pos: 1.5,-1.5 + parent: 27260 + - uid: 27343 components: - type: Transform - pos: -84.5,2.5 - parent: 89 - - uid: 13377 + pos: 1.5,-2.5 + parent: 27260 + - uid: 27344 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13378 + pos: 1.5,-3.5 + parent: 27260 + - uid: 27345 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 13379 + pos: 1.5,-4.5 + parent: 27260 + - uid: 27346 components: - type: Transform - pos: -67.5,13.5 - parent: 89 - - uid: 13380 + pos: 1.5,-5.5 + parent: 27260 + - uid: 27347 components: - type: Transform - pos: -67.5,12.5 - parent: 89 - - uid: 13381 + pos: 2.5,-1.5 + parent: 27260 + - uid: 27348 components: - type: Transform - pos: -67.5,11.5 - parent: 89 - - uid: 13382 + pos: 3.5,-1.5 + parent: 27260 + - uid: 27349 components: - type: Transform - pos: -67.5,10.5 - parent: 89 - - uid: 13383 + pos: 2.5,-5.5 + parent: 27260 + - uid: 27350 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 13384 + pos: 3.5,-5.5 + parent: 27260 + - uid: 27351 components: - type: Transform - pos: -67.5,8.5 - parent: 89 - - uid: 13385 + pos: 4.5,-5.5 + parent: 27260 + - uid: 27352 components: - type: Transform - pos: -66.5,9.5 - parent: 89 - - uid: 13386 + pos: 5.5,-5.5 + parent: 27260 + - uid: 27353 components: - type: Transform - pos: -65.5,9.5 - parent: 89 - - uid: 13387 + pos: 5.5,-4.5 + parent: 27260 + - uid: 27354 components: - type: Transform - pos: -64.5,9.5 - parent: 89 - - uid: 13388 + pos: 1.5,-6.5 + parent: 27260 + - uid: 27355 components: - type: Transform - pos: -63.5,9.5 - parent: 89 - - uid: 13389 + pos: 1.5,-7.5 + parent: 27260 + - uid: 27356 components: - type: Transform - pos: -66.5,13.5 - parent: 89 - - uid: 13390 + pos: 1.5,-8.5 + parent: 27260 + - uid: 27357 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 13391 + pos: 1.5,-9.5 + parent: 27260 + - uid: 27358 components: - type: Transform - pos: -64.5,13.5 - parent: 89 - - uid: 13392 + pos: 2.5,-7.5 + parent: 27260 + - uid: 27359 components: - type: Transform - pos: -63.5,13.5 - parent: 89 - - uid: 13393 + pos: 3.5,-7.5 + parent: 27260 + - uid: 27360 components: - type: Transform - pos: -62.5,13.5 - parent: 89 - - uid: 13394 + pos: 2.5,-9.5 + parent: 27260 + - uid: 27361 components: - type: Transform - pos: -61.5,13.5 - parent: 89 - - uid: 13395 + pos: 3.5,-9.5 + parent: 27260 + - uid: 27362 components: - type: Transform - pos: -60.5,13.5 - parent: 89 - - uid: 13396 + pos: 4.5,-9.5 + parent: 27260 + - uid: 27363 components: - type: Transform - pos: -59.5,13.5 - parent: 89 - - uid: 13397 + pos: 5.5,-9.5 + parent: 27260 + - uid: 27364 components: - type: Transform - pos: -58.5,13.5 - parent: 89 - - uid: 13398 + pos: 6.5,-9.5 + parent: 27260 + - uid: 27365 components: - type: Transform - pos: -57.5,13.5 - parent: 89 - - uid: 13399 + pos: 4.5,-10.5 + parent: 27260 + - uid: 27366 components: - type: Transform - pos: -56.5,13.5 - parent: 89 - - uid: 13400 + pos: 4.5,-11.5 + parent: 27260 + - uid: 27367 components: - type: Transform - pos: -55.5,13.5 - parent: 89 - - uid: 13401 + pos: 4.5,-12.5 + parent: 27260 + - uid: 27368 components: - type: Transform - pos: -54.5,13.5 - parent: 89 - - uid: 13402 + pos: 5.5,-12.5 + parent: 27260 + - uid: 27369 components: - type: Transform - pos: -59.5,12.5 - parent: 89 - - uid: 13403 + pos: -0.5,-6.5 + parent: 27260 + - uid: 27370 components: - type: Transform - pos: -59.5,11.5 - parent: 89 - - uid: 13404 + pos: -0.5,-7.5 + parent: 27260 + - uid: 27371 components: - type: Transform - pos: -59.5,10.5 - parent: 89 - - uid: 13405 + pos: -0.5,-8.5 + parent: 27260 + - uid: 27372 components: - type: Transform - pos: -59.5,9.5 - parent: 89 - - uid: 13406 + pos: -0.5,-9.5 + parent: 27260 + - uid: 27373 components: - type: Transform - pos: -59.5,8.5 - parent: 89 - - uid: 13407 + pos: -1.5,-7.5 + parent: 27260 + - uid: 27374 components: - type: Transform - pos: -68.5,9.5 - parent: 89 - - uid: 13408 + pos: -2.5,-7.5 + parent: 27260 + - uid: 27375 components: - type: Transform - pos: -69.5,9.5 - parent: 89 - - uid: 13409 + pos: -1.5,-9.5 + parent: 27260 + - uid: 27376 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 13410 + pos: -2.5,-9.5 + parent: 27260 + - uid: 27377 components: - type: Transform - pos: -71.5,9.5 - parent: 89 - - uid: 13411 + pos: -3.5,-9.5 + parent: 27260 + - uid: 27378 components: - type: Transform - pos: -72.5,9.5 - parent: 89 - - uid: 13412 + pos: -4.5,-9.5 + parent: 27260 + - uid: 27379 components: - type: Transform - pos: -73.5,9.5 - parent: 89 - - uid: 13413 + pos: -5.5,-9.5 + parent: 27260 + - uid: 27380 components: - type: Transform - pos: -74.5,9.5 - parent: 89 - - uid: 13414 + pos: -3.5,-10.5 + parent: 27260 + - uid: 27381 components: - type: Transform - pos: -72.5,8.5 - parent: 89 - - uid: 13415 + pos: -3.5,-11.5 + parent: 27260 + - uid: 27382 components: - type: Transform - pos: -80.5,9.5 - parent: 89 - - uid: 13416 + pos: -3.5,-12.5 + parent: 27260 + - uid: 27383 components: - type: Transform - pos: -80.5,8.5 - parent: 89 - - uid: 13417 + pos: -4.5,-12.5 + parent: 27260 + - uid: 27384 components: - type: Transform - pos: -79.5,8.5 - parent: 89 - - uid: 13418 + pos: 1.5,-10.5 + parent: 27260 + - uid: 27385 components: - type: Transform - pos: -78.5,8.5 - parent: 89 - - uid: 13419 + pos: 1.5,-11.5 + parent: 27260 + - uid: 27386 components: - type: Transform - pos: -78.5,9.5 - parent: 89 - - uid: 13420 + pos: -0.5,-10.5 + parent: 27260 + - uid: 27387 components: - type: Transform - pos: -78.5,10.5 - parent: 89 - - uid: 13421 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27388 components: - type: Transform - pos: -72.5,10.5 - parent: 89 - - uid: 13422 + pos: -5.5,-4.5 + parent: 27260 +- proto: CableApcStack + entities: + - uid: 4237 components: - type: Transform - pos: -72.5,11.5 - parent: 89 - - uid: 13423 + pos: -13.491456,-15.321603 + parent: 2 + - uid: 4238 components: - type: Transform - pos: -72.5,12.5 - parent: 89 - - uid: 13424 + pos: -13.335206,-15.446603 + parent: 2 + - uid: 4239 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 13425 + pos: -131.43742,-2.5232015 + parent: 2 + - uid: 4240 components: - type: Transform - pos: -72.5,14.5 - parent: 89 - - uid: 13426 + pos: -115.45264,15.019241 + parent: 2 + - uid: 4241 components: - type: Transform - pos: -72.5,15.5 - parent: 89 - - uid: 13427 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4242 components: - type: Transform - pos: -72.5,16.5 - parent: 89 - - uid: 13428 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4243 components: - type: Transform - pos: -72.5,17.5 - parent: 89 - - uid: 13429 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4244 components: - type: Transform - pos: -71.5,17.5 - parent: 89 - - uid: 13430 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4245 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 13431 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4246 components: - type: Transform - pos: -69.5,17.5 - parent: 89 - - uid: 13432 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4247 components: - type: Transform - pos: -68.5,17.5 - parent: 89 - - uid: 13433 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4248 components: - type: Transform - pos: -67.5,17.5 - parent: 89 - - uid: 13434 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4249 components: - type: Transform - pos: -66.5,17.5 - parent: 89 - - uid: 13435 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4250 components: - type: Transform - pos: -65.5,17.5 - parent: 89 - - uid: 13436 + pos: -115.48235,5.7165937 + parent: 2 + - uid: 4251 components: - type: Transform - pos: -64.5,17.5 - parent: 89 - - uid: 13437 + pos: -103.706276,-2.3275843 + parent: 2 + - uid: 4252 components: - type: Transform - pos: -63.5,17.5 - parent: 89 - - uid: 13438 + pos: -103.50315,-2.2338343 + parent: 2 + - uid: 4253 components: - type: Transform - pos: -62.5,17.5 - parent: 89 - - uid: 13439 + pos: 32.477047,6.447131 + parent: 2 + - uid: 27389 components: - type: Transform - pos: -61.5,17.5 - parent: 89 - - uid: 13440 + pos: -1.4512177,-7.4963074 + parent: 27260 +- proto: CableApcStack1 + entities: + - uid: 4254 components: - type: Transform - pos: -60.5,17.5 - parent: 89 - - uid: 13441 + rot: 3.141592653589793 rad + pos: -1.5947638,30.561302 + parent: 2 + - uid: 4255 components: - type: Transform - pos: -59.5,17.5 - parent: 89 - - uid: 13442 + rot: 3.141592653589793 rad + pos: -6.532264,30.576927 + parent: 2 + - uid: 4256 components: - type: Transform - pos: -58.5,17.5 - parent: 89 - - uid: 13443 + rot: 3.141592653589793 rad + pos: -3.6103897,32.545677 + parent: 2 + - uid: 4257 components: - type: Transform - pos: -57.5,17.5 - parent: 89 - - uid: 13444 + rot: 3.141592653589793 rad + pos: -0.7041397,30.561302 + parent: 2 + - uid: 4258 components: - type: Transform - pos: -56.5,17.5 - parent: 89 - - uid: 13445 + rot: 3.141592653589793 rad + pos: -0.51449203,41.5748 + parent: 2 + - uid: 4259 components: - type: Transform - pos: -55.5,17.5 - parent: 89 - - uid: 13446 + rot: 3.141592653589793 rad + pos: -3.5392475,40.54355 + parent: 2 + - uid: 4260 components: - type: Transform - pos: -54.5,17.5 - parent: 89 - - uid: 13484 + rot: 3.141592653589793 rad + pos: -0.5635147,35.623802 + parent: 2 + - uid: 4261 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 13485 + rot: 3.141592653589793 rad + pos: -2.576991,41.48105 + parent: 2 + - uid: 4262 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13486 + rot: 3.141592653589793 rad + pos: -4.764492,45.777924 + parent: 2 + - uid: 4263 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13487 + rot: 3.141592653589793 rad + pos: -2.326992,45.7623 + parent: 2 + - uid: 4264 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13488 + rot: 3.141592653589793 rad + pos: -3.608242,43.5123 + parent: 2 + - uid: 4265 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13489 + rot: 3.141592653589793 rad + pos: -42.524166,21.414473 + parent: 2 + - uid: 4266 components: - type: Transform - pos: -58.5,30.5 - parent: 89 - - uid: 13490 + rot: 3.141592653589793 rad + pos: -42.586666,22.273848 + parent: 2 + - uid: 4267 components: - type: Transform - pos: -58.5,29.5 - parent: 89 - - uid: 13491 + rot: 3.141592653589793 rad + pos: -42.47729,23.523848 + parent: 2 +- proto: CableApcStackLingering10 + entities: + - uid: 4268 components: - type: Transform - pos: -57.5,29.5 - parent: 89 - - uid: 13492 + pos: 0.46723938,-44.52636 + parent: 2 +- proto: CableHV + entities: + - uid: 4269 components: - type: Transform - pos: -56.5,29.5 - parent: 89 - - uid: 13493 + pos: -115.5,-12.5 + parent: 2 + - uid: 4270 components: - type: Transform - pos: -59.5,31.5 - parent: 89 - - uid: 13494 + pos: -82.5,-10.5 + parent: 2 + - uid: 4271 components: - type: Transform - pos: -60.5,31.5 - parent: 89 - - uid: 13495 + pos: -122.5,4.5 + parent: 2 + - uid: 4272 components: - type: Transform - pos: -61.5,31.5 - parent: 89 - - uid: 13496 + pos: -121.5,4.5 + parent: 2 + - uid: 4273 components: - type: Transform - pos: -62.5,31.5 - parent: 89 - - uid: 13497 + pos: -121.5,5.5 + parent: 2 + - uid: 4274 components: - type: Transform - pos: -63.5,31.5 - parent: 89 - - uid: 13498 + pos: -122.5,9.5 + parent: 2 + - uid: 4275 components: - type: Transform - pos: -64.5,31.5 - parent: 89 - - uid: 13499 + pos: -123.5,9.5 + parent: 2 + - uid: 4276 components: - type: Transform - pos: -65.5,31.5 - parent: 89 - - uid: 13500 + pos: -124.5,-2.5 + parent: 2 + - uid: 4277 components: - type: Transform - pos: -65.5,30.5 - parent: 89 - - uid: 13501 + pos: -121.5,8.5 + parent: 2 + - uid: 4278 components: - type: Transform - pos: -65.5,29.5 - parent: 89 - - uid: 13502 + pos: -121.5,9.5 + parent: 2 + - uid: 4279 components: - type: Transform - pos: -65.5,28.5 - parent: 89 - - uid: 13503 + pos: -11.5,-26.5 + parent: 2 + - uid: 4280 components: - type: Transform - pos: -65.5,27.5 - parent: 89 - - uid: 13504 + pos: -40.5,-6.5 + parent: 2 + - uid: 4281 components: - type: Transform - pos: -65.5,26.5 - parent: 89 - - uid: 13505 + pos: -12.5,-27.5 + parent: 2 + - uid: 4282 components: - type: Transform - pos: -65.5,25.5 - parent: 89 - - uid: 13506 + pos: 15.5,-14.5 + parent: 2 + - uid: 4283 components: - type: Transform - pos: -65.5,32.5 - parent: 89 - - uid: 13507 + pos: 14.5,-15.5 + parent: 2 + - uid: 4284 components: - type: Transform - pos: -65.5,33.5 - parent: 89 - - uid: 13508 + pos: -1.5,23.5 + parent: 2 + - uid: 4285 components: - type: Transform - pos: -65.5,34.5 - parent: 89 - - uid: 13509 + pos: -8.5,23.5 + parent: 2 + - uid: 4286 components: - type: Transform - pos: -65.5,35.5 - parent: 89 - - uid: 13510 + pos: 59.5,-38.5 + parent: 2 + - uid: 4287 components: - type: Transform - pos: -65.5,36.5 - parent: 89 - - uid: 13511 + pos: 62.5,-31.5 + parent: 2 + - uid: 4288 components: - type: Transform - pos: -65.5,37.5 - parent: 89 - - uid: 13512 + pos: 62.5,-32.5 + parent: 2 + - uid: 4289 components: - type: Transform - pos: -65.5,38.5 - parent: 89 - - uid: 13513 + pos: 53.5,-37.5 + parent: 2 + - uid: 4290 components: - type: Transform - pos: -65.5,39.5 - parent: 89 - - uid: 13514 + pos: 55.5,-37.5 + parent: 2 + - uid: 4291 components: - type: Transform - pos: -65.5,40.5 - parent: 89 - - uid: 13515 + pos: 47.5,3.5 + parent: 2 + - uid: 4292 components: - type: Transform - pos: -65.5,41.5 - parent: 89 - - uid: 13516 + pos: 48.5,3.5 + parent: 2 + - uid: 4293 components: - type: Transform - pos: -65.5,42.5 - parent: 89 - - uid: 13517 + pos: -11.5,3.5 + parent: 2 + - uid: 4294 components: - type: Transform - pos: -65.5,43.5 - parent: 89 - - uid: 13518 + pos: -10.5,3.5 + parent: 2 + - uid: 4295 components: - type: Transform - pos: -65.5,44.5 - parent: 89 - - uid: 13519 + pos: -7.5,3.5 + parent: 2 + - uid: 4296 components: - type: Transform - pos: -65.5,45.5 - parent: 89 - - uid: 13520 + pos: -6.5,3.5 + parent: 2 + - uid: 4297 components: - type: Transform - pos: -65.5,46.5 - parent: 89 - - uid: 13521 + pos: 47.5,4.5 + parent: 2 + - uid: 4298 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 13522 + pos: 54.5,-37.5 + parent: 2 + - uid: 4299 components: - type: Transform - pos: -59.5,35.5 - parent: 89 - - uid: 13523 + pos: -3.5,3.5 + parent: 2 + - uid: 4300 components: - type: Transform - pos: -59.5,36.5 - parent: 89 - - uid: 13524 + pos: -14.5,21.5 + parent: 2 + - uid: 4301 components: - type: Transform - pos: -59.5,37.5 - parent: 89 - - uid: 13525 + pos: -2.5,3.5 + parent: 2 + - uid: 4302 components: - type: Transform - pos: -59.5,38.5 - parent: 89 - - uid: 13526 + pos: -128.5,-8.5 + parent: 2 + - uid: 4303 components: - type: Transform - pos: -59.5,39.5 - parent: 89 - - uid: 13527 + pos: -1.5,3.5 + parent: 2 + - uid: 4304 components: - type: Transform - pos: -59.5,40.5 - parent: 89 - - uid: 13528 + pos: -0.5,3.5 + parent: 2 + - uid: 4305 components: - type: Transform - pos: -59.5,41.5 - parent: 89 - - uid: 13529 + pos: 0.5,3.5 + parent: 2 + - uid: 4306 components: - type: Transform - pos: -59.5,43.5 - parent: 89 - - uid: 13530 + pos: -126.5,4.5 + parent: 2 + - uid: 4307 components: - type: Transform - pos: -59.5,42.5 - parent: 89 - - uid: 13531 + pos: -126.5,-7.5 + parent: 2 + - uid: 4308 components: - type: Transform - pos: -59.5,44.5 - parent: 89 - - uid: 13532 + pos: 3.5,23.5 + parent: 2 + - uid: 4309 components: - type: Transform - pos: -60.5,44.5 - parent: 89 - - uid: 13533 + pos: -127.5,-3.5 + parent: 2 + - uid: 4310 components: - type: Transform - pos: -61.5,44.5 - parent: 89 - - uid: 13534 + pos: -129.5,-3.5 + parent: 2 + - uid: 4311 components: - type: Transform - pos: -62.5,44.5 - parent: 89 - - uid: 13535 + pos: -34.5,-16.5 + parent: 2 + - uid: 4312 components: - type: Transform - pos: -63.5,44.5 - parent: 89 - - uid: 13536 + pos: -33.5,-16.5 + parent: 2 + - uid: 4313 components: - type: Transform - pos: -64.5,44.5 - parent: 89 - - uid: 13537 + pos: -35.5,-16.5 + parent: 2 + - uid: 4314 components: - type: Transform - pos: -66.5,47.5 - parent: 89 - - uid: 13538 + pos: -14.5,22.5 + parent: 2 + - uid: 4315 components: - type: Transform - pos: -59.5,34.5 - parent: 89 - - uid: 13539 + pos: -128.5,-9.5 + parent: 2 + - uid: 4316 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 13540 + pos: -128.5,-10.5 + parent: 2 + - uid: 4317 components: - type: Transform - pos: -57.5,35.5 - parent: 89 - - uid: 13541 + pos: 10.5,26.5 + parent: 2 + - uid: 4318 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 13542 + pos: 63.5,-22.5 + parent: 2 + - uid: 4319 components: - type: Transform - pos: -56.5,36.5 - parent: 89 - - uid: 13543 + pos: 63.5,-23.5 + parent: 2 + - uid: 4320 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 13544 + pos: 8.5,26.5 + parent: 2 + - uid: 4321 components: - type: Transform - pos: -56.5,38.5 - parent: 89 - - uid: 13545 + pos: -5.5,26.5 + parent: 2 + - uid: 4322 components: - type: Transform - pos: -56.5,39.5 - parent: 89 - - uid: 13546 + pos: -5.5,27.5 + parent: 2 + - uid: 4323 components: - type: Transform - pos: -56.5,40.5 - parent: 89 - - uid: 13547 + pos: -5.5,26.5 + parent: 2 + - uid: 4324 components: - type: Transform - pos: -56.5,41.5 - parent: 89 - - uid: 13548 + pos: -4.5,26.5 + parent: 2 + - uid: 4325 components: - type: Transform - pos: -56.5,42.5 - parent: 89 - - uid: 13549 + pos: -3.5,26.5 + parent: 2 + - uid: 4326 components: - type: Transform - pos: -56.5,43.5 - parent: 89 - - uid: 13550 + pos: -3.5,26.5 + parent: 2 + - uid: 4327 components: - type: Transform - pos: -56.5,44.5 - parent: 89 - - uid: 13551 + pos: -3.5,25.5 + parent: 2 + - uid: 4328 components: - type: Transform - pos: -56.5,45.5 - parent: 89 - - uid: 13552 + pos: -3.5,24.5 + parent: 2 + - uid: 4329 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 13553 + pos: 21.5,25.5 + parent: 2 + - uid: 4330 components: - type: Transform - pos: -56.5,47.5 - parent: 89 - - uid: 13554 + pos: -129.5,12.5 + parent: 2 + - uid: 4331 components: - type: Transform - pos: -56.5,48.5 - parent: 89 - - uid: 13555 + pos: -127.5,12.5 + parent: 2 + - uid: 4332 components: - type: Transform - pos: -58.5,44.5 - parent: 89 - - uid: 13556 + pos: -128.5,12.5 + parent: 2 + - uid: 4333 components: - type: Transform - pos: -58.5,45.5 - parent: 89 - - uid: 13557 + pos: -118.5,6.5 + parent: 2 + - uid: 4334 components: - type: Transform - pos: -58.5,46.5 - parent: 89 - - uid: 13558 + pos: -131.5,13.5 + parent: 2 + - uid: 4335 components: - type: Transform - pos: -58.5,47.5 - parent: 89 - - uid: 13559 + pos: -131.5,14.5 + parent: 2 + - uid: 4336 components: - type: Transform - pos: -58.5,48.5 - parent: 89 - - uid: 13560 + pos: -131.5,15.5 + parent: 2 + - uid: 4337 components: - type: Transform - pos: -55.5,44.5 - parent: 89 - - uid: 13561 + pos: -131.5,16.5 + parent: 2 + - uid: 4338 components: - type: Transform - pos: -54.5,44.5 - parent: 89 - - uid: 13562 + pos: -126.5,12.5 + parent: 2 + - uid: 4339 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 13563 + pos: -129.5,13.5 + parent: 2 + - uid: 4340 components: - type: Transform - pos: -52.5,44.5 - parent: 89 - - uid: 13564 + pos: -125.5,12.5 + parent: 2 + - uid: 4341 components: - type: Transform - pos: -51.5,44.5 - parent: 89 - - uid: 13565 + pos: -124.5,12.5 + parent: 2 + - uid: 4342 components: - type: Transform - pos: -55.5,40.5 - parent: 89 - - uid: 13566 + pos: -123.5,12.5 + parent: 2 + - uid: 4343 components: - type: Transform - pos: -54.5,40.5 - parent: 89 - - uid: 13567 + pos: -126.5,15.5 + parent: 2 + - uid: 4344 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 13568 + pos: 18.5,26.5 + parent: 2 + - uid: 4345 components: - type: Transform - pos: -52.5,40.5 - parent: 89 - - uid: 13569 + pos: -124.5,16.5 + parent: 2 + - uid: 4346 components: - type: Transform - pos: -51.5,40.5 - parent: 89 - - uid: 13570 + pos: -118.5,5.5 + parent: 2 + - uid: 4347 components: - type: Transform - pos: -55.5,35.5 - parent: 89 - - uid: 13571 + pos: 62.5,-29.5 + parent: 2 + - uid: 4348 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 13572 + pos: 34.5,27.5 + parent: 2 + - uid: 4349 components: - type: Transform - pos: -53.5,35.5 - parent: 89 - - uid: 13573 + pos: -128.5,-7.5 + parent: 2 + - uid: 4350 components: - type: Transform - pos: -52.5,35.5 - parent: 89 - - uid: 13574 + pos: -127.5,-7.5 + parent: 2 + - uid: 4351 components: - type: Transform - pos: -52.5,36.5 - parent: 89 - - uid: 13575 + pos: 62.5,-30.5 + parent: 2 + - uid: 4352 components: - type: Transform - pos: -64.5,25.5 - parent: 89 - - uid: 13576 + pos: -82.5,-7.5 + parent: 2 + - uid: 4353 components: - type: Transform - pos: -63.5,25.5 - parent: 89 - - uid: 13577 + pos: -82.5,-6.5 + parent: 2 + - uid: 4354 components: - type: Transform - pos: -62.5,25.5 - parent: 89 - - uid: 13578 + pos: 62.5,-37.5 + parent: 2 + - uid: 4355 components: - type: Transform - pos: -61.5,25.5 - parent: 89 - - uid: 13579 + pos: 11.5,26.5 + parent: 2 + - uid: 4356 components: - type: Transform - pos: -60.5,25.5 - parent: 89 - - uid: 13580 + pos: 24.5,24.5 + parent: 2 + - uid: 4357 components: - type: Transform - pos: -59.5,25.5 - parent: 89 - - uid: 13581 + pos: 23.5,25.5 + parent: 2 + - uid: 4358 components: - type: Transform - pos: -58.5,25.5 - parent: 89 - - uid: 13582 + pos: -12.5,23.5 + parent: 2 + - uid: 4359 components: - type: Transform - pos: -57.5,25.5 - parent: 89 - - uid: 13583 + pos: -41.5,20.5 + parent: 2 + - uid: 4360 components: - type: Transform - pos: -56.5,25.5 - parent: 89 - - uid: 13603 + pos: -14.5,20.5 + parent: 2 + - uid: 4361 components: - type: Transform - pos: -55.5,48.5 - parent: 89 - - uid: 13717 + pos: -15.5,20.5 + parent: 2 + - uid: 4362 components: - type: Transform - pos: -120.5,-7.5 - parent: 89 - - uid: 13718 + pos: -16.5,20.5 + parent: 2 + - uid: 4363 components: - type: Transform - pos: -119.5,-7.5 - parent: 89 - - uid: 13719 + pos: -17.5,20.5 + parent: 2 + - uid: 4364 components: - type: Transform - pos: -118.5,-7.5 - parent: 89 - - uid: 13720 + pos: -18.5,20.5 + parent: 2 + - uid: 4365 components: - type: Transform - pos: -117.5,-7.5 - parent: 89 - - uid: 13721 + pos: -19.5,20.5 + parent: 2 + - uid: 4366 components: - type: Transform - pos: -116.5,-7.5 - parent: 89 - - uid: 13748 + pos: -20.5,20.5 + parent: 2 + - uid: 4367 components: - type: Transform - pos: -75.5,0.5 - parent: 89 - - uid: 13749 + pos: -21.5,20.5 + parent: 2 + - uid: 4368 components: - type: Transform - pos: -74.5,0.5 - parent: 89 - - uid: 13762 + pos: -22.5,20.5 + parent: 2 + - uid: 4369 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13763 + pos: -23.5,20.5 + parent: 2 + - uid: 4370 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 13764 + pos: -24.5,20.5 + parent: 2 + - uid: 4371 components: - type: Transform - pos: -64.5,4.5 - parent: 89 - - uid: 13765 + pos: -25.5,20.5 + parent: 2 + - uid: 4372 components: - type: Transform - pos: -65.5,4.5 - parent: 89 - - uid: 13766 + pos: -26.5,20.5 + parent: 2 + - uid: 4373 components: - type: Transform - pos: -66.5,4.5 - parent: 89 - - uid: 13767 + pos: -27.5,20.5 + parent: 2 + - uid: 4374 components: - type: Transform - pos: -67.5,4.5 - parent: 89 - - uid: 13768 + pos: -28.5,20.5 + parent: 2 + - uid: 4375 components: - type: Transform - pos: -68.5,4.5 - parent: 89 - - uid: 13769 + pos: -29.5,20.5 + parent: 2 + - uid: 4376 components: - type: Transform - pos: -69.5,4.5 - parent: 89 - - uid: 13770 + pos: -30.5,20.5 + parent: 2 + - uid: 4377 components: - type: Transform - pos: -70.5,4.5 - parent: 89 - - uid: 13771 + pos: -31.5,20.5 + parent: 2 + - uid: 4378 components: - type: Transform - pos: -71.5,4.5 - parent: 89 - - uid: 13772 + pos: -32.5,20.5 + parent: 2 + - uid: 4379 components: - type: Transform - pos: -72.5,4.5 - parent: 89 - - uid: 13773 + pos: -33.5,20.5 + parent: 2 + - uid: 4380 components: - type: Transform - pos: -73.5,4.5 - parent: 89 - - uid: 13774 + pos: -34.5,20.5 + parent: 2 + - uid: 4381 components: - type: Transform - pos: -74.5,4.5 - parent: 89 - - uid: 13775 + pos: -35.5,20.5 + parent: 2 + - uid: 4382 components: - type: Transform - pos: -75.5,4.5 - parent: 89 - - uid: 13776 + pos: -36.5,20.5 + parent: 2 + - uid: 4383 components: - type: Transform - pos: -76.5,4.5 - parent: 89 - - uid: 13777 + pos: -37.5,20.5 + parent: 2 + - uid: 4384 components: - type: Transform - pos: -77.5,4.5 - parent: 89 - - uid: 13778 + pos: -38.5,20.5 + parent: 2 + - uid: 4385 components: - type: Transform - pos: -78.5,4.5 - parent: 89 - - uid: 13788 + pos: -39.5,20.5 + parent: 2 + - uid: 4386 components: - type: Transform - pos: -62.5,4.5 - parent: 89 - - uid: 13789 + pos: -40.5,20.5 + parent: 2 + - uid: 4387 components: - type: Transform - pos: -63.5,4.5 - parent: 89 - - uid: 13790 + pos: -40.5,21.5 + parent: 2 + - uid: 4388 components: - type: Transform - pos: -61.5,4.5 - parent: 89 - - uid: 13791 + pos: -40.5,22.5 + parent: 2 + - uid: 4389 components: - type: Transform - pos: -60.5,4.5 - parent: 89 - - uid: 13792 + pos: -40.5,23.5 + parent: 2 + - uid: 4390 components: - type: Transform - pos: -59.5,4.5 - parent: 89 - - uid: 13793 + pos: -40.5,24.5 + parent: 2 + - uid: 4391 components: - type: Transform - pos: -58.5,4.5 - parent: 89 - - uid: 13794 + pos: -42.5,20.5 + parent: 2 + - uid: 4392 components: - type: Transform - pos: -57.5,4.5 - parent: 89 - - uid: 13795 + pos: -43.5,20.5 + parent: 2 + - uid: 4393 components: - type: Transform - pos: -56.5,4.5 - parent: 89 - - uid: 13796 + pos: -44.5,20.5 + parent: 2 + - uid: 4394 components: - type: Transform - pos: -55.5,4.5 - parent: 89 - - uid: 13797 + pos: -45.5,20.5 + parent: 2 + - uid: 4395 components: - type: Transform - pos: -54.5,4.5 - parent: 89 - - uid: 13798 + pos: -46.5,20.5 + parent: 2 + - uid: 4396 components: - type: Transform - pos: -53.5,4.5 - parent: 89 - - uid: 13799 + pos: -47.5,20.5 + parent: 2 + - uid: 4397 components: - type: Transform - pos: -55.5,3.5 - parent: 89 - - uid: 13800 + pos: -48.5,20.5 + parent: 2 + - uid: 4398 components: - type: Transform - pos: -55.5,2.5 - parent: 89 - - uid: 13801 + pos: -49.5,20.5 + parent: 2 + - uid: 4399 components: - type: Transform - pos: -55.5,1.5 - parent: 89 - - uid: 13802 + pos: -50.5,20.5 + parent: 2 + - uid: 4400 components: - type: Transform - pos: -55.5,0.5 - parent: 89 - - uid: 13803 + pos: -51.5,20.5 + parent: 2 + - uid: 4401 components: - type: Transform - pos: -55.5,-0.5 - parent: 89 - - uid: 13804 + pos: -52.5,20.5 + parent: 2 + - uid: 4402 components: - type: Transform - pos: -55.5,-1.5 - parent: 89 - - uid: 13805 + pos: -53.5,20.5 + parent: 2 + - uid: 4403 components: - type: Transform - pos: -55.5,-2.5 - parent: 89 - - uid: 13806 + pos: -84.5,13.5 + parent: 2 + - uid: 4404 components: - type: Transform - pos: -56.5,-0.5 - parent: 89 - - uid: 13807 + pos: -99.5,22.5 + parent: 2 + - uid: 4405 components: - type: Transform - pos: -57.5,-0.5 - parent: 89 - - uid: 13808 + pos: -119.5,15.5 + parent: 2 + - uid: 4406 components: - type: Transform - pos: -58.5,-0.5 - parent: 89 - - uid: 13809 + pos: -118.5,15.5 + parent: 2 + - uid: 4407 components: - type: Transform - pos: -59.5,-0.5 - parent: 89 - - uid: 13810 + pos: -117.5,15.5 + parent: 2 + - uid: 4408 components: - type: Transform - pos: -60.5,-0.5 - parent: 89 - - uid: 13811 + pos: -116.5,15.5 + parent: 2 + - uid: 4409 components: - type: Transform - pos: -61.5,-0.5 - parent: 89 - - uid: 13812 + pos: -116.5,14.5 + parent: 2 + - uid: 4410 components: - type: Transform - pos: -62.5,-0.5 - parent: 89 - - uid: 13813 + pos: -119.5,14.5 + parent: 2 + - uid: 4411 components: - type: Transform - pos: -63.5,-0.5 - parent: 89 - - uid: 13814 + pos: -118.5,17.5 + parent: 2 + - uid: 4412 components: - type: Transform - pos: -64.5,-0.5 - parent: 89 - - uid: 13815 + pos: -119.5,13.5 + parent: 2 + - uid: 4413 components: - type: Transform - pos: -65.5,-0.5 - parent: 89 - - uid: 13816 + pos: -119.5,10.5 + parent: 2 + - uid: 4414 components: - type: Transform - pos: -66.5,-0.5 - parent: 89 - - uid: 13817 + pos: -119.5,11.5 + parent: 2 + - uid: 4415 components: - type: Transform - pos: -67.5,-0.5 - parent: 89 - - uid: 13818 + pos: -119.5,12.5 + parent: 2 + - uid: 4416 components: - type: Transform - pos: -68.5,-0.5 - parent: 89 - - uid: 13819 + pos: -113.5,17.5 + parent: 2 + - uid: 4417 components: - type: Transform - pos: -69.5,-0.5 - parent: 89 - - uid: 13820 + pos: -116.5,9.5 + parent: 2 + - uid: 4418 components: - type: Transform - pos: -70.5,-0.5 - parent: 89 - - uid: 13821 + pos: -111.5,17.5 + parent: 2 + - uid: 4419 components: - type: Transform - pos: -70.5,-1.5 - parent: 89 - - uid: 13822 + pos: -110.5,17.5 + parent: 2 + - uid: 4420 components: - type: Transform - pos: -70.5,0.5 - parent: 89 - - uid: 13823 + pos: -109.5,17.5 + parent: 2 + - uid: 4421 components: - type: Transform - pos: -70.5,1.5 - parent: 89 - - uid: 13824 + pos: -108.5,17.5 + parent: 2 + - uid: 4422 components: - type: Transform - pos: -70.5,2.5 - parent: 89 - - uid: 13825 + pos: -107.5,17.5 + parent: 2 + - uid: 4423 components: - type: Transform - pos: -59.5,-1.5 - parent: 89 - - uid: 13826 + pos: -106.5,17.5 + parent: 2 + - uid: 4424 components: - type: Transform - pos: -66.5,-1.5 - parent: 89 - - uid: 13827 + pos: -105.5,17.5 + parent: 2 + - uid: 4425 components: - type: Transform - pos: -66.5,0.5 - parent: 89 - - uid: 13828 + pos: -104.5,17.5 + parent: 2 + - uid: 4426 components: - type: Transform - pos: -59.5,0.5 - parent: 89 - - uid: 13832 + pos: -103.5,17.5 + parent: 2 + - uid: 4427 components: - type: Transform - pos: -41.5,3.5 - parent: 89 - - uid: 13833 + pos: -102.5,17.5 + parent: 2 + - uid: 4428 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - uid: 13834 + pos: -101.5,17.5 + parent: 2 + - uid: 4429 components: - type: Transform - pos: -43.5,3.5 - parent: 89 - - uid: 13835 + pos: -100.5,17.5 + parent: 2 + - uid: 4430 components: - type: Transform - pos: -44.5,3.5 - parent: 89 - - uid: 13836 + pos: -100.5,18.5 + parent: 2 + - uid: 4431 components: - type: Transform - pos: -45.5,3.5 - parent: 89 - - uid: 13837 + pos: -100.5,19.5 + parent: 2 + - uid: 4432 components: - type: Transform - pos: -46.5,3.5 - parent: 89 - - uid: 13838 + pos: -100.5,20.5 + parent: 2 + - uid: 4433 components: - type: Transform - pos: -47.5,3.5 - parent: 89 - - uid: 13839 + pos: -100.5,21.5 + parent: 2 + - uid: 4434 components: - type: Transform - pos: -40.5,2.5 - parent: 89 - - uid: 13840 + pos: -100.5,22.5 + parent: 2 + - uid: 4435 components: - type: Transform - pos: -40.5,1.5 - parent: 89 - - uid: 13841 + pos: -98.5,22.5 + parent: 2 + - uid: 4436 components: - type: Transform - pos: -40.5,0.5 - parent: 89 - - uid: 13842 + pos: -97.5,22.5 + parent: 2 + - uid: 4437 components: - type: Transform - pos: -40.5,-0.5 - parent: 89 - - uid: 13843 + pos: -96.5,22.5 + parent: 2 + - uid: 4438 components: - type: Transform - pos: -41.5,-0.5 - parent: 89 - - uid: 13844 + pos: -95.5,22.5 + parent: 2 + - uid: 4439 components: - type: Transform - pos: -42.5,-0.5 - parent: 89 - - uid: 13845 + pos: -94.5,22.5 + parent: 2 + - uid: 4440 components: - type: Transform - pos: -43.5,-0.5 - parent: 89 - - uid: 13846 + pos: -93.5,22.5 + parent: 2 + - uid: 4441 components: - type: Transform - pos: -44.5,-0.5 - parent: 89 - - uid: 13847 + pos: -92.5,22.5 + parent: 2 + - uid: 4442 components: - type: Transform - pos: -44.5,0.5 - parent: 89 - - uid: 13871 + pos: -91.5,22.5 + parent: 2 + - uid: 4443 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 13872 + pos: -90.5,22.5 + parent: 2 + - uid: 4444 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 - - uid: 13873 + pos: -89.5,22.5 + parent: 2 + - uid: 4445 components: - type: Transform - pos: -47.5,-5.5 - parent: 89 - - uid: 13874 + pos: -88.5,22.5 + parent: 2 + - uid: 4446 components: - type: Transform - pos: -47.5,-4.5 - parent: 89 - - uid: 13875 + pos: -87.5,22.5 + parent: 2 + - uid: 4447 components: - type: Transform - pos: -47.5,-3.5 - parent: 89 - - uid: 13876 + pos: -87.5,21.5 + parent: 2 + - uid: 4448 components: - type: Transform - pos: -47.5,-2.5 - parent: 89 - - uid: 13877 + pos: -87.5,20.5 + parent: 2 + - uid: 4449 components: - type: Transform - pos: -47.5,-1.5 - parent: 89 - - uid: 13878 + pos: -87.5,19.5 + parent: 2 + - uid: 4450 components: - type: Transform - pos: -47.5,-0.5 - parent: 89 - - uid: 13879 + pos: -87.5,18.5 + parent: 2 + - uid: 4451 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 13880 + pos: -87.5,17.5 + parent: 2 + - uid: 4452 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 - - uid: 13881 + pos: -87.5,16.5 + parent: 2 + - uid: 4453 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 - - uid: 13882 + pos: -86.5,16.5 + parent: 2 + - uid: 4454 components: - type: Transform - pos: -51.5,-1.5 - parent: 89 - - uid: 13883 + pos: -85.5,16.5 + parent: 2 + - uid: 4455 components: - type: Transform - pos: -51.5,-0.5 - parent: 89 - - uid: 13884 + pos: -85.5,15.5 + parent: 2 + - uid: 4456 components: - type: Transform - pos: -51.5,0.5 - parent: 89 - - uid: 13885 + pos: -85.5,14.5 + parent: 2 + - uid: 4457 components: - type: Transform - pos: -51.5,-7.5 - parent: 89 - - uid: 13886 + pos: -85.5,13.5 + parent: 2 + - uid: 4458 components: - type: Transform - pos: -51.5,-6.5 - parent: 89 - - uid: 13887 + pos: -83.5,13.5 + parent: 2 + - uid: 4459 components: - type: Transform - pos: -51.5,-5.5 - parent: 89 - - uid: 13888 + pos: -82.5,13.5 + parent: 2 + - uid: 4460 components: - type: Transform - pos: -51.5,-4.5 - parent: 89 - - uid: 13889 + pos: -81.5,13.5 + parent: 2 + - uid: 4461 components: - type: Transform - pos: -50.5,-4.5 - parent: 89 - - uid: 13890 + pos: -80.5,13.5 + parent: 2 + - uid: 4462 components: - type: Transform - pos: -49.5,-4.5 - parent: 89 - - uid: 13891 + pos: -80.5,14.5 + parent: 2 + - uid: 4463 components: - type: Transform - pos: -48.5,-4.5 - parent: 89 - - uid: 13892 + pos: -80.5,15.5 + parent: 2 + - uid: 4464 components: - type: Transform - pos: -47.5,-6.5 - parent: 89 - - uid: 13893 + pos: -80.5,16.5 + parent: 2 + - uid: 4465 components: - type: Transform - pos: -47.5,-7.5 - parent: 89 - - uid: 13894 + pos: -79.5,16.5 + parent: 2 + - uid: 4466 components: - type: Transform - pos: -46.5,-2.5 - parent: 89 - - uid: 13895 + pos: -78.5,16.5 + parent: 2 + - uid: 4467 components: - type: Transform - pos: -45.5,-2.5 - parent: 89 - - uid: 13904 + pos: -77.5,16.5 + parent: 2 + - uid: 4468 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 13905 + pos: -76.5,16.5 + parent: 2 + - uid: 4469 components: - type: Transform - pos: -35.5,17.5 - parent: 89 - - uid: 13906 + pos: -76.5,17.5 + parent: 2 + - uid: 4470 components: - type: Transform - pos: -36.5,17.5 - parent: 89 - - uid: 13907 + pos: -76.5,18.5 + parent: 2 + - uid: 4471 components: - type: Transform - pos: -37.5,17.5 - parent: 89 - - uid: 13908 + pos: -76.5,19.5 + parent: 2 + - uid: 4472 components: - type: Transform - pos: -38.5,17.5 - parent: 89 - - uid: 13909 + pos: -76.5,20.5 + parent: 2 + - uid: 4473 components: - type: Transform - pos: -39.5,17.5 - parent: 89 - - uid: 13910 + pos: -75.5,20.5 + parent: 2 + - uid: 4474 components: - type: Transform - pos: -40.5,17.5 - parent: 89 - - uid: 13911 + pos: -74.5,20.5 + parent: 2 + - uid: 4475 components: - type: Transform - pos: -41.5,17.5 - parent: 89 - - uid: 13912 + pos: -73.5,20.5 + parent: 2 + - uid: 4476 components: - type: Transform - pos: -42.5,17.5 - parent: 89 - - uid: 13913 + pos: -72.5,20.5 + parent: 2 + - uid: 4477 components: - type: Transform - pos: -43.5,17.5 - parent: 89 - - uid: 13914 + pos: -71.5,20.5 + parent: 2 + - uid: 4478 components: - type: Transform - pos: -44.5,17.5 - parent: 89 - - uid: 13915 + pos: -70.5,20.5 + parent: 2 + - uid: 4479 components: - type: Transform - pos: -45.5,17.5 - parent: 89 - - uid: 13916 + pos: -69.5,20.5 + parent: 2 + - uid: 4480 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 13917 + pos: -68.5,20.5 + parent: 2 + - uid: 4481 components: - type: Transform - pos: -47.5,17.5 - parent: 89 - - uid: 13918 + pos: -67.5,20.5 + parent: 2 + - uid: 4482 components: - type: Transform - pos: -48.5,17.5 - parent: 89 - - uid: 13919 + pos: -66.5,20.5 + parent: 2 + - uid: 4483 components: - type: Transform - pos: -48.5,16.5 - parent: 89 - - uid: 13920 + pos: -65.5,20.5 + parent: 2 + - uid: 4484 components: - type: Transform - pos: -48.5,15.5 - parent: 89 - - uid: 13921 + pos: -65.5,21.5 + parent: 2 + - uid: 4485 components: - type: Transform - pos: -48.5,14.5 - parent: 89 - - uid: 13922 + pos: -64.5,21.5 + parent: 2 + - uid: 4486 components: - type: Transform - pos: -48.5,18.5 - parent: 89 - - uid: 13923 + pos: -63.5,21.5 + parent: 2 + - uid: 4487 components: - type: Transform - pos: -49.5,17.5 - parent: 89 - - uid: 13924 + pos: -62.5,21.5 + parent: 2 + - uid: 4488 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 13925 + pos: -62.5,20.5 + parent: 2 + - uid: 4489 components: - type: Transform - pos: -51.5,17.5 - parent: 89 - - uid: 13940 + pos: -62.5,19.5 + parent: 2 + - uid: 4490 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 13941 + pos: -62.5,18.5 + parent: 2 + - uid: 4491 components: - type: Transform - pos: -22.5,2.5 - parent: 89 - - uid: 13942 + pos: -61.5,18.5 + parent: 2 + - uid: 4492 components: - type: Transform - pos: -23.5,2.5 - parent: 89 - - uid: 13943 + pos: -60.5,18.5 + parent: 2 + - uid: 4493 components: - type: Transform - pos: -24.5,2.5 - parent: 89 - - uid: 13944 + pos: -59.5,18.5 + parent: 2 + - uid: 4494 components: - type: Transform - pos: -25.5,2.5 - parent: 89 - - uid: 13945 + pos: -58.5,18.5 + parent: 2 + - uid: 4495 components: - type: Transform - pos: -25.5,3.5 - parent: 89 - - uid: 13946 + pos: -57.5,18.5 + parent: 2 + - uid: 4496 components: - type: Transform - pos: -25.5,4.5 - parent: 89 - - uid: 13947 + pos: -57.5,19.5 + parent: 2 + - uid: 4497 components: - type: Transform - pos: -25.5,5.5 - parent: 89 - - uid: 13948 + pos: -57.5,20.5 + parent: 2 + - uid: 4498 components: - type: Transform - pos: -25.5,6.5 - parent: 89 - - uid: 13949 + pos: -57.5,21.5 + parent: 2 + - uid: 4499 components: - type: Transform - pos: -25.5,7.5 - parent: 89 - - uid: 13950 + pos: -57.5,22.5 + parent: 2 + - uid: 4500 components: - type: Transform - pos: -25.5,8.5 - parent: 89 - - uid: 13951 + pos: -57.5,23.5 + parent: 2 + - uid: 4501 components: - type: Transform - pos: -24.5,8.5 - parent: 89 - - uid: 13952 + pos: -57.5,24.5 + parent: 2 + - uid: 4502 components: - type: Transform - pos: -23.5,8.5 - parent: 89 - - uid: 13953 + pos: -57.5,25.5 + parent: 2 + - uid: 4503 components: - type: Transform - pos: -26.5,4.5 - parent: 89 - - uid: 13954 + pos: -56.5,25.5 + parent: 2 + - uid: 4504 components: - type: Transform - pos: -26.5,8.5 - parent: 89 - - uid: 14048 + pos: -55.5,25.5 + parent: 2 + - uid: 4505 components: - type: Transform - pos: -62.5,-4.5 - parent: 89 - - uid: 14080 + pos: -54.5,25.5 + parent: 2 + - uid: 4506 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14081 + pos: -53.5,25.5 + parent: 2 + - uid: 4507 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 14082 + pos: -53.5,24.5 + parent: 2 + - uid: 4508 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 14083 + pos: -53.5,23.5 + parent: 2 + - uid: 4509 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 14084 + pos: -53.5,22.5 + parent: 2 + - uid: 4510 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 14085 + pos: -53.5,21.5 + parent: 2 + - uid: 4511 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 14098 + pos: -14.5,19.5 + parent: 2 + - uid: 4512 components: - type: Transform - pos: 39.5,-10.5 - parent: 89 - - uid: 14106 + pos: -14.5,18.5 + parent: 2 + - uid: 4513 components: - type: Transform - pos: 58.5,-1.5 - parent: 89 - - uid: 14114 + pos: -14.5,17.5 + parent: 2 + - uid: 4514 components: - type: Transform - pos: 37.5,-7.5 - parent: 89 - - uid: 14115 + pos: -14.5,16.5 + parent: 2 + - uid: 4515 components: - type: Transform - pos: 37.5,-6.5 - parent: 89 - - uid: 14116 + pos: -14.5,15.5 + parent: 2 + - uid: 4516 components: - type: Transform - pos: 37.5,-5.5 - parent: 89 - - uid: 14117 + pos: -14.5,14.5 + parent: 2 + - uid: 4517 components: - type: Transform - pos: 38.5,-5.5 - parent: 89 - - uid: 14118 + pos: -14.5,13.5 + parent: 2 + - uid: 4518 components: - type: Transform - pos: 39.5,-5.5 - parent: 89 - - uid: 14125 + pos: -14.5,12.5 + parent: 2 + - uid: 4519 components: - type: Transform - pos: 36.5,-5.5 - parent: 89 - - uid: 14126 + pos: -14.5,11.5 + parent: 2 + - uid: 4520 components: - type: Transform - pos: 36.5,-4.5 - parent: 89 - - uid: 14127 + pos: -14.5,10.5 + parent: 2 + - uid: 4521 components: - type: Transform - pos: 36.5,-3.5 - parent: 89 - - uid: 14128 + pos: -14.5,9.5 + parent: 2 + - uid: 4522 components: - type: Transform - pos: 36.5,-2.5 - parent: 89 - - uid: 14129 + pos: -14.5,8.5 + parent: 2 + - uid: 4523 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - uid: 14130 + pos: -14.5,7.5 + parent: 2 + - uid: 4524 components: - type: Transform - pos: 35.5,-1.5 - parent: 89 - - uid: 14131 + pos: -14.5,6.5 + parent: 2 + - uid: 4525 components: - type: Transform - pos: 34.5,-1.5 - parent: 89 - - uid: 14132 + pos: -13.5,6.5 + parent: 2 + - uid: 4526 components: - type: Transform - pos: 33.5,-1.5 - parent: 89 - - uid: 14133 + pos: -12.5,6.5 + parent: 2 + - uid: 4527 components: - type: Transform - pos: 32.5,-1.5 - parent: 89 - - uid: 14134 + pos: -11.5,6.5 + parent: 2 + - uid: 4528 components: - type: Transform - pos: 31.5,-1.5 - parent: 89 - - uid: 14135 + pos: -11.5,5.5 + parent: 2 + - uid: 4529 components: - type: Transform - pos: 36.5,-7.5 - parent: 89 - - uid: 14136 + pos: -11.5,4.5 + parent: 2 + - uid: 4530 components: - type: Transform - pos: 35.5,-7.5 - parent: 89 - - uid: 14137 + pos: 1.5,3.5 + parent: 2 + - uid: 4531 components: - type: Transform - pos: 34.5,-7.5 - parent: 89 - - uid: 14138 + pos: 2.5,3.5 + parent: 2 + - uid: 4532 components: - type: Transform - pos: 33.5,-7.5 - parent: 89 - - uid: 14139 + pos: 3.5,3.5 + parent: 2 + - uid: 4533 components: - type: Transform - pos: 32.5,-7.5 - parent: 89 - - uid: 14140 + pos: 4.5,3.5 + parent: 2 + - uid: 4534 components: - type: Transform - pos: 31.5,-7.5 - parent: 89 - - uid: 14141 + pos: 5.5,3.5 + parent: 2 + - uid: 4535 components: - type: Transform - pos: 30.5,-7.5 - parent: 89 - - uid: 14142 + pos: 6.5,3.5 + parent: 2 + - uid: 4536 components: - type: Transform - pos: 34.5,-8.5 - parent: 89 - - uid: 14143 + pos: 7.5,3.5 + parent: 2 + - uid: 4537 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 14146 + pos: 8.5,3.5 + parent: 2 + - uid: 4538 components: - type: Transform - pos: 34.5,-12.5 - parent: 89 - - uid: 14147 + pos: 9.5,3.5 + parent: 2 + - uid: 4539 components: - type: Transform - pos: 34.5,-13.5 - parent: 89 - - uid: 14149 + pos: 10.5,3.5 + parent: 2 + - uid: 4540 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 14150 + pos: 11.5,3.5 + parent: 2 + - uid: 4541 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 14151 + pos: 12.5,3.5 + parent: 2 + - uid: 4542 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 14152 + pos: 13.5,3.5 + parent: 2 + - uid: 4543 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 14153 + pos: 14.5,3.5 + parent: 2 + - uid: 4544 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 14154 + pos: 15.5,3.5 + parent: 2 + - uid: 4545 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 14155 + pos: 16.5,3.5 + parent: 2 + - uid: 4546 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 14156 + pos: 17.5,3.5 + parent: 2 + - uid: 4547 components: - type: Transform - pos: 27.5,-8.5 - parent: 89 - - uid: 14157 + pos: 18.5,3.5 + parent: 2 + - uid: 4548 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 14158 + pos: 19.5,3.5 + parent: 2 + - uid: 4549 components: - type: Transform - pos: 27.5,-6.5 - parent: 89 - - uid: 14159 + pos: 20.5,3.5 + parent: 2 + - uid: 4550 components: - type: Transform - pos: 27.5,-5.5 - parent: 89 - - uid: 14160 + pos: 21.5,3.5 + parent: 2 + - uid: 4551 components: - type: Transform - pos: 27.5,-4.5 - parent: 89 - - uid: 14161 + pos: 22.5,3.5 + parent: 2 + - uid: 4552 components: - type: Transform - pos: 27.5,-3.5 - parent: 89 - - uid: 14162 + pos: 23.5,3.5 + parent: 2 + - uid: 4553 components: - type: Transform - pos: 27.5,-2.5 - parent: 89 - - uid: 14163 + pos: 24.5,3.5 + parent: 2 + - uid: 4554 components: - type: Transform - pos: 27.5,-1.5 - parent: 89 - - uid: 14164 + pos: 25.5,3.5 + parent: 2 + - uid: 4555 components: - type: Transform - pos: 26.5,-2.5 - parent: 89 - - uid: 14165 + pos: 26.5,3.5 + parent: 2 + - uid: 4556 components: - type: Transform - pos: 25.5,-2.5 - parent: 89 - - uid: 14166 + pos: 27.5,3.5 + parent: 2 + - uid: 4557 components: - type: Transform - pos: 24.5,-2.5 - parent: 89 - - uid: 14167 + pos: 28.5,3.5 + parent: 2 + - uid: 4558 components: - type: Transform - pos: 23.5,-2.5 - parent: 89 - - uid: 14168 + pos: 29.5,3.5 + parent: 2 + - uid: 4559 components: - type: Transform - pos: 23.5,-3.5 - parent: 89 - - uid: 14169 + pos: 30.5,3.5 + parent: 2 + - uid: 4560 components: - type: Transform - pos: 23.5,-4.5 - parent: 89 - - uid: 14170 + pos: 31.5,3.5 + parent: 2 + - uid: 4561 components: - type: Transform - pos: 23.5,-5.5 - parent: 89 - - uid: 14171 + pos: 32.5,3.5 + parent: 2 + - uid: 4562 components: - type: Transform - pos: 28.5,-10.5 - parent: 89 - - uid: 14172 + pos: 33.5,3.5 + parent: 2 + - uid: 4563 components: - type: Transform - pos: 28.5,-11.5 - parent: 89 - - uid: 14173 + pos: 34.5,3.5 + parent: 2 + - uid: 4564 components: - type: Transform - pos: 28.5,-12.5 - parent: 89 - - uid: 14174 + pos: 35.5,3.5 + parent: 2 + - uid: 4565 components: - type: Transform - pos: 28.5,-13.5 - parent: 89 - - uid: 14175 + pos: 35.5,2.5 + parent: 2 + - uid: 4566 components: - type: Transform - pos: 31.5,-10.5 - parent: 89 - - uid: 14176 + pos: 35.5,1.5 + parent: 2 + - uid: 4567 components: - type: Transform - pos: 31.5,-11.5 - parent: 89 - - uid: 14177 + pos: 36.5,1.5 + parent: 2 + - uid: 4568 components: - type: Transform - pos: 31.5,-12.5 - parent: 89 - - uid: 14178 + pos: 37.5,1.5 + parent: 2 + - uid: 4569 components: - type: Transform - pos: 31.5,-13.5 - parent: 89 - - uid: 14181 + pos: 38.5,1.5 + parent: 2 + - uid: 4570 components: - type: Transform - pos: 10.5,-6.5 - parent: 89 - - uid: 14182 + pos: 39.5,1.5 + parent: 2 + - uid: 4571 components: - type: Transform - pos: 10.5,-3.5 - parent: 89 - - uid: 14183 + pos: 40.5,1.5 + parent: 2 + - uid: 4572 components: - type: Transform - pos: 10.5,-2.5 - parent: 89 - - uid: 14184 + pos: 41.5,1.5 + parent: 2 + - uid: 4573 components: - type: Transform - pos: 10.5,-1.5 - parent: 89 - - uid: 14185 + pos: 42.5,1.5 + parent: 2 + - uid: 4574 components: - type: Transform - pos: 11.5,-1.5 - parent: 89 - - uid: 14186 + pos: 43.5,1.5 + parent: 2 + - uid: 4575 components: - type: Transform - pos: 12.5,-1.5 - parent: 89 - - uid: 14187 + pos: 44.5,1.5 + parent: 2 + - uid: 4576 components: - type: Transform - pos: 13.5,-1.5 - parent: 89 - - uid: 14188 + pos: 45.5,1.5 + parent: 2 + - uid: 4577 components: - type: Transform - pos: 14.5,-1.5 - parent: 89 - - uid: 14189 + pos: 46.5,1.5 + parent: 2 + - uid: 4578 components: - type: Transform - pos: 14.5,-2.5 - parent: 89 - - uid: 14190 + pos: 47.5,1.5 + parent: 2 + - uid: 4579 components: - type: Transform - pos: 15.5,-2.5 - parent: 89 - - uid: 14191 + pos: 48.5,1.5 + parent: 2 + - uid: 4580 components: - type: Transform - pos: 18.5,0.5 - parent: 89 - - uid: 14192 + pos: 49.5,1.5 + parent: 2 + - uid: 4581 components: - type: Transform - pos: 18.5,-0.5 - parent: 89 - - uid: 14193 + pos: 50.5,1.5 + parent: 2 + - uid: 4582 components: - type: Transform - pos: 18.5,1.5 - parent: 89 - - uid: 14195 + pos: 51.5,1.5 + parent: 2 + - uid: 4583 components: - type: Transform - pos: 11.5,-6.5 - parent: 89 - - uid: 14196 + pos: 51.5,2.5 + parent: 2 + - uid: 4584 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 - - uid: 14197 + pos: 51.5,3.5 + parent: 2 + - uid: 4585 components: - type: Transform - pos: 13.5,-6.5 - parent: 89 - - uid: 14198 + pos: 51.5,4.5 + parent: 2 + - uid: 4586 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - uid: 14199 + pos: 50.5,4.5 + parent: 2 + - uid: 4587 components: - type: Transform - pos: 13.5,-8.5 - parent: 89 - - uid: 14200 + pos: 49.5,4.5 + parent: 2 + - uid: 4588 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 14201 + pos: 49.5,3.5 + parent: 2 + - uid: 4589 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 14202 + pos: 47.5,5.5 + parent: 2 + - uid: 4590 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 14203 + pos: -111.5,16.5 + parent: 2 + - uid: 4591 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 14204 + pos: -111.5,15.5 + parent: 2 + - uid: 4592 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 14205 + pos: -111.5,14.5 + parent: 2 + - uid: 4593 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 14206 + pos: -111.5,13.5 + parent: 2 + - uid: 4594 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 14207 + pos: -111.5,12.5 + parent: 2 + - uid: 4595 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 14208 + pos: -111.5,11.5 + parent: 2 + - uid: 4596 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 14209 + pos: -111.5,10.5 + parent: 2 + - uid: 4597 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 14210 + pos: -111.5,9.5 + parent: 2 + - uid: 4598 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 14211 + pos: -110.5,9.5 + parent: 2 + - uid: 4599 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 14212 + pos: -109.5,9.5 + parent: 2 + - uid: 4600 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 14213 + pos: -108.5,9.5 + parent: 2 + - uid: 4601 components: - type: Transform - pos: 25.5,-10.5 - parent: 89 - - uid: 14214 + pos: -108.5,8.5 + parent: 2 + - uid: 4602 components: - type: Transform - pos: 25.5,-11.5 - parent: 89 - - uid: 14215 + pos: -108.5,7.5 + parent: 2 + - uid: 4603 components: - type: Transform - pos: 25.5,-12.5 - parent: 89 - - uid: 14216 + pos: -108.5,6.5 + parent: 2 + - uid: 4604 components: - type: Transform - pos: 25.5,-13.5 - parent: 89 - - uid: 14217 + pos: -108.5,5.5 + parent: 2 + - uid: 4605 components: - type: Transform - pos: 22.5,-10.5 - parent: 89 - - uid: 14218 + pos: -108.5,4.5 + parent: 2 + - uid: 4606 components: - type: Transform - pos: 22.5,-11.5 - parent: 89 - - uid: 14219 + pos: -107.5,4.5 + parent: 2 + - uid: 4607 components: - type: Transform - pos: 22.5,-12.5 - parent: 89 - - uid: 14220 + pos: -106.5,4.5 + parent: 2 + - uid: 4608 components: - type: Transform - pos: 22.5,-13.5 - parent: 89 - - uid: 14221 + pos: -105.5,4.5 + parent: 2 + - uid: 4609 components: - type: Transform - pos: 19.5,-10.5 - parent: 89 - - uid: 14222 + pos: -104.5,4.5 + parent: 2 + - uid: 4610 components: - type: Transform - pos: 19.5,-11.5 - parent: 89 - - uid: 14223 + pos: -103.5,4.5 + parent: 2 + - uid: 4611 components: - type: Transform - pos: 19.5,-12.5 - parent: 89 - - uid: 14224 + pos: -102.5,4.5 + parent: 2 + - uid: 4612 components: - type: Transform - pos: 19.5,-13.5 - parent: 89 - - uid: 14229 + pos: -101.5,4.5 + parent: 2 + - uid: 4613 components: - type: Transform - pos: 12.5,-9.5 - parent: 89 - - uid: 14230 + pos: -100.5,4.5 + parent: 2 + - uid: 4614 components: - type: Transform - pos: 11.5,-9.5 - parent: 89 - - uid: 14231 + pos: -99.5,4.5 + parent: 2 + - uid: 4615 components: - type: Transform - pos: 10.5,-9.5 - parent: 89 - - uid: 14232 + pos: -98.5,4.5 + parent: 2 + - uid: 4616 components: - type: Transform - pos: 9.5,-9.5 - parent: 89 - - uid: 14233 + pos: -98.5,5.5 + parent: 2 + - uid: 4617 components: - type: Transform - pos: 8.5,-9.5 - parent: 89 - - uid: 14234 + pos: -98.5,6.5 + parent: 2 + - uid: 4618 components: - type: Transform - pos: 8.5,-10.5 - parent: 89 - - uid: 14235 + pos: -98.5,7.5 + parent: 2 + - uid: 4619 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - uid: 14236 + pos: -97.5,7.5 + parent: 2 + - uid: 4620 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 - - uid: 14237 + pos: -96.5,7.5 + parent: 2 + - uid: 4621 components: - type: Transform - pos: 8.5,-6.5 - parent: 89 - - uid: 14238 + pos: -95.5,7.5 + parent: 2 + - uid: 4622 components: - type: Transform - pos: 7.5,-6.5 - parent: 89 - - uid: 14239 + pos: -94.5,7.5 + parent: 2 + - uid: 4623 components: - type: Transform - pos: 6.5,-6.5 - parent: 89 - - uid: 14240 + pos: -93.5,7.5 + parent: 2 + - uid: 4624 components: - type: Transform - pos: 5.5,-6.5 - parent: 89 - - uid: 14241 + pos: -92.5,7.5 + parent: 2 + - uid: 4625 components: - type: Transform - pos: 4.5,-6.5 - parent: 89 - - uid: 14242 + pos: -92.5,6.5 + parent: 2 + - uid: 4626 components: - type: Transform - pos: 4.5,-7.5 - parent: 89 - - uid: 14243 + pos: -92.5,5.5 + parent: 2 + - uid: 4627 components: - type: Transform - pos: 4.5,-8.5 - parent: 89 - - uid: 14244 + pos: -92.5,4.5 + parent: 2 + - uid: 4628 components: - type: Transform - pos: 3.5,-8.5 - parent: 89 - - uid: 14245 + pos: -92.5,3.5 + parent: 2 + - uid: 4629 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 14246 + pos: -92.5,2.5 + parent: 2 + - uid: 4630 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 - - uid: 14247 + pos: -92.5,1.5 + parent: 2 + - uid: 4631 components: - type: Transform - pos: 3.5,-11.5 - parent: 89 - - uid: 14248 + pos: -92.5,0.5 + parent: 2 + - uid: 4632 components: - type: Transform - pos: 3.5,-12.5 - parent: 89 - - uid: 14249 + pos: -92.5,-0.5 + parent: 2 + - uid: 4633 components: - type: Transform - pos: 4.5,-12.5 - parent: 89 - - uid: 14250 + pos: -92.5,-1.5 + parent: 2 + - uid: 4634 components: - type: Transform - pos: 5.5,-5.5 - parent: 89 - - uid: 14251 + pos: -91.5,-1.5 + parent: 2 + - uid: 4635 components: - type: Transform - pos: 5.5,-4.5 - parent: 89 - - uid: 14252 + pos: -90.5,-1.5 + parent: 2 + - uid: 4636 components: - type: Transform - pos: 5.5,-3.5 - parent: 89 - - uid: 14253 + pos: -89.5,-1.5 + parent: 2 + - uid: 4637 components: - type: Transform - pos: 5.5,-2.5 - parent: 89 - - uid: 14254 + pos: -88.5,-1.5 + parent: 2 + - uid: 4638 components: - type: Transform - pos: 5.5,-1.5 - parent: 89 - - uid: 14255 + pos: -87.5,-1.5 + parent: 2 + - uid: 4639 components: - type: Transform - pos: 2.5,-10.5 - parent: 89 - - uid: 14324 + pos: -86.5,-1.5 + parent: 2 + - uid: 4640 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 14325 + pos: -85.5,-1.5 + parent: 2 + - uid: 4641 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 14326 + pos: -82.5,-3.5 + parent: 2 + - uid: 4642 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 14327 + pos: -82.5,-1.5 + parent: 2 + - uid: 4643 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 14328 + pos: -9.5,-25.5 + parent: 2 + - uid: 4644 components: - type: Transform - pos: -61.5,21.5 - parent: 89 - - uid: 14329 + pos: -9.5,-24.5 + parent: 2 + - uid: 4645 components: - type: Transform - pos: -60.5,21.5 - parent: 89 - - uid: 14333 + pos: -13.5,-27.5 + parent: 2 + - uid: 4646 components: - type: Transform - pos: -40.5,-1.5 - parent: 89 - - uid: 14334 + pos: -11.5,-25.5 + parent: 2 + - uid: 4647 components: - type: Transform - pos: -40.5,-2.5 - parent: 89 - - uid: 14335 + pos: -14.5,-26.5 + parent: 2 + - uid: 4648 components: - type: Transform - pos: -40.5,-3.5 - parent: 89 - - uid: 14336 + pos: -15.5,-26.5 + parent: 2 + - uid: 4649 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 14337 + pos: -16.5,-26.5 + parent: 2 + - uid: 4650 components: - type: Transform - pos: -40.5,-5.5 - parent: 89 - - uid: 14338 + pos: -17.5,-26.5 + parent: 2 + - uid: 4651 components: - - type: Transform - pos: -40.5,-6.5 - parent: 89 - - uid: 14339 + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 4652 components: - type: Transform - pos: -40.5,-7.5 - parent: 89 - - uid: 14340 + pos: -19.5,-26.5 + parent: 2 + - uid: 4653 components: - type: Transform - pos: -40.5,-8.5 - parent: 89 - - uid: 14341 + pos: -20.5,-26.5 + parent: 2 + - uid: 4654 components: - type: Transform - pos: -40.5,-9.5 - parent: 89 - - uid: 14342 + pos: -20.5,-25.5 + parent: 2 + - uid: 4655 components: - type: Transform - pos: -40.5,-10.5 - parent: 89 - - uid: 14343 + pos: -21.5,-25.5 + parent: 2 + - uid: 4656 components: - type: Transform - pos: -40.5,-11.5 - parent: 89 - - uid: 14344 + pos: -22.5,-25.5 + parent: 2 + - uid: 4657 components: - type: Transform - pos: -40.5,-12.5 - parent: 89 - - uid: 14345 + pos: -23.5,-25.5 + parent: 2 + - uid: 4658 components: - type: Transform - pos: -39.5,-12.5 - parent: 89 - - uid: 14346 + pos: -24.5,-25.5 + parent: 2 + - uid: 4659 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 14347 + pos: -25.5,-25.5 + parent: 2 + - uid: 4660 components: - type: Transform - pos: -37.5,-12.5 - parent: 89 - - uid: 14348 + pos: -25.5,-24.5 + parent: 2 + - uid: 4661 components: - type: Transform - pos: -36.5,-12.5 - parent: 89 - - uid: 14349 + pos: -25.5,-23.5 + parent: 2 + - uid: 4662 components: - type: Transform - pos: -35.5,-12.5 - parent: 89 - - uid: 14350 + pos: -25.5,-22.5 + parent: 2 + - uid: 4663 components: - type: Transform - pos: -34.5,-12.5 - parent: 89 - - uid: 14351 + pos: -25.5,-21.5 + parent: 2 + - uid: 4664 components: - type: Transform - pos: -33.5,-12.5 - parent: 89 - - uid: 14352 + pos: -25.5,-20.5 + parent: 2 + - uid: 4665 components: - type: Transform - pos: -32.5,-12.5 - parent: 89 - - uid: 14353 + pos: -25.5,-19.5 + parent: 2 + - uid: 4666 components: - type: Transform - pos: -31.5,-12.5 - parent: 89 - - uid: 14354 + pos: -25.5,-18.5 + parent: 2 + - uid: 4667 components: - type: Transform - pos: -30.5,-12.5 - parent: 89 - - uid: 14355 + pos: -25.5,-17.5 + parent: 2 + - uid: 4668 components: - type: Transform - pos: -29.5,-12.5 - parent: 89 - - uid: 14356 + pos: -25.5,-16.5 + parent: 2 + - uid: 4669 components: - type: Transform - pos: -22.5,-8.5 - parent: 89 - - uid: 14357 + pos: -26.5,-16.5 + parent: 2 + - uid: 4670 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 14358 + pos: -27.5,-16.5 + parent: 2 + - uid: 4671 components: - type: Transform - pos: -22.5,-10.5 - parent: 89 - - uid: 14359 + pos: -28.5,-16.5 + parent: 2 + - uid: 4672 components: - type: Transform - pos: -22.5,-11.5 - parent: 89 - - uid: 14361 + pos: -29.5,-16.5 + parent: 2 + - uid: 4673 components: - type: Transform - pos: -20.5,-11.5 - parent: 89 - - uid: 14362 + pos: -30.5,-16.5 + parent: 2 + - uid: 4674 components: - type: Transform - pos: -20.5,-10.5 - parent: 89 - - uid: 14363 + pos: -31.5,-16.5 + parent: 2 + - uid: 4675 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 14364 + pos: -32.5,-16.5 + parent: 2 + - uid: 4676 components: - type: Transform - pos: -20.5,-8.5 - parent: 89 - - uid: 14456 + pos: -36.5,-16.5 + parent: 2 + - uid: 4677 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14457 + pos: -37.5,-15.5 + parent: 2 + - uid: 4678 components: - type: Transform - pos: 0.5,-3.5 - parent: 89 - - uid: 14458 + pos: -38.5,-15.5 + parent: 2 + - uid: 4679 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 14459 + pos: -39.5,-15.5 + parent: 2 + - uid: 4680 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 14460 + pos: -40.5,-15.5 + parent: 2 + - uid: 4681 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 - - uid: 14461 + pos: -41.5,-15.5 + parent: 2 + - uid: 4682 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 14462 + pos: -42.5,-15.5 + parent: 2 + - uid: 4683 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 - - uid: 14463 + pos: -43.5,-15.5 + parent: 2 + - uid: 4684 components: - type: Transform - pos: -1.5,-7.5 - parent: 89 - - uid: 14464 + pos: -43.5,-14.5 + parent: 2 + - uid: 4685 components: - type: Transform - pos: -1.5,-8.5 - parent: 89 - - uid: 14465 + pos: -43.5,-13.5 + parent: 2 + - uid: 4686 components: - type: Transform - pos: -1.5,-9.5 - parent: 89 - - uid: 14466 + pos: -43.5,-12.5 + parent: 2 + - uid: 4687 components: - type: Transform - pos: -1.5,-10.5 - parent: 89 - - uid: 14467 + pos: -73.5,-10.5 + parent: 2 + - uid: 4688 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 - - uid: 14468 + pos: -72.5,-10.5 + parent: 2 + - uid: 4689 components: - type: Transform - pos: -1.5,-12.5 - parent: 89 - - uid: 14469 + pos: -71.5,-10.5 + parent: 2 + - uid: 4690 components: - type: Transform - pos: -1.5,-13.5 - parent: 89 - - uid: 14470 + pos: -70.5,-10.5 + parent: 2 + - uid: 4691 components: - type: Transform - pos: -1.5,-14.5 - parent: 89 - - uid: 14471 + pos: -69.5,-10.5 + parent: 2 + - uid: 4692 components: - type: Transform - pos: -1.5,-15.5 - parent: 89 - - uid: 14472 + pos: -68.5,-10.5 + parent: 2 + - uid: 4693 components: - type: Transform - pos: -1.5,-16.5 - parent: 89 - - uid: 14473 + pos: -67.5,-10.5 + parent: 2 + - uid: 4694 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 - - uid: 14474 + pos: -66.5,-10.5 + parent: 2 + - uid: 4695 components: - type: Transform - pos: -2.5,-12.5 - parent: 89 - - uid: 14475 + pos: -65.5,-10.5 + parent: 2 + - uid: 4696 components: - type: Transform - pos: -3.5,-12.5 - parent: 89 - - uid: 14476 + pos: -64.5,-10.5 + parent: 2 + - uid: 4697 components: - type: Transform - pos: -1.5,-2.5 - parent: 89 - - uid: 14477 + pos: -63.5,-10.5 + parent: 2 + - uid: 4698 components: - type: Transform - pos: -1.5,-1.5 - parent: 89 - - uid: 14478 + pos: -62.5,-10.5 + parent: 2 + - uid: 4699 components: - type: Transform - pos: -1.5,-0.5 - parent: 89 - - uid: 14479 + pos: -61.5,-10.5 + parent: 2 + - uid: 4700 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 14480 + pos: -60.5,-10.5 + parent: 2 + - uid: 4701 components: - type: Transform - pos: -1.5,1.5 - parent: 89 - - uid: 14481 + pos: -59.5,-10.5 + parent: 2 + - uid: 4702 components: - type: Transform - pos: -1.5,2.5 - parent: 89 - - uid: 14482 + pos: -58.5,-10.5 + parent: 2 + - uid: 4703 components: - type: Transform - pos: -0.5,2.5 - parent: 89 - - uid: 14483 + pos: -58.5,-9.5 + parent: 2 + - uid: 4704 components: - type: Transform - pos: 0.5,2.5 - parent: 89 - - uid: 14484 + pos: -58.5,-8.5 + parent: 2 + - uid: 4705 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 14485 + pos: -58.5,-7.5 + parent: 2 + - uid: 4706 components: - type: Transform - pos: 2.5,2.5 - parent: 89 - - uid: 14486 + pos: -58.5,-6.5 + parent: 2 + - uid: 4707 components: - type: Transform - pos: 3.5,2.5 - parent: 89 - - uid: 14487 + pos: -57.5,-6.5 + parent: 2 + - uid: 4708 components: - type: Transform - pos: 4.5,2.5 - parent: 89 - - uid: 14488 + pos: -56.5,-6.5 + parent: 2 + - uid: 4709 components: - type: Transform - pos: 5.5,2.5 - parent: 89 - - uid: 14489 + pos: -55.5,-6.5 + parent: 2 + - uid: 4710 components: - type: Transform - pos: 6.5,2.5 - parent: 89 - - uid: 14490 + pos: -55.5,-7.5 + parent: 2 + - uid: 4711 components: - type: Transform - pos: 7.5,2.5 - parent: 89 - - uid: 14491 + pos: -55.5,-8.5 + parent: 2 + - uid: 4712 components: - type: Transform - pos: 8.5,2.5 - parent: 89 - - uid: 14492 + pos: -55.5,-9.5 + parent: 2 + - uid: 4713 components: - type: Transform - pos: 9.5,2.5 - parent: 89 - - uid: 14493 + pos: -55.5,-10.5 + parent: 2 + - uid: 4714 components: - type: Transform - pos: 10.5,2.5 - parent: 89 - - uid: 14494 + pos: -54.5,-10.5 + parent: 2 + - uid: 4715 components: - type: Transform - pos: 11.5,2.5 - parent: 89 - - uid: 14495 + pos: -53.5,-10.5 + parent: 2 + - uid: 4716 components: - type: Transform - pos: 12.5,2.5 - parent: 89 - - uid: 14496 + pos: -52.5,-10.5 + parent: 2 + - uid: 4717 components: - type: Transform - pos: 13.5,2.5 - parent: 89 - - uid: 14497 + pos: -51.5,-10.5 + parent: 2 + - uid: 4718 components: - type: Transform - pos: 14.5,2.5 - parent: 89 - - uid: 14498 + pos: -50.5,-10.5 + parent: 2 + - uid: 4719 components: - type: Transform - pos: 15.5,2.5 - parent: 89 - - uid: 14499 + pos: -50.5,-11.5 + parent: 2 + - uid: 4720 components: - type: Transform - pos: 16.5,2.5 - parent: 89 - - uid: 14500 + pos: -50.5,-12.5 + parent: 2 + - uid: 4721 components: - type: Transform - pos: 17.5,2.5 - parent: 89 - - uid: 14501 + pos: -49.5,-12.5 + parent: 2 + - uid: 4722 components: - type: Transform - pos: 18.5,2.5 - parent: 89 - - uid: 14502 + pos: -48.5,-12.5 + parent: 2 + - uid: 4723 components: - type: Transform - pos: 19.5,2.5 - parent: 89 - - uid: 14503 + pos: -47.5,-12.5 + parent: 2 + - uid: 4724 components: - type: Transform - pos: 20.5,2.5 - parent: 89 - - uid: 14504 + pos: -46.5,-12.5 + parent: 2 + - uid: 4725 components: - type: Transform - pos: 21.5,2.5 - parent: 89 - - uid: 14505 + pos: -45.5,-12.5 + parent: 2 + - uid: 4726 components: - type: Transform - pos: 22.5,2.5 - parent: 89 - - uid: 14506 + pos: -44.5,-12.5 + parent: 2 + - uid: 4727 components: - type: Transform - pos: 23.5,2.5 - parent: 89 - - uid: 14507 + pos: -73.5,-9.5 + parent: 2 + - uid: 4728 components: - type: Transform - pos: 24.5,2.5 - parent: 89 - - uid: 14508 + pos: -74.5,-9.5 + parent: 2 + - uid: 4729 components: - type: Transform - pos: 25.5,2.5 - parent: 89 - - uid: 14509 + pos: -75.5,-9.5 + parent: 2 + - uid: 4730 components: - type: Transform - pos: 26.5,2.5 - parent: 89 - - uid: 14510 + pos: -76.5,-9.5 + parent: 2 + - uid: 4731 components: - type: Transform - pos: 27.5,2.5 - parent: 89 - - uid: 14511 + pos: -77.5,-9.5 + parent: 2 + - uid: 4732 components: - type: Transform - pos: 28.5,2.5 - parent: 89 - - uid: 14512 + pos: -78.5,-9.5 + parent: 2 + - uid: 4733 components: - type: Transform - pos: 29.5,2.5 - parent: 89 - - uid: 14513 + pos: -81.5,-5.5 + parent: 2 + - uid: 4734 components: - type: Transform - pos: 30.5,2.5 - parent: 89 - - uid: 14514 + pos: -82.5,-5.5 + parent: 2 + - uid: 4735 components: - type: Transform - pos: 31.5,2.5 - parent: 89 - - uid: 14515 + pos: -82.5,-4.5 + parent: 2 + - uid: 4736 components: - type: Transform - pos: -2.5,2.5 - parent: 89 - - uid: 14529 + pos: -84.5,-1.5 + parent: 2 + - uid: 4737 components: - type: Transform - pos: -27.5,16.5 - parent: 89 - - uid: 14647 + pos: 15.5,-13.5 + parent: 2 + - uid: 4738 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14653 + pos: 14.5,-13.5 + parent: 2 + - uid: 4739 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14674 + pos: 15.5,-15.5 + parent: 2 + - uid: 4740 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14686 + pos: -24.5,-16.5 + parent: 2 + - uid: 4741 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14687 + pos: -23.5,-16.5 + parent: 2 + - uid: 4742 components: - type: Transform - pos: -31.5,50.5 - parent: 89 - - uid: 14688 + pos: -22.5,-16.5 + parent: 2 + - uid: 4743 components: - type: Transform - pos: -31.5,49.5 - parent: 89 - - uid: 14689 + pos: -21.5,-16.5 + parent: 2 + - uid: 4744 components: - type: Transform - pos: -31.5,48.5 - parent: 89 - - uid: 14690 + pos: -12.5,-25.5 + parent: 2 + - uid: 4745 components: - type: Transform - pos: -31.5,47.5 - parent: 89 - - uid: 14748 + pos: -12.5,-24.5 + parent: 2 + - uid: 4746 components: - type: Transform - pos: -30.5,48.5 - parent: 89 - - uid: 14880 + pos: -11.5,-23.5 + parent: 2 + - uid: 4747 components: - type: Transform - pos: 12.5,-13.5 - parent: 89 - - uid: 14888 + pos: -12.5,-23.5 + parent: 2 + - uid: 4748 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 14894 + pos: -10.5,-23.5 + parent: 2 + - uid: 4749 components: - type: Transform - pos: 11.5,-3.5 - parent: 89 - - uid: 14910 + pos: -9.5,-23.5 + parent: 2 + - uid: 4750 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14911 + pos: -9.5,-24.5 + parent: 2 + - uid: 4751 components: - type: Transform - pos: -12.5,-36.5 - parent: 89 - - uid: 14912 + pos: -10.5,-22.5 + parent: 2 + - uid: 4752 components: - type: Transform - pos: -12.5,-35.5 - parent: 89 - - uid: 14913 + pos: -7.5,-22.5 + parent: 2 + - uid: 4753 components: - type: Transform - pos: -11.5,-35.5 - parent: 89 - - uid: 14914 + pos: 5.5,-24.5 + parent: 2 + - uid: 4754 components: - type: Transform - pos: -10.5,-35.5 - parent: 89 - - uid: 14915 + pos: 6.5,-24.5 + parent: 2 + - uid: 4755 components: - type: Transform - pos: -9.5,-35.5 - parent: 89 - - uid: 14933 + pos: 6.5,-23.5 + parent: 2 + - uid: 4756 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 14935 + pos: 6.5,-22.5 + parent: 2 + - uid: 4757 components: - type: Transform - pos: 11.5,-5.5 - parent: 89 - - uid: 14939 + pos: 6.5,-21.5 + parent: 2 + - uid: 4758 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 14940 + pos: 6.5,-20.5 + parent: 2 + - uid: 4759 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 14969 + pos: 6.5,-19.5 + parent: 2 + - uid: 4760 components: - type: Transform - pos: -63.5,-7.5 - parent: 89 - - uid: 14971 + pos: 6.5,-18.5 + parent: 2 + - uid: 4761 components: - type: Transform - pos: -29.5,48.5 - parent: 89 - - uid: 14981 + pos: 6.5,-17.5 + parent: 2 + - uid: 4762 components: - type: Transform - pos: -28.5,48.5 - parent: 89 - - uid: 15033 + pos: 6.5,-16.5 + parent: 2 + - uid: 4763 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 15035 + pos: 6.5,-15.5 + parent: 2 + - uid: 4764 components: - type: Transform - pos: 23.5,24.5 - parent: 89 - - uid: 15064 + pos: 7.5,-15.5 + parent: 2 + - uid: 4765 components: - type: Transform - pos: 19.5,30.5 - parent: 89 - - uid: 15095 + pos: 8.5,-15.5 + parent: 2 + - uid: 4766 components: - type: Transform - pos: 25.5,30.5 - parent: 89 - - uid: 15101 + pos: 9.5,-15.5 + parent: 2 + - uid: 4767 components: - type: Transform - pos: 26.5,30.5 - parent: 89 - - uid: 15117 + pos: 10.5,-15.5 + parent: 2 + - uid: 4768 components: - type: Transform - pos: 27.5,30.5 - parent: 89 - - uid: 15146 + pos: 11.5,-15.5 + parent: 2 + - uid: 4769 components: - type: Transform - pos: 23.5,30.5 - parent: 89 - - uid: 15147 + pos: 12.5,-15.5 + parent: 2 + - uid: 4770 components: - type: Transform - pos: 22.5,30.5 - parent: 89 - - uid: 15148 + pos: 13.5,-15.5 + parent: 2 + - uid: 4771 components: - type: Transform - pos: 21.5,30.5 - parent: 89 - - uid: 15150 + pos: -82.5,-8.5 + parent: 2 + - uid: 4772 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15151 + pos: -82.5,-9.5 + parent: 2 + - uid: 4773 components: - type: Transform - pos: 20.5,30.5 - parent: 89 - - uid: 15269 + pos: -80.5,-5.5 + parent: 2 + - uid: 4774 components: - type: Transform - pos: -28.5,47.5 - parent: 89 - - uid: 15270 + pos: -80.5,-6.5 + parent: 2 + - uid: 4775 components: - type: Transform - pos: -28.5,49.5 - parent: 89 - - uid: 15271 + pos: -80.5,-7.5 + parent: 2 + - uid: 4776 components: - type: Transform - pos: -28.5,50.5 - parent: 89 - - uid: 15301 + pos: -80.5,-8.5 + parent: 2 + - uid: 4777 components: - type: Transform - pos: -30.5,47.5 - parent: 89 - - uid: 15302 + pos: -80.5,-9.5 + parent: 2 + - uid: 4778 components: - type: Transform - pos: -29.5,47.5 - parent: 89 - - uid: 15304 + pos: -79.5,-9.5 + parent: 2 + - uid: 4779 components: - type: Transform - pos: -30.5,46.5 - parent: 89 - - uid: 15319 + pos: -9.5,23.5 + parent: 2 + - uid: 4780 components: - type: Transform - pos: -29.5,46.5 - parent: 89 - - uid: 15337 + pos: -125.5,1.5 + parent: 2 + - uid: 4781 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 15338 + pos: -126.5,1.5 + parent: 2 + - uid: 4782 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - uid: 15347 + pos: -127.5,1.5 + parent: 2 + - uid: 4783 components: - type: Transform - pos: -31.5,36.5 - parent: 89 - - uid: 15348 + pos: -127.5,2.5 + parent: 2 + - uid: 4784 components: - type: Transform - pos: -31.5,35.5 - parent: 89 - - uid: 15349 + pos: -127.5,3.5 + parent: 2 + - uid: 4785 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - uid: 15350 + pos: -127.5,4.5 + parent: 2 + - uid: 4786 components: - type: Transform - pos: -29.5,35.5 - parent: 89 - - uid: 15351 + pos: -127.5,5.5 + parent: 2 + - uid: 4787 components: - type: Transform - pos: -28.5,35.5 - parent: 89 - - uid: 15352 + pos: -127.5,6.5 + parent: 2 + - uid: 4788 components: - type: Transform - pos: -28.5,36.5 - parent: 89 - - uid: 15353 + pos: -126.5,6.5 + parent: 2 + - uid: 4789 components: - type: Transform - pos: -28.5,37.5 - parent: 89 - - uid: 15359 + pos: -125.5,6.5 + parent: 2 + - uid: 4790 components: - type: Transform - pos: 10.5,32.5 - parent: 89 - - uid: 15367 + pos: -123.5,4.5 + parent: 2 + - uid: 4791 components: - type: Transform - pos: 12.5,32.5 - parent: 89 - - uid: 15369 + pos: -123.5,3.5 + parent: 2 + - uid: 4792 components: - type: Transform - pos: 11.5,32.5 - parent: 89 - - uid: 15385 + pos: -125.5,9.5 + parent: 2 + - uid: 4793 components: - type: Transform - pos: 13.5,29.5 - parent: 89 - - uid: 15476 + pos: -125.5,10.5 + parent: 2 + - uid: 4794 components: - type: Transform - pos: -30.5,37.5 - parent: 89 - - uid: 15477 + pos: -125.5,11.5 + parent: 2 + - uid: 4795 components: - type: Transform - pos: 13.5,35.5 - parent: 89 - - uid: 15478 + pos: -124.5,4.5 + parent: 2 + - uid: 4796 components: - type: Transform - pos: 13.5,36.5 - parent: 89 - - uid: 15528 + pos: -124.5,3.5 + parent: 2 + - uid: 4797 components: - type: Transform - pos: 12.5,29.5 - parent: 89 - - uid: 15531 + pos: -124.5,-1.5 + parent: 2 + - uid: 4798 components: - type: Transform - pos: 8.5,30.5 - parent: 89 - - uid: 15549 + pos: -125.5,-2.5 + parent: 2 + - uid: 4799 components: - type: Transform - pos: 13.5,30.5 - parent: 89 - - uid: 15551 + pos: -125.5,-3.5 + parent: 2 + - uid: 4800 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 15552 + pos: -125.5,-4.5 + parent: 2 + - uid: 4801 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 15562 + pos: -125.5,-5.5 + parent: 2 + - uid: 4802 components: - type: Transform - pos: 6.5,36.5 - parent: 89 - - uid: 15576 + pos: -125.5,-6.5 + parent: 2 + - uid: 4803 components: - type: Transform - pos: 10.5,33.5 - parent: 89 - - uid: 15591 + pos: -35.5,11.5 + parent: 2 + - uid: 4804 components: - type: Transform - pos: -29.5,37.5 - parent: 89 - - uid: 15595 + pos: -13.5,23.5 + parent: 2 + - uid: 4805 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 15598 + pos: -36.5,11.5 + parent: 2 + - uid: 4806 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 15600 + pos: -37.5,11.5 + parent: 2 + - uid: 4807 components: - type: Transform - pos: 11.5,29.5 - parent: 89 - - uid: 15638 + pos: -37.5,12.5 + parent: 2 + - uid: 4808 components: - type: Transform - pos: -112.5,-14.5 - parent: 89 - - uid: 15644 + pos: -37.5,13.5 + parent: 2 + - uid: 4809 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15645 + pos: -36.5,13.5 + parent: 2 + - uid: 4810 components: - type: Transform - pos: -111.5,-14.5 - parent: 89 - - uid: 15646 + pos: -14.5,23.5 + parent: 2 + - uid: 4811 components: - type: Transform - pos: -113.5,-14.5 - parent: 89 - - uid: 15647 + pos: 2.5,23.5 + parent: 2 + - uid: 4812 components: - type: Transform - pos: -113.5,-15.5 - parent: 89 - - uid: 15648 + pos: -53.5,26.5 + parent: 2 + - uid: 4813 components: - type: Transform - pos: -113.5,-16.5 - parent: 89 - - uid: 15736 + pos: -53.5,27.5 + parent: 2 + - uid: 4814 components: - type: Transform - pos: 13.5,33.5 - parent: 89 - - uid: 15742 + pos: -53.5,28.5 + parent: 2 + - uid: 4815 components: - type: Transform - pos: 6.5,35.5 - parent: 89 - - uid: 15849 + pos: -53.5,29.5 + parent: 2 + - uid: 4816 components: - type: Transform - pos: 9.5,32.5 - parent: 89 - - uid: 15855 + pos: -53.5,30.5 + parent: 2 + - uid: 4817 components: - type: Transform - pos: 10.5,37.5 - parent: 89 - - uid: 15864 + pos: -53.5,31.5 + parent: 2 + - uid: 4818 components: - type: Transform - pos: 13.5,34.5 - parent: 89 - - uid: 15906 + pos: -52.5,31.5 + parent: 2 + - uid: 4819 components: - type: Transform - pos: 6.5,34.5 - parent: 89 - - uid: 15991 + pos: -51.5,31.5 + parent: 2 + - uid: 4820 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 15992 + pos: -51.5,30.5 + parent: 2 + - uid: 4821 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15993 + pos: -51.5,29.5 + parent: 2 + - uid: 4822 components: - type: Transform - pos: 26.5,19.5 - parent: 89 - - uid: 15994 + pos: -51.5,28.5 + parent: 2 + - uid: 4823 components: - type: Transform - pos: 26.5,18.5 - parent: 89 - - uid: 15995 + pos: -88.5,20.5 + parent: 2 + - uid: 4824 components: - type: Transform - pos: 27.5,18.5 - parent: 89 - - uid: 15996 + pos: -89.5,20.5 + parent: 2 + - uid: 4825 components: - type: Transform - pos: 27.5,17.5 - parent: 89 - - uid: 15997 + pos: -90.5,20.5 + parent: 2 + - uid: 4826 components: - type: Transform - pos: 27.5,16.5 - parent: 89 - - uid: 15998 + pos: -4.5,23.5 + parent: 2 + - uid: 4827 components: - type: Transform - pos: 27.5,15.5 - parent: 89 - - uid: 15999 + pos: -5.5,23.5 + parent: 2 + - uid: 4828 components: - type: Transform - pos: 27.5,14.5 - parent: 89 - - uid: 16000 + pos: -3.5,23.5 + parent: 2 + - uid: 4829 components: - type: Transform - pos: 26.5,13.5 - parent: 89 - - uid: 16001 + pos: -43.5,-11.5 + parent: 2 + - uid: 4830 components: - type: Transform - pos: 28.5,18.5 - parent: 89 - - uid: 16002 + pos: -36.5,14.5 + parent: 2 + - uid: 4831 components: - type: Transform - pos: 29.5,18.5 - parent: 89 - - uid: 16003 + pos: -36.5,15.5 + parent: 2 + - uid: 4832 components: - type: Transform - pos: 30.5,18.5 - parent: 89 - - uid: 16004 + pos: -36.5,16.5 + parent: 2 + - uid: 4833 components: - type: Transform - pos: 31.5,18.5 - parent: 89 - - uid: 16005 + pos: -36.5,17.5 + parent: 2 + - uid: 4834 components: - type: Transform - pos: 31.5,19.5 - parent: 89 - - uid: 16006 + pos: -35.5,17.5 + parent: 2 + - uid: 4835 components: - type: Transform - pos: 32.5,19.5 - parent: 89 - - uid: 16007 + pos: -34.5,17.5 + parent: 2 + - uid: 4836 components: - type: Transform - pos: 33.5,19.5 - parent: 89 - - uid: 16008 + pos: -33.5,17.5 + parent: 2 + - uid: 4837 components: - type: Transform - pos: 26.5,12.5 - parent: 89 - - uid: 16009 + pos: -32.5,17.5 + parent: 2 + - uid: 4838 components: - type: Transform - pos: 26.5,14.5 - parent: 89 - - uid: 16010 + pos: -31.5,17.5 + parent: 2 + - uid: 4839 components: - type: Transform - pos: 25.5,14.5 - parent: 89 - - uid: 16011 + pos: -30.5,17.5 + parent: 2 + - uid: 4840 components: - type: Transform - pos: 24.5,14.5 - parent: 89 - - uid: 16012 + pos: -29.5,17.5 + parent: 2 + - uid: 4841 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 16013 + pos: -29.5,18.5 + parent: 2 + - uid: 4842 components: - type: Transform - pos: 22.5,14.5 - parent: 89 - - uid: 16014 + pos: -29.5,19.5 + parent: 2 + - uid: 4843 components: - type: Transform - pos: 21.5,14.5 - parent: 89 - - uid: 16015 + pos: -43.5,-10.5 + parent: 2 + - uid: 4844 components: - type: Transform - pos: 20.5,14.5 - parent: 89 - - uid: 16018 + pos: -124.5,-3.5 + parent: 2 + - uid: 4845 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 16019 + pos: -121.5,3.5 + parent: 2 + - uid: 4846 components: - type: Transform - pos: 21.5,18.5 - parent: 89 - - uid: 16021 + pos: -122.5,3.5 + parent: 2 + - uid: 4847 components: - type: Transform - pos: 20.5,17.5 - parent: 89 - - uid: 16022 + pos: -124.5,9.5 + parent: 2 + - uid: 4848 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 16023 + pos: -0.5,23.5 + parent: 2 + - uid: 4849 components: - type: Transform - pos: 18.5,17.5 - parent: 89 - - uid: 16024 + pos: 4.5,23.5 + parent: 2 + - uid: 4850 components: - type: Transform - pos: 17.5,17.5 - parent: 89 - - uid: 16025 + pos: -43.5,-9.5 + parent: 2 + - uid: 4851 components: - type: Transform - pos: 17.5,18.5 - parent: 89 - - uid: 16027 + pos: 24.5,25.5 + parent: 2 + - uid: 4852 components: - type: Transform - pos: 24.5,15.5 - parent: 89 - - uid: 16028 + pos: 24.5,23.5 + parent: 2 + - uid: 4853 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 16029 + pos: -10.5,23.5 + parent: 2 + - uid: 4854 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 16030 + pos: -11.5,23.5 + parent: 2 + - uid: 4855 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 16031 + pos: -115.5,-10.5 + parent: 2 + - uid: 4856 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 16032 + pos: -2.5,23.5 + parent: 2 + - uid: 4857 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 16035 + pos: 0.5,23.5 + parent: 2 + - uid: 4858 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 16036 + pos: 1.5,23.5 + parent: 2 + - uid: 4859 components: - type: Transform - pos: 24.5,27.5 - parent: 89 - - uid: 16037 + pos: -116.5,-10.5 + parent: 2 + - uid: 4860 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 16040 + pos: -43.5,-8.5 + parent: 2 + - uid: 4861 components: - type: Transform - pos: 25.5,27.5 - parent: 89 - - uid: 16045 + pos: -6.5,23.5 + parent: 2 + - uid: 4862 components: - type: Transform - pos: 10.5,40.5 - parent: 89 - - uid: 16046 + pos: 16.5,26.5 + parent: 2 + - uid: 4863 components: - type: Transform - pos: 23.5,27.5 - parent: 89 - - uid: 16047 + pos: -7.5,23.5 + parent: 2 + - uid: 4864 components: - type: Transform - pos: 10.5,38.5 - parent: 89 - - uid: 16054 + pos: 13.5,26.5 + parent: 2 + - uid: 4865 components: - type: Transform - pos: 10.5,39.5 - parent: 89 - - uid: 16055 + pos: 14.5,26.5 + parent: 2 + - uid: 4866 components: - type: Transform - pos: 7.5,32.5 - parent: 89 - - uid: 16056 + pos: 20.5,25.5 + parent: 2 + - uid: 4867 components: - type: Transform - pos: 8.5,32.5 - parent: 89 - - uid: 16057 + pos: 19.5,26.5 + parent: 2 + - uid: 4868 components: - type: Transform - pos: 6.5,32.5 - parent: 89 - - uid: 16058 + pos: 15.5,26.5 + parent: 2 + - uid: 4869 components: - type: Transform - pos: 6.5,33.5 - parent: 89 - - uid: 16060 + pos: 6.5,26.5 + parent: 2 + - uid: 4870 components: - type: Transform - pos: -7.5,15.5 - parent: 89 - - uid: 16061 + pos: 12.5,26.5 + parent: 2 + - uid: 4871 components: - type: Transform - pos: -7.5,13.5 - parent: 89 - - uid: 16062 + pos: -43.5,-7.5 + parent: 2 + - uid: 4872 components: - type: Transform - pos: -7.5,12.5 - parent: 89 - - uid: 16063 + pos: 7.5,26.5 + parent: 2 + - uid: 4873 components: - type: Transform - pos: -8.5,15.5 - parent: 89 - - uid: 16064 + pos: 9.5,26.5 + parent: 2 + - uid: 4874 components: - type: Transform - pos: -9.5,15.5 - parent: 89 - - uid: 16065 + pos: -43.5,-6.5 + parent: 2 + - uid: 4875 components: - type: Transform - pos: -10.5,15.5 - parent: 89 - - uid: 16066 + pos: 17.5,26.5 + parent: 2 + - uid: 4876 components: - type: Transform - pos: -10.5,14.5 - parent: 89 - - uid: 16067 + pos: -43.5,-5.5 + parent: 2 + - uid: 4877 components: - type: Transform - pos: -10.5,13.5 - parent: 89 - - uid: 16068 + pos: -43.5,-4.5 + parent: 2 + - uid: 4878 components: - type: Transform - pos: -10.5,12.5 - parent: 89 - - uid: 16069 + pos: -42.5,-4.5 + parent: 2 + - uid: 4879 components: - type: Transform - pos: -10.5,11.5 - parent: 89 - - uid: 16076 + pos: -41.5,-4.5 + parent: 2 + - uid: 4880 components: - type: Transform - pos: -6.5,12.5 - parent: 89 - - uid: 16077 + pos: -40.5,-4.5 + parent: 2 + - uid: 4881 components: - type: Transform - pos: -5.5,12.5 - parent: 89 - - uid: 16078 + pos: -39.5,-4.5 + parent: 2 + - uid: 4882 components: - type: Transform - pos: -4.5,12.5 - parent: 89 - - uid: 16079 + pos: -117.5,-10.5 + parent: 2 + - uid: 4883 components: - type: Transform - pos: -3.5,12.5 - parent: 89 - - uid: 16080 + pos: -118.5,-10.5 + parent: 2 + - uid: 4884 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 16081 + pos: -119.5,-10.5 + parent: 2 + - uid: 4885 components: - type: Transform - pos: -1.5,12.5 - parent: 89 - - uid: 16082 + pos: -120.5,-10.5 + parent: 2 + - uid: 4886 components: - type: Transform - pos: -0.5,12.5 - parent: 89 - - uid: 16083 + pos: -121.5,-10.5 + parent: 2 + - uid: 4887 components: - type: Transform - pos: 0.5,12.5 - parent: 89 - - uid: 16084 + pos: -122.5,-10.5 + parent: 2 + - uid: 4888 components: - type: Transform - pos: 1.5,12.5 - parent: 89 - - uid: 16085 + pos: -123.5,-10.5 + parent: 2 + - uid: 4889 components: - type: Transform - pos: 2.5,12.5 - parent: 89 - - uid: 16086 + pos: -124.5,-10.5 + parent: 2 + - uid: 4890 components: - type: Transform - pos: 2.5,13.5 - parent: 89 - - uid: 16087 + pos: -125.5,-10.5 + parent: 2 + - uid: 4891 components: - type: Transform - pos: 3.5,13.5 - parent: 89 - - uid: 16088 + pos: -125.5,-9.5 + parent: 2 + - uid: 4892 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 16089 + pos: -125.5,-8.5 + parent: 2 + - uid: 4893 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - uid: 16090 + pos: -125.5,-7.5 + parent: 2 + - uid: 4894 components: - type: Transform - pos: 6.5,13.5 - parent: 89 - - uid: 16091 + pos: -38.5,-4.5 + parent: 2 + - uid: 4895 components: - type: Transform - pos: 7.5,13.5 - parent: 89 - - uid: 16092 + pos: 22.5,25.5 + parent: 2 + - uid: 4896 components: - type: Transform - pos: 8.5,13.5 - parent: 89 - - uid: 16093 + pos: -37.5,-4.5 + parent: 2 + - uid: 4897 components: - type: Transform - pos: 19.5,14.5 - parent: 89 - - uid: 16094 + pos: 4.5,25.5 + parent: 2 + - uid: 4898 components: - type: Transform - pos: 18.5,14.5 - parent: 89 - - uid: 16095 + pos: 4.5,26.5 + parent: 2 + - uid: 4899 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 16096 + pos: -123.5,13.5 + parent: 2 + - uid: 4900 components: - type: Transform - pos: 16.5,14.5 - parent: 89 - - uid: 16097 + pos: 35.5,27.5 + parent: 2 + - uid: 4901 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 16098 + pos: 20.5,26.5 + parent: 2 + - uid: 4902 components: - type: Transform - pos: 15.5,13.5 - parent: 89 - - uid: 16099 + pos: 4.5,24.5 + parent: 2 + - uid: 4903 components: - type: Transform - pos: 14.5,13.5 - parent: 89 - - uid: 16100 + pos: 5.5,26.5 + parent: 2 + - uid: 4904 components: - type: Transform - pos: 7.5,14.5 - parent: 89 - - uid: 16101 + pos: 24.5,22.5 + parent: 2 + - uid: 4905 components: - type: Transform - pos: 7.5,15.5 - parent: 89 - - uid: 16102 + pos: 25.5,22.5 + parent: 2 + - uid: 4906 components: - type: Transform - pos: 7.5,16.5 - parent: 89 - - uid: 16103 + pos: 26.5,22.5 + parent: 2 + - uid: 4907 components: - type: Transform - pos: 7.5,17.5 - parent: 89 - - uid: 16104 + pos: 27.5,22.5 + parent: 2 + - uid: 4908 components: - type: Transform - pos: 6.5,17.5 - parent: 89 - - uid: 16105 + pos: 28.5,22.5 + parent: 2 + - uid: 4909 components: - type: Transform - pos: 9.5,13.5 - parent: 89 - - uid: 16106 + pos: 29.5,22.5 + parent: 2 + - uid: 4910 components: - type: Transform - pos: 9.5,14.5 - parent: 89 - - uid: 16107 + pos: 30.5,22.5 + parent: 2 + - uid: 4911 components: - type: Transform - pos: 9.5,15.5 - parent: 89 - - uid: 16108 + pos: 31.5,22.5 + parent: 2 + - uid: 4912 components: - type: Transform - pos: 9.5,16.5 - parent: 89 - - uid: 16109 + pos: 32.5,22.5 + parent: 2 + - uid: 4913 components: - type: Transform - pos: 9.5,17.5 - parent: 89 - - uid: 16110 + pos: 33.5,22.5 + parent: 2 + - uid: 4914 components: - type: Transform - pos: 10.5,17.5 - parent: 89 - - uid: 16111 + pos: 34.5,22.5 + parent: 2 + - uid: 4915 components: - type: Transform - pos: 7.5,12.5 - parent: 89 - - uid: 16112 + pos: 34.5,23.5 + parent: 2 + - uid: 4916 components: - type: Transform - pos: 7.5,11.5 - parent: 89 - - uid: 16113 + pos: 34.5,24.5 + parent: 2 + - uid: 4917 components: - type: Transform - pos: 6.5,11.5 - parent: 89 - - uid: 16114 + pos: 34.5,25.5 + parent: 2 + - uid: 4918 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 16115 + pos: 34.5,26.5 + parent: 2 + - uid: 4919 components: - type: Transform - pos: 6.5,9.5 - parent: 89 - - uid: 16116 + pos: -116.5,13.5 + parent: 2 + - uid: 4920 components: - type: Transform - pos: 6.5,8.5 - parent: 89 - - uid: 16117 + pos: -117.5,13.5 + parent: 2 + - uid: 4921 components: - type: Transform - pos: 6.5,7.5 - parent: 89 - - uid: 16118 + pos: -37.5,-16.5 + parent: 2 + - uid: 4922 components: - type: Transform - pos: 7.5,7.5 - parent: 89 - - uid: 16119 + pos: -37.5,-5.5 + parent: 2 + - uid: 4923 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 16120 + pos: -37.5,-6.5 + parent: 2 + - uid: 4924 components: - type: Transform - pos: 9.5,7.5 - parent: 89 - - uid: 16121 + pos: -37.5,-7.5 + parent: 2 + - uid: 4925 components: - type: Transform - pos: 10.5,7.5 - parent: 89 - - uid: 16122 + pos: -37.5,-8.5 + parent: 2 + - uid: 4926 components: - type: Transform - pos: 11.5,7.5 - parent: 89 - - uid: 16123 + pos: -37.5,-9.5 + parent: 2 + - uid: 4927 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 16124 + pos: -118.5,4.5 + parent: 2 + - uid: 4928 components: - type: Transform - pos: 13.5,7.5 - parent: 89 - - uid: 16125 + pos: 16.5,-11.5 + parent: 2 + - uid: 4929 components: - type: Transform - pos: 9.5,12.5 - parent: 89 - - uid: 16126 + pos: 16.5,-9.5 + parent: 2 + - uid: 4930 components: - type: Transform - pos: 10.5,12.5 - parent: 89 - - uid: 16127 + pos: 21.5,-9.5 + parent: 2 + - uid: 4931 components: - type: Transform - pos: 0.5,13.5 - parent: 89 - - uid: 16135 + pos: 18.5,-9.5 + parent: 2 + - uid: 4932 components: - type: Transform - pos: 33.5,23.5 - parent: 89 - - uid: 16140 + pos: 19.5,-9.5 + parent: 2 + - uid: 4933 components: - type: Transform - pos: 0.5,11.5 - parent: 89 - - uid: 16141 + pos: 17.5,-9.5 + parent: 2 + - uid: 4934 components: - type: Transform - pos: 0.5,10.5 - parent: 89 - - uid: 16142 + pos: 20.5,-9.5 + parent: 2 + - uid: 4935 components: - type: Transform - pos: 0.5,9.5 - parent: 89 - - uid: 16143 + pos: 16.5,-12.5 + parent: 2 + - uid: 4936 components: - type: Transform - pos: 0.5,8.5 - parent: 89 - - uid: 16144 + pos: 16.5,-10.5 + parent: 2 + - uid: 4937 components: - type: Transform - pos: 0.5,7.5 - parent: 89 - - uid: 16148 + pos: 23.5,-9.5 + parent: 2 + - uid: 4938 components: - type: Transform - pos: -2.5,11.5 - parent: 89 - - uid: 16149 + pos: 25.5,-9.5 + parent: 2 + - uid: 4939 components: - type: Transform - pos: -2.5,10.5 - parent: 89 - - uid: 16150 + pos: 22.5,-9.5 + parent: 2 + - uid: 4940 components: - type: Transform - pos: -2.5,9.5 - parent: 89 - - uid: 16151 + pos: 24.5,-9.5 + parent: 2 + - uid: 4941 components: - type: Transform - pos: -2.5,8.5 - parent: 89 - - uid: 16152 + pos: 26.5,-9.5 + parent: 2 + - uid: 4942 components: - type: Transform - pos: -2.5,7.5 - parent: 89 - - uid: 16153 + pos: 28.5,-9.5 + parent: 2 + - uid: 4943 components: - type: Transform - pos: -2.5,6.5 - parent: 89 - - uid: 16154 + pos: 27.5,-9.5 + parent: 2 + - uid: 4944 components: - type: Transform - pos: -6.5,11.5 - parent: 89 - - uid: 16155 + pos: 30.5,-9.5 + parent: 2 + - uid: 4945 components: - type: Transform - pos: -6.5,10.5 - parent: 89 - - uid: 16156 + pos: 29.5,-9.5 + parent: 2 + - uid: 4946 components: - type: Transform - pos: -6.5,9.5 - parent: 89 - - uid: 16157 + pos: 32.5,-9.5 + parent: 2 + - uid: 4947 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - uid: 16158 + pos: 31.5,-9.5 + parent: 2 + - uid: 4948 components: - type: Transform - pos: -6.5,7.5 - parent: 89 - - uid: 16161 + pos: 34.5,-9.5 + parent: 2 + - uid: 4949 components: - type: Transform - pos: 13.5,27.5 - parent: 89 - - uid: 16181 + pos: 33.5,-9.5 + parent: 2 + - uid: 4950 components: - type: Transform - pos: 10.5,34.5 - parent: 89 - - uid: 16182 + pos: 36.5,-9.5 + parent: 2 + - uid: 4951 components: - type: Transform - pos: 10.5,35.5 - parent: 89 - - uid: 16183 + pos: 35.5,-9.5 + parent: 2 + - uid: 4952 components: - type: Transform - pos: 10.5,36.5 - parent: 89 - - uid: 16184 + pos: 38.5,-9.5 + parent: 2 + - uid: 4953 components: - type: Transform - pos: 9.5,36.5 - parent: 89 - - uid: 16190 + pos: 37.5,-9.5 + parent: 2 + - uid: 4954 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 16191 + pos: 38.5,-10.5 + parent: 2 + - uid: 4955 components: - type: Transform - pos: 13.5,25.5 - parent: 89 - - uid: 16192 + pos: 40.5,26.5 + parent: 2 + - uid: 4956 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 16194 + pos: -117.5,4.5 + parent: 2 + - uid: 4957 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 16195 + pos: -116.5,4.5 + parent: 2 + - uid: 4958 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 16196 + pos: -115.5,4.5 + parent: 2 + - uid: 4959 components: - type: Transform - pos: 13.5,15.5 - parent: 89 - - uid: 16197 + pos: -114.5,4.5 + parent: 2 + - uid: 4960 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 16199 + pos: -113.5,4.5 + parent: 2 + - uid: 4961 components: - type: Transform - pos: 13.5,17.5 - parent: 89 - - uid: 16200 + pos: -112.5,4.5 + parent: 2 + - uid: 4962 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 16239 + pos: -111.5,4.5 + parent: 2 + - uid: 4963 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16337 + pos: -110.5,4.5 + parent: 2 + - uid: 4964 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16338 + pos: -109.5,4.5 + parent: 2 + - uid: 4965 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16339 + pos: 38.5,-13.5 + parent: 2 + - uid: 4966 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16340 + pos: 38.5,-12.5 + parent: 2 + - uid: 4967 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16341 + pos: 51.5,0.5 + parent: 2 + - uid: 4968 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16342 + pos: 52.5,0.5 + parent: 2 + - uid: 4969 components: - type: Transform - pos: 35.5,22.5 - parent: 89 - - uid: 16343 + pos: 52.5,-2.5 + parent: 2 + - uid: 4970 components: - type: Transform - pos: 36.5,22.5 - parent: 89 - - uid: 16347 + pos: 52.5,-3.5 + parent: 2 + - uid: 4971 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16348 + pos: 52.5,-4.5 + parent: 2 + - uid: 4972 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16349 + pos: 52.5,-5.5 + parent: 2 + - uid: 4973 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16350 + pos: 52.5,-6.5 + parent: 2 + - uid: 4974 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16351 + pos: 51.5,5.5 + parent: 2 + - uid: 4975 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16352 + pos: 51.5,6.5 + parent: 2 + - uid: 4976 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16353 + pos: 51.5,7.5 + parent: 2 + - uid: 4977 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16354 + pos: 51.5,8.5 + parent: 2 + - uid: 4978 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16355 + pos: 51.5,9.5 + parent: 2 + - uid: 4979 components: - type: Transform - pos: 25.5,22.5 - parent: 89 - - uid: 16356 + pos: 51.5,10.5 + parent: 2 + - uid: 4980 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 16357 + pos: 51.5,11.5 + parent: 2 + - uid: 4981 components: - type: Transform - pos: 23.5,22.5 - parent: 89 - - uid: 16365 + pos: -128.5,-13.5 + parent: 2 + - uid: 4982 components: - type: Transform - pos: 13.5,13.5 - parent: 89 - - uid: 16382 + pos: -128.5,-14.5 + parent: 2 + - uid: 4983 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16383 + pos: 36.5,27.5 + parent: 2 + - uid: 4984 components: - type: Transform - pos: 20.5,8.5 - parent: 89 - - uid: 16384 + pos: 36.5,26.5 + parent: 2 + - uid: 4985 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 16385 + pos: 37.5,26.5 + parent: 2 + - uid: 4986 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 16386 + pos: 38.5,26.5 + parent: 2 + - uid: 4987 components: - type: Transform - pos: 18.5,7.5 - parent: 89 - - uid: 16387 + pos: 39.5,26.5 + parent: 2 + - uid: 4988 components: - type: Transform - pos: 17.5,7.5 - parent: 89 - - uid: 16388 + pos: 38.5,-11.5 + parent: 2 + - uid: 4989 components: - type: Transform - pos: 19.5,6.5 - parent: 89 - - uid: 16389 + pos: -128.5,-12.5 + parent: 2 + - uid: 4990 components: - type: Transform - pos: 21.5,9.5 - parent: 89 - - uid: 16390 + pos: 38.5,-14.5 + parent: 2 + - uid: 4991 components: - type: Transform - pos: 21.5,10.5 - parent: 89 - - uid: 16391 + pos: 38.5,-15.5 + parent: 2 + - uid: 4992 components: - type: Transform - pos: 21.5,11.5 - parent: 89 - - uid: 16392 + pos: 41.5,26.5 + parent: 2 + - uid: 4993 components: - type: Transform - pos: 20.5,11.5 - parent: 89 - - uid: 16393 + pos: -128.5,-11.5 + parent: 2 + - uid: 4994 components: - type: Transform - pos: 19.5,11.5 - parent: 89 - - uid: 16394 + pos: 50.5,11.5 + parent: 2 + - uid: 4995 components: - type: Transform - pos: 21.5,7.5 - parent: 89 - - uid: 16395 + pos: 49.5,11.5 + parent: 2 + - uid: 4996 components: - type: Transform - pos: 21.5,6.5 - parent: 89 - - uid: 16425 + pos: 48.5,11.5 + parent: 2 + - uid: 4997 components: - type: Transform - pos: -117.5,-11.5 - parent: 89 - - uid: 16426 + pos: 47.5,11.5 + parent: 2 + - uid: 4998 components: - type: Transform - pos: -117.5,-12.5 - parent: 89 - - uid: 16427 + pos: 47.5,12.5 + parent: 2 + - uid: 4999 components: - type: Transform - pos: -117.5,-13.5 - parent: 89 - - uid: 16428 + pos: 47.5,13.5 + parent: 2 + - uid: 5000 components: - type: Transform - pos: -118.5,-13.5 - parent: 89 - - uid: 16429 + pos: 47.5,14.5 + parent: 2 + - uid: 5001 components: - type: Transform - pos: -119.5,-13.5 - parent: 89 - - uid: 16430 + pos: 47.5,15.5 + parent: 2 + - uid: 5002 components: - type: Transform - pos: -120.5,-13.5 - parent: 89 - - uid: 16431 + pos: 47.5,16.5 + parent: 2 + - uid: 5003 components: - type: Transform - pos: -120.5,-12.5 - parent: 89 - - uid: 16432 + pos: 47.5,17.5 + parent: 2 + - uid: 5004 components: - type: Transform - pos: -122.5,-12.5 - parent: 89 - - uid: 16433 + pos: 44.5,19.5 + parent: 2 + - uid: 5005 components: - type: Transform - pos: -121.5,-12.5 - parent: 89 - - uid: 16470 + pos: 44.5,20.5 + parent: 2 + - uid: 5006 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 16471 + pos: 45.5,19.5 + parent: 2 + - uid: 5007 components: - type: Transform - pos: -56.5,8.5 - parent: 89 - - uid: 16472 + pos: 46.5,19.5 + parent: 2 + - uid: 5008 components: - type: Transform - pos: -55.5,8.5 - parent: 89 - - uid: 16473 + pos: 47.5,19.5 + parent: 2 + - uid: 5009 components: - type: Transform - pos: -55.5,9.5 - parent: 89 - - uid: 16474 + pos: 47.5,17.5 + parent: 2 + - uid: 5010 components: - type: Transform - pos: -55.5,10.5 - parent: 89 - - uid: 16475 + pos: -39.5,-2.5 + parent: 2 + - uid: 5011 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 16476 + pos: -39.5,-0.5 + parent: 2 + - uid: 5012 components: - type: Transform - pos: -53.5,10.5 - parent: 89 - - uid: 16477 + pos: -39.5,-1.5 + parent: 2 + - uid: 5013 components: - type: Transform - pos: -52.5,10.5 - parent: 89 - - uid: 16478 + pos: -39.5,-3.5 + parent: 2 + - uid: 5014 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 16479 + pos: -39.5,0.5 + parent: 2 + - uid: 5015 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 16480 + pos: -17.5,3.5 + parent: 2 + - uid: 5016 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 16481 + pos: -39.5,1.5 + parent: 2 + - uid: 5017 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 16482 + pos: -39.5,2.5 + parent: 2 + - uid: 5018 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 16483 + pos: -39.5,3.5 + parent: 2 + - uid: 5019 components: - type: Transform - pos: -46.5,10.5 - parent: 89 - - uid: 16484 + pos: -38.5,3.5 + parent: 2 + - uid: 5020 components: - type: Transform - pos: -45.5,10.5 - parent: 89 - - uid: 16485 + pos: -37.5,3.5 + parent: 2 + - uid: 5021 components: - type: Transform - pos: -44.5,10.5 - parent: 89 - - uid: 16486 + pos: -36.5,3.5 + parent: 2 + - uid: 5022 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 16487 + pos: -35.5,3.5 + parent: 2 + - uid: 5023 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 16488 + pos: -34.5,3.5 + parent: 2 + - uid: 5024 components: - type: Transform - pos: -44.5,7.5 - parent: 89 - - uid: 16489 + pos: -33.5,3.5 + parent: 2 + - uid: 5025 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 16490 + pos: -32.5,3.5 + parent: 2 + - uid: 5026 components: - type: Transform - pos: -50.5,8.5 - parent: 89 - - uid: 16491 + pos: -31.5,3.5 + parent: 2 + - uid: 5027 components: - type: Transform - pos: -50.5,7.5 - parent: 89 - - uid: 16545 + pos: -30.5,3.5 + parent: 2 + - uid: 5028 components: - type: Transform - pos: -63.5,-6.5 - parent: 89 - - uid: 16586 + pos: -29.5,3.5 + parent: 2 + - uid: 5029 components: - type: Transform - pos: -21.5,28.5 - parent: 89 - - uid: 16587 + pos: -28.5,3.5 + parent: 2 + - uid: 5030 components: - type: Transform - pos: -21.5,29.5 - parent: 89 - - uid: 16588 + pos: -27.5,3.5 + parent: 2 + - uid: 5031 components: - type: Transform - pos: -20.5,29.5 - parent: 89 - - uid: 16589 + pos: -26.5,3.5 + parent: 2 + - uid: 5032 components: - type: Transform - pos: -20.5,30.5 - parent: 89 - - uid: 16590 + pos: -22.5,3.5 + parent: 2 + - uid: 5033 components: - type: Transform - pos: -38.5,28.5 - parent: 89 - - uid: 16591 + pos: -21.5,3.5 + parent: 2 + - uid: 5034 components: - type: Transform - pos: -38.5,29.5 - parent: 89 - - uid: 16592 + pos: -20.5,3.5 + parent: 2 + - uid: 5035 components: - type: Transform - pos: -39.5,29.5 - parent: 89 - - uid: 16593 + pos: -19.5,3.5 + parent: 2 + - uid: 5036 components: - type: Transform - pos: -39.5,30.5 - parent: 89 - - uid: 16596 + pos: -18.5,3.5 + parent: 2 + - uid: 5037 components: - type: Transform - pos: -39.5,31.5 - parent: 89 - - uid: 16598 + pos: -16.5,3.5 + parent: 2 + - uid: 5038 components: - type: Transform - pos: -38.5,31.5 - parent: 89 - - uid: 16623 + pos: -15.5,3.5 + parent: 2 + - uid: 5039 components: - type: Transform - pos: 37.5,22.5 - parent: 89 - - uid: 16650 + pos: -14.5,3.5 + parent: 2 + - uid: 5040 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 16651 + pos: -12.5,3.5 + parent: 2 + - uid: 5041 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 16652 + pos: -13.5,3.5 + parent: 2 + - uid: 5042 components: - type: Transform - pos: -12.5,-32.5 - parent: 89 - - uid: 16653 + pos: -9.5,3.5 + parent: 2 + - uid: 5043 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 16654 + pos: -8.5,3.5 + parent: 2 + - uid: 5044 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 16655 + pos: -5.5,3.5 + parent: 2 + - uid: 5045 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 16656 + pos: -4.5,3.5 + parent: 2 + - uid: 5046 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 16659 + pos: 47.5,18.5 + parent: 2 + - uid: 5047 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 16660 + pos: 43.5,-18.5 + parent: 2 + - uid: 5048 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 16661 + pos: 42.5,-18.5 + parent: 2 + - uid: 5049 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 16662 + pos: 41.5,-18.5 + parent: 2 + - uid: 5050 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 16663 + pos: 40.5,-18.5 + parent: 2 + - uid: 5051 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 16664 + pos: 39.5,-18.5 + parent: 2 + - uid: 5052 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 16665 + pos: 38.5,-18.5 + parent: 2 + - uid: 5053 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 16666 + pos: 38.5,-17.5 + parent: 2 + - uid: 5054 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 16667 + pos: 38.5,-16.5 + parent: 2 + - uid: 5055 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 16668 + pos: -23.5,3.5 + parent: 2 + - uid: 5056 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 16669 + pos: -24.5,3.5 + parent: 2 + - uid: 5057 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 16670 + pos: -25.5,3.5 + parent: 2 + - uid: 5058 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 16671 + pos: -83.5,-1.5 + parent: 2 + - uid: 5059 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 16672 + pos: -1.5,2.5 + parent: 2 + - uid: 5060 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 16673 + pos: -40.5,-5.5 + parent: 2 + - uid: 5061 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 16674 + pos: -1.5,-12.5 + parent: 2 + - uid: 5062 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 16675 + pos: -1.5,-13.5 + parent: 2 + - uid: 5063 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 16676 + pos: -1.5,-14.5 + parent: 2 + - uid: 5064 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 16677 + pos: -1.5,-15.5 + parent: 2 + - uid: 5065 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 16678 + pos: -0.5,-15.5 + parent: 2 + - uid: 5066 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 16679 + pos: 0.5,-15.5 + parent: 2 + - uid: 5067 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 16680 + pos: 1.5,-15.5 + parent: 2 + - uid: 5068 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 16681 + pos: 2.5,-15.5 + parent: 2 + - uid: 5069 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 16682 + pos: 3.5,-15.5 + parent: 2 + - uid: 5070 components: - type: Transform - pos: -26.5,-16.5 - parent: 89 - - uid: 16683 + pos: 4.5,-15.5 + parent: 2 + - uid: 5071 components: - type: Transform - pos: -27.5,-16.5 - parent: 89 - - uid: 16684 + pos: 5.5,-15.5 + parent: 2 + - uid: 5072 components: - type: Transform - pos: -28.5,-16.5 - parent: 89 - - uid: 16685 + pos: -128.5,-3.5 + parent: 2 + - uid: 5073 components: - type: Transform - pos: -29.5,-16.5 - parent: 89 - - uid: 16686 + pos: -126.5,-3.5 + parent: 2 + - uid: 5074 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 16687 + pos: 57.5,-17.5 + parent: 2 + - uid: 5075 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 16688 + pos: 57.5,-18.5 + parent: 2 + - uid: 5076 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 16691 + pos: 57.5,-19.5 + parent: 2 + - uid: 5077 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 16694 + pos: 57.5,-20.5 + parent: 2 + - uid: 5078 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 16695 + pos: 57.5,-21.5 + parent: 2 + - uid: 5079 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 16696 + pos: 57.5,-22.5 + parent: 2 + - uid: 5080 components: - type: Transform - pos: -39.5,-15.5 - parent: 89 - - uid: 16697 + pos: 57.5,-23.5 + parent: 2 + - uid: 5081 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 16698 + pos: 57.5,-24.5 + parent: 2 + - uid: 5082 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 16699 + pos: 57.5,-25.5 + parent: 2 + - uid: 5083 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 16700 + pos: 57.5,-26.5 + parent: 2 + - uid: 5084 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 16701 + pos: 57.5,-27.5 + parent: 2 + - uid: 5085 components: - type: Transform - pos: -43.5,-14.5 - parent: 89 - - uid: 16702 + pos: 57.5,-28.5 + parent: 2 + - uid: 5086 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 16703 + pos: 57.5,-29.5 + parent: 2 + - uid: 5087 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 16704 + pos: 57.5,-30.5 + parent: 2 + - uid: 5088 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 16705 + pos: 56.5,-30.5 + parent: 2 + - uid: 5089 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 16706 + pos: 55.5,-30.5 + parent: 2 + - uid: 5090 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 16707 + pos: 54.5,-30.5 + parent: 2 + - uid: 5091 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 16708 + pos: 53.5,-30.5 + parent: 2 + - uid: 5092 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 16709 + pos: 52.5,-30.5 + parent: 2 + - uid: 5093 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 16722 + pos: 51.5,-30.5 + parent: 2 + - uid: 5094 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 16723 + pos: 50.5,-30.5 + parent: 2 + - uid: 5095 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 16724 + pos: 49.5,-30.5 + parent: 2 + - uid: 5096 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 16725 + pos: 48.5,-30.5 + parent: 2 + - uid: 5097 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 16726 + pos: 47.5,-30.5 + parent: 2 + - uid: 5098 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 16727 + pos: 46.5,-30.5 + parent: 2 + - uid: 5099 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 16728 + pos: 45.5,-30.5 + parent: 2 + - uid: 5100 components: - type: Transform - pos: 15.5,-10.5 - parent: 89 - - uid: 16729 + pos: 45.5,-29.5 + parent: 2 + - uid: 5101 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 16730 + pos: 45.5,-28.5 + parent: 2 + - uid: 5102 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 16731 + pos: 45.5,-27.5 + parent: 2 + - uid: 5103 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 16734 + pos: 45.5,-26.5 + parent: 2 + - uid: 5104 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 16735 + pos: 45.5,-25.5 + parent: 2 + - uid: 5105 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 16736 + pos: 45.5,-24.5 + parent: 2 + - uid: 5106 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 16737 + pos: 45.5,-23.5 + parent: 2 + - uid: 5107 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 16738 + pos: 45.5,-22.5 + parent: 2 + - uid: 5108 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 16739 + pos: 45.5,-21.5 + parent: 2 + - uid: 5109 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 16740 + pos: 45.5,-20.5 + parent: 2 + - uid: 5110 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 16741 + pos: 45.5,-19.5 + parent: 2 + - uid: 5111 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 16742 + pos: 45.5,-18.5 + parent: 2 + - uid: 5112 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 16743 + pos: 44.5,-18.5 + parent: 2 + - uid: 5113 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 16744 + pos: 59.5,-16.5 + parent: 2 + - uid: 5114 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 16745 + pos: 60.5,-16.5 + parent: 2 + - uid: 5115 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 16746 + pos: 58.5,-16.5 + parent: 2 + - uid: 5116 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 16747 + pos: 57.5,-16.5 + parent: 2 + - uid: 5117 components: - type: Transform - pos: 6.5,-22.5 - parent: 89 - - uid: 16748 + pos: 60.5,-17.5 + parent: 2 + - uid: 5118 components: - type: Transform - pos: 6.5,-23.5 - parent: 89 - - uid: 16749 + pos: 60.5,-18.5 + parent: 2 + - uid: 5119 components: - type: Transform - pos: 6.5,-24.5 - parent: 89 - - uid: 16750 + pos: 60.5,-18.5 + parent: 2 + - uid: 5120 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 - - uid: 16751 + pos: 61.5,-18.5 + parent: 2 + - uid: 5121 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 16752 + pos: 62.5,-18.5 + parent: 2 + - uid: 5122 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 16753 + pos: 50.5,-37.5 + parent: 2 + - uid: 5123 components: - type: Transform - pos: 4.5,-15.5 - parent: 89 - - uid: 16754 + pos: 62.5,-18.5 + parent: 2 + - uid: 5124 components: - type: Transform - pos: 3.5,-15.5 - parent: 89 - - uid: 17037 + pos: 62.5,-19.5 + parent: 2 + - uid: 5125 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 17089 + pos: 62.5,-20.5 + parent: 2 + - uid: 5126 components: - type: Transform - pos: -91.5,28.5 - parent: 89 - - uid: 17256 + pos: 62.5,-21.5 + parent: 2 + - uid: 5127 components: - type: Transform - pos: -54.5,48.5 - parent: 89 - - uid: 17280 + pos: 62.5,-22.5 + parent: 2 + - uid: 5128 components: - type: Transform - pos: -51.5,47.5 - parent: 89 - - uid: 17282 + pos: 63.5,-24.5 + parent: 2 + - uid: 5129 components: - type: Transform - pos: -52.5,48.5 - parent: 89 - - uid: 17286 + pos: 63.5,-25.5 + parent: 2 + - uid: 5130 components: - type: Transform - pos: -52.5,47.5 - parent: 89 - - uid: 17411 + pos: 63.5,-26.5 + parent: 2 + - uid: 5131 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 17630 + pos: 63.5,-27.5 + parent: 2 + - uid: 5132 components: - type: Transform - pos: 1.5,7.5 - parent: 89 - - uid: 17631 + pos: 63.5,-28.5 + parent: 2 + - uid: 5133 components: - type: Transform - pos: 2.5,7.5 - parent: 89 - - uid: 17633 + pos: 63.5,-29.5 + parent: 2 + - uid: 5134 components: - type: Transform - pos: 3.5,7.5 - parent: 89 - - uid: 17634 + pos: 62.5,-33.5 + parent: 2 + - uid: 5135 components: - type: Transform - pos: 2.5,6.5 - parent: 89 - - uid: 17645 + pos: 62.5,-34.5 + parent: 2 + - uid: 5136 components: - type: Transform - pos: 2.5,8.5 - parent: 89 - - uid: 17976 + pos: 62.5,-35.5 + parent: 2 + - uid: 5137 components: - type: Transform - pos: -66.5,30.5 - parent: 89 - - uid: 18152 + pos: 62.5,-36.5 + parent: 2 + - uid: 5138 components: - type: Transform - pos: 21.5,-5.5 - parent: 89 - - uid: 18270 + pos: 62.5,-37.5 + parent: 2 + - uid: 5139 components: - type: Transform - pos: -85.5,-19.5 - parent: 89 - - uid: 18271 + pos: 61.5,-37.5 + parent: 2 + - uid: 5140 components: - type: Transform - pos: -85.5,-20.5 - parent: 89 - - uid: 18272 + pos: 60.5,-37.5 + parent: 2 + - uid: 5141 components: - type: Transform - pos: -86.5,-20.5 - parent: 89 - - uid: 18273 + pos: 59.5,-37.5 + parent: 2 + - uid: 5142 components: - type: Transform - pos: -87.5,-20.5 - parent: 89 - - uid: 18274 + pos: 58.5,-38.5 + parent: 2 + - uid: 5143 components: - type: Transform - pos: -88.5,-20.5 - parent: 89 - - uid: 18275 + pos: 57.5,-38.5 + parent: 2 + - uid: 5144 components: - type: Transform - pos: -89.5,-20.5 - parent: 89 - - uid: 18276 + pos: 56.5,-38.5 + parent: 2 + - uid: 5145 components: - type: Transform - pos: -90.5,-20.5 - parent: 89 - - uid: 18277 + pos: 55.5,-38.5 + parent: 2 + - uid: 5146 components: - type: Transform - pos: -91.5,-20.5 - parent: 89 - - uid: 18278 + pos: 57.5,-37.5 + parent: 2 + - uid: 5147 components: - type: Transform - pos: -92.5,-20.5 - parent: 89 - - uid: 18279 + pos: 57.5,-36.5 + parent: 2 + - uid: 5148 components: - type: Transform - pos: -93.5,-20.5 - parent: 89 - - uid: 18280 + pos: 57.5,-35.5 + parent: 2 + - uid: 5149 components: - type: Transform - pos: -94.5,-20.5 - parent: 89 - - uid: 18281 + pos: 56.5,-16.5 + parent: 2 + - uid: 5150 components: - type: Transform - pos: -95.5,-20.5 - parent: 89 - - uid: 18282 + pos: 55.5,-16.5 + parent: 2 + - uid: 5151 components: - type: Transform - pos: -96.5,-20.5 - parent: 89 - - uid: 18283 + pos: 53.5,-38.5 + parent: 2 + - uid: 5152 components: - type: Transform - pos: -97.5,-20.5 - parent: 89 - - uid: 18284 + pos: 52.5,-38.5 + parent: 2 + - uid: 5153 components: - type: Transform - pos: -98.5,-20.5 - parent: 89 - - uid: 18285 + pos: 51.5,-38.5 + parent: 2 + - uid: 5154 components: - type: Transform - pos: -99.5,-20.5 - parent: 89 - - uid: 18286 + pos: 50.5,-38.5 + parent: 2 + - uid: 5155 components: - type: Transform - pos: -100.5,-20.5 - parent: 89 - - uid: 18287 + pos: 49.5,-38.5 + parent: 2 + - uid: 5156 components: - type: Transform - pos: -101.5,-20.5 - parent: 89 - - uid: 18296 + pos: 48.5,-38.5 + parent: 2 + - uid: 5157 components: - type: Transform - pos: 40.5,-5.5 - parent: 89 - - uid: 18297 + pos: 50.5,-36.5 + parent: 2 + - uid: 5158 components: - type: Transform - pos: 40.5,-4.5 - parent: 89 - - uid: 18298 + pos: 50.5,-35.5 + parent: 2 + - uid: 5159 components: - type: Transform - pos: 40.5,-3.5 - parent: 89 - - uid: 18299 + pos: 47.5,-38.5 + parent: 2 + - uid: 5160 components: - type: Transform - pos: 41.5,-3.5 - parent: 89 - - uid: 18300 + pos: 46.5,-38.5 + parent: 2 + - uid: 5161 components: - type: Transform - pos: 42.5,-3.5 - parent: 89 - - uid: 18301 + pos: 45.5,-38.5 + parent: 2 + - uid: 5162 components: - type: Transform - pos: 43.5,-3.5 - parent: 89 - - uid: 18302 + pos: 44.5,-38.5 + parent: 2 + - uid: 5163 components: - type: Transform - pos: 43.5,-4.5 - parent: 89 - - uid: 18303 + pos: 43.5,-38.5 + parent: 2 + - uid: 5164 components: - type: Transform - pos: 43.5,-5.5 - parent: 89 - - uid: 18304 + pos: 42.5,-38.5 + parent: 2 + - uid: 5165 components: - type: Transform - pos: 43.5,-6.5 - parent: 89 - - uid: 18305 + pos: 41.5,-38.5 + parent: 2 + - uid: 5166 components: - type: Transform - pos: 43.5,-7.5 - parent: 89 - - uid: 18306 + pos: 40.5,-38.5 + parent: 2 + - uid: 5167 components: - type: Transform - pos: 43.5,-8.5 - parent: 89 - - uid: 18307 + pos: 39.5,-38.5 + parent: 2 + - uid: 5168 components: - type: Transform - pos: 42.5,-8.5 - parent: 89 - - uid: 18308 + pos: 38.5,-38.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 5170 components: - type: Transform - pos: 41.5,-8.5 - parent: 89 - - uid: 18363 + pos: 38.5,-36.5 + parent: 2 + - uid: 5171 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 18366 + pos: 38.5,-35.5 + parent: 2 + - uid: 5172 components: - type: Transform - pos: 42.5,-11.5 - parent: 89 - - uid: 18367 + pos: 37.5,-35.5 + parent: 2 + - uid: 5173 components: - type: Transform - pos: 42.5,-12.5 - parent: 89 - - uid: 18368 + pos: 48.5,-35.5 + parent: 2 + - uid: 5174 components: - type: Transform - pos: 42.5,-13.5 - parent: 89 - - uid: 18369 + pos: 48.5,-36.5 + parent: 2 + - uid: 5175 components: - type: Transform - pos: 42.5,-14.5 - parent: 89 - - uid: 18370 + pos: 48.5,-37.5 + parent: 2 + - uid: 5176 components: - type: Transform - pos: 42.5,-15.5 - parent: 89 - - uid: 18371 + pos: 48.5,-38.5 + parent: 2 + - uid: 5177 components: - type: Transform - pos: 43.5,-12.5 - parent: 89 - - uid: 18372 + pos: 36.5,-35.5 + parent: 2 + - uid: 5178 components: - type: Transform - pos: 44.5,-12.5 - parent: 89 - - uid: 18373 + pos: 36.5,-34.5 + parent: 2 + - uid: 5179 components: - type: Transform - pos: 45.5,-12.5 - parent: 89 - - uid: 18374 + pos: 36.5,-33.5 + parent: 2 + - uid: 5180 components: - type: Transform - pos: 46.5,-12.5 - parent: 89 - - uid: 18375 + pos: 36.5,-32.5 + parent: 2 + - uid: 5181 components: - type: Transform - pos: 47.5,-12.5 - parent: 89 - - uid: 18376 + pos: 36.5,-31.5 + parent: 2 + - uid: 5182 components: - type: Transform - pos: 48.5,-12.5 - parent: 89 - - uid: 18377 + pos: 48.5,-38.5 + parent: 2 + - uid: 5183 components: - type: Transform - pos: 49.5,-12.5 - parent: 89 - - uid: 18378 + pos: 49.5,-38.5 + parent: 2 + - uid: 5184 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18379 + pos: 50.5,-38.5 + parent: 2 + - uid: 5185 components: - type: Transform - pos: 50.5,-12.5 - parent: 89 - - uid: 18380 + pos: 51.5,-38.5 + parent: 2 + - uid: 5186 components: - type: Transform - pos: 51.5,-12.5 - parent: 89 - - uid: 18381 + pos: 52.5,-38.5 + parent: 2 + - uid: 5187 components: - type: Transform - pos: 43.5,-15.5 - parent: 89 - - uid: 18382 + pos: 53.5,-38.5 + parent: 2 + - uid: 5188 components: - type: Transform - pos: 44.5,-15.5 - parent: 89 - - uid: 18383 + pos: 37.5,-31.5 + parent: 2 + - uid: 5189 components: - type: Transform - pos: 45.5,-15.5 - parent: 89 - - uid: 18384 + pos: 37.5,-30.5 + parent: 2 + - uid: 5190 components: - type: Transform - pos: 46.5,-15.5 - parent: 89 - - uid: 18385 + pos: 37.5,-29.5 + parent: 2 + - uid: 5191 components: - type: Transform - pos: 47.5,-15.5 - parent: 89 - - uid: 18386 + pos: 37.5,-28.5 + parent: 2 + - uid: 5192 components: - type: Transform - pos: 48.5,-15.5 - parent: 89 - - uid: 18387 + pos: 42.5,-37.5 + parent: 2 + - uid: 5193 components: - type: Transform - pos: 49.5,-15.5 - parent: 89 - - uid: 18389 + pos: 42.5,-35.5 + parent: 2 + - uid: 5194 components: - type: Transform - pos: 50.5,-15.5 - parent: 89 - - uid: 18391 + pos: 42.5,-36.5 + parent: 2 + - uid: 5195 components: - type: Transform - pos: 51.5,-15.5 - parent: 89 - - uid: 18392 + pos: 42.5,-37.5 + parent: 2 + - uid: 5196 components: - type: Transform - pos: 42.5,-16.5 - parent: 89 - - uid: 18649 + pos: 42.5,-38.5 + parent: 2 + - uid: 5197 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 19495 + pos: 42.5,-36.5 + parent: 2 + - uid: 5198 components: - type: Transform - pos: 55.5,9.5 - parent: 89 - - uid: 19496 + pos: 42.5,-35.5 + parent: 2 + - uid: 5199 components: - type: Transform - pos: 55.5,10.5 - parent: 89 - - uid: 19497 + pos: 42.5,-38.5 + parent: 2 + - uid: 5200 components: - type: Transform - pos: 62.5,8.5 - parent: 89 - - uid: 19499 + pos: 43.5,-38.5 + parent: 2 + - uid: 5201 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 19550 + pos: 44.5,-38.5 + parent: 2 + - uid: 5202 components: - type: Transform - pos: -44.5,11.5 - parent: 89 - - uid: 19589 + pos: 45.5,-38.5 + parent: 2 + - uid: 5203 components: - type: Transform - pos: 31.5,23.5 - parent: 89 - - uid: 19591 + pos: 46.5,-38.5 + parent: 2 + - uid: 5204 components: - type: Transform - pos: 31.5,24.5 - parent: 89 - - uid: 19717 + pos: 41.5,-38.5 + parent: 2 + - uid: 5205 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 19719 + pos: 40.5,-38.5 + parent: 2 + - uid: 5206 components: - type: Transform - pos: 11.5,26.5 - parent: 89 - - uid: 19741 + pos: 39.5,-38.5 + parent: 2 + - uid: 5207 components: - type: Transform - pos: -85.5,37.5 - parent: 89 - - uid: 19742 + pos: 38.5,-38.5 + parent: 2 + - uid: 5208 components: - type: Transform - pos: -86.5,37.5 - parent: 89 - - uid: 19743 + pos: 38.5,-38.5 + parent: 2 + - uid: 5209 components: - type: Transform - pos: -85.5,39.5 - parent: 89 - - uid: 19744 + pos: 38.5,-37.5 + parent: 2 + - uid: 5210 components: - type: Transform - pos: -86.5,39.5 - parent: 89 - - uid: 19745 + pos: 38.5,-36.5 + parent: 2 + - uid: 5211 components: - type: Transform - pos: -87.5,39.5 - parent: 89 - - uid: 19746 + pos: 38.5,-35.5 + parent: 2 + - uid: 5212 components: - type: Transform - pos: -87.5,37.5 - parent: 89 - - uid: 19747 + pos: 59.5,-22.5 + parent: 2 + - uid: 5213 components: - type: Transform - pos: -84.5,46.5 - parent: 89 - - uid: 19748 + pos: 60.5,-22.5 + parent: 2 + - uid: 5214 components: - type: Transform - pos: -84.5,47.5 - parent: 89 - - uid: 19769 + pos: 61.5,-22.5 + parent: 2 + - uid: 5215 components: - type: Transform - pos: -128.5,-11.5 - parent: 89 - - uid: 19771 + pos: -126.5,3.5 + parent: 2 + - uid: 5216 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 19775 + pos: -125.5,4.5 + parent: 2 + - uid: 5217 components: - type: Transform - pos: -128.5,-12.5 - parent: 89 - - uid: 19786 + pos: -125.5,3.5 + parent: 2 + - uid: 5218 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 19787 + pos: -128.5,-2.5 + parent: 2 + - uid: 5219 components: - type: Transform - pos: 8.5,26.5 - parent: 89 - - uid: 19885 + pos: -119.5,14.5 + parent: 2 + - uid: 5220 components: - type: Transform - pos: -15.5,23.5 - parent: 89 - - uid: 19978 + pos: 62.5,9.5 + parent: 2 + - uid: 5221 components: - type: Transform - pos: 24.5,29.5 - parent: 89 - - uid: 19979 + pos: 63.5,8.5 + parent: 2 + - uid: 5222 components: - type: Transform - pos: 24.5,30.5 - parent: 89 - - uid: 19980 + pos: 63.5,5.5 + parent: 2 + - uid: 5223 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 19981 + pos: 62.5,5.5 + parent: 2 + - uid: 5224 components: - type: Transform - pos: 24.5,32.5 - parent: 89 - - uid: 19982 + pos: 62.5,4.5 + parent: 2 + - uid: 5225 components: - type: Transform - pos: 24.5,33.5 - parent: 89 - - uid: 19983 + pos: 64.5,8.5 + parent: 2 + - uid: 5226 components: - type: Transform - pos: 24.5,34.5 - parent: 89 - - uid: 19984 + pos: 66.5,10.5 + parent: 2 + - uid: 5227 components: - type: Transform - pos: 24.5,35.5 - parent: 89 - - uid: 19985 + pos: 66.5,13.5 + parent: 2 + - uid: 5228 components: - type: Transform - pos: 24.5,36.5 - parent: 89 - - uid: 19986 + pos: 63.5,10.5 + parent: 2 + - uid: 5229 components: - type: Transform - pos: 24.5,37.5 - parent: 89 - - uid: 19987 + pos: 66.5,12.5 + parent: 2 + - uid: 5230 components: - type: Transform - pos: 24.5,38.5 - parent: 89 - - uid: 19988 + pos: 63.5,3.5 + parent: 2 + - uid: 5231 components: - type: Transform - pos: 24.5,39.5 - parent: 89 - - uid: 19989 + pos: 65.5,10.5 + parent: 2 + - uid: 5232 components: - type: Transform - pos: 24.5,40.5 - parent: 89 - - uid: 19990 + pos: 66.5,11.5 + parent: 2 + - uid: 5233 components: - type: Transform - pos: 23.5,40.5 - parent: 89 - - uid: 19991 + pos: 64.5,1.5 + parent: 2 + - uid: 5234 components: - type: Transform - pos: 23.5,41.5 - parent: 89 - - uid: 19992 + pos: 64.5,3.5 + parent: 2 + - uid: 5235 components: - type: Transform - pos: 23.5,42.5 - parent: 89 - - uid: 19993 + pos: 62.5,8.5 + parent: 2 + - uid: 5236 components: - type: Transform - pos: 24.5,42.5 - parent: 89 - - uid: 20027 + pos: 62.5,3.5 + parent: 2 + - uid: 5237 components: - type: Transform - pos: 23.5,35.5 - parent: 89 - - uid: 20028 + pos: 64.5,-1.5 + parent: 2 + - uid: 5238 components: - type: Transform - pos: 25.5,35.5 - parent: 89 - - uid: 20029 + pos: 64.5,2.5 + parent: 2 + - uid: 5239 components: - type: Transform - pos: 26.5,35.5 - parent: 89 - - uid: 20397 + pos: 65.5,-1.5 + parent: 2 + - uid: 5240 components: - type: Transform - pos: 35.5,26.5 - parent: 89 - - uid: 20398 + pos: 64.5,0.5 + parent: 2 + - uid: 5241 components: - type: Transform - pos: 36.5,26.5 - parent: 89 - - uid: 20399 + pos: 66.5,-1.5 + parent: 2 + - uid: 5242 components: - type: Transform - pos: 37.5,26.5 - parent: 89 - - uid: 20402 + pos: 66.5,-2.5 + parent: 2 + - uid: 5243 components: - type: Transform - pos: 38.5,26.5 - parent: 89 - - uid: 20544 + pos: 65.5,-4.5 + parent: 2 + - uid: 5244 components: - type: Transform - pos: -128.5,-13.5 - parent: 89 - - uid: 20545 + pos: 65.5,-5.5 + parent: 2 + - uid: 5245 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 - - uid: 20546 + pos: 57.5,-7.5 + parent: 2 + - uid: 5246 components: - type: Transform - pos: -128.5,-15.5 - parent: 89 - - uid: 20556 + pos: 62.5,-4.5 + parent: 2 + - uid: 5247 components: - type: Transform - pos: -129.5,-15.5 - parent: 89 - - uid: 20557 + pos: 59.5,-4.5 + parent: 2 + - uid: 5248 components: - type: Transform - pos: -127.5,-15.5 - parent: 89 - - uid: 20827 + pos: 64.5,7.5 + parent: 2 + - uid: 5249 components: - type: Transform - pos: 18.5,15.5 - parent: 89 - - uid: 20834 + pos: 64.5,6.5 + parent: 2 + - uid: 5250 components: - type: Transform - pos: -7.5,16.5 - parent: 89 - - uid: 20836 + pos: 61.5,-4.5 + parent: 2 + - uid: 5251 components: - type: Transform - pos: -6.5,16.5 - parent: 89 - - uid: 20837 + pos: 59.5,-7.5 + parent: 2 + - uid: 5252 components: - type: Transform - pos: -5.5,16.5 - parent: 89 - - uid: 20838 + pos: 62.5,0.5 + parent: 2 + - uid: 5253 components: - type: Transform - pos: -5.5,17.5 - parent: 89 - - uid: 20839 + pos: 62.5,-1.5 + parent: 2 + - uid: 5254 components: - type: Transform - pos: -5.5,18.5 - parent: 89 - - uid: 20840 + pos: 63.5,-1.5 + parent: 2 + - uid: 5255 components: - type: Transform - pos: -6.5,18.5 - parent: 89 - - uid: 20841 + pos: 66.5,-3.5 + parent: 2 + - uid: 5256 components: - type: Transform - pos: -7.5,18.5 - parent: 89 - - uid: 20842 + pos: 66.5,-4.5 + parent: 2 + - uid: 5257 components: - type: Transform - pos: -8.5,18.5 - parent: 89 - - uid: 20843 + pos: 64.5,-5.5 + parent: 2 + - uid: 5258 components: - type: Transform - pos: -9.5,18.5 - parent: 89 - - uid: 20844 + pos: 62.5,-5.5 + parent: 2 + - uid: 5259 components: - type: Transform - pos: -10.5,18.5 - parent: 89 - - uid: 20845 + pos: 56.5,-7.5 + parent: 2 + - uid: 5260 components: - type: Transform - pos: -4.5,18.5 - parent: 89 - - uid: 20846 + pos: 59.5,-6.5 + parent: 2 + - uid: 5261 components: - type: Transform - pos: -3.5,18.5 - parent: 89 - - uid: 20847 + pos: 59.5,-5.5 + parent: 2 + - uid: 5262 components: - type: Transform - pos: -2.5,18.5 - parent: 89 - - uid: 20848 + pos: 60.5,-4.5 + parent: 2 + - uid: 5263 components: - type: Transform - pos: -1.5,18.5 - parent: 89 - - uid: 20849 + pos: 55.5,-7.5 + parent: 2 + - uid: 5264 components: - type: Transform - pos: -0.5,18.5 - parent: 89 - - uid: 20850 + pos: 54.5,-7.5 + parent: 2 + - uid: 5265 components: - type: Transform - pos: -0.5,17.5 - parent: 89 - - uid: 20851 + pos: 63.5,0.5 + parent: 2 + - uid: 5266 components: - type: Transform - pos: -0.5,16.5 - parent: 89 - - uid: 20852 + pos: 63.5,-5.5 + parent: 2 + - uid: 5267 components: - type: Transform - pos: -46.5,24.5 - parent: 89 - - uid: 20933 + pos: 48.5,18.5 + parent: 2 + - uid: 5268 components: - type: Transform - pos: 37.5,19.5 - parent: 89 - - uid: 20937 + pos: 64.5,5.5 + parent: 2 + - uid: 5269 components: - type: Transform - pos: 38.5,19.5 - parent: 89 - - uid: 20938 + pos: 58.5,-7.5 + parent: 2 + - uid: 5270 components: - type: Transform - pos: 39.5,19.5 - parent: 89 - - uid: 20939 + pos: 58.5,16.5 + parent: 2 + - uid: 5271 components: - type: Transform - pos: 40.5,19.5 - parent: 89 - - uid: 20940 + pos: 59.5,16.5 + parent: 2 + - uid: 5272 components: - type: Transform - pos: 0.5,16.5 - parent: 89 - - uid: 20941 + pos: 59.5,15.5 + parent: 2 + - uid: 5273 components: - type: Transform - pos: 41.5,19.5 - parent: 89 - - uid: 20944 + pos: 60.5,13.5 + parent: 2 + - uid: 5274 components: - type: Transform - pos: 42.5,19.5 - parent: 89 - - uid: 20959 + pos: 61.5,13.5 + parent: 2 + - uid: 5275 components: - type: Transform - pos: 1.5,16.5 - parent: 89 - - uid: 20960 + pos: 62.5,13.5 + parent: 2 + - uid: 5276 components: - type: Transform - pos: 2.5,16.5 - parent: 89 - - uid: 20961 + pos: 63.5,14.5 + parent: 2 + - uid: 5277 components: - type: Transform - pos: -0.5,19.5 - parent: 89 - - uid: 20971 + pos: 62.5,14.5 + parent: 2 + - uid: 5278 components: - type: Transform - pos: -0.5,20.5 - parent: 89 - - uid: 20975 + pos: 65.5,14.5 + parent: 2 + - uid: 5279 components: - type: Transform - pos: 0.5,20.5 - parent: 89 - - uid: 20976 + pos: 65.5,13.5 + parent: 2 + - uid: 5280 components: - type: Transform - pos: 1.5,20.5 - parent: 89 - - uid: 21002 + pos: 49.5,18.5 + parent: 2 + - uid: 5281 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 21003 + pos: 64.5,14.5 + parent: 2 + - uid: 5282 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21004 + pos: 52.5,14.5 + parent: 2 + - uid: 5283 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 21005 + pos: 47.5,20.5 + parent: 2 + - uid: 5284 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 21006 + pos: 52.5,11.5 + parent: 2 + - uid: 5285 components: - type: Transform - pos: 47.5,20.5 - parent: 89 - - uid: 21007 + pos: 52.5,12.5 + parent: 2 + - uid: 5286 components: - type: Transform - pos: 48.5,20.5 - parent: 89 - - uid: 21266 + pos: 52.5,13.5 + parent: 2 + - uid: 5287 components: - type: Transform - pos: 2.5,20.5 - parent: 89 - - uid: 21303 + pos: 48.5,21.5 + parent: 2 + - uid: 5288 components: - type: Transform - pos: -1.5,16.5 - parent: 89 - - uid: 21304 + pos: 47.5,21.5 + parent: 2 + - uid: 5289 components: - type: Transform - pos: -1.5,20.5 - parent: 89 - - uid: 21305 + pos: 55.5,16.5 + parent: 2 + - uid: 5290 components: - type: Transform - pos: -5.5,19.5 - parent: 89 - - uid: 21306 + pos: 59.5,14.5 + parent: 2 + - uid: 5291 components: - type: Transform - pos: -5.5,20.5 - parent: 89 - - uid: 21317 + pos: 52.5,16.5 + parent: 2 + - uid: 5292 components: - type: Transform - pos: 50.5,-30.5 - parent: 89 - - uid: 21394 + pos: 53.5,16.5 + parent: 2 + - uid: 5293 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 21402 + pos: 54.5,16.5 + parent: 2 + - uid: 5294 components: - type: Transform - pos: 15.5,19.5 - parent: 89 - - uid: 21406 + pos: 52.5,15.5 + parent: 2 + - uid: 5295 components: - type: Transform - pos: 14.5,20.5 - parent: 89 - - uid: 21446 + pos: 57.5,16.5 + parent: 2 + - uid: 5296 components: - type: Transform - pos: 37.5,21.5 - parent: 89 - - uid: 21447 + pos: 62.5,-0.5 + parent: 2 + - uid: 5297 components: - type: Transform - pos: 37.5,20.5 - parent: 89 - - uid: 21472 + pos: 56.5,16.5 + parent: 2 + - uid: 5298 components: - type: Transform - pos: 14.5,21.5 - parent: 89 - - uid: 21476 + pos: -0.5,2.5 + parent: 2 + - uid: 5299 components: - type: Transform - pos: 14.5,22.5 - parent: 89 - - uid: 21477 + pos: 54.5,-6.5 + parent: 2 + - uid: 5300 components: - type: Transform - pos: 15.5,22.5 - parent: 89 - - uid: 21481 + pos: 53.5,-6.5 + parent: 2 + - uid: 5301 components: - type: Transform - pos: 16.5,22.5 - parent: 89 - - uid: 21482 + pos: -0.5,-0.5 + parent: 2 + - uid: 5302 components: - type: Transform - pos: 17.5,22.5 - parent: 89 - - uid: 21483 + pos: -0.5,-2.5 + parent: 2 + - uid: 5303 components: - type: Transform - pos: 18.5,22.5 - parent: 89 - - uid: 21509 + pos: -0.5,-6.5 + parent: 2 + - uid: 5304 components: - type: Transform - pos: -45.5,24.5 - parent: 89 - - uid: 21510 + pos: -0.5,-3.5 + parent: 2 + - uid: 5305 components: - type: Transform - pos: -44.5,24.5 - parent: 89 - - uid: 21511 + pos: -0.5,-12.5 + parent: 2 + - uid: 5306 components: - type: Transform - pos: -43.5,24.5 - parent: 89 - - uid: 21512 + pos: -0.5,-8.5 + parent: 2 + - uid: 5307 components: - type: Transform - pos: -42.5,24.5 - parent: 89 - - uid: 21526 + pos: -0.5,-7.5 + parent: 2 + - uid: 5308 components: - type: Transform - pos: 19.5,22.5 - parent: 89 - - uid: 21527 + pos: -0.5,-10.5 + parent: 2 + - uid: 5309 components: - type: Transform - pos: 13.5,22.5 - parent: 89 - - uid: 21528 + pos: -0.5,-1.5 + parent: 2 + - uid: 5310 components: - type: Transform - pos: 12.5,22.5 - parent: 89 - - uid: 21530 + pos: -0.5,-9.5 + parent: 2 + - uid: 5311 components: - type: Transform - pos: 11.5,22.5 - parent: 89 - - uid: 21531 + pos: -0.5,-4.5 + parent: 2 + - uid: 5312 components: - type: Transform - pos: 10.5,22.5 - parent: 89 - - uid: 21532 + pos: -0.5,-11.5 + parent: 2 + - uid: 5313 components: - type: Transform - pos: 9.5,22.5 - parent: 89 - - uid: 21533 + pos: -0.5,-5.5 + parent: 2 + - uid: 5314 components: - type: Transform - pos: 8.5,22.5 - parent: 89 - - uid: 21534 + pos: 62.5,10.5 + parent: 2 + - uid: 5315 components: - type: Transform - pos: 7.5,22.5 - parent: 89 - - uid: 21535 + pos: 64.5,10.5 + parent: 2 + - uid: 5316 components: - type: Transform - pos: 6.5,22.5 - parent: 89 - - uid: 21537 + pos: 59.5,13.5 + parent: 2 + - uid: 5317 components: - type: Transform - pos: 6.5,23.5 - parent: 89 - - uid: 21538 + pos: 49.5,17.5 + parent: 2 + - uid: 5318 components: - type: Transform - pos: 11.5,23.5 - parent: 89 - - uid: 21539 + pos: -0.5,1.5 + parent: 2 + - uid: 5319 components: - type: Transform - pos: 6.5,21.5 - parent: 89 - - uid: 21540 + pos: -0.5,0.5 + parent: 2 + - uid: 5320 components: - type: Transform - pos: 18.5,16.5 - parent: 89 - - uid: 21607 + pos: 52.5,-0.5 + parent: 2 + - uid: 5321 components: - type: Transform - pos: 13.5,23.5 - parent: 89 - - uid: 21639 + pos: 15.5,-12.5 + parent: 2 + - uid: 5322 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21640 + pos: 16.5,-13.5 + parent: 2 + - uid: 5323 components: - type: Transform - pos: 1.5,-2.5 - parent: 21627 - - uid: 21641 + pos: -11.5,-27.5 + parent: 2 + - uid: 5324 components: - type: Transform - pos: 0.5,-2.5 - parent: 21627 - - uid: 21642 + pos: -40.5,-9.5 + parent: 2 + - uid: 5325 components: - type: Transform - pos: -0.5,-2.5 - parent: 21627 - - uid: 21643 + pos: -40.5,-10.5 + parent: 2 + - uid: 5326 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - uid: 21644 + pos: -40.5,-7.5 + parent: 2 + - uid: 5327 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 21645 + pos: -12.5,-24.5 + parent: 2 + - uid: 5328 components: - type: Transform - pos: -0.5,-0.5 - parent: 21627 - - uid: 21646 + pos: -40.5,-8.5 + parent: 2 + - uid: 5329 components: - type: Transform - pos: 1.5,-0.5 - parent: 21627 - - uid: 21647 + pos: -40.5,-11.5 + parent: 2 + - uid: 5330 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 - - uid: 21648 + pos: -40.5,-12.5 + parent: 2 + - uid: 5331 components: - type: Transform - pos: 0.5,-4.5 - parent: 21627 - - uid: 21649 + pos: -39.5,-12.5 + parent: 2 + - uid: 5332 components: - type: Transform - pos: 0.5,-5.5 - parent: 21627 - - uid: 21650 + pos: -38.5,-12.5 + parent: 2 + - uid: 5333 components: - type: Transform - pos: 0.5,-6.5 - parent: 21627 - - uid: 21651 + pos: -37.5,-12.5 + parent: 2 + - uid: 5334 components: - type: Transform - pos: -0.5,-4.5 - parent: 21627 - - uid: 21652 + pos: -36.5,-12.5 + parent: 2 + - uid: 5335 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21653 + pos: -35.5,-12.5 + parent: 2 + - uid: 5336 components: - type: Transform - pos: -0.5,-6.5 - parent: 21627 - - uid: 21654 + pos: -34.5,-12.5 + parent: 2 + - uid: 5337 components: - type: Transform - pos: 1.5,-6.5 - parent: 21627 - - uid: 21815 + pos: -33.5,-12.5 + parent: 2 + - uid: 5338 components: - type: Transform - pos: 51.5,-26.5 - parent: 89 - - uid: 22072 + pos: -32.5,-12.5 + parent: 2 + - uid: 5339 components: - type: Transform - pos: -132.5,-8.5 - parent: 89 - - uid: 22073 + pos: -31.5,-12.5 + parent: 2 + - uid: 5340 components: - type: Transform - pos: -132.5,-9.5 - parent: 89 - - uid: 22074 + pos: -30.5,-12.5 + parent: 2 + - uid: 5341 components: - type: Transform - pos: -132.5,-10.5 - parent: 89 - - uid: 22075 + pos: -29.5,-12.5 + parent: 2 + - uid: 5342 components: - type: Transform - pos: -132.5,-11.5 - parent: 89 - - uid: 22076 + pos: -28.5,-12.5 + parent: 2 + - uid: 5343 components: - type: Transform - pos: -132.5,-12.5 - parent: 89 - - uid: 22077 + pos: -27.5,-12.5 + parent: 2 + - uid: 5344 components: - type: Transform - pos: -133.5,-7.5 - parent: 89 - - uid: 22078 + pos: -26.5,-12.5 + parent: 2 + - uid: 5345 components: - type: Transform - pos: -134.5,-7.5 - parent: 89 - - uid: 22079 + pos: -25.5,-12.5 + parent: 2 + - uid: 5346 components: - type: Transform - pos: -135.5,-7.5 - parent: 89 - - uid: 22080 + pos: -24.5,-12.5 + parent: 2 + - uid: 5347 components: - type: Transform - pos: -131.5,-7.5 - parent: 89 - - uid: 22216 + pos: -23.5,-12.5 + parent: 2 + - uid: 5348 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 - - uid: 22260 + pos: -22.5,-12.5 + parent: 2 + - uid: 5349 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 22261 + pos: -21.5,-12.5 + parent: 2 + - uid: 5350 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22262 + pos: -20.5,-12.5 + parent: 2 + - uid: 5351 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22263 + pos: -19.5,-12.5 + parent: 2 + - uid: 5352 components: - type: Transform - pos: 38.5,-19.5 - parent: 89 - - uid: 22264 + pos: -18.5,-12.5 + parent: 2 + - uid: 5353 components: - type: Transform - pos: 38.5,-20.5 - parent: 89 - - uid: 22265 + pos: -17.5,-12.5 + parent: 2 + - uid: 5354 components: - type: Transform - pos: 38.5,-20.5 - parent: 89 - - uid: 22266 + pos: -16.5,-12.5 + parent: 2 + - uid: 5355 components: - type: Transform - pos: 37.5,-20.5 - parent: 89 - - uid: 22267 + pos: -15.5,-12.5 + parent: 2 + - uid: 5356 components: - type: Transform - pos: 36.5,-20.5 - parent: 89 - - uid: 22268 + pos: -14.5,-12.5 + parent: 2 + - uid: 5357 components: - type: Transform - pos: 35.5,-20.5 - parent: 89 - - uid: 22269 + pos: -13.5,-12.5 + parent: 2 + - uid: 5358 components: - type: Transform - pos: 39.5,-20.5 - parent: 89 - - uid: 22270 + pos: -12.5,-12.5 + parent: 2 + - uid: 5359 components: - type: Transform - pos: 39.5,-21.5 - parent: 89 - - uid: 22271 + pos: -11.5,-12.5 + parent: 2 + - uid: 5360 components: - type: Transform - pos: 39.5,-22.5 - parent: 89 - - uid: 22272 + pos: -10.5,-12.5 + parent: 2 + - uid: 5361 components: - type: Transform - pos: 39.5,-23.5 - parent: 89 - - uid: 22273 + pos: -9.5,-12.5 + parent: 2 + - uid: 5362 components: - type: Transform - pos: 39.5,-24.5 - parent: 89 - - uid: 22274 + pos: -8.5,-12.5 + parent: 2 + - uid: 5363 components: - type: Transform - pos: 39.5,-25.5 - parent: 89 - - uid: 22275 + pos: -7.5,-12.5 + parent: 2 + - uid: 5364 components: - type: Transform - pos: 39.5,-26.5 - parent: 89 - - uid: 22276 + pos: -6.5,-12.5 + parent: 2 + - uid: 5365 components: - type: Transform - pos: 40.5,-20.5 - parent: 89 - - uid: 22277 + pos: -5.5,-12.5 + parent: 2 + - uid: 5366 components: - type: Transform - pos: 41.5,-20.5 - parent: 89 - - uid: 22278 + pos: -4.5,-12.5 + parent: 2 + - uid: 5367 components: - type: Transform - pos: 42.5,-20.5 - parent: 89 - - uid: 22279 + pos: -3.5,-12.5 + parent: 2 + - uid: 5368 components: - type: Transform - pos: 43.5,-20.5 - parent: 89 - - uid: 22280 + pos: -2.5,-12.5 + parent: 2 + - uid: 5369 components: - type: Transform - pos: 44.5,-20.5 - parent: 89 - - uid: 22281 + pos: -121.5,2.5 + parent: 2 + - uid: 5370 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22282 + pos: -121.5,1.5 + parent: 2 + - uid: 5371 components: - type: Transform - pos: 42.5,-19.5 - parent: 89 - - uid: 22283 + pos: -121.5,-0.5 + parent: 2 + - uid: 5372 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 22284 + pos: -121.5,6.5 + parent: 2 + - uid: 5373 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 22285 + pos: -123.5,14.5 + parent: 2 + - uid: 5374 components: - type: Transform - pos: 39.5,-17.5 - parent: 89 - - uid: 22286 + pos: -123.5,16.5 + parent: 2 + - uid: 5375 components: - type: Transform - pos: 39.5,-16.5 - parent: 89 - - uid: 22287 + pos: -129.5,14.5 + parent: 2 + - uid: 5376 components: - type: Transform - pos: 39.5,-15.5 - parent: 89 - - uid: 22288 + pos: -129.5,15.5 + parent: 2 + - uid: 5377 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22289 + pos: -129.5,16.5 + parent: 2 + - uid: 5378 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22290 + pos: -130.5,16.5 + parent: 2 + - uid: 5379 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22291 + pos: -118.5,9.5 + parent: 2 + - uid: 5380 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 - - uid: 22292 + pos: -119.5,9.5 + parent: 2 + - uid: 5381 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 - - uid: 22293 + pos: -117.5,9.5 + parent: 2 + - uid: 5382 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 22294 + pos: -82.5,-2.5 + parent: 2 + - uid: 5383 components: - type: Transform - pos: 49.5,-30.5 - parent: 89 - - uid: 22295 + pos: -125.5,17.5 + parent: 2 + - uid: 5384 components: - type: Transform - pos: 45.5,-28.5 - parent: 89 - - uid: 22296 + pos: -124.5,17.5 + parent: 2 + - uid: 5385 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22297 + pos: -121.5,14.5 + parent: 2 + - uid: 5386 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22298 + pos: -130.5,13.5 + parent: 2 + - uid: 5387 components: - type: Transform - pos: 44.5,-29.5 - parent: 89 - - uid: 22299 + pos: -120.5,14.5 + parent: 2 + - uid: 5388 components: - type: Transform - pos: 43.5,-29.5 - parent: 89 - - uid: 22300 + pos: -123.5,17.5 + parent: 2 + - uid: 5389 components: - type: Transform - pos: 42.5,-29.5 - parent: 89 - - uid: 22301 + pos: -121.5,16.5 + parent: 2 + - uid: 5390 components: - type: Transform - pos: 41.5,-29.5 - parent: 89 - - uid: 22302 + pos: -122.5,17.5 + parent: 2 + - uid: 5391 components: - type: Transform - pos: 40.5,-29.5 - parent: 89 - - uid: 22303 + pos: -111.5,20.5 + parent: 2 + - uid: 5392 components: - type: Transform - pos: 44.5,-25.5 - parent: 89 - - uid: 22304 + pos: -121.5,-1.5 + parent: 2 + - uid: 5393 components: - type: Transform - pos: 43.5,-25.5 - parent: 89 - - uid: 22305 + pos: -121.5,7.5 + parent: 2 + - uid: 5394 components: - type: Transform - pos: 42.5,-25.5 - parent: 89 - - uid: 22306 + pos: -116.5,20.5 + parent: 2 + - uid: 5395 components: - type: Transform - pos: 44.5,-22.5 - parent: 89 - - uid: 22307 + pos: -113.5,21.5 + parent: 2 + - uid: 5396 components: - type: Transform - pos: 43.5,-22.5 - parent: 89 - - uid: 22308 + pos: -116.5,19.5 + parent: 2 + - uid: 5397 components: - type: Transform - pos: 42.5,-22.5 - parent: 89 - - uid: 22316 + pos: -114.5,21.5 + parent: 2 + - uid: 5398 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 22317 + pos: -115.5,17.5 + parent: 2 + - uid: 5399 components: - type: Transform - pos: 45.5,-31.5 - parent: 89 - - uid: 22318 + pos: -113.5,17.5 + parent: 2 + - uid: 5400 components: - type: Transform - pos: 45.5,-32.5 - parent: 89 - - uid: 22319 + pos: -114.5,25.5 + parent: 2 + - uid: 5401 components: - type: Transform - pos: 45.5,-33.5 - parent: 89 - - uid: 22320 + pos: -112.5,22.5 + parent: 2 + - uid: 5402 components: - type: Transform - pos: 44.5,-32.5 - parent: 89 - - uid: 22321 + pos: -117.5,26.5 + parent: 2 + - uid: 5403 components: - type: Transform - pos: 43.5,-32.5 - parent: 89 - - uid: 22322 + pos: -118.5,25.5 + parent: 2 + - uid: 5404 components: - type: Transform - pos: 42.5,-32.5 - parent: 89 - - uid: 22323 + pos: -116.5,26.5 + parent: 2 + - uid: 5405 components: - type: Transform - pos: 41.5,-32.5 - parent: 89 - - uid: 22324 + pos: -118.5,24.5 + parent: 2 + - uid: 5406 components: - type: Transform - pos: 40.5,-32.5 - parent: 89 - - uid: 22325 + pos: -117.5,25.5 + parent: 2 + - uid: 5407 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22326 + pos: -116.5,18.5 + parent: 2 + - uid: 5408 components: - type: Transform - pos: 51.5,-23.5 - parent: 89 - - uid: 22327 + pos: -113.5,25.5 + parent: 2 + - uid: 5409 components: - type: Transform - pos: 50.5,-23.5 - parent: 89 - - uid: 22328 + pos: -114.5,26.5 + parent: 2 + - uid: 5410 components: - type: Transform - pos: 49.5,-23.5 - parent: 89 - - uid: 22329 + pos: -115.5,26.5 + parent: 2 + - uid: 5411 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22330 + pos: -112.5,17.5 + parent: 2 + - uid: 5412 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 - - uid: 22331 + pos: -114.5,17.5 + parent: 2 + - uid: 5413 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22332 + pos: -116.5,17.5 + parent: 2 + - uid: 5414 components: - type: Transform - pos: 48.5,-22.5 - parent: 89 - - uid: 22333 + pos: -116.5,21.5 + parent: 2 + - uid: 5415 components: - type: Transform - pos: 48.5,-21.5 - parent: 89 - - uid: 22334 + pos: -115.5,21.5 + parent: 2 + - uid: 5416 components: - type: Transform - pos: 48.5,-20.5 - parent: 89 - - uid: 22335 + pos: -122.5,-1.5 + parent: 2 + - uid: 5417 components: - type: Transform - pos: 48.5,-19.5 - parent: 89 - - uid: 22336 + pos: -123.5,-1.5 + parent: 2 + - uid: 5418 components: - type: Transform - pos: 48.5,-18.5 - parent: 89 - - uid: 22337 + pos: -112.5,21.5 + parent: 2 + - uid: 5419 components: - type: Transform - pos: 51.5,-22.5 - parent: 89 - - uid: 22338 + pos: -125.5,16.5 + parent: 2 + - uid: 5420 components: - type: Transform - pos: 51.5,-21.5 - parent: 89 - - uid: 22339 + pos: -123.5,15.5 + parent: 2 + - uid: 5421 components: - type: Transform - pos: 51.5,-20.5 - parent: 89 - - uid: 22340 + pos: -124.5,15.5 + parent: 2 + - uid: 5422 components: - type: Transform - pos: 51.5,-19.5 - parent: 89 - - uid: 22341 + pos: -121.5,0.5 + parent: 2 + - uid: 5423 components: - type: Transform - pos: 51.5,-18.5 - parent: 89 - - uid: 22342 + pos: -112.5,20.5 + parent: 2 + - uid: 5424 components: - type: Transform - pos: 52.5,-20.5 - parent: 89 - - uid: 22343 + pos: -125.5,15.5 + parent: 2 + - uid: 5425 components: - type: Transform - pos: 53.5,-20.5 - parent: 89 - - uid: 22344 + pos: -114.5,9.5 + parent: 2 + - uid: 5426 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22346 + pos: -115.5,9.5 + parent: 2 + - uid: 5427 components: - type: Transform - pos: 52.5,-25.5 - parent: 89 - - uid: 22348 + pos: -112.5,9.5 + parent: 2 + - uid: 5428 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22349 + pos: -113.5,9.5 + parent: 2 + - uid: 5429 components: - type: Transform - pos: 52.5,-22.5 - parent: 89 - - uid: 22350 + pos: -102.5,25.5 + parent: 2 + - uid: 5430 components: - type: Transform - pos: 53.5,-25.5 - parent: 89 - - uid: 22352 + pos: -103.5,25.5 + parent: 2 + - uid: 5431 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22353 + pos: -104.5,25.5 + parent: 2 + - uid: 5432 components: - type: Transform - pos: 51.5,-29.5 - parent: 89 - - uid: 22354 + pos: -105.5,25.5 + parent: 2 + - uid: 5433 components: - type: Transform - pos: 54.5,-25.5 - parent: 89 - - uid: 22356 + pos: -106.5,25.5 + parent: 2 + - uid: 5434 components: - type: Transform - pos: 51.5,-27.5 - parent: 89 - - uid: 22357 + pos: -107.5,25.5 + parent: 2 + - uid: 5435 components: - type: Transform - pos: 51.5,-28.5 - parent: 89 - - uid: 22358 + pos: -108.5,25.5 + parent: 2 + - uid: 5436 components: - type: Transform - pos: 55.5,-25.5 - parent: 89 - - uid: 22360 + pos: -109.5,25.5 + parent: 2 + - uid: 5437 components: - type: Transform - pos: 51.5,-24.5 - parent: 89 - - uid: 22362 + pos: -110.5,25.5 + parent: 2 + - uid: 5438 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22363 + pos: -111.5,25.5 + parent: 2 + - uid: 5439 components: - type: Transform - pos: 50.5,-25.5 - parent: 89 - - uid: 22364 + pos: -112.5,25.5 + parent: 2 + - uid: 5440 components: - type: Transform - pos: 49.5,-25.5 - parent: 89 - - uid: 22365 + pos: -112.5,23.5 + parent: 2 + - uid: 5441 components: - type: Transform - pos: 48.5,-25.5 - parent: 89 - - uid: 22366 + pos: -111.5,23.5 + parent: 2 + - uid: 5442 components: - type: Transform - pos: 47.5,-25.5 - parent: 89 - - uid: 22367 + pos: -110.5,23.5 + parent: 2 + - uid: 5443 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - uid: 22368 + pos: -109.5,23.5 + parent: 2 + - uid: 5444 components: - type: Transform - pos: 48.5,-27.5 - parent: 89 - - uid: 22369 + pos: -108.5,23.5 + parent: 2 + - uid: 5445 components: - type: Transform - pos: 48.5,-28.5 - parent: 89 - - uid: 22371 + pos: -107.5,23.5 + parent: 2 + - uid: 5446 components: - type: Transform - pos: 47.5,-27.5 - parent: 89 - - uid: 22372 + pos: -106.5,23.5 + parent: 2 + - uid: 5447 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 - - uid: 22373 + pos: -105.5,23.5 + parent: 2 + - uid: 5448 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 22374 + pos: -104.5,23.5 + parent: 2 + - uid: 5449 components: - type: Transform - pos: 47.5,-30.5 - parent: 89 - - uid: 22375 + pos: -103.5,23.5 + parent: 2 + - uid: 5450 components: - type: Transform - pos: 49.5,-31.5 - parent: 89 - - uid: 22376 + pos: -102.5,23.5 + parent: 2 + - uid: 5451 components: - type: Transform - pos: 49.5,-32.5 - parent: 89 - - uid: 22377 + pos: -107.5,24.5 + parent: 2 + - uid: 5452 components: - type: Transform - pos: 49.5,-33.5 - parent: 89 - - uid: 22378 + pos: -112.5,27.5 + parent: 2 + - uid: 5453 components: - type: Transform - pos: 47.5,-31.5 - parent: 89 - - uid: 22379 + pos: -111.5,27.5 + parent: 2 + - uid: 5454 components: - type: Transform - pos: 47.5,-32.5 - parent: 89 - - uid: 22380 + pos: -110.5,27.5 + parent: 2 + - uid: 5455 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 - - uid: 22381 + pos: -109.5,27.5 + parent: 2 + - uid: 5456 components: - type: Transform - pos: 51.5,-31.5 - parent: 89 - - uid: 22382 + pos: -108.5,27.5 + parent: 2 + - uid: 5457 components: - type: Transform - pos: 51.5,-32.5 - parent: 89 - - uid: 22383 + pos: -107.5,27.5 + parent: 2 + - uid: 5458 components: - type: Transform - pos: 51.5,-33.5 - parent: 89 - - uid: 22384 + pos: -106.5,27.5 + parent: 2 + - uid: 5459 components: - type: Transform - pos: 53.5,-30.5 - parent: 89 - - uid: 22385 + pos: -105.5,27.5 + parent: 2 + - uid: 5460 components: - type: Transform - pos: 53.5,-31.5 - parent: 89 - - uid: 22386 + pos: -104.5,27.5 + parent: 2 + - uid: 5461 components: - type: Transform - pos: 53.5,-32.5 - parent: 89 - - uid: 22387 + pos: -103.5,27.5 + parent: 2 + - uid: 5462 components: - type: Transform - pos: 53.5,-33.5 - parent: 89 - - uid: 22388 + pos: -102.5,27.5 + parent: 2 + - uid: 5463 components: - type: Transform - pos: 52.5,-30.5 - parent: 89 - - uid: 22389 + pos: -133.5,-10.5 + parent: 2 + - uid: 5464 components: - type: Transform - pos: 54.5,-30.5 - parent: 89 - - uid: 22390 + pos: -135.5,-8.5 + parent: 2 + - uid: 5465 components: - type: Transform - pos: 55.5,-30.5 - parent: 89 - - uid: 22391 + pos: -135.5,-6.5 + parent: 2 + - uid: 5466 components: - type: Transform - pos: 56.5,-30.5 - parent: 89 - - uid: 22392 + pos: -135.5,-7.5 + parent: 2 + - uid: 5467 components: - type: Transform - pos: 56.5,-31.5 - parent: 89 - - uid: 22393 + pos: -115.5,-11.5 + parent: 2 + - uid: 5468 components: - type: Transform - pos: 56.5,-32.5 - parent: 89 - - uid: 22394 + pos: -115.5,-13.5 + parent: 2 + - uid: 5469 components: - type: Transform - pos: 56.5,-33.5 - parent: 89 - - uid: 22395 + pos: -82.5,-11.5 + parent: 2 + - uid: 5470 components: - type: Transform - pos: 56.5,-29.5 - parent: 89 - - uid: 22396 + pos: -135.5,-9.5 + parent: 2 + - uid: 5471 components: - type: Transform - pos: 56.5,-28.5 - parent: 89 - - uid: 22397 + pos: -135.5,-10.5 + parent: 2 + - uid: 5472 components: - type: Transform - pos: 56.5,-27.5 - parent: 89 - - uid: 22398 + pos: -135.5,-11.5 + parent: 2 + - uid: 5473 components: - type: Transform - pos: 57.5,-27.5 - parent: 89 - - uid: 22399 + pos: -135.5,-5.5 + parent: 2 + - uid: 5474 components: - type: Transform - pos: 57.5,-26.5 - parent: 89 - - uid: 22400 + pos: -135.5,-4.5 + parent: 2 + - uid: 5475 components: - type: Transform - pos: 57.5,-25.5 - parent: 89 - - uid: 22401 + pos: -135.5,-3.5 + parent: 2 + - uid: 5476 components: - type: Transform - pos: 57.5,-24.5 - parent: 89 - - uid: 22402 + pos: -134.5,-4.5 + parent: 2 + - uid: 5477 components: - type: Transform - pos: 57.5,-29.5 - parent: 89 - - uid: 22403 + pos: -134.5,-10.5 + parent: 2 + - uid: 5478 components: - type: Transform - pos: 58.5,-29.5 - parent: 89 - - uid: 22415 + pos: -135.5,-2.5 + parent: 2 + - uid: 5479 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22416 + pos: -133.5,-7.5 + parent: 2 + - uid: 5480 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22417 + pos: -132.5,-7.5 + parent: 2 + - uid: 5481 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22418 + pos: -133.5,-4.5 + parent: 2 + - uid: 5482 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22419 + pos: -132.5,-4.5 + parent: 2 + - uid: 5483 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22423 + pos: -132.5,-10.5 + parent: 2 + - uid: 5484 components: - type: Transform - pos: -133.5,-6.5 - parent: 89 - - uid: 22424 + pos: -132.5,-9.5 + parent: 2 + - uid: 5485 components: - type: Transform - pos: -133.5,-5.5 - parent: 89 - - uid: 22425 + pos: -132.5,-8.5 + parent: 2 + - uid: 5486 components: - type: Transform - pos: -133.5,-4.5 - parent: 89 - - uid: 22426 + pos: -132.5,-5.5 + parent: 2 + - uid: 5487 components: - type: Transform - pos: -133.5,-3.5 - parent: 89 - - uid: 22427 + pos: -132.5,-6.5 + parent: 2 + - uid: 5488 components: - type: Transform - pos: -134.5,-10.5 - parent: 89 - - uid: 22428 + pos: -131.5,-12.5 + parent: 2 + - uid: 5489 components: - type: Transform - pos: -133.5,-10.5 - parent: 89 - - uid: 22430 + pos: -129.5,-10.5 + parent: 2 + - uid: 5490 components: - type: Transform - pos: 52.5,-28.5 - parent: 89 - - uid: 22431 + pos: -144.5,-0.5 + parent: 2 + - uid: 5491 components: - type: Transform - pos: 53.5,-28.5 - parent: 89 - - uid: 23222 + pos: -130.5,-12.5 + parent: 2 + - uid: 5492 components: - type: Transform - pos: -14.5,-22.5 - parent: 22565 - - uid: 23223 + pos: -143.5,-0.5 + parent: 2 + - uid: 5493 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 23224 + pos: -142.5,-0.5 + parent: 2 + - uid: 5494 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 - - uid: 23225 + pos: -150.5,-6.5 + parent: 2 + - uid: 5495 components: - type: Transform - pos: -10.5,-24.5 - parent: 22565 - - uid: 23226 + pos: -150.5,-7.5 + parent: 2 + - uid: 5496 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 23227 + pos: -150.5,-8.5 + parent: 2 + - uid: 5497 components: - type: Transform - pos: -15.5,-22.5 - parent: 22565 - - uid: 23228 + pos: -150.5,-9.5 + parent: 2 + - uid: 5498 components: - type: Transform - pos: -13.5,-18.5 - parent: 22565 - - uid: 23229 + pos: -150.5,-5.5 + parent: 2 + - uid: 5499 components: - type: Transform - pos: -10.5,-23.5 - parent: 22565 - - uid: 23230 + pos: -145.5,-14.5 + parent: 2 + - uid: 5500 components: - type: Transform - pos: -10.5,-22.5 - parent: 22565 - - uid: 23231 + pos: -144.5,-14.5 + parent: 2 + - uid: 5501 components: - type: Transform - pos: -10.5,-20.5 - parent: 22565 - - uid: 23232 + pos: -143.5,-14.5 + parent: 2 + - uid: 5502 components: - type: Transform - pos: -16.5,-20.5 - parent: 22565 - - uid: 23233 + pos: -142.5,-14.5 + parent: 2 + - uid: 5503 components: - type: Transform - pos: -12.5,-22.5 - parent: 22565 - - uid: 23234 + pos: -141.5,-14.5 + parent: 2 + - uid: 5504 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 23235 + pos: -145.5,-0.5 + parent: 2 + - uid: 5505 components: - type: Transform - pos: -9.5,-22.5 - parent: 22565 - - uid: 23236 + pos: -141.5,-0.5 + parent: 2 + - uid: 5506 components: - type: Transform - pos: -16.5,-19.5 - parent: 22565 - - uid: 23237 + pos: -130.5,-10.5 + parent: 2 + - uid: 5507 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23238 + pos: -130.5,-11.5 + parent: 2 + - uid: 5508 components: - type: Transform - pos: -17.5,-22.5 - parent: 22565 - - uid: 23239 + pos: -92.5,24.5 + parent: 2 + - uid: 5509 components: - type: Transform - pos: -11.5,-22.5 - parent: 22565 - - uid: 23240 + pos: -92.5,23.5 + parent: 2 + - uid: 5510 components: - type: Transform - pos: -10.5,-19.5 - parent: 22565 - - uid: 23241 + pos: -91.5,24.5 + parent: 2 + - uid: 5511 components: - type: Transform - pos: -10.5,-21.5 - parent: 22565 - - uid: 23242 + pos: -91.5,25.5 + parent: 2 + - uid: 5512 components: - type: Transform - pos: -9.5,-25.5 - parent: 22565 - - uid: 23243 + pos: -91.5,26.5 + parent: 2 + - uid: 5513 components: - type: Transform - pos: -10.5,-25.5 - parent: 22565 - - uid: 23244 + pos: -91.5,27.5 + parent: 2 + - uid: 5514 components: - type: Transform - pos: -11.5,-25.5 - parent: 22565 - - uid: 23245 + pos: -91.5,28.5 + parent: 2 + - uid: 5515 components: - type: Transform - pos: -12.5,-25.5 - parent: 22565 - - uid: 23246 + pos: -90.5,28.5 + parent: 2 + - uid: 5516 components: - type: Transform - pos: -13.5,-25.5 - parent: 22565 - - uid: 23247 + pos: -89.5,28.5 + parent: 2 + - uid: 5517 components: - type: Transform - pos: -14.5,-25.5 - parent: 22565 - - uid: 23248 + pos: 53.5,-0.5 + parent: 2 + - uid: 5518 components: - type: Transform - pos: -15.5,-25.5 - parent: 22565 - - uid: 23249 + pos: -14.5,-27.5 + parent: 2 + - uid: 5519 components: - type: Transform - pos: -16.5,-25.5 - parent: 22565 - - uid: 23250 + pos: 53.5,-1.5 + parent: 2 + - uid: 5520 components: - type: Transform - pos: -17.5,-25.5 - parent: 22565 - - uid: 23251 + pos: 53.5,-2.5 + parent: 2 + - uid: 5521 components: - type: Transform - pos: -16.5,-24.5 - parent: 22565 - - uid: 23252 + pos: 48.5,5.5 + parent: 2 + - uid: 5522 components: - type: Transform - pos: -16.5,-23.5 - parent: 22565 - - uid: 23253 + pos: -120.5,16.5 + parent: 2 + - uid: 5523 components: - type: Transform - pos: -16.5,-22.5 - parent: 22565 - - uid: 23254 + pos: -119.5,16.5 + parent: 2 + - uid: 5524 components: - type: Transform - pos: -16.5,-21.5 - parent: 22565 - - uid: 23255 + pos: -126.5,16.5 + parent: 2 + - uid: 5525 components: - type: Transform - pos: -13.5,-24.5 - parent: 22565 - - uid: 23256 + pos: -126.5,17.5 + parent: 2 + - uid: 5526 components: - type: Transform - pos: -13.5,-23.5 - parent: 22565 - - uid: 23257 + pos: -126.5,18.5 + parent: 2 + - uid: 5527 components: - type: Transform - pos: -13.5,-22.5 - parent: 22565 - - uid: 23258 + pos: -125.5,18.5 + parent: 2 + - uid: 5528 components: - type: Transform - pos: -13.5,-21.5 - parent: 22565 - - uid: 23259 + pos: -123.5,18.5 + parent: 2 + - uid: 5529 components: - type: Transform - pos: -13.5,-20.5 - parent: 22565 - - uid: 23260 + pos: -122.5,18.5 + parent: 2 + - uid: 5530 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 23261 + pos: -122.5,15.5 + parent: 2 + - uid: 5531 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 23262 + pos: -122.5,16.5 + parent: 2 + - uid: 5532 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 23263 + pos: -124.5,18.5 + parent: 2 + - uid: 23776 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 23264 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23777 components: - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 23265 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23778 components: - type: Transform - pos: -8.5,-18.5 - parent: 22565 - - uid: 23266 + pos: 3.5,-10.5 + parent: 23711 + - uid: 24022 components: - type: Transform - pos: -8.5,-17.5 - parent: 22565 - - uid: 23267 + pos: 7.5,1.5 + parent: 23919 + - uid: 24023 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23268 + pos: 6.5,0.5 + parent: 23919 + - uid: 24024 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 - - uid: 23269 + pos: 7.5,0.5 + parent: 23919 + - uid: 24025 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 - - uid: 23270 + pos: 5.5,0.5 + parent: 23919 + - uid: 24026 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 - - uid: 23271 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24027 components: - type: Transform - pos: -3.5,-17.5 - parent: 22565 - - uid: 23272 + pos: 7.5,5.5 + parent: 23919 + - uid: 24028 components: - type: Transform - pos: -2.5,-17.5 - parent: 22565 - - uid: 23273 + pos: 7.5,2.5 + parent: 23919 + - uid: 24029 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 - - uid: 23274 + pos: 7.5,4.5 + parent: 23919 + - uid: 24030 components: - type: Transform - pos: -15.5,-13.5 - parent: 22565 - - uid: 23275 + pos: 7.5,3.5 + parent: 23919 + - uid: 24031 components: - type: Transform - pos: -14.5,-13.5 - parent: 22565 - - uid: 23276 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24032 components: - type: Transform - pos: -13.5,-13.5 - parent: 22565 - - uid: 23277 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24033 components: - type: Transform - pos: -12.5,-13.5 - parent: 22565 - - uid: 23278 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24034 components: - type: Transform - pos: -12.5,-11.5 - parent: 22565 - - uid: 23279 + pos: 4.5,0.5 + parent: 23919 + - uid: 24035 components: - type: Transform - pos: -12.5,-10.5 - parent: 22565 - - uid: 23280 + pos: 6.5,6.5 + parent: 23919 + - uid: 24036 components: - type: Transform - pos: -12.5,-9.5 - parent: 22565 - - uid: 23281 + pos: 5.5,7.5 + parent: 23919 + - uid: 24037 components: - type: Transform - pos: -16.5,-7.5 - parent: 22565 - - uid: 23282 + pos: 4.5,7.5 + parent: 23919 + - uid: 24038 components: - type: Transform - pos: -16.5,-8.5 - parent: 22565 - - uid: 23283 + pos: 7.5,6.5 + parent: 23919 + - uid: 24039 components: - type: Transform - pos: -16.5,-9.5 - parent: 22565 - - uid: 23284 + pos: 2.5,7.5 + parent: 23919 + - uid: 24040 components: - type: Transform - pos: -16.5,-10.5 - parent: 22565 - - uid: 23285 + pos: 3.5,7.5 + parent: 23919 + - uid: 24041 components: - type: Transform - pos: -16.5,-11.5 - parent: 22565 - - uid: 23286 + pos: 2.5,5.5 + parent: 23919 + - uid: 24042 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 - - uid: 23287 + pos: 2.5,6.5 + parent: 23919 + - uid: 24043 components: - type: Transform - pos: -16.5,-13.5 - parent: 22565 - - uid: 23288 + pos: 6.5,7.5 + parent: 23919 + - uid: 24044 components: - type: Transform - pos: -16.5,-14.5 - parent: 22565 - - uid: 23289 + pos: 8.5,5.5 + parent: 23919 + - uid: 24367 components: - type: Transform - pos: -16.5,-15.5 - parent: 22565 - - uid: 23290 + pos: 0.5,1.5 + parent: 24340 + - uid: 24368 components: - type: Transform - pos: -16.5,-16.5 - parent: 22565 - - uid: 23291 + pos: 2.5,-2.5 + parent: 24340 + - uid: 24369 components: - type: Transform - pos: -16.5,-17.5 - parent: 22565 - - uid: 23292 + pos: 2.5,-1.5 + parent: 24340 + - uid: 24370 components: - type: Transform - pos: -16.5,-18.5 - parent: 22565 - - uid: 23293 + pos: -1.5,-2.5 + parent: 24340 + - uid: 24371 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 - - uid: 23294 + pos: -1.5,-1.5 + parent: 24340 + - uid: 24372 components: - type: Transform - pos: -13.5,-1.5 - parent: 22565 - - uid: 23295 + pos: -0.5,-1.5 + parent: 24340 + - uid: 24373 components: - type: Transform - pos: -20.5,11.5 - parent: 22565 - - uid: 23296 + pos: 0.5,-1.5 + parent: 24340 + - uid: 24374 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 - - uid: 23297 + pos: 1.5,-1.5 + parent: 24340 + - uid: 24375 components: - type: Transform - pos: -7.5,-2.5 - parent: 22565 - - uid: 23298 + pos: 0.5,-0.5 + parent: 24340 + - uid: 24376 components: - type: Transform - pos: -13.5,0.5 - parent: 22565 - - uid: 23299 + pos: 0.5,0.5 + parent: 24340 + - uid: 24377 components: - type: Transform - pos: -23.5,9.5 - parent: 22565 - - uid: 23300 + pos: 0.5,-2.5 + parent: 24340 + - uid: 24378 components: - type: Transform - pos: -20.5,9.5 - parent: 22565 - - uid: 23301 + pos: 0.5,-3.5 + parent: 24340 + - uid: 24379 components: - type: Transform - pos: -13.5,-2.5 - parent: 22565 - - uid: 23302 + pos: -0.5,-3.5 + parent: 24340 + - uid: 24380 components: - type: Transform - pos: -10.5,1.5 - parent: 22565 - - uid: 23303 + pos: 1.5,-3.5 + parent: 24340 + - uid: 24381 components: - type: Transform - pos: -16.5,-2.5 - parent: 22565 - - uid: 23304 + pos: 2.5,-3.5 + parent: 24340 + - uid: 24382 components: - type: Transform - pos: -13.5,2.5 - parent: 22565 - - uid: 23305 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24383 components: - type: Transform - pos: -10.5,-2.5 - parent: 22565 - - uid: 23306 + pos: -0.5,-2.5 + parent: 24340 + - uid: 25481 components: - type: Transform - pos: -9.5,-2.5 - parent: 22565 - - uid: 23307 + pos: -1.5,-11.5 + parent: 24450 + - uid: 25482 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23308 + pos: -5.5,-17.5 + parent: 24450 + - uid: 25483 components: - type: Transform - pos: -13.5,-0.5 - parent: 22565 - - uid: 23309 + pos: -6.5,-15.5 + parent: 24450 + - uid: 25484 components: - type: Transform - pos: -10.5,0.5 - parent: 22565 - - uid: 23310 + pos: -4.5,-17.5 + parent: 24450 + - uid: 25485 components: - type: Transform - pos: -10.5,-1.5 - parent: 22565 - - uid: 23311 + pos: -6.5,-16.5 + parent: 24450 + - uid: 25486 components: - type: Transform - pos: -10.5,-0.5 - parent: 22565 - - uid: 23312 + pos: -6.5,-17.5 + parent: 24450 + - uid: 25487 components: - type: Transform - pos: -10.5,2.5 - parent: 22565 - - uid: 23313 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25488 components: - type: Transform - pos: -10.5,4.5 - parent: 22565 - - uid: 23314 + pos: -10.5,-12.5 + parent: 24450 + - uid: 25489 components: - type: Transform - pos: -10.5,5.5 - parent: 22565 - - uid: 23315 + pos: -11.5,-12.5 + parent: 24450 + - uid: 25490 components: - type: Transform - pos: -10.5,6.5 - parent: 22565 - - uid: 23316 + pos: -5.5,-15.5 + parent: 24450 + - uid: 25491 components: - type: Transform - pos: -10.5,7.5 - parent: 22565 - - uid: 23317 + pos: -17.5,-6.5 + parent: 24450 + - uid: 25492 components: - type: Transform - pos: -10.5,8.5 - parent: 22565 - - uid: 23318 + pos: -0.5,-11.5 + parent: 24450 + - uid: 25493 components: - type: Transform - pos: -10.5,9.5 - parent: 22565 - - uid: 23319 + pos: 0.5,-11.5 + parent: 24450 + - uid: 25494 components: - type: Transform - pos: -10.5,10.5 - parent: 22565 - - uid: 23320 + pos: -1.5,-12.5 + parent: 24450 + - uid: 25495 components: - type: Transform - pos: -13.5,3.5 - parent: 22565 - - uid: 23321 + pos: -1.5,-13.5 + parent: 24450 + - uid: 25496 components: - type: Transform - pos: -13.5,4.5 - parent: 22565 - - uid: 23322 + pos: -4.5,-11.5 + parent: 24450 + - uid: 25497 components: - type: Transform - pos: -13.5,5.5 - parent: 22565 - - uid: 23323 + pos: -0.5,-12.5 + parent: 24450 + - uid: 25498 components: - type: Transform - pos: -13.5,6.5 - parent: 22565 - - uid: 23324 + pos: -0.5,-13.5 + parent: 24450 + - uid: 25499 components: - type: Transform - pos: -13.5,7.5 - parent: 22565 - - uid: 23325 + pos: -3.5,-11.5 + parent: 24450 + - uid: 25500 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 - - uid: 23326 + pos: 0.5,-12.5 + parent: 24450 + - uid: 25501 components: - type: Transform - pos: -13.5,9.5 - parent: 22565 - - uid: 23327 + pos: 0.5,-13.5 + parent: 24450 + - uid: 25502 components: - type: Transform - pos: -13.5,10.5 - parent: 22565 - - uid: 23328 + pos: -2.5,-11.5 + parent: 24450 + - uid: 25503 components: - type: Transform - pos: -9.5,10.5 - parent: 22565 - - uid: 23329 + pos: -4.5,-14.5 + parent: 24450 + - uid: 25504 components: - type: Transform - pos: -8.5,10.5 - parent: 22565 - - uid: 23330 + pos: -4.5,-13.5 + parent: 24450 + - uid: 25505 components: - type: Transform - pos: -7.5,10.5 - parent: 22565 - - uid: 23331 + pos: -4.5,-12.5 + parent: 24450 + - uid: 25506 components: - type: Transform - pos: -6.5,10.5 - parent: 22565 - - uid: 23332 + pos: -5.5,-14.5 + parent: 24450 + - uid: 25507 components: - type: Transform - pos: -5.5,10.5 - parent: 22565 - - uid: 23333 + pos: -5.5,-13.5 + parent: 24450 + - uid: 25508 components: - type: Transform - pos: -4.5,10.5 - parent: 22565 - - uid: 23334 + pos: -5.5,-12.5 + parent: 24450 + - uid: 25509 components: - type: Transform - pos: -3.5,10.5 - parent: 22565 - - uid: 23335 + pos: -6.5,-14.5 + parent: 24450 + - uid: 25510 components: - type: Transform - pos: -2.5,10.5 - parent: 22565 - - uid: 23336 + pos: -6.5,-13.5 + parent: 24450 + - uid: 25511 components: - type: Transform - pos: -1.5,10.5 - parent: 22565 - - uid: 23337 + pos: -6.5,-12.5 + parent: 24450 + - uid: 25512 components: - type: Transform - pos: -0.5,10.5 - parent: 22565 - - uid: 23338 + pos: -4.5,-15.5 + parent: 24450 + - uid: 25513 components: - type: Transform - pos: -3.5,11.5 - parent: 22565 - - uid: 23339 + pos: -6.5,-7.5 + parent: 24450 + - uid: 25514 components: - type: Transform - pos: -3.5,12.5 - parent: 22565 - - uid: 23340 + pos: -6.5,-8.5 + parent: 24450 + - uid: 25515 components: - type: Transform - pos: -3.5,13.5 - parent: 22565 - - uid: 23341 + pos: -6.5,-6.5 + parent: 24450 + - uid: 25516 components: - type: Transform - pos: -3.5,14.5 - parent: 22565 - - uid: 23342 + pos: -7.5,-3.5 + parent: 24450 + - uid: 25517 components: - type: Transform - pos: -3.5,15.5 - parent: 22565 - - uid: 23343 + pos: -6.5,-10.5 + parent: 24450 + - uid: 25518 components: - type: Transform - pos: -3.5,16.5 - parent: 22565 - - uid: 23344 + pos: -6.5,-11.5 + parent: 24450 + - uid: 25519 components: - type: Transform - pos: -3.5,17.5 - parent: 22565 - - uid: 23345 + pos: -6.5,-4.5 + parent: 24450 + - uid: 25520 components: - type: Transform - pos: -3.5,18.5 - parent: 22565 - - uid: 23346 + pos: -6.5,-5.5 + parent: 24450 + - uid: 25521 components: - type: Transform - pos: -3.5,19.5 - parent: 22565 - - uid: 23347 + pos: -8.5,-3.5 + parent: 24450 + - uid: 25522 components: - type: Transform - pos: -3.5,20.5 - parent: 22565 - - uid: 23348 + pos: -6.5,-9.5 + parent: 24450 + - uid: 25523 components: - type: Transform - pos: -3.5,21.5 - parent: 22565 - - uid: 23349 + pos: -6.5,-3.5 + parent: 24450 + - uid: 25524 components: - type: Transform - pos: -3.5,22.5 - parent: 22565 - - uid: 23350 + pos: -7.5,-13.5 + parent: 24450 + - uid: 25525 components: - type: Transform - pos: -3.5,23.5 - parent: 22565 - - uid: 23351 + pos: -8.5,-13.5 + parent: 24450 + - uid: 25526 components: - type: Transform - pos: -3.5,24.5 - parent: 22565 - - uid: 23352 + pos: -9.5,-13.5 + parent: 24450 + - uid: 25527 components: - type: Transform - pos: -3.5,25.5 - parent: 22565 - - uid: 23353 + pos: -10.5,-13.5 + parent: 24450 + - uid: 25528 components: - type: Transform - pos: -0.5,11.5 - parent: 22565 - - uid: 23354 + pos: -15.5,-12.5 + parent: 24450 + - uid: 25529 components: - type: Transform - pos: -0.5,12.5 - parent: 22565 - - uid: 23355 + pos: -17.5,-3.5 + parent: 24450 + - uid: 25530 components: - type: Transform - pos: -0.5,13.5 - parent: 22565 - - uid: 23356 + pos: -17.5,-4.5 + parent: 24450 + - uid: 25531 components: - type: Transform - pos: -0.5,14.5 - parent: 22565 - - uid: 23357 + pos: -17.5,-5.5 + parent: 24450 + - uid: 25532 components: - type: Transform - pos: -0.5,15.5 - parent: 22565 - - uid: 23358 + pos: -17.5,-7.5 + parent: 24450 + - uid: 25533 components: - type: Transform - pos: -0.5,16.5 - parent: 22565 - - uid: 23359 + pos: -17.5,-8.5 + parent: 24450 + - uid: 25534 components: - type: Transform - pos: -0.5,17.5 - parent: 22565 - - uid: 23360 + pos: -17.5,-9.5 + parent: 24450 + - uid: 25535 components: - type: Transform - pos: -0.5,18.5 - parent: 22565 - - uid: 23361 + pos: -16.5,-3.5 + parent: 24450 + - uid: 25536 components: - type: Transform - pos: -0.5,19.5 - parent: 22565 - - uid: 23362 + pos: -15.5,-3.5 + parent: 24450 + - uid: 25537 components: - type: Transform - pos: -0.5,20.5 - parent: 22565 - - uid: 23363 + pos: -5.5,-11.5 + parent: 24450 + - uid: 25538 components: - type: Transform - pos: -0.5,21.5 - parent: 22565 - - uid: 23364 + pos: -15.5,-9.5 + parent: 24450 + - uid: 25539 components: - type: Transform - pos: -0.5,22.5 - parent: 22565 - - uid: 23365 + pos: -14.5,-12.5 + parent: 24450 + - uid: 25540 components: - type: Transform - pos: -0.5,23.5 - parent: 22565 - - uid: 23366 + pos: -13.5,-12.5 + parent: 24450 + - uid: 25541 components: - type: Transform - pos: -0.5,24.5 - parent: 22565 - - uid: 23367 + pos: -12.5,-12.5 + parent: 24450 + - uid: 25542 components: - type: Transform - pos: -0.5,25.5 - parent: 22565 - - uid: 23368 + pos: -16.5,-12.5 + parent: 24450 + - uid: 25543 components: - type: Transform - pos: -1.5,25.5 - parent: 22565 - - uid: 23369 + pos: -17.5,-12.5 + parent: 24450 + - uid: 25544 components: - type: Transform - pos: -2.5,25.5 - parent: 22565 - - uid: 23370 + pos: -17.5,-12.5 + parent: 24450 + - uid: 25545 components: - type: Transform - pos: -1.5,1.5 - parent: 22565 - - uid: 23371 + pos: -17.5,-11.5 + parent: 24450 + - uid: 25546 components: - type: Transform - pos: -2.5,1.5 - parent: 22565 - - uid: 23372 + pos: -17.5,-10.5 + parent: 24450 + - uid: 25547 components: - type: Transform - pos: -3.5,1.5 - parent: 22565 - - uid: 23373 + pos: -5.5,-16.5 + parent: 24450 + - uid: 27390 components: - type: Transform - pos: -4.5,1.5 - parent: 22565 - - uid: 23374 + pos: 4.5,-3.5 + parent: 27260 + - uid: 27391 components: - type: Transform - pos: -5.5,1.5 - parent: 22565 - - uid: 23375 + pos: -6.5,-0.5 + parent: 27260 + - uid: 27392 components: - type: Transform - pos: -6.5,1.5 - parent: 22565 - - uid: 23376 + pos: -6.5,-2.5 + parent: 27260 + - uid: 27393 components: - type: Transform - pos: -7.5,1.5 - parent: 22565 - - uid: 23377 + pos: 7.5,-1.5 + parent: 27260 + - uid: 27394 components: - type: Transform - pos: -8.5,1.5 - parent: 22565 - - uid: 23378 + pos: 7.5,-0.5 + parent: 27260 + - uid: 27395 components: - type: Transform - pos: -9.5,1.5 - parent: 22565 - - uid: 23379 + pos: -6.5,-1.5 + parent: 27260 + - uid: 27396 components: - type: Transform - pos: 0.5,5.5 - parent: 22565 - - uid: 23380 + pos: 2.5,-11.5 + parent: 27260 + - uid: 27397 components: - type: Transform - pos: -2.5,5.5 - parent: 22565 - - uid: 23381 + pos: 2.5,-12.5 + parent: 27260 + - uid: 27398 components: - type: Transform - pos: -3.5,9.5 - parent: 22565 - - uid: 23382 + pos: 1.5,-12.5 + parent: 27260 + - uid: 27399 components: - type: Transform - pos: -14.5,10.5 - parent: 22565 - - uid: 23383 + pos: 0.5,-12.5 + parent: 27260 + - uid: 27400 components: - type: Transform - pos: -15.5,10.5 - parent: 22565 - - uid: 23384 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27401 components: - type: Transform - pos: -16.5,10.5 - parent: 22565 - - uid: 23385 + pos: -0.5,-12.5 + parent: 27260 + - uid: 27402 components: - type: Transform - pos: -17.5,10.5 - parent: 22565 - - uid: 23386 + pos: -0.5,-13.5 + parent: 27260 + - uid: 27403 components: - type: Transform - pos: -18.5,10.5 - parent: 22565 - - uid: 23387 + pos: -0.5,-14.5 + parent: 27260 + - uid: 27404 components: - type: Transform - pos: -19.5,10.5 - parent: 22565 - - uid: 23388 + pos: 0.5,-14.5 + parent: 27260 + - uid: 27405 components: - type: Transform - pos: -20.5,10.5 - parent: 22565 - - uid: 23389 + pos: 1.5,-14.5 + parent: 27260 + - uid: 27406 components: - type: Transform - pos: -20.5,12.5 - parent: 22565 - - uid: 23390 + pos: 2.5,-14.5 + parent: 27260 + - uid: 27407 components: - type: Transform - pos: -20.5,13.5 - parent: 22565 - - uid: 23391 + pos: 3.5,-14.5 + parent: 27260 + - uid: 27408 components: - type: Transform - pos: -20.5,14.5 - parent: 22565 - - uid: 23392 + pos: 4.5,-14.5 + parent: 27260 + - uid: 27409 components: - type: Transform - pos: -20.5,15.5 - parent: 22565 - - uid: 23393 + pos: 5.5,-14.5 + parent: 27260 + - uid: 27410 components: - type: Transform - pos: -20.5,16.5 - parent: 22565 - - uid: 23394 + pos: 6.5,-14.5 + parent: 27260 + - uid: 27411 components: - type: Transform - pos: -20.5,17.5 - parent: 22565 - - uid: 23395 + pos: 7.5,-14.5 + parent: 27260 + - uid: 27412 components: - type: Transform - pos: -20.5,18.5 - parent: 22565 - - uid: 23396 + pos: 4.5,-15.5 + parent: 27260 + - uid: 27413 components: - type: Transform - pos: -20.5,19.5 - parent: 22565 - - uid: 23397 + pos: 5.5,-15.5 + parent: 27260 + - uid: 27414 components: - type: Transform - pos: -20.5,20.5 - parent: 22565 - - uid: 23398 + pos: 6.5,-15.5 + parent: 27260 + - uid: 27415 components: - type: Transform - pos: -20.5,21.5 - parent: 22565 - - uid: 23399 + pos: 7.5,-13.5 + parent: 27260 + - uid: 27416 components: - type: Transform - pos: -20.5,22.5 - parent: 22565 - - uid: 23400 + pos: 7.5,-12.5 + parent: 27260 + - uid: 27417 components: - type: Transform - pos: -20.5,23.5 - parent: 22565 - - uid: 23401 + pos: 7.5,-11.5 + parent: 27260 + - uid: 27418 components: - type: Transform - pos: -20.5,24.5 - parent: 22565 - - uid: 23402 + pos: 7.5,-10.5 + parent: 27260 + - uid: 27419 components: - type: Transform - pos: -20.5,25.5 - parent: 22565 - - uid: 23403 + pos: 7.5,-9.5 + parent: 27260 + - uid: 27420 components: - type: Transform - pos: -21.5,25.5 - parent: 22565 - - uid: 23404 + pos: 7.5,-8.5 + parent: 27260 + - uid: 27421 components: - type: Transform - pos: -22.5,25.5 - parent: 22565 - - uid: 23405 + pos: 7.5,-7.5 + parent: 27260 + - uid: 27422 components: - type: Transform - pos: -23.5,25.5 - parent: 22565 - - uid: 23406 + pos: 7.5,-6.5 + parent: 27260 + - uid: 27423 components: - type: Transform - pos: -23.5,24.5 - parent: 22565 - - uid: 23407 + pos: 7.5,-5.5 + parent: 27260 + - uid: 27424 components: - type: Transform - pos: -23.5,23.5 - parent: 22565 - - uid: 23408 + pos: 7.5,-4.5 + parent: 27260 + - uid: 27425 components: - type: Transform - pos: -23.5,22.5 - parent: 22565 - - uid: 23409 + pos: 8.5,-4.5 + parent: 27260 + - uid: 27426 components: - type: Transform - pos: -23.5,21.5 - parent: 22565 - - uid: 23410 + pos: 8.5,-5.5 + parent: 27260 + - uid: 27427 components: - type: Transform - pos: -23.5,20.5 - parent: 22565 - - uid: 23411 + pos: 8.5,-6.5 + parent: 27260 + - uid: 27428 components: - type: Transform - pos: -23.5,19.5 - parent: 22565 - - uid: 23412 + pos: 8.5,-7.5 + parent: 27260 + - uid: 27429 components: - type: Transform - pos: -23.5,18.5 - parent: 22565 - - uid: 23413 + pos: 8.5,-10.5 + parent: 27260 + - uid: 27430 components: - type: Transform - pos: -23.5,17.5 - parent: 22565 - - uid: 23414 + pos: 8.5,-11.5 + parent: 27260 + - uid: 27431 components: - type: Transform - pos: -23.5,16.5 - parent: 22565 - - uid: 23415 + pos: 8.5,-12.5 + parent: 27260 + - uid: 27432 components: - type: Transform - pos: -23.5,15.5 - parent: 22565 - - uid: 23416 + pos: 8.5,-13.5 + parent: 27260 + - uid: 27433 components: - type: Transform - pos: -23.5,14.5 - parent: 22565 - - uid: 23417 + pos: 7.5,-3.5 + parent: 27260 + - uid: 27434 components: - type: Transform - pos: -23.5,13.5 - parent: 22565 - - uid: 23418 + pos: 6.5,-3.5 + parent: 27260 + - uid: 27435 components: - type: Transform - pos: -23.5,12.5 - parent: 22565 - - uid: 23419 + pos: 5.5,-3.5 + parent: 27260 + - uid: 27436 components: - type: Transform - pos: -23.5,11.5 - parent: 22565 - - uid: 23420 + pos: 6.5,-1.5 + parent: 27260 + - uid: 27437 components: - type: Transform - pos: -23.5,10.5 - parent: 22565 - - uid: 23421 + pos: 6.5,-0.5 + parent: 27260 + - uid: 27438 components: - type: Transform - pos: -22.5,10.5 - parent: 22565 - - uid: 23422 + pos: 7.5,-2.5 + parent: 27260 + - uid: 27439 components: - type: Transform - pos: -21.5,10.5 - parent: 22565 - - uid: 23423 + pos: 6.5,-2.5 + parent: 27260 + - uid: 27440 components: - type: Transform - pos: -0.5,1.5 - parent: 22565 - - uid: 23424 + pos: 3.5,-3.5 + parent: 27260 + - uid: 27441 components: - type: Transform - pos: 0.5,1.5 - parent: 22565 - - uid: 23425 + pos: 2.5,-3.5 + parent: 27260 + - uid: 27442 components: - type: Transform - pos: 1.5,1.5 - parent: 22565 - - uid: 23426 + pos: 1.5,-3.5 + parent: 27260 + - uid: 27443 components: - type: Transform - pos: 2.5,1.5 - parent: 22565 - - uid: 23427 + pos: 0.5,-3.5 + parent: 27260 + - uid: 27444 components: - type: Transform - pos: 3.5,1.5 - parent: 22565 - - uid: 23428 + pos: -0.5,-3.5 + parent: 27260 + - uid: 27445 components: - type: Transform - pos: -3.5,8.5 - parent: 22565 - - uid: 23429 + pos: -1.5,-3.5 + parent: 27260 + - uid: 27446 components: - type: Transform - pos: -3.5,7.5 - parent: 22565 - - uid: 23430 + pos: -2.5,-3.5 + parent: 27260 + - uid: 27447 components: - type: Transform - pos: -3.5,6.5 - parent: 22565 - - uid: 23431 + pos: -3.5,-3.5 + parent: 27260 + - uid: 27448 components: - type: Transform - pos: -3.5,5.5 - parent: 22565 - - uid: 23432 + pos: -4.5,-3.5 + parent: 27260 + - uid: 27449 components: - type: Transform - pos: -3.5,4.5 - parent: 22565 - - uid: 23433 + pos: -5.5,-3.5 + parent: 27260 + - uid: 27450 components: - type: Transform - pos: -3.5,3.5 - parent: 22565 - - uid: 23434 + pos: -6.5,-3.5 + parent: 27260 + - uid: 27451 components: - type: Transform - pos: -3.5,2.5 - parent: 22565 - - uid: 23435 + pos: -6.5,-4.5 + parent: 27260 + - uid: 27452 components: - type: Transform - pos: -0.5,2.5 - parent: 22565 - - uid: 23436 + pos: -6.5,-5.5 + parent: 27260 + - uid: 27453 components: - - type: Transform - pos: -0.5,3.5 - parent: 22565 - - uid: 23437 + - type: Transform + pos: -6.5,-6.5 + parent: 27260 + - uid: 27454 components: - type: Transform - pos: -0.5,4.5 - parent: 22565 - - uid: 23438 + pos: -6.5,-7.5 + parent: 27260 + - uid: 27455 components: - type: Transform - pos: -0.5,5.5 - parent: 22565 - - uid: 23439 + pos: -6.5,-8.5 + parent: 27260 + - uid: 27456 components: - type: Transform - pos: -0.5,6.5 - parent: 22565 - - uid: 23440 + pos: -6.5,-9.5 + parent: 27260 + - uid: 27457 components: - type: Transform - pos: -0.5,7.5 - parent: 22565 - - uid: 23441 + pos: -6.5,-10.5 + parent: 27260 + - uid: 27458 components: - type: Transform - pos: -0.5,8.5 - parent: 22565 - - uid: 23442 + pos: -6.5,-11.5 + parent: 27260 + - uid: 27459 components: - type: Transform - pos: -0.5,9.5 - parent: 22565 - - uid: 23443 + pos: -6.5,-12.5 + parent: 27260 + - uid: 27460 components: - type: Transform - pos: -1.5,5.5 - parent: 22565 - - uid: 23444 + pos: -6.5,-13.5 + parent: 27260 + - uid: 27461 components: - type: Transform - pos: 1.5,5.5 - parent: 22565 - - uid: 23445 + pos: -6.5,-14.5 + parent: 27260 + - uid: 27462 components: - type: Transform - pos: 2.5,5.5 - parent: 22565 - - uid: 23446 + pos: -5.5,-14.5 + parent: 27260 + - uid: 27463 components: - type: Transform - pos: 3.5,5.5 - parent: 22565 - - uid: 23447 + pos: -4.5,-14.5 + parent: 27260 + - uid: 27464 components: - type: Transform - pos: 4.5,5.5 - parent: 22565 - - uid: 23448 + pos: -3.5,-14.5 + parent: 27260 + - uid: 27465 components: - type: Transform - pos: 5.5,5.5 - parent: 22565 - - uid: 23449 + pos: -2.5,-14.5 + parent: 27260 + - uid: 27466 components: - type: Transform - pos: 6.5,5.5 - parent: 22565 - - uid: 23450 + pos: -1.5,-14.5 + parent: 27260 + - uid: 27467 components: - type: Transform - pos: 7.5,5.5 - parent: 22565 - - uid: 23451 + pos: -3.5,-15.5 + parent: 27260 + - uid: 27468 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 - - uid: 23452 + pos: -4.5,-15.5 + parent: 27260 + - uid: 27469 components: - type: Transform - pos: 7.5,7.5 - parent: 22565 - - uid: 23453 + pos: -5.5,-15.5 + parent: 27260 + - uid: 27470 components: - type: Transform - pos: 7.5,8.5 - parent: 22565 - - uid: 23454 + pos: -7.5,-13.5 + parent: 27260 + - uid: 27471 components: - type: Transform - pos: 7.5,9.5 - parent: 22565 - - uid: 23455 + pos: -7.5,-12.5 + parent: 27260 + - uid: 27472 components: - type: Transform - pos: 7.5,10.5 - parent: 22565 - - uid: 23456 + pos: -7.5,-11.5 + parent: 27260 + - uid: 27473 components: - type: Transform - pos: 7.5,11.5 - parent: 22565 - - uid: 23457 + pos: -7.5,-10.5 + parent: 27260 + - uid: 27474 components: - type: Transform - pos: 7.5,12.5 - parent: 22565 - - uid: 23458 + pos: -7.5,-7.5 + parent: 27260 + - uid: 27475 components: - type: Transform - pos: 7.5,4.5 - parent: 22565 - - uid: 23459 + pos: -7.5,-6.5 + parent: 27260 + - uid: 27476 components: - type: Transform - pos: 7.5,3.5 - parent: 22565 - - uid: 23460 + pos: -7.5,-5.5 + parent: 27260 + - uid: 27477 components: - type: Transform - pos: 7.5,2.5 - parent: 22565 - - uid: 23461 + pos: -7.5,-4.5 + parent: 27260 + - uid: 27478 components: - type: Transform - pos: 7.5,1.5 - parent: 22565 - - uid: 23462 + pos: -5.5,-0.5 + parent: 27260 + - uid: 27479 components: - type: Transform - pos: 6.5,3.5 - parent: 22565 - - uid: 23463 + pos: -5.5,-1.5 + parent: 27260 + - uid: 27480 components: - type: Transform - pos: 5.5,3.5 - parent: 22565 - - uid: 23464 + pos: -5.5,-2.5 + parent: 27260 + - uid: 27481 components: - type: Transform - pos: 8.5,3.5 - parent: 22565 - - uid: 23465 + pos: -1.5,-11.5 + parent: 27260 +- proto: CableHVStack + entities: + - uid: 5533 components: - type: Transform - pos: 9.5,3.5 - parent: 22565 - - uid: 23466 + pos: -131.46945,-2.4058437 + parent: 2 + - uid: 5534 components: - type: Transform - pos: 10.5,3.5 - parent: 22565 - - uid: 23467 + pos: -103.4719,-2.5463343 + parent: 2 + - uid: 5535 components: - type: Transform - pos: 8.5,5.5 - parent: 22565 - - uid: 23468 + pos: -103.175026,-2.4682093 + parent: 2 + - uid: 5536 components: - type: Transform - pos: 9.5,5.5 - parent: 22565 - - uid: 23469 + pos: -115.50455,15.490905 + parent: 2 + - uid: 5537 components: - type: Transform - pos: 10.5,5.5 - parent: 22565 - - uid: 23470 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5538 components: - type: Transform - pos: 8.5,9.5 - parent: 22565 - - uid: 23471 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5539 components: - type: Transform - pos: 9.5,9.5 - parent: 22565 - - uid: 23472 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5540 components: - type: Transform - pos: 10.5,9.5 - parent: 22565 - - uid: 23473 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5541 components: - type: Transform - pos: 8.5,11.5 - parent: 22565 - - uid: 23474 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5542 components: - type: Transform - pos: 9.5,11.5 - parent: 22565 - - uid: 23475 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5543 components: - type: Transform - pos: 10.5,11.5 - parent: 22565 - - uid: 23476 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5544 components: - type: Transform - pos: 3.5,6.5 - parent: 22565 - - uid: 23477 + pos: -115.52195,5.4791265 + parent: 2 + - uid: 5545 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 - - uid: 23478 + pos: 32.617672,6.306506 + parent: 2 + - uid: 27482 components: - type: Transform - pos: 3.5,8.5 - parent: 22565 - - uid: 23479 + pos: -1.4234314,-7.2307434 + parent: 27260 +- proto: CableMV + entities: + - uid: 5546 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 - - uid: 23480 + pos: 2.5,-24.5 + parent: 2 + - uid: 5547 components: - type: Transform - pos: 3.5,10.5 - parent: 22565 - - uid: 23481 + pos: -1.5,-31.5 + parent: 2 + - uid: 5548 components: - type: Transform - pos: -14.5,1.5 - parent: 22565 - - uid: 23482 + pos: -3.5,-30.5 + parent: 2 + - uid: 5549 components: - type: Transform - pos: -15.5,1.5 - parent: 22565 - - uid: 23483 + pos: -2.5,-30.5 + parent: 2 + - uid: 5550 components: - type: Transform - pos: -16.5,1.5 - parent: 22565 - - uid: 23484 + pos: -4.5,-38.5 + parent: 2 + - uid: 5551 components: - type: Transform - pos: -17.5,1.5 - parent: 22565 - - uid: 23485 + pos: 2.5,-20.5 + parent: 2 + - uid: 5552 components: - type: Transform - pos: -18.5,1.5 - parent: 22565 - - uid: 23486 + pos: 2.5,-19.5 + parent: 2 + - uid: 5553 components: - type: Transform - pos: -19.5,1.5 - parent: 22565 - - uid: 23487 + pos: 2.5,-18.5 + parent: 2 + - uid: 5554 components: - type: Transform - pos: -20.5,1.5 - parent: 22565 - - uid: 23488 + pos: 1.5,-18.5 + parent: 2 + - uid: 5555 components: - type: Transform - pos: -21.5,1.5 - parent: 22565 - - uid: 23489 + pos: -4.5,-37.5 + parent: 2 + - uid: 5556 components: - type: Transform - pos: -22.5,1.5 - parent: 22565 - - uid: 23490 + pos: 2.5,-21.5 + parent: 2 + - uid: 5557 components: - type: Transform - pos: -23.5,1.5 - parent: 22565 - - uid: 23491 + pos: -130.5,-4.5 + parent: 2 + - uid: 5558 components: - type: Transform - pos: -24.5,1.5 - parent: 22565 - - uid: 23492 + pos: -87.5,-11.5 + parent: 2 + - uid: 5559 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 - - uid: 23493 + pos: -111.5,20.5 + parent: 2 + - uid: 5560 components: - type: Transform - pos: -26.5,1.5 - parent: 22565 - - uid: 23494 + pos: -103.5,25.5 + parent: 2 + - uid: 5561 components: - type: Transform - pos: -26.5,2.5 - parent: 22565 - - uid: 23495 + pos: -108.5,23.5 + parent: 2 + - uid: 5562 components: - type: Transform - pos: -26.5,3.5 - parent: 22565 - - uid: 23496 + pos: -112.5,23.5 + parent: 2 + - uid: 5563 components: - type: Transform - pos: -26.5,4.5 - parent: 22565 - - uid: 23497 + pos: -109.5,25.5 + parent: 2 + - uid: 5564 components: - type: Transform - pos: -26.5,5.5 - parent: 22565 - - uid: 23498 + pos: -107.5,25.5 + parent: 2 + - uid: 5565 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23499 + pos: -150.5,-2.5 + parent: 2 + - uid: 5566 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23500 + pos: -145.5,-14.5 + parent: 2 + - uid: 5567 components: - type: Transform - pos: -27.5,6.5 - parent: 22565 - - uid: 23501 + pos: -138.5,-14.5 + parent: 2 + - uid: 5568 components: - type: Transform - pos: -27.5,7.5 - parent: 22565 - - uid: 23502 + pos: -149.5,-0.5 + parent: 2 + - uid: 5569 components: - type: Transform - pos: -27.5,8.5 - parent: 22565 - - uid: 23503 + pos: -148.5,-0.5 + parent: 2 + - uid: 5570 components: - type: Transform - pos: -27.5,9.5 - parent: 22565 - - uid: 23504 + pos: -145.5,-0.5 + parent: 2 + - uid: 5571 components: - type: Transform - pos: -27.5,10.5 - parent: 22565 - - uid: 23505 + pos: -150.5,-13.5 + parent: 2 + - uid: 5572 components: - type: Transform - pos: -27.5,11.5 - parent: 22565 - - uid: 23506 + pos: -150.5,-3.5 + parent: 2 + - uid: 5573 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23507 + pos: -150.5,-11.5 + parent: 2 + - uid: 5574 components: - type: Transform - pos: -28.5,5.5 - parent: 22565 - - uid: 23508 + pos: 16.5,-13.5 + parent: 2 + - uid: 5575 components: - type: Transform - pos: -29.5,5.5 - parent: 22565 - - uid: 23509 + pos: 15.5,-15.5 + parent: 2 + - uid: 5576 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23510 + pos: 39.5,-9.5 + parent: 2 + - uid: 5577 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23511 + pos: -10.5,-18.5 + parent: 2 + - uid: 5578 components: - type: Transform - pos: -30.5,4.5 - parent: 22565 - - uid: 23512 + pos: 5.5,-29.5 + parent: 2 + - uid: 5579 components: - type: Transform - pos: -30.5,3.5 - parent: 22565 - - uid: 23513 + pos: -5.5,-25.5 + parent: 2 + - uid: 5580 components: - type: Transform - pos: -30.5,2.5 - parent: 22565 - - uid: 23514 + pos: -8.5,-18.5 + parent: 2 + - uid: 5581 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23515 + pos: -8.5,-18.5 + parent: 2 + - uid: 5582 components: - type: Transform - pos: -31.5,5.5 - parent: 22565 - - uid: 23516 + pos: -10.5,-19.5 + parent: 2 + - uid: 5583 components: - type: Transform - pos: -32.5,5.5 - parent: 22565 - - uid: 23517 + pos: 44.5,9.5 + parent: 2 + - uid: 5584 components: - type: Transform - pos: -33.5,5.5 - parent: 22565 - - uid: 23518 + pos: 44.5,10.5 + parent: 2 + - uid: 5585 components: - type: Transform - pos: -34.5,5.5 - parent: 22565 - - uid: 23519 + pos: 44.5,11.5 + parent: 2 + - uid: 5586 components: - type: Transform - pos: -30.5,6.5 - parent: 22565 - - uid: 23520 + pos: 44.5,8.5 + parent: 2 + - uid: 5587 components: - type: Transform - pos: -30.5,7.5 - parent: 22565 - - uid: 23521 + pos: 42.5,13.5 + parent: 2 + - uid: 5588 components: - type: Transform - pos: -30.5,8.5 - parent: 22565 - - uid: 23522 + pos: 43.5,12.5 + parent: 2 + - uid: 5589 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 - - uid: 23523 + pos: 45.5,3.5 + parent: 2 + - uid: 5590 components: - type: Transform - pos: -30.5,10.5 - parent: 22565 - - uid: 23524 + pos: 44.5,3.5 + parent: 2 + - uid: 5591 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 - - uid: 23525 + pos: 40.5,5.5 + parent: 2 + - uid: 5592 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 - - uid: 23526 + pos: 40.5,8.5 + parent: 2 + - uid: 5593 components: - type: Transform - pos: -31.5,11.5 - parent: 22565 - - uid: 23527 + pos: 40.5,6.5 + parent: 2 + - uid: 5594 components: - type: Transform - pos: -32.5,11.5 - parent: 22565 - - uid: 23528 + pos: 41.5,8.5 + parent: 2 + - uid: 5595 components: - type: Transform - pos: -33.5,11.5 - parent: 22565 - - uid: 23529 + pos: 52.5,4.5 + parent: 2 + - uid: 5596 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 - - uid: 23530 + pos: 40.5,14.5 + parent: 2 + - uid: 5597 components: - type: Transform - pos: -31.5,9.5 - parent: 22565 - - uid: 23531 + pos: 41.5,14.5 + parent: 2 + - uid: 5598 components: - type: Transform - pos: -32.5,9.5 - parent: 22565 - - uid: 23532 + pos: 42.5,14.5 + parent: 2 + - uid: 5599 components: - type: Transform - pos: -33.5,9.5 - parent: 22565 - - uid: 23533 + pos: 43.5,11.5 + parent: 2 + - uid: 5600 components: - type: Transform - pos: -34.5,9.5 - parent: 22565 - - uid: 23534 + pos: 45.5,8.5 + parent: 2 + - uid: 5601 components: - type: Transform - pos: -34.5,11.5 - parent: 22565 - - uid: 23535 + pos: 48.5,12.5 + parent: 2 + - uid: 5602 components: - type: Transform - pos: -34.5,4.5 - parent: 22565 - - uid: 23536 + pos: 49.5,5.5 + parent: 2 + - uid: 5603 components: - type: Transform - pos: -34.5,3.5 - parent: 22565 - - uid: 23537 + pos: 47.5,5.5 + parent: 2 + - uid: 5604 components: - type: Transform - pos: -14.5,7.5 - parent: 22565 - - uid: 23538 + pos: 48.5,5.5 + parent: 2 + - uid: 5605 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 23539 + pos: 50.5,4.5 + parent: 2 + - uid: 5606 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23540 + pos: 51.5,4.5 + parent: 2 + - uid: 5607 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 23541 + pos: 50.5,5.5 + parent: 2 + - uid: 5608 components: - type: Transform - pos: -22.5,12.5 - parent: 22565 - - uid: 23542 + pos: 52.5,7.5 + parent: 2 + - uid: 5609 components: - type: Transform - pos: -21.5,12.5 - parent: 22565 - - uid: 23543 + pos: 52.5,8.5 + parent: 2 + - uid: 5610 components: - type: Transform - pos: -2.5,12.5 - parent: 22565 - - uid: 23544 + pos: 52.5,5.5 + parent: 2 + - uid: 5611 components: - type: Transform - pos: -1.5,12.5 - parent: 22565 - - uid: 23545 + pos: 52.5,6.5 + parent: 2 + - uid: 5612 components: - type: Transform - pos: -6.5,2.5 - parent: 22565 - - uid: 23546 + pos: 47.5,8.5 + parent: 2 + - uid: 5613 components: - type: Transform - pos: -6.5,3.5 - parent: 22565 - - uid: 23547 + pos: 49.5,8.5 + parent: 2 + - uid: 5614 components: - type: Transform - pos: -6.5,4.5 - parent: 22565 - - uid: 23548 + pos: 48.5,8.5 + parent: 2 + - uid: 5615 components: - type: Transform - pos: -6.5,5.5 - parent: 22565 - - uid: 23549 + pos: 50.5,8.5 + parent: 2 + - uid: 5616 components: - type: Transform - pos: -6.5,6.5 - parent: 22565 - - uid: 23550 + pos: 51.5,8.5 + parent: 2 + - uid: 5617 components: - type: Transform - pos: -6.5,7.5 - parent: 22565 - - uid: 23551 + pos: 46.5,8.5 + parent: 2 + - uid: 5618 components: - type: Transform - pos: -6.5,8.5 - parent: 22565 - - uid: 23552 + pos: -9.5,-25.5 + parent: 2 + - uid: 5619 components: - type: Transform - pos: -6.5,9.5 - parent: 22565 - - uid: 23553 + pos: 52.5,3.5 + parent: 2 + - uid: 5620 components: - type: Transform - pos: -4.5,5.5 - parent: 22565 - - uid: 23554 + pos: 52.5,2.5 + parent: 2 + - uid: 5621 components: - type: Transform - pos: -5.5,5.5 - parent: 22565 - - uid: 23555 + pos: 52.5,1.5 + parent: 2 + - uid: 5622 components: - type: Transform - pos: -23.5,8.5 - parent: 22565 - - uid: 23556 + pos: 52.5,0.5 + parent: 2 + - uid: 5623 components: - type: Transform - pos: -23.5,7.5 - parent: 22565 - - uid: 23557 + pos: 44.5,2.5 + parent: 2 + - uid: 5624 components: - type: Transform - pos: -23.5,6.5 - parent: 22565 - - uid: 23558 + pos: -7.5,-23.5 + parent: 2 + - uid: 5625 components: - type: Transform - pos: -23.5,5.5 - parent: 22565 - - uid: 23559 + pos: -29.5,19.5 + parent: 2 + - uid: 5626 components: - type: Transform - pos: -23.5,4.5 - parent: 22565 - - uid: 23560 + pos: -11.5,-25.5 + parent: 2 + - uid: 5627 components: - type: Transform - pos: -23.5,3.5 - parent: 22565 - - uid: 23561 + pos: 2.5,-23.5 + parent: 2 + - uid: 5628 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - uid: 23562 + pos: -1.5,-38.5 + parent: 2 + - uid: 5629 components: - type: Transform - pos: -20.5,8.5 - parent: 22565 - - uid: 23563 + pos: -1.5,-36.5 + parent: 2 + - uid: 5630 components: - type: Transform - pos: -20.5,7.5 - parent: 22565 - - uid: 23564 + pos: -1.5,-30.5 + parent: 2 + - uid: 5631 components: - type: Transform - pos: -20.5,6.5 - parent: 22565 - - uid: 23565 + pos: -1.5,-27.5 + parent: 2 + - uid: 5632 components: - type: Transform - pos: -20.5,5.5 - parent: 22565 - - uid: 23566 + pos: -1.5,-26.5 + parent: 2 + - uid: 5633 components: - type: Transform - pos: -20.5,4.5 - parent: 22565 - - uid: 23567 + pos: -1.5,-25.5 + parent: 2 + - uid: 5634 components: - type: Transform - pos: -20.5,3.5 - parent: 22565 - - uid: 23568 + pos: -2.5,-25.5 + parent: 2 + - uid: 5635 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - uid: 23569 + pos: -3.5,-25.5 + parent: 2 + - uid: 5636 components: - type: Transform - pos: -25.5,5.5 - parent: 22565 - - uid: 23570 + pos: -14.5,21.5 + parent: 2 + - uid: 5637 components: - type: Transform - pos: -24.5,5.5 - parent: 22565 - - uid: 23571 + pos: 41.5,6.5 + parent: 2 + - uid: 5638 components: - type: Transform - pos: -22.5,5.5 - parent: 22565 - - uid: 23572 + pos: 40.5,7.5 + parent: 2 + - uid: 5639 components: - type: Transform - pos: -21.5,5.5 - parent: 22565 - - uid: 23573 + pos: -10.5,-25.5 + parent: 2 + - uid: 5640 components: - type: Transform - pos: -19.5,5.5 - parent: 22565 - - uid: 23574 + pos: 43.5,10.5 + parent: 2 + - uid: 5641 components: - type: Transform - pos: -18.5,5.5 - parent: 22565 - - uid: 23575 + pos: 43.5,3.5 + parent: 2 + - uid: 5642 components: - type: Transform - pos: -17.5,5.5 - parent: 22565 - - uid: 23576 + pos: -9.5,-25.5 + parent: 2 + - uid: 5643 components: - type: Transform - pos: -16.5,5.5 - parent: 22565 - - uid: 23577 + pos: -1.5,-37.5 + parent: 2 + - uid: 5644 components: - type: Transform - pos: -16.5,6.5 - parent: 22565 - - uid: 23578 + pos: -1.5,-32.5 + parent: 2 + - uid: 5645 components: - type: Transform - pos: -16.5,7.5 - parent: 22565 - - uid: 23579 + pos: 3.5,-41.5 + parent: 2 + - uid: 5646 components: - type: Transform - pos: -16.5,8.5 - parent: 22565 - - uid: 23580 + pos: 1.5,-25.5 + parent: 2 + - uid: 5647 components: - type: Transform - pos: -16.5,9.5 - parent: 22565 - - uid: 23581 + pos: -7.5,-25.5 + parent: 2 + - uid: 5648 components: - type: Transform - pos: -16.5,4.5 - parent: 22565 - - uid: 23582 + pos: -7.5,-21.5 + parent: 2 + - uid: 5649 components: - type: Transform - pos: -16.5,3.5 - parent: 22565 - - uid: 23583 + pos: -7.5,-22.5 + parent: 2 + - uid: 5650 components: - type: Transform - pos: -16.5,2.5 - parent: 22565 - - uid: 23584 + pos: -2.5,-23.5 + parent: 2 + - uid: 5651 components: - type: Transform - pos: -31.5,2.5 - parent: 22565 - - uid: 23585 + pos: -4.5,-25.5 + parent: 2 + - uid: 5652 components: - type: Transform - pos: -32.5,2.5 - parent: 22565 - - uid: 23586 + pos: -1.5,-29.5 + parent: 2 + - uid: 5653 components: - type: Transform - pos: -33.5,2.5 - parent: 22565 - - uid: 23587 + pos: -1.5,-32.5 + parent: 2 + - uid: 5654 components: - type: Transform - pos: -18.5,-25.5 - parent: 22565 - - uid: 24763 + pos: -1.5,-31.5 + parent: 2 + - uid: 5655 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 24764 + pos: -1.5,-34.5 + parent: 2 + - uid: 5656 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24765 + pos: -8.5,-19.5 + parent: 2 + - uid: 5657 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24766 + pos: -4.5,-31.5 + parent: 2 + - uid: 5658 components: - type: Transform - pos: 25.5,-16.5 - parent: 89 - - uid: 24767 + pos: -3.5,-31.5 + parent: 2 + - uid: 5659 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 24768 + pos: -6.5,-25.5 + parent: 2 + - uid: 5660 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 24769 + pos: -9.5,-18.5 + parent: 2 + - uid: 5661 components: - type: Transform - pos: 22.5,-16.5 - parent: 89 - - uid: 24770 + pos: -1.5,-35.5 + parent: 2 + - uid: 5662 components: - type: Transform - pos: 21.5,-16.5 - parent: 89 - - uid: 24771 + pos: -1.5,-33.5 + parent: 2 + - uid: 5663 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 24772 + pos: -1.5,-28.5 + parent: 2 + - uid: 5664 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 24773 + pos: -29.5,17.5 + parent: 2 + - uid: 5665 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 24774 + pos: -0.5,-25.5 + parent: 2 + - uid: 5666 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24775 + pos: 0.5,-25.5 + parent: 2 + - uid: 5667 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24776 + pos: 2.5,-27.5 + parent: 2 + - uid: 5668 components: - type: Transform - pos: 17.5,-17.5 - parent: 89 - - uid: 24777 + pos: 2.5,-25.5 + parent: 2 + - uid: 5669 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24778 + pos: 2.5,-29.5 + parent: 2 + - uid: 5670 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24779 + pos: 2.5,-26.5 + parent: 2 + - uid: 5671 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 24780 + pos: 3.5,-29.5 + parent: 2 + - uid: 5672 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 24781 + pos: 4.5,-29.5 + parent: 2 + - uid: 5673 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 24782 + pos: -8.5,-20.5 + parent: 2 + - uid: 5674 components: - type: Transform - pos: 14.5,-19.5 - parent: 89 - - uid: 24783 + pos: -7.5,-23.5 + parent: 2 + - uid: 5675 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 - - uid: 24784 + pos: -7.5,-20.5 + parent: 2 + - uid: 5676 components: - type: Transform - pos: 12.5,-19.5 - parent: 89 - - uid: 24785 + pos: -7.5,-24.5 + parent: 2 + - uid: 5677 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 - - uid: 24786 + pos: 35.5,3.5 + parent: 2 + - uid: 5678 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 25397 + pos: 35.5,2.5 + parent: 2 + - uid: 5679 components: - type: Transform - pos: 38.5,-22.5 - parent: 89 - - uid: 25398 + pos: 51.5,1.5 + parent: 2 + - uid: 5680 components: - type: Transform - pos: 37.5,-22.5 - parent: 89 - - uid: 25399 + pos: 50.5,1.5 + parent: 2 + - uid: 5681 components: - type: Transform - pos: 36.5,-22.5 - parent: 89 - - uid: 25400 + pos: 49.5,1.5 + parent: 2 + - uid: 5682 components: - type: Transform - pos: 35.5,-22.5 - parent: 89 - - uid: 25401 + pos: 48.5,1.5 + parent: 2 + - uid: 5683 components: - type: Transform - pos: 34.5,-22.5 - parent: 89 - - uid: 25402 + pos: 47.5,1.5 + parent: 2 + - uid: 5684 components: - type: Transform - pos: 35.5,-23.5 - parent: 89 - - uid: 25403 + pos: 46.5,1.5 + parent: 2 + - uid: 5685 components: - type: Transform - pos: 35.5,-24.5 - parent: 89 - - uid: 25404 + pos: 45.5,1.5 + parent: 2 + - uid: 5686 components: - type: Transform - pos: 35.5,-25.5 - parent: 89 - - uid: 25405 + pos: 44.5,1.5 + parent: 2 + - uid: 5687 components: - type: Transform - pos: 35.5,-26.5 - parent: 89 - - uid: 25406 + pos: 43.5,1.5 + parent: 2 + - uid: 5688 components: - type: Transform - pos: 35.5,-27.5 - parent: 89 - - uid: 25430 + pos: 42.5,1.5 + parent: 2 + - uid: 5689 components: - type: Transform - pos: 1.5,-12.5 - parent: 18153 - - uid: 25431 + pos: 41.5,1.5 + parent: 2 + - uid: 5690 components: - type: Transform - pos: 0.5,-7.5 - parent: 18153 - - uid: 25432 + pos: 40.5,1.5 + parent: 2 + - uid: 5691 components: - type: Transform - pos: 1.5,-7.5 - parent: 18153 - - uid: 25433 + pos: 39.5,1.5 + parent: 2 + - uid: 5692 components: - type: Transform - pos: 5.5,-4.5 - parent: 18153 - - uid: 25434 + pos: 38.5,1.5 + parent: 2 + - uid: 5693 components: - type: Transform - pos: 5.5,-6.5 - parent: 18153 - - uid: 25435 + pos: 37.5,1.5 + parent: 2 + - uid: 5694 components: - type: Transform - pos: 0.5,-8.5 - parent: 18153 - - uid: 25436 + pos: 36.5,1.5 + parent: 2 + - uid: 5695 components: - type: Transform - pos: 3.5,-11.5 - parent: 18153 - - uid: 25437 + pos: 35.5,1.5 + parent: 2 + - uid: 5696 components: - type: Transform - pos: 2.5,-11.5 - parent: 18153 - - uid: 25438 + pos: 35.5,4.5 + parent: 2 + - uid: 5697 components: - type: Transform - pos: 2.5,-7.5 - parent: 18153 - - uid: 25439 + pos: 35.5,5.5 + parent: 2 + - uid: 5698 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25440 + pos: 35.5,6.5 + parent: 2 + - uid: 5699 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25441 + pos: 35.5,7.5 + parent: 2 + - uid: 5700 components: - type: Transform - pos: 3.5,-5.5 - parent: 18153 - - uid: 25442 + pos: 35.5,8.5 + parent: 2 + - uid: 5701 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25443 + pos: 35.5,9.5 + parent: 2 + - uid: 5702 components: - type: Transform - pos: 3.5,-3.5 - parent: 18153 - - uid: 25444 + pos: 35.5,10.5 + parent: 2 + - uid: 5703 components: - type: Transform - pos: 3.5,-2.5 - parent: 18153 - - uid: 25445 + pos: 35.5,11.5 + parent: 2 + - uid: 5704 components: - type: Transform - pos: 3.5,-1.5 - parent: 18153 - - uid: 25446 + pos: 35.5,12.5 + parent: 2 + - uid: 5705 components: - type: Transform - pos: 4.5,-4.5 - parent: 18153 - - uid: 25447 + pos: 35.5,13.5 + parent: 2 + - uid: 5706 components: - type: Transform - pos: 4.5,-6.5 - parent: 18153 - - uid: 25448 + pos: 35.5,14.5 + parent: 2 + - uid: 5707 components: - type: Transform - pos: 0.5,-5.5 - parent: 18153 - - uid: 25449 + pos: 36.5,14.5 + parent: 2 + - uid: 5708 components: - type: Transform - pos: 0.5,-6.5 - parent: 18153 - - uid: 25450 + pos: 37.5,14.5 + parent: 2 + - uid: 5709 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25451 + pos: 38.5,14.5 + parent: 2 + - uid: 5710 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 - - uid: 25452 + pos: 39.5,14.5 + parent: 2 + - uid: 5711 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25453 + pos: 32.5,4.5 + parent: 2 + - uid: 5712 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25454 + pos: 33.5,8.5 + parent: 2 + - uid: 5713 components: - type: Transform - pos: 4.5,-11.5 - parent: 18153 - - uid: 25455 + pos: 34.5,3.5 + parent: 2 + - uid: 5714 components: - type: Transform - pos: 3.5,-8.5 - parent: 18153 - - uid: 25456 + pos: 33.5,8.5 + parent: 2 + - uid: 5715 components: - type: Transform - pos: 4.5,-2.5 - parent: 18153 - - uid: 25457 + pos: 33.5,3.5 + parent: 2 + - uid: 5716 components: - type: Transform - pos: 5.5,-2.5 - parent: 18153 - - uid: 25458 + pos: 32.5,3.5 + parent: 2 + - uid: 5717 components: - type: Transform - pos: 2.5,-2.5 - parent: 18153 - - uid: 25459 + pos: 32.5,5.5 + parent: 2 + - uid: 5718 components: - type: Transform - pos: 1.5,-2.5 - parent: 18153 - - uid: 25460 + pos: 32.5,6.5 + parent: 2 + - uid: 5719 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 - - uid: 25461 + pos: 32.5,7.5 + parent: 2 + - uid: 5720 components: - type: Transform - pos: 1.5,-12.5 - parent: 18153 - - uid: 25462 + pos: 32.5,8.5 + parent: 2 + - uid: 5721 components: - type: Transform - pos: 5.5,-12.5 - parent: 18153 - - uid: 25463 + pos: 40.5,2.5 + parent: 2 + - uid: 5722 components: - type: Transform - pos: 1.5,-11.5 - parent: 18153 - - uid: 25464 + pos: 40.5,3.5 + parent: 2 + - uid: 5723 components: - type: Transform - pos: 5.5,-11.5 - parent: 18153 - - uid: 25465 + pos: 40.5,4.5 + parent: 2 + - uid: 5724 components: - type: Transform - pos: 1.5,-13.5 - parent: 18153 - - uid: 25466 + pos: 41.5,4.5 + parent: 2 + - uid: 5725 components: - type: Transform - pos: 1.5,-2.5 - parent: 18153 - - uid: 25467 + pos: 42.5,12.5 + parent: 2 + - uid: 5726 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25468 + pos: 52.5,-5.5 + parent: 2 + - uid: 5727 components: - type: Transform - pos: 2.5,-3.5 - parent: 18153 - - uid: 25469 + pos: 49.5,12.5 + parent: 2 + - uid: 5728 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25470 + pos: 47.5,12.5 + parent: 2 + - uid: 5729 components: - type: Transform - pos: 5.5,-12.5 - parent: 18153 - - uid: 25471 + pos: 48.5,12.5 + parent: 2 + - uid: 5730 components: - type: Transform - pos: 5.5,-13.5 - parent: 18153 - - uid: 25472 + pos: 47.5,14.5 + parent: 2 + - uid: 5731 components: - type: Transform - pos: 3.5,-5.5 - parent: 18153 - - uid: 25473 + pos: 52.5,-4.5 + parent: 2 + - uid: 5732 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25474 + pos: 52.5,-3.5 + parent: 2 + - uid: 5733 components: - type: Transform - pos: 5.5,-3.5 - parent: 18153 - - uid: 25475 + pos: 52.5,-2.5 + parent: 2 + - uid: 5734 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25476 + pos: 52.5,-0.5 + parent: 2 + - uid: 5735 components: - type: Transform - pos: 3.5,-3.5 - parent: 18153 - - uid: 25477 + pos: 13.5,-14.5 + parent: 2 + - uid: 5736 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25478 + pos: -37.5,-9.5 + parent: 2 + - uid: 5737 components: - type: Transform - pos: 0.5,-4.5 - parent: 18153 - - uid: 25479 + pos: -117.5,18.5 + parent: 2 + - uid: 5738 components: - type: Transform - pos: 0.5,-5.5 - parent: 18153 - - uid: 25607 + pos: -4.5,23.5 + parent: 2 + - uid: 5739 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 25608 + pos: -6.5,23.5 + parent: 2 + - uid: 5740 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 25643 + pos: -70.5,-16.5 + parent: 2 + - uid: 5741 components: - type: Transform - pos: -86.5,-6.5 - parent: 89 - - uid: 25657 + pos: -8.5,23.5 + parent: 2 + - uid: 5742 components: - type: Transform - pos: 27.5,-16.5 - parent: 89 - - uid: 25658 + pos: -52.5,-11.5 + parent: 2 + - uid: 5743 components: - type: Transform - pos: 28.5,-16.5 - parent: 89 - - uid: 25659 + pos: -53.5,-11.5 + parent: 2 + - uid: 5744 components: - type: Transform - pos: 29.5,-16.5 - parent: 89 - - uid: 25660 + pos: 0.5,12.5 + parent: 2 + - uid: 5745 components: - type: Transform - pos: 30.5,-16.5 - parent: 89 - - uid: 25661 + pos: -82.5,-5.5 + parent: 2 + - uid: 5746 components: - type: Transform - pos: 31.5,-16.5 - parent: 89 - - uid: 25662 + pos: -73.5,-9.5 + parent: 2 + - uid: 5747 components: - type: Transform - pos: 32.5,-16.5 - parent: 89 - - uid: 25663 + pos: -70.5,-13.5 + parent: 2 + - uid: 5748 components: - type: Transform - pos: 33.5,-16.5 - parent: 89 - - uid: 25664 + pos: -70.5,-15.5 + parent: 2 + - uid: 5749 components: - type: Transform - pos: 34.5,-16.5 - parent: 89 - - uid: 25665 + pos: -71.5,-16.5 + parent: 2 + - uid: 5750 components: - type: Transform - pos: 35.5,-16.5 - parent: 89 - - uid: 25666 + pos: -43.5,-7.5 + parent: 2 + - uid: 5751 components: - type: Transform - pos: 36.5,-16.5 - parent: 89 - - uid: 25667 + pos: -119.5,15.5 + parent: 2 + - uid: 5752 components: - type: Transform - pos: 36.5,-17.5 - parent: 89 - - uid: 25848 + pos: -11.5,23.5 + parent: 2 + - uid: 5753 components: - type: Transform - pos: -26.5,16.5 - parent: 89 - - uid: 25849 + pos: -73.5,-10.5 + parent: 2 + - uid: 5754 components: - type: Transform - pos: -26.5,17.5 - parent: 89 - - uid: 25865 + pos: -69.5,-10.5 + parent: 2 + - uid: 5755 components: - type: Transform - pos: -14.5,-25.5 - parent: 89 -- proto: CableApcStack - entities: - - uid: 97 + pos: -72.5,-15.5 + parent: 2 + - uid: 5756 components: - type: Transform - pos: -13.491456,-15.321603 - parent: 89 - - uid: 99 + pos: -67.5,-9.5 + parent: 2 + - uid: 5757 components: - type: Transform - pos: -13.335206,-15.446603 - parent: 89 - - uid: 8938 + pos: -67.5,-8.5 + parent: 2 + - uid: 5758 components: - type: Transform - pos: -131.43742,-2.5232015 - parent: 89 - - uid: 15290 + pos: -68.5,-8.5 + parent: 2 + - uid: 5759 components: - type: Transform - pos: -115.45264,15.019241 - parent: 89 - - uid: 19698 + pos: -44.5,-12.5 + parent: 2 + - uid: 5760 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19699 + pos: -1.5,12.5 + parent: 2 + - uid: 5761 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19703 + pos: -0.5,12.5 + parent: 2 + - uid: 5762 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19727 + pos: -13.5,23.5 + parent: 2 + - uid: 5763 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19728 + pos: -80.5,-9.5 + parent: 2 + - uid: 5764 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19729 + pos: -80.5,-8.5 + parent: 2 + - uid: 5765 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19730 + pos: -119.5,14.5 + parent: 2 + - uid: 5766 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19731 + pos: -79.5,-9.5 + parent: 2 + - uid: 5767 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19732 + pos: -78.5,-9.5 + parent: 2 + - uid: 5768 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 20085 + pos: -77.5,-9.5 + parent: 2 + - uid: 5769 components: - type: Transform - pos: -115.48235,5.7165937 - parent: 89 - - uid: 21091 + pos: -81.5,-5.5 + parent: 2 + - uid: 5770 components: - type: Transform - pos: -103.706276,-2.3275843 - parent: 89 - - uid: 21094 + pos: -76.5,-9.5 + parent: 2 + - uid: 5771 components: - type: Transform - pos: -103.50315,-2.2338343 - parent: 89 -- proto: CableApcStack1 - entities: - - uid: 8223 + pos: -75.5,-9.5 + parent: 2 + - uid: 5772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5947638,30.561302 - parent: 89 - - uid: 8231 + pos: -74.5,-9.5 + parent: 2 + - uid: 5773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.532264,30.576927 - parent: 89 - - uid: 8239 + pos: -80.5,-5.5 + parent: 2 + - uid: 5774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.6103897,32.545677 - parent: 89 - - uid: 8250 + pos: -80.5,-7.5 + parent: 2 + - uid: 5775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.7041397,30.561302 - parent: 89 - - uid: 8259 + pos: -82.5,-6.5 + parent: 2 + - uid: 5776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.51449203,41.5748 - parent: 89 - - uid: 8288 + pos: -82.5,-8.5 + parent: 2 + - uid: 5777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5392475,40.54355 - parent: 89 - - uid: 8302 + pos: -82.5,-7.5 + parent: 2 + - uid: 5778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5635147,35.623802 - parent: 89 - - uid: 8305 + pos: -82.5,-9.5 + parent: 2 + - uid: 5779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.576991,41.48105 - parent: 89 - - uid: 8313 + pos: -72.5,-10.5 + parent: 2 + - uid: 5780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.764492,45.777924 - parent: 89 - - uid: 8316 + pos: -71.5,-10.5 + parent: 2 + - uid: 5781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.326992,45.7623 - parent: 89 - - uid: 8328 + pos: -70.5,-10.5 + parent: 2 + - uid: 5782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.608242,43.5123 - parent: 89 - - uid: 21515 + pos: -14.5,22.5 + parent: 2 + - uid: 5783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.524166,21.414473 - parent: 89 - - uid: 21516 + pos: -150.5,-12.5 + parent: 2 + - uid: 5784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.586666,22.273848 - parent: 89 - - uid: 21517 + pos: -117.5,19.5 + parent: 2 + - uid: 5785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.47729,23.523848 - parent: 89 -- proto: CableHV - entities: - - uid: 43 + pos: -14.5,23.5 + parent: 2 + - uid: 5786 components: - type: Transform - pos: -1.5,23.5 - parent: 89 - - uid: 125 + pos: -12.5,23.5 + parent: 2 + - uid: 5787 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 464 + pos: -10.5,23.5 + parent: 2 + - uid: 5788 components: - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 466 + pos: -7.5,23.5 + parent: 2 + - uid: 5789 components: - type: Transform - pos: 62.5,-31.5 - parent: 89 - - uid: 517 + pos: -5.5,23.5 + parent: 2 + - uid: 5790 components: - type: Transform - pos: 62.5,-32.5 - parent: 89 - - uid: 521 + pos: 34.5,27.5 + parent: 2 + - uid: 5791 components: - type: Transform - pos: 53.5,-37.5 - parent: 89 - - uid: 522 + pos: 20.5,-16.5 + parent: 2 + - uid: 5792 components: - type: Transform - pos: 55.5,-37.5 - parent: 89 - - uid: 620 + pos: 12.5,-15.5 + parent: 2 + - uid: 5793 components: - type: Transform - pos: 47.5,3.5 - parent: 89 - - uid: 626 + pos: -3.5,26.5 + parent: 2 + - uid: 5794 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 797 + pos: 13.5,-15.5 + parent: 2 + - uid: 5795 components: - type: Transform - pos: -130.5,-3.5 - parent: 89 - - uid: 816 + pos: -3.5,23.5 + parent: 2 + - uid: 5796 components: - type: Transform - pos: -11.5,3.5 - parent: 89 - - uid: 819 + pos: -5.5,26.5 + parent: 2 + - uid: 5797 components: - type: Transform - pos: -10.5,3.5 - parent: 89 - - uid: 821 + pos: -5.5,27.5 + parent: 2 + - uid: 5798 components: - type: Transform - pos: -7.5,3.5 - parent: 89 - - uid: 822 + pos: -4.5,26.5 + parent: 2 + - uid: 5799 components: - type: Transform - pos: -6.5,3.5 - parent: 89 - - uid: 867 + pos: -5.5,26.5 + parent: 2 + - uid: 5800 components: - type: Transform - pos: 47.5,4.5 - parent: 89 - - uid: 991 + pos: -3.5,26.5 + parent: 2 + - uid: 5801 components: - type: Transform - pos: 54.5,-37.5 - parent: 89 - - uid: 1637 + pos: -3.5,27.5 + parent: 2 + - uid: 5802 components: - type: Transform - pos: -3.5,3.5 - parent: 89 - - uid: 1797 + pos: -3.5,28.5 + parent: 2 + - uid: 5803 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 2073 + pos: -3.5,29.5 + parent: 2 + - uid: 5804 components: - type: Transform - pos: -2.5,3.5 - parent: 89 - - uid: 2085 + pos: -3.5,30.5 + parent: 2 + - uid: 5805 components: - type: Transform - pos: -131.5,-3.5 - parent: 89 - - uid: 2089 + pos: -3.5,31.5 + parent: 2 + - uid: 5806 components: - type: Transform - pos: -128.5,-8.5 - parent: 89 - - uid: 2242 + pos: -3.5,33.5 + parent: 2 + - uid: 5807 components: - type: Transform - pos: -1.5,3.5 - parent: 89 - - uid: 2258 + pos: -3.5,34.5 + parent: 2 + - uid: 5808 components: - type: Transform - pos: -0.5,3.5 - parent: 89 - - uid: 2654 + pos: -3.5,35.5 + parent: 2 + - uid: 5809 components: - type: Transform - pos: 0.5,3.5 - parent: 89 - - uid: 2868 + pos: -3.5,36.5 + parent: 2 + - uid: 5810 components: - type: Transform - pos: -126.5,4.5 - parent: 89 - - uid: 3033 + pos: -3.5,37.5 + parent: 2 + - uid: 5811 components: - type: Transform - pos: 52.5,26.5 - parent: 89 - - uid: 3034 + pos: -3.5,38.5 + parent: 2 + - uid: 5812 components: - type: Transform - pos: 51.5,26.5 - parent: 89 - - uid: 3038 + pos: -3.5,39.5 + parent: 2 + - uid: 5813 components: - type: Transform - pos: 50.5,26.5 - parent: 89 - - uid: 3040 + pos: -2.5,39.5 + parent: 2 + - uid: 5814 components: - type: Transform - pos: 49.5,26.5 - parent: 89 - - uid: 3277 + pos: -2.5,38.5 + parent: 2 + - uid: 5815 components: - type: Transform - pos: 53.5,43.5 - parent: 89 - - uid: 3282 + pos: 52.5,-23.5 + parent: 2 + - uid: 5816 components: - type: Transform - pos: -126.5,-7.5 - parent: 89 - - uid: 3286 + pos: -130.5,-4.5 + parent: 2 + - uid: 5817 components: - type: Transform - pos: -129.5,-13.5 - parent: 89 - - uid: 4891 + pos: 2.5,-28.5 + parent: 2 + - uid: 5818 components: - type: Transform - pos: -123.5,-18.5 - parent: 89 - - uid: 5833 + pos: -80.5,-6.5 + parent: 2 + - uid: 5819 components: - type: Transform - pos: 3.5,23.5 - parent: 89 - - uid: 6229 + pos: -70.5,-14.5 + parent: 2 + - uid: 5820 components: - type: Transform - pos: -133.5,-9.5 - parent: 89 - - uid: 6240 + pos: -70.5,-11.5 + parent: 2 + - uid: 5821 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 6247 + pos: -70.5,-12.5 + parent: 2 + - uid: 5822 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 6511 + pos: -47.5,-12.5 + parent: 2 + - uid: 5823 components: - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 6646 + pos: -43.5,-11.5 + parent: 2 + - uid: 5824 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 6648 + pos: -43.5,-12.5 + parent: 2 + - uid: 5825 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 6720 + pos: -67.5,-10.5 + parent: 2 + - uid: 5826 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 6864 + pos: -68.5,-10.5 + parent: 2 + - uid: 5827 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 6974 + pos: -48.5,-12.5 + parent: 2 + - uid: 5828 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 6975 + pos: -43.5,-9.5 + parent: 2 + - uid: 5829 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 7145 + pos: -72.5,-14.5 + parent: 2 + - uid: 5830 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 7618 + pos: -46.5,-12.5 + parent: 2 + - uid: 5831 components: - type: Transform - pos: 63.5,-22.5 - parent: 89 - - uid: 7621 + pos: -45.5,-12.5 + parent: 2 + - uid: 5832 components: - type: Transform - pos: 63.5,-23.5 - parent: 89 - - uid: 7636 + pos: -72.5,-16.5 + parent: 2 + - uid: 5833 components: - type: Transform - pos: 8.5,26.5 - parent: 89 - - uid: 8248 + pos: -43.5,-8.5 + parent: 2 + - uid: 5834 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8249 + pos: -43.5,-10.5 + parent: 2 + - uid: 5835 components: - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 8251 + pos: -14.5,-26.5 + parent: 2 + - uid: 5836 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8252 + pos: -15.5,-26.5 + parent: 2 + - uid: 5837 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8253 + pos: -16.5,-26.5 + parent: 2 + - uid: 5838 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8255 + pos: -9.5,-16.5 + parent: 2 + - uid: 5839 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8256 + pos: -10.5,-16.5 + parent: 2 + - uid: 5840 components: - type: Transform - pos: -3.5,25.5 - parent: 89 - - uid: 8257 + pos: -9.5,-17.5 + parent: 2 + - uid: 5841 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 8351 + pos: -17.5,-26.5 + parent: 2 + - uid: 5842 components: - type: Transform - pos: 21.5,25.5 - parent: 89 - - uid: 8447 + pos: -19.5,-26.5 + parent: 2 + - uid: 5843 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 8448 + pos: -18.5,-26.5 + parent: 2 + - uid: 5844 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 8455 + pos: -11.5,-16.5 + parent: 2 + - uid: 5845 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 8458 + pos: -20.5,-26.5 + parent: 2 + - uid: 5846 components: - type: Transform - pos: -118.5,6.5 - parent: 89 - - uid: 8463 + pos: -20.5,-25.5 + parent: 2 + - uid: 5847 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 8464 + pos: -21.5,-25.5 + parent: 2 + - uid: 5848 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 8465 + pos: -22.5,-25.5 + parent: 2 + - uid: 5849 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 8466 + pos: -23.5,-25.5 + parent: 2 + - uid: 5850 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 8467 + pos: -24.5,-25.5 + parent: 2 + - uid: 5851 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 8479 + pos: -13.5,-16.5 + parent: 2 + - uid: 5852 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8543 + pos: -16.5,-16.5 + parent: 2 + - uid: 5853 components: - type: Transform - pos: -121.5,18.5 - parent: 89 - - uid: 8544 + pos: -24.5,-16.5 + parent: 2 + - uid: 5854 components: - type: Transform - pos: -122.5,18.5 - parent: 89 - - uid: 8545 + pos: -24.5,-16.5 + parent: 2 + - uid: 5855 components: - type: Transform - pos: -125.5,12.5 - parent: 89 - - uid: 8546 + pos: -23.5,-16.5 + parent: 2 + - uid: 5856 components: - type: Transform - pos: -124.5,12.5 - parent: 89 - - uid: 8547 + pos: -22.5,-16.5 + parent: 2 + - uid: 5857 components: - type: Transform - pos: -123.5,12.5 - parent: 89 - - uid: 8548 + pos: -21.5,-16.5 + parent: 2 + - uid: 5858 components: - type: Transform - pos: -123.5,13.5 - parent: 89 - - uid: 8549 + pos: -20.5,-16.5 + parent: 2 + - uid: 5859 components: - type: Transform - pos: -123.5,14.5 - parent: 89 - - uid: 8550 + pos: -19.5,-16.5 + parent: 2 + - uid: 5860 components: - type: Transform - pos: -123.5,15.5 - parent: 89 - - uid: 8552 + pos: -18.5,-16.5 + parent: 2 + - uid: 5861 components: - type: Transform - pos: -123.5,18.5 - parent: 89 - - uid: 8560 + pos: -17.5,-16.5 + parent: 2 + - uid: 5862 components: - type: Transform - pos: -124.5,18.5 - parent: 89 - - uid: 8561 + pos: -15.5,-16.5 + parent: 2 + - uid: 5863 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 8562 + pos: -14.5,-16.5 + parent: 2 + - uid: 5864 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 8571 + pos: -12.5,-16.5 + parent: 2 + - uid: 5865 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - uid: 8572 + pos: -25.5,-25.5 + parent: 2 + - uid: 5866 components: - type: Transform - pos: -120.5,19.5 - parent: 89 - - uid: 8578 + pos: -25.5,-24.5 + parent: 2 + - uid: 5867 components: - type: Transform - pos: -118.5,5.5 - parent: 89 - - uid: 8700 + pos: -25.5,-23.5 + parent: 2 + - uid: 5868 components: - type: Transform - pos: -121.5,19.5 - parent: 89 - - uid: 8701 + pos: -25.5,-22.5 + parent: 2 + - uid: 5869 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 8702 + pos: -25.5,-21.5 + parent: 2 + - uid: 5870 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 8721 + pos: -25.5,-20.5 + parent: 2 + - uid: 5871 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - uid: 8722 + pos: -25.5,-19.5 + parent: 2 + - uid: 5872 components: - type: Transform - pos: -123.5,16.5 - parent: 89 - - uid: 8848 + pos: -25.5,-18.5 + parent: 2 + - uid: 5873 components: - type: Transform - pos: 62.5,-29.5 - parent: 89 - - uid: 8894 + pos: -25.5,-17.5 + parent: 2 + - uid: 5874 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 8923 + pos: -25.5,-16.5 + parent: 2 + - uid: 5875 components: - type: Transform - pos: -129.5,-8.5 - parent: 89 - - uid: 8924 + pos: -3.5,24.5 + parent: 2 + - uid: 5876 components: - type: Transform - pos: -130.5,-8.5 - parent: 89 - - uid: 8934 + pos: -40.5,21.5 + parent: 2 + - uid: 5877 components: - type: Transform - pos: -132.5,-6.5 - parent: 89 - - uid: 8936 + pos: -40.5,22.5 + parent: 2 + - uid: 5878 components: - type: Transform - pos: -132.5,-5.5 - parent: 89 - - uid: 9139 + pos: -40.5,20.5 + parent: 2 + - uid: 5879 components: - type: Transform - pos: -124.5,19.5 - parent: 89 - - uid: 9236 + pos: 13.5,31.5 + parent: 2 + - uid: 5880 components: - type: Transform - pos: 62.5,-30.5 - parent: 89 - - uid: 9338 + pos: 13.5,28.5 + parent: 2 + - uid: 5881 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 9344 + pos: 13.5,32.5 + parent: 2 + - uid: 5882 components: - type: Transform - pos: -82.5,-6.5 - parent: 89 - - uid: 9777 + pos: -40.5,24.5 + parent: 2 + - uid: 5883 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 10970 + pos: 14.5,32.5 + parent: 2 + - uid: 5884 components: - type: Transform - pos: 11.5,26.5 - parent: 89 - - uid: 11216 + pos: -40.5,23.5 + parent: 2 + - uid: 5885 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 11221 + pos: -3.5,25.5 + parent: 2 + - uid: 5886 components: - type: Transform - pos: 23.5,25.5 - parent: 89 - - uid: 11385 + pos: -29.5,18.5 + parent: 2 + - uid: 5887 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 11398 + pos: -29.5,16.5 + parent: 2 + - uid: 5888 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 11411 + pos: 15.5,32.5 + parent: 2 + - uid: 5889 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11412 + pos: -39.5,20.5 + parent: 2 + - uid: 5890 components: - type: Transform - pos: -15.5,20.5 - parent: 89 - - uid: 11413 + pos: -38.5,20.5 + parent: 2 + - uid: 5891 components: - type: Transform - pos: -16.5,20.5 - parent: 89 - - uid: 11414 + pos: -37.5,20.5 + parent: 2 + - uid: 5892 components: - type: Transform - pos: -17.5,20.5 - parent: 89 - - uid: 11415 + pos: -36.5,20.5 + parent: 2 + - uid: 5893 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 11416 + pos: -35.5,20.5 + parent: 2 + - uid: 5894 components: - type: Transform - pos: -19.5,20.5 - parent: 89 - - uid: 11417 + pos: -34.5,20.5 + parent: 2 + - uid: 5895 components: - type: Transform - pos: -20.5,20.5 - parent: 89 - - uid: 11418 + pos: -33.5,20.5 + parent: 2 + - uid: 5896 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11419 + pos: -32.5,20.5 + parent: 2 + - uid: 5897 components: - type: Transform - pos: -22.5,20.5 - parent: 89 - - uid: 11420 + pos: -31.5,20.5 + parent: 2 + - uid: 5898 components: - type: Transform - pos: -23.5,20.5 - parent: 89 - - uid: 11421 + pos: -30.5,20.5 + parent: 2 + - uid: 5899 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11422 + pos: -29.5,20.5 + parent: 2 + - uid: 5900 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11423 + pos: -28.5,20.5 + parent: 2 + - uid: 5901 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11424 + pos: -27.5,20.5 + parent: 2 + - uid: 5902 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11425 + pos: -27.5,21.5 + parent: 2 + - uid: 5903 components: - type: Transform - pos: -28.5,20.5 - parent: 89 - - uid: 11426 + pos: -27.5,22.5 + parent: 2 + - uid: 5904 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11427 + pos: -29.5,15.5 + parent: 2 + - uid: 5905 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11428 + pos: -29.5,14.5 + parent: 2 + - uid: 5906 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11429 + pos: -29.5,13.5 + parent: 2 + - uid: 5907 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11430 + pos: -28.5,13.5 + parent: 2 + - uid: 5908 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11431 + pos: -27.5,13.5 + parent: 2 + - uid: 5909 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11432 + pos: -27.5,14.5 + parent: 2 + - uid: 5910 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 11433 + pos: -27.5,15.5 + parent: 2 + - uid: 5911 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 11434 + pos: -117.5,14.5 + parent: 2 + - uid: 5912 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11435 + pos: -36.5,6.5 + parent: 2 + - uid: 5913 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 11436 + pos: -39.5,23.5 + parent: 2 + - uid: 5914 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11437 + pos: -21.5,19.5 + parent: 2 + - uid: 5915 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 11438 + pos: -21.5,20.5 + parent: 2 + - uid: 5916 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 11439 + pos: -22.5,20.5 + parent: 2 + - uid: 5917 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 11440 + pos: -23.5,20.5 + parent: 2 + - uid: 5918 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11441 + pos: -24.5,20.5 + parent: 2 + - uid: 5919 components: - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11443 + pos: -25.5,20.5 + parent: 2 + - uid: 5920 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 11444 + pos: -26.5,20.5 + parent: 2 + - uid: 5921 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 11445 + pos: -36.5,7.5 + parent: 2 + - uid: 5922 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 11446 + pos: -14.5,17.5 + parent: 2 + - uid: 5923 components: - type: Transform - pos: -45.5,20.5 - parent: 89 - - uid: 11447 + pos: -14.5,16.5 + parent: 2 + - uid: 5924 components: - type: Transform - pos: -46.5,20.5 - parent: 89 - - uid: 11448 + pos: -14.5,15.5 + parent: 2 + - uid: 5925 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 11449 + pos: -14.5,14.5 + parent: 2 + - uid: 5926 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 11450 + pos: -14.5,13.5 + parent: 2 + - uid: 5927 components: - type: Transform - pos: -49.5,20.5 - parent: 89 - - uid: 11451 + pos: -14.5,12.5 + parent: 2 + - uid: 5928 components: - type: Transform - pos: -50.5,20.5 - parent: 89 - - uid: 11452 + pos: -14.5,20.5 + parent: 2 + - uid: 5929 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 11453 + pos: -14.5,18.5 + parent: 2 + - uid: 5930 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 11454 + pos: -117.5,13.5 + parent: 2 + - uid: 5931 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 11455 + pos: 15.5,-13.5 + parent: 2 + - uid: 5932 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 11460 + pos: 14.5,-15.5 + parent: 2 + - uid: 5933 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 11463 + pos: 13.5,-10.5 + parent: 2 + - uid: 5934 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 11465 + pos: -36.5,8.5 + parent: 2 + - uid: 5935 components: - type: Transform - pos: -118.5,15.5 - parent: 89 - - uid: 11466 + pos: -119.5,13.5 + parent: 2 + - uid: 5936 components: - type: Transform - pos: -117.5,15.5 - parent: 89 - - uid: 11467 + pos: -119.5,12.5 + parent: 2 + - uid: 5937 components: - type: Transform - pos: -116.5,15.5 - parent: 89 - - uid: 11468 + pos: -119.5,11.5 + parent: 2 + - uid: 5938 components: - type: Transform - pos: -116.5,14.5 - parent: 89 - - uid: 11469 + pos: -119.5,10.5 + parent: 2 + - uid: 5939 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 11470 + pos: -119.5,9.5 + parent: 2 + - uid: 5940 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 11471 + pos: -118.5,9.5 + parent: 2 + - uid: 5941 components: - type: Transform - pos: -118.5,17.5 - parent: 89 - - uid: 11472 + pos: -117.5,9.5 + parent: 2 + - uid: 5942 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 11473 + pos: -116.5,9.5 + parent: 2 + - uid: 5943 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 11474 + pos: -115.5,9.5 + parent: 2 + - uid: 5944 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 11475 + pos: -114.5,9.5 + parent: 2 + - uid: 5945 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 11476 + pos: -113.5,9.5 + parent: 2 + - uid: 5946 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 11477 + pos: -112.5,9.5 + parent: 2 + - uid: 5947 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 11478 + pos: -111.5,9.5 + parent: 2 + - uid: 5948 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 11479 + pos: -110.5,9.5 + parent: 2 + - uid: 5949 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 11480 + pos: -109.5,9.5 + parent: 2 + - uid: 5950 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 11481 + pos: -108.5,9.5 + parent: 2 + - uid: 5951 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 11482 + pos: -108.5,10.5 + parent: 2 + - uid: 5952 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 11483 + pos: -108.5,11.5 + parent: 2 + - uid: 5953 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 11484 + pos: -108.5,12.5 + parent: 2 + - uid: 5954 components: - type: Transform - pos: -105.5,17.5 - parent: 89 - - uid: 11485 + pos: -108.5,13.5 + parent: 2 + - uid: 5955 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 11486 + pos: -108.5,14.5 + parent: 2 + - uid: 5956 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 11487 + pos: -105.5,14.5 + parent: 2 + - uid: 5957 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 11488 + pos: -106.5,14.5 + parent: 2 + - uid: 5958 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 11489 + pos: -107.5,14.5 + parent: 2 + - uid: 5959 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 11490 + pos: -108.5,8.5 + parent: 2 + - uid: 5960 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 11491 + pos: -108.5,7.5 + parent: 2 + - uid: 5961 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 11492 + pos: -108.5,6.5 + parent: 2 + - uid: 5962 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 11493 + pos: -108.5,5.5 + parent: 2 + - uid: 5963 components: - type: Transform - pos: -100.5,21.5 - parent: 89 - - uid: 11494 + pos: -108.5,4.5 + parent: 2 + - uid: 5964 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 11496 + pos: -108.5,3.5 + parent: 2 + - uid: 5965 components: - type: Transform - pos: -98.5,22.5 - parent: 89 - - uid: 11497 + pos: -108.5,2.5 + parent: 2 + - uid: 5966 components: - type: Transform - pos: -97.5,22.5 - parent: 89 - - uid: 11498 + pos: -108.5,1.5 + parent: 2 + - uid: 5967 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 11499 + pos: -108.5,0.5 + parent: 2 + - uid: 5968 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 11500 + pos: -108.5,-0.5 + parent: 2 + - uid: 5969 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 11501 + pos: -108.5,-1.5 + parent: 2 + - uid: 5970 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 11502 + pos: -108.5,-2.5 + parent: 2 + - uid: 5971 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 11503 + pos: -108.5,-3.5 + parent: 2 + - uid: 5972 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 11504 + pos: -108.5,-4.5 + parent: 2 + - uid: 5973 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 11505 + pos: -108.5,-5.5 + parent: 2 + - uid: 5974 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 11506 + pos: -108.5,-6.5 + parent: 2 + - uid: 5975 components: - type: Transform - pos: -88.5,22.5 - parent: 89 - - uid: 11507 + pos: -108.5,-7.5 + parent: 2 + - uid: 5976 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 11509 + pos: -108.5,-8.5 + parent: 2 + - uid: 5977 components: - type: Transform - pos: -87.5,21.5 - parent: 89 - - uid: 11510 + pos: -108.5,-9.5 + parent: 2 + - uid: 5978 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 11511 + pos: -108.5,-10.5 + parent: 2 + - uid: 5979 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 11512 + pos: -108.5,-11.5 + parent: 2 + - uid: 5980 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 11513 + pos: -108.5,-12.5 + parent: 2 + - uid: 5981 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 11514 + pos: -108.5,-13.5 + parent: 2 + - uid: 5982 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 11516 + pos: -108.5,-14.5 + parent: 2 + - uid: 5983 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 11517 + pos: -85.5,-11.5 + parent: 2 + - uid: 5984 components: - type: Transform - pos: -85.5,16.5 - parent: 89 - - uid: 11518 + pos: -109.5,-1.5 + parent: 2 + - uid: 5985 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 11519 + pos: -110.5,-1.5 + parent: 2 + - uid: 5986 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 11520 + pos: -111.5,-1.5 + parent: 2 + - uid: 5987 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 11521 + pos: -107.5,4.5 + parent: 2 + - uid: 5988 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 11522 + pos: -106.5,4.5 + parent: 2 + - uid: 5989 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 11523 + pos: -105.5,4.5 + parent: 2 + - uid: 5990 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 11524 + pos: -104.5,4.5 + parent: 2 + - uid: 5991 components: - type: Transform - pos: -80.5,13.5 - parent: 89 - - uid: 11525 + pos: -103.5,4.5 + parent: 2 + - uid: 5992 components: - type: Transform - pos: -80.5,14.5 - parent: 89 - - uid: 11526 + pos: -102.5,4.5 + parent: 2 + - uid: 5993 components: - type: Transform - pos: -80.5,15.5 - parent: 89 - - uid: 11527 + pos: -101.5,4.5 + parent: 2 + - uid: 5994 components: - type: Transform - pos: -80.5,16.5 - parent: 89 - - uid: 11528 + pos: -100.5,4.5 + parent: 2 + - uid: 5995 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 11529 + pos: -99.5,4.5 + parent: 2 + - uid: 5996 components: - type: Transform - pos: -78.5,16.5 - parent: 89 - - uid: 11530 + pos: -98.5,4.5 + parent: 2 + - uid: 5997 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 11531 + pos: -98.5,5.5 + parent: 2 + - uid: 5998 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 11532 + pos: -98.5,6.5 + parent: 2 + - uid: 5999 components: - type: Transform - pos: -76.5,17.5 - parent: 89 - - uid: 11533 + pos: -98.5,7.5 + parent: 2 + - uid: 6000 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 11534 + pos: -98.5,8.5 + parent: 2 + - uid: 6001 components: - type: Transform - pos: -76.5,19.5 - parent: 89 - - uid: 11535 + pos: -107.5,-3.5 + parent: 2 + - uid: 6002 components: - type: Transform - pos: -76.5,20.5 - parent: 89 - - uid: 11536 + pos: -106.5,-3.5 + parent: 2 + - uid: 6003 components: - type: Transform - pos: -75.5,20.5 - parent: 89 - - uid: 11537 + pos: -106.5,-2.5 + parent: 2 + - uid: 6004 components: - type: Transform - pos: -74.5,20.5 - parent: 89 - - uid: 11538 + pos: -83.5,-10.5 + parent: 2 + - uid: 6005 components: - type: Transform - pos: -73.5,20.5 - parent: 89 - - uid: 11539 + pos: -86.5,-11.5 + parent: 2 + - uid: 6006 components: - type: Transform - pos: -72.5,20.5 - parent: 89 - - uid: 11540 + pos: -97.5,8.5 + parent: 2 + - uid: 6007 components: - type: Transform - pos: -71.5,20.5 - parent: 89 - - uid: 11541 + pos: -96.5,8.5 + parent: 2 + - uid: 6008 components: - type: Transform - pos: -70.5,20.5 - parent: 89 - - uid: 11542 + pos: -95.5,8.5 + parent: 2 + - uid: 6009 components: - type: Transform - pos: -69.5,20.5 - parent: 89 - - uid: 11543 + pos: -94.5,8.5 + parent: 2 + - uid: 6010 components: - type: Transform - pos: -68.5,20.5 - parent: 89 - - uid: 11544 + pos: -94.5,7.5 + parent: 2 + - uid: 6011 components: - type: Transform - pos: -67.5,20.5 - parent: 89 - - uid: 11545 + pos: -94.5,6.5 + parent: 2 + - uid: 6012 components: - type: Transform - pos: -66.5,20.5 - parent: 89 - - uid: 11546 + pos: -94.5,5.5 + parent: 2 + - uid: 6013 components: - type: Transform - pos: -65.5,20.5 - parent: 89 - - uid: 11547 + pos: -94.5,4.5 + parent: 2 + - uid: 6014 components: - type: Transform - pos: -65.5,21.5 - parent: 89 - - uid: 11548 + pos: -94.5,3.5 + parent: 2 + - uid: 6015 components: - type: Transform - pos: -64.5,21.5 - parent: 89 - - uid: 11549 + pos: -95.5,3.5 + parent: 2 + - uid: 6016 components: - type: Transform - pos: -63.5,21.5 - parent: 89 - - uid: 11550 + pos: -96.5,3.5 + parent: 2 + - uid: 6017 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 11551 + pos: -102.5,5.5 + parent: 2 + - uid: 6018 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 11552 + pos: -102.5,6.5 + parent: 2 + - uid: 6019 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 11553 + pos: -102.5,7.5 + parent: 2 + - uid: 6020 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 11554 + pos: -102.5,8.5 + parent: 2 + - uid: 6021 components: - type: Transform - pos: -61.5,18.5 - parent: 89 - - uid: 11555 + pos: -102.5,9.5 + parent: 2 + - uid: 6022 components: - type: Transform - pos: -60.5,18.5 - parent: 89 - - uid: 11556 + pos: -101.5,9.5 + parent: 2 + - uid: 6023 components: - type: Transform - pos: -59.5,18.5 - parent: 89 - - uid: 11557 + pos: -100.5,9.5 + parent: 2 + - uid: 6024 components: - type: Transform - pos: -58.5,18.5 - parent: 89 - - uid: 11558 + pos: -110.5,1.5 + parent: 2 + - uid: 6025 components: - type: Transform - pos: -57.5,18.5 - parent: 89 - - uid: 11559 + pos: -109.5,1.5 + parent: 2 + - uid: 6026 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 11560 + pos: -111.5,1.5 + parent: 2 + - uid: 6027 components: - type: Transform - pos: -57.5,20.5 - parent: 89 - - uid: 11561 + pos: -37.5,8.5 + parent: 2 + - uid: 6028 components: - type: Transform - pos: -57.5,21.5 - parent: 89 - - uid: 11562 + pos: -119.5,16.5 + parent: 2 + - uid: 6029 components: - type: Transform - pos: -57.5,22.5 - parent: 89 - - uid: 11563 + pos: -119.5,17.5 + parent: 2 + - uid: 6030 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - uid: 11564 + pos: -118.5,17.5 + parent: 2 + - uid: 6031 components: - type: Transform - pos: -57.5,24.5 - parent: 89 - - uid: 11565 + pos: -117.5,17.5 + parent: 2 + - uid: 6032 components: - type: Transform - pos: -57.5,25.5 - parent: 89 - - uid: 11566 + pos: -116.5,17.5 + parent: 2 + - uid: 6033 components: - type: Transform - pos: -56.5,25.5 - parent: 89 - - uid: 11567 + pos: -115.5,17.5 + parent: 2 + - uid: 6034 components: - type: Transform - pos: -55.5,25.5 - parent: 89 - - uid: 11568 + pos: -114.5,17.5 + parent: 2 + - uid: 6035 components: - type: Transform - pos: -54.5,25.5 - parent: 89 - - uid: 11569 + pos: -113.5,17.5 + parent: 2 + - uid: 6036 components: - type: Transform - pos: -53.5,25.5 - parent: 89 - - uid: 11570 + pos: -112.5,17.5 + parent: 2 + - uid: 6037 components: - type: Transform - pos: -53.5,24.5 - parent: 89 - - uid: 11571 + pos: -111.5,17.5 + parent: 2 + - uid: 6038 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 11572 + pos: -110.5,17.5 + parent: 2 + - uid: 6039 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 11573 + pos: -109.5,17.5 + parent: 2 + - uid: 6040 components: - type: Transform - pos: -53.5,21.5 - parent: 89 - - uid: 11574 + pos: -108.5,17.5 + parent: 2 + - uid: 6041 components: - type: Transform - pos: -14.5,19.5 - parent: 89 - - uid: 11575 + pos: -110.5,20.5 + parent: 2 + - uid: 6042 components: - type: Transform - pos: -14.5,18.5 - parent: 89 - - uid: 11576 + pos: -109.5,20.5 + parent: 2 + - uid: 6043 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11577 + pos: -108.5,20.5 + parent: 2 + - uid: 6044 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11578 + pos: -108.5,21.5 + parent: 2 + - uid: 6045 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11579 + pos: -107.5,21.5 + parent: 2 + - uid: 6046 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11580 + pos: -107.5,22.5 + parent: 2 + - uid: 6047 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11581 + pos: -107.5,17.5 + parent: 2 + - uid: 6048 components: - type: Transform - pos: -14.5,12.5 - parent: 89 - - uid: 11582 + pos: -106.5,17.5 + parent: 2 + - uid: 6049 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 11583 + pos: -105.5,17.5 + parent: 2 + - uid: 6050 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 11584 + pos: -104.5,17.5 + parent: 2 + - uid: 6051 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 11585 + pos: -103.5,17.5 + parent: 2 + - uid: 6052 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 11586 + pos: -102.5,17.5 + parent: 2 + - uid: 6053 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 11587 + pos: -101.5,17.5 + parent: 2 + - uid: 6054 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 11588 + pos: -100.5,17.5 + parent: 2 + - uid: 6055 components: - type: Transform - pos: -13.5,6.5 - parent: 89 - - uid: 11589 + pos: -100.5,18.5 + parent: 2 + - uid: 6056 components: - type: Transform - pos: -12.5,6.5 - parent: 89 - - uid: 11590 + pos: -100.5,19.5 + parent: 2 + - uid: 6057 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 11591 + pos: -100.5,20.5 + parent: 2 + - uid: 6058 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 11592 + pos: -100.5,21.5 + parent: 2 + - uid: 6059 components: - type: Transform - pos: -11.5,4.5 - parent: 89 - - uid: 11606 + pos: -100.5,22.5 + parent: 2 + - uid: 6060 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 11607 + pos: -99.5,22.5 + parent: 2 + - uid: 6061 components: - type: Transform - pos: 2.5,3.5 - parent: 89 - - uid: 11608 + pos: -99.5,23.5 + parent: 2 + - uid: 6062 components: - type: Transform - pos: 3.5,3.5 - parent: 89 - - uid: 11609 + pos: -99.5,24.5 + parent: 2 + - uid: 6063 components: - type: Transform - pos: 4.5,3.5 - parent: 89 - - uid: 11610 + pos: -99.5,25.5 + parent: 2 + - uid: 6064 components: - type: Transform - pos: 5.5,3.5 - parent: 89 - - uid: 11611 + pos: -100.5,25.5 + parent: 2 + - uid: 6065 components: - type: Transform - pos: 6.5,3.5 - parent: 89 - - uid: 11612 + pos: -101.5,25.5 + parent: 2 + - uid: 6066 components: - type: Transform - pos: 7.5,3.5 - parent: 89 - - uid: 11613 + pos: -118.5,14.5 + parent: 2 + - uid: 6067 components: - type: Transform - pos: 8.5,3.5 - parent: 89 - - uid: 11614 + pos: -9.5,23.5 + parent: 2 + - uid: 6068 components: - type: Transform - pos: 9.5,3.5 - parent: 89 - - uid: 11615 + pos: -37.5,9.5 + parent: 2 + - uid: 6069 components: - type: Transform - pos: 10.5,3.5 - parent: 89 - - uid: 11616 + pos: -36.5,11.5 + parent: 2 + - uid: 6070 components: - type: Transform - pos: 11.5,3.5 - parent: 89 - - uid: 11617 + pos: -35.5,11.5 + parent: 2 + - uid: 6071 components: - type: Transform - pos: 12.5,3.5 - parent: 89 - - uid: 11618 + pos: 22.5,31.5 + parent: 2 + - uid: 6072 components: - type: Transform - pos: 13.5,3.5 - parent: 89 - - uid: 11619 + pos: -15.5,14.5 + parent: 2 + - uid: 6073 components: - type: Transform - pos: 14.5,3.5 - parent: 89 - - uid: 11620 + pos: -16.5,14.5 + parent: 2 + - uid: 6074 components: - type: Transform - pos: 15.5,3.5 - parent: 89 - - uid: 11621 + pos: -17.5,14.5 + parent: 2 + - uid: 6075 components: - type: Transform - pos: 16.5,3.5 - parent: 89 - - uid: 11622 + pos: -18.5,14.5 + parent: 2 + - uid: 6076 components: - type: Transform - pos: 17.5,3.5 - parent: 89 - - uid: 11623 + pos: -19.5,14.5 + parent: 2 + - uid: 6077 components: - type: Transform - pos: 18.5,3.5 - parent: 89 - - uid: 11624 + pos: -19.5,13.5 + parent: 2 + - uid: 6078 components: - type: Transform - pos: 19.5,3.5 - parent: 89 - - uid: 11625 + pos: -19.5,12.5 + parent: 2 + - uid: 6079 components: - type: Transform - pos: 20.5,3.5 - parent: 89 - - uid: 11626 + pos: -19.5,11.5 + parent: 2 + - uid: 6080 components: - type: Transform - pos: 21.5,3.5 - parent: 89 - - uid: 11627 + pos: -19.5,10.5 + parent: 2 + - uid: 6081 components: - type: Transform - pos: 22.5,3.5 - parent: 89 - - uid: 11628 + pos: -18.5,10.5 + parent: 2 + - uid: 6082 components: - type: Transform - pos: 23.5,3.5 - parent: 89 - - uid: 11629 + pos: -14.5,11.5 + parent: 2 + - uid: 6083 components: - type: Transform - pos: 24.5,3.5 - parent: 89 - - uid: 11630 + pos: -14.5,10.5 + parent: 2 + - uid: 6084 components: - type: Transform - pos: 25.5,3.5 - parent: 89 - - uid: 11631 + pos: -14.5,9.5 + parent: 2 + - uid: 6085 components: - type: Transform - pos: 26.5,3.5 - parent: 89 - - uid: 11632 + pos: -14.5,8.5 + parent: 2 + - uid: 6086 components: - type: Transform - pos: 27.5,3.5 - parent: 89 - - uid: 11633 + pos: -14.5,7.5 + parent: 2 + - uid: 6087 components: - type: Transform - pos: 28.5,3.5 - parent: 89 - - uid: 11634 + pos: -14.5,6.5 + parent: 2 + - uid: 6088 components: - type: Transform - pos: 29.5,3.5 - parent: 89 - - uid: 11635 + pos: -13.5,6.5 + parent: 2 + - uid: 6089 components: - type: Transform - pos: 30.5,3.5 - parent: 89 - - uid: 11636 + pos: -12.5,6.5 + parent: 2 + - uid: 6090 components: - type: Transform - pos: 31.5,3.5 - parent: 89 - - uid: 11637 + pos: -11.5,6.5 + parent: 2 + - uid: 6091 components: - type: Transform - pos: 32.5,3.5 - parent: 89 - - uid: 11638 + pos: -11.5,5.5 + parent: 2 + - uid: 6092 components: - type: Transform - pos: 33.5,3.5 - parent: 89 - - uid: 11639 + pos: -10.5,5.5 + parent: 2 + - uid: 6093 components: - type: Transform - pos: 34.5,3.5 - parent: 89 - - uid: 11640 + pos: -11.5,7.5 + parent: 2 + - uid: 6094 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 11641 + pos: -10.5,7.5 + parent: 2 + - uid: 6095 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 11642 + pos: -9.5,7.5 + parent: 2 + - uid: 6096 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 11643 + pos: -8.5,7.5 + parent: 2 + - uid: 6097 components: - type: Transform - pos: 36.5,1.5 - parent: 89 - - uid: 11644 + pos: -7.5,7.5 + parent: 2 + - uid: 6098 components: - type: Transform - pos: 37.5,1.5 - parent: 89 - - uid: 11645 + pos: -6.5,7.5 + parent: 2 + - uid: 6099 components: - type: Transform - pos: 38.5,1.5 - parent: 89 - - uid: 11646 + pos: -6.5,8.5 + parent: 2 + - uid: 6100 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 11647 + pos: -6.5,9.5 + parent: 2 + - uid: 6101 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 11648 + pos: -6.5,10.5 + parent: 2 + - uid: 6102 components: - type: Transform - pos: 41.5,1.5 - parent: 89 - - uid: 11649 + pos: -6.5,11.5 + parent: 2 + - uid: 6103 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 11650 + pos: -6.5,12.5 + parent: 2 + - uid: 6104 components: - type: Transform - pos: 43.5,1.5 - parent: 89 - - uid: 11651 + pos: -6.5,13.5 + parent: 2 + - uid: 6105 components: - type: Transform - pos: 44.5,1.5 - parent: 89 - - uid: 11652 + pos: -6.5,14.5 + parent: 2 + - uid: 6106 components: - type: Transform - pos: 45.5,1.5 - parent: 89 - - uid: 11653 + pos: -29.5,-0.5 + parent: 2 + - uid: 6107 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 11654 + pos: -28.5,-0.5 + parent: 2 + - uid: 6108 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - uid: 11655 + pos: -28.5,0.5 + parent: 2 + - uid: 6109 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 11656 + pos: -82.5,-4.5 + parent: 2 + - uid: 6110 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 11657 + pos: -82.5,-3.5 + parent: 2 + - uid: 6111 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 11658 + pos: -82.5,-2.5 + parent: 2 + - uid: 6112 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 11660 + pos: -82.5,-1.5 + parent: 2 + - uid: 6113 components: - type: Transform - pos: 51.5,2.5 - parent: 89 - - uid: 11661 + pos: -82.5,-0.5 + parent: 2 + - uid: 6114 components: - type: Transform - pos: 51.5,3.5 - parent: 89 - - uid: 11662 + pos: -82.5,0.5 + parent: 2 + - uid: 6115 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 11663 + pos: -81.5,0.5 + parent: 2 + - uid: 6116 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 11664 + pos: -81.5,1.5 + parent: 2 + - uid: 6117 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 11665 + pos: -81.5,2.5 + parent: 2 + - uid: 6118 components: - type: Transform - pos: 49.5,3.5 - parent: 89 - - uid: 11667 + pos: -81.5,3.5 + parent: 2 + - uid: 6119 components: - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 11670 + pos: -81.5,4.5 + parent: 2 + - uid: 6120 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 11671 + pos: -80.5,4.5 + parent: 2 + - uid: 6121 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 11672 + pos: -79.5,4.5 + parent: 2 + - uid: 6122 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 11673 + pos: -78.5,4.5 + parent: 2 + - uid: 6123 components: - type: Transform - pos: -111.5,13.5 - parent: 89 - - uid: 11674 + pos: -77.5,4.5 + parent: 2 + - uid: 6124 components: - type: Transform - pos: -111.5,12.5 - parent: 89 - - uid: 11675 + pos: -76.5,4.5 + parent: 2 + - uid: 6125 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 11676 + pos: -76.5,3.5 + parent: 2 + - uid: 6126 components: - type: Transform - pos: -111.5,10.5 - parent: 89 - - uid: 11677 + pos: -76.5,2.5 + parent: 2 + - uid: 6127 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 11678 + pos: -76.5,1.5 + parent: 2 + - uid: 6128 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 11679 + pos: -77.5,1.5 + parent: 2 + - uid: 6129 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 11680 + pos: -78.5,1.5 + parent: 2 + - uid: 6130 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 11681 + pos: -79.5,1.5 + parent: 2 + - uid: 6131 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 11682 + pos: -79.5,2.5 + parent: 2 + - uid: 6132 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 11683 + pos: -51.5,28.5 + parent: 2 + - uid: 6133 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 11684 + pos: -51.5,29.5 + parent: 2 + - uid: 6134 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 11685 + pos: -51.5,30.5 + parent: 2 + - uid: 6135 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 11686 + pos: -51.5,31.5 + parent: 2 + - uid: 6136 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 11687 + pos: -52.5,29.5 + parent: 2 + - uid: 6137 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 11688 + pos: -52.5,31.5 + parent: 2 + - uid: 6138 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 11689 + pos: -52.5,32.5 + parent: 2 + - uid: 6139 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 11690 + pos: -52.5,33.5 + parent: 2 + - uid: 6140 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 11691 + pos: -52.5,34.5 + parent: 2 + - uid: 6141 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 11692 + pos: -52.5,35.5 + parent: 2 + - uid: 6142 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 11693 + pos: -53.5,35.5 + parent: 2 + - uid: 6143 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 11694 + pos: -54.5,35.5 + parent: 2 + - uid: 6144 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 11695 + pos: -55.5,35.5 + parent: 2 + - uid: 6145 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 11696 + pos: -56.5,35.5 + parent: 2 + - uid: 6146 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 11697 + pos: -56.5,34.5 + parent: 2 + - uid: 6147 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 11698 + pos: -56.5,33.5 + parent: 2 + - uid: 6148 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 11699 + pos: -57.5,33.5 + parent: 2 + - uid: 6149 components: - type: Transform - pos: -97.5,7.5 - parent: 89 - - uid: 11700 + pos: -58.5,33.5 + parent: 2 + - uid: 6150 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 11701 + pos: -59.5,33.5 + parent: 2 + - uid: 6151 components: - type: Transform - pos: -95.5,7.5 - parent: 89 - - uid: 11702 + pos: -59.5,32.5 + parent: 2 + - uid: 6152 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 11703 + pos: -59.5,31.5 + parent: 2 + - uid: 6153 components: - type: Transform - pos: -93.5,7.5 - parent: 89 - - uid: 11704 + pos: -58.5,31.5 + parent: 2 + - uid: 6154 components: - type: Transform - pos: -92.5,7.5 - parent: 89 - - uid: 11705 + pos: -67.5,15.5 + parent: 2 + - uid: 6155 components: - type: Transform - pos: -92.5,6.5 - parent: 89 - - uid: 11706 + pos: -67.5,14.5 + parent: 2 + - uid: 6156 components: - type: Transform - pos: -92.5,5.5 - parent: 89 - - uid: 11707 + pos: -67.5,13.5 + parent: 2 + - uid: 6157 components: - type: Transform - pos: -92.5,4.5 - parent: 89 - - uid: 11708 + pos: -67.5,12.5 + parent: 2 + - uid: 6158 components: - type: Transform - pos: -92.5,3.5 - parent: 89 - - uid: 11709 + pos: -67.5,11.5 + parent: 2 + - uid: 6159 components: - type: Transform - pos: -92.5,2.5 - parent: 89 - - uid: 11710 + pos: -67.5,10.5 + parent: 2 + - uid: 6160 components: - type: Transform - pos: -92.5,1.5 - parent: 89 - - uid: 11711 + pos: -67.5,9.5 + parent: 2 + - uid: 6161 components: - type: Transform - pos: -92.5,0.5 - parent: 89 - - uid: 11712 + pos: -68.5,9.5 + parent: 2 + - uid: 6162 components: - type: Transform - pos: -92.5,-0.5 - parent: 89 - - uid: 11713 + pos: -69.5,9.5 + parent: 2 + - uid: 6163 components: - type: Transform - pos: -92.5,-1.5 - parent: 89 - - uid: 11714 + pos: -70.5,9.5 + parent: 2 + - uid: 6164 components: - type: Transform - pos: -91.5,-1.5 - parent: 89 - - uid: 11715 + pos: -71.5,9.5 + parent: 2 + - uid: 6165 components: - type: Transform - pos: -90.5,-1.5 - parent: 89 - - uid: 11716 + pos: -72.5,9.5 + parent: 2 + - uid: 6166 components: - type: Transform - pos: -89.5,-1.5 - parent: 89 - - uid: 11717 + pos: -72.5,10.5 + parent: 2 + - uid: 6167 components: - type: Transform - pos: -88.5,-1.5 - parent: 89 - - uid: 11718 + pos: -72.5,11.5 + parent: 2 + - uid: 6168 components: - type: Transform - pos: -87.5,-1.5 - parent: 89 - - uid: 11719 + pos: -72.5,12.5 + parent: 2 + - uid: 6169 components: - type: Transform - pos: -86.5,-1.5 - parent: 89 - - uid: 11720 + pos: -72.5,13.5 + parent: 2 + - uid: 6170 components: - type: Transform - pos: -85.5,-1.5 - parent: 89 - - uid: 11721 + pos: -72.5,14.5 + parent: 2 + - uid: 6171 components: - type: Transform - pos: -85.5,-2.5 - parent: 89 - - uid: 11722 + pos: -72.5,15.5 + parent: 2 + - uid: 6172 components: - type: Transform - pos: -85.5,-3.5 - parent: 89 - - uid: 11723 + pos: -72.5,16.5 + parent: 2 + - uid: 6173 components: - type: Transform - pos: -85.5,-4.5 - parent: 89 - - uid: 11725 + pos: -73.5,16.5 + parent: 2 + - uid: 6174 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 11726 + pos: -74.5,16.5 + parent: 2 + - uid: 6175 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 11727 + pos: -75.5,16.5 + parent: 2 + - uid: 6176 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 11728 + pos: -76.5,16.5 + parent: 2 + - uid: 6177 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 11729 + pos: -77.5,16.5 + parent: 2 + - uid: 6178 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 11730 + pos: -78.5,16.5 + parent: 2 + - uid: 6179 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 11731 + pos: -79.5,16.5 + parent: 2 + - uid: 6180 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 11732 + pos: -80.5,16.5 + parent: 2 + - uid: 6181 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 11733 + pos: -81.5,16.5 + parent: 2 + - uid: 6182 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 11734 + pos: -81.5,15.5 + parent: 2 + - uid: 6183 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 11735 + pos: -81.5,14.5 + parent: 2 + - uid: 6184 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 11736 + pos: -81.5,13.5 + parent: 2 + - uid: 6185 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 11737 + pos: -82.5,13.5 + parent: 2 + - uid: 6186 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 11738 + pos: -83.5,13.5 + parent: 2 + - uid: 6187 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 11739 + pos: -84.5,13.5 + parent: 2 + - uid: 6188 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 11740 + pos: -85.5,13.5 + parent: 2 + - uid: 6189 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 11741 + pos: -85.5,14.5 + parent: 2 + - uid: 6190 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 11742 + pos: -85.5,15.5 + parent: 2 + - uid: 6191 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 11743 + pos: -87.5,16.5 + parent: 2 + - uid: 6192 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 11744 + pos: -86.5,16.5 + parent: 2 + - uid: 6193 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 11745 + pos: -86.5,15.5 + parent: 2 + - uid: 6194 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 11746 + pos: -87.5,17.5 + parent: 2 + - uid: 6195 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 11747 + pos: -87.5,18.5 + parent: 2 + - uid: 6196 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 11748 + pos: -87.5,19.5 + parent: 2 + - uid: 6197 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 11749 + pos: -87.5,20.5 + parent: 2 + - uid: 6198 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 11750 + pos: -88.5,20.5 + parent: 2 + - uid: 6199 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 11751 + pos: -89.5,20.5 + parent: 2 + - uid: 6200 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 11752 + pos: -90.5,20.5 + parent: 2 + - uid: 6201 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 11753 + pos: -75.5,4.5 + parent: 2 + - uid: 6202 components: - type: Transform - pos: -26.5,-16.5 - parent: 89 - - uid: 11754 + pos: -74.5,4.5 + parent: 2 + - uid: 6203 components: - type: Transform - pos: -27.5,-16.5 - parent: 89 - - uid: 11755 + pos: -73.5,4.5 + parent: 2 + - uid: 6204 components: - type: Transform - pos: -28.5,-16.5 - parent: 89 - - uid: 11756 + pos: -72.5,4.5 + parent: 2 + - uid: 6205 components: - type: Transform - pos: -29.5,-16.5 - parent: 89 - - uid: 11757 + pos: -71.5,4.5 + parent: 2 + - uid: 6206 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 11758 + pos: -64.5,6.5 + parent: 2 + - uid: 6207 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 11759 + pos: -70.5,4.5 + parent: 2 + - uid: 6208 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 11761 + pos: -69.5,4.5 + parent: 2 + - uid: 6209 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 11765 + pos: -68.5,4.5 + parent: 2 + - uid: 6210 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 11766 + pos: -67.5,4.5 + parent: 2 + - uid: 6211 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 11767 + pos: -66.5,4.5 + parent: 2 + - uid: 6212 components: - type: Transform - pos: -39.5,-15.5 - parent: 89 - - uid: 11768 + pos: -65.5,4.5 + parent: 2 + - uid: 6213 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 11769 + pos: -64.5,4.5 + parent: 2 + - uid: 6214 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 11770 + pos: -64.5,5.5 + parent: 2 + - uid: 6215 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 11771 + pos: -64.5,6.5 + parent: 2 + - uid: 6216 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 11772 + pos: -37.5,-8.5 + parent: 2 + - uid: 6217 components: - type: Transform - pos: -43.5,-14.5 - parent: 89 - - uid: 11773 + pos: -37.5,-7.5 + parent: 2 + - uid: 6218 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 11774 + pos: -37.5,-6.5 + parent: 2 + - uid: 6219 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 11775 + pos: -37.5,-5.5 + parent: 2 + - uid: 6220 components: - type: Transform - pos: -73.5,-10.5 - parent: 89 - - uid: 11776 + pos: -37.5,-4.5 + parent: 2 + - uid: 6221 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 - - uid: 11777 + pos: -38.5,-4.5 + parent: 2 + - uid: 6222 components: - type: Transform - pos: -71.5,-10.5 - parent: 89 - - uid: 11778 + pos: -39.5,-4.5 + parent: 2 + - uid: 6223 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 11779 + pos: -40.5,-4.5 + parent: 2 + - uid: 6224 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 11780 + pos: -41.5,-4.5 + parent: 2 + - uid: 6225 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 11781 + pos: -42.5,-4.5 + parent: 2 + - uid: 6226 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 11782 + pos: -43.5,-4.5 + parent: 2 + - uid: 6227 components: - type: Transform - pos: -66.5,-10.5 - parent: 89 - - uid: 11783 + pos: -43.5,-5.5 + parent: 2 + - uid: 6228 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 - - uid: 11784 + pos: -43.5,-6.5 + parent: 2 + - uid: 6229 components: - type: Transform - pos: -64.5,-10.5 - parent: 89 - - uid: 11785 + pos: -44.5,-6.5 + parent: 2 + - uid: 6230 components: - type: Transform - pos: -63.5,-10.5 - parent: 89 - - uid: 11786 + pos: -45.5,-6.5 + parent: 2 + - uid: 6231 components: - type: Transform - pos: -62.5,-10.5 - parent: 89 - - uid: 11787 + pos: -46.5,-6.5 + parent: 2 + - uid: 6232 components: - type: Transform - pos: -61.5,-10.5 - parent: 89 - - uid: 11788 + pos: -46.5,-5.5 + parent: 2 + - uid: 6233 components: - type: Transform - pos: -60.5,-10.5 - parent: 89 - - uid: 11789 + pos: -49.5,-12.5 + parent: 2 + - uid: 6234 components: - type: Transform - pos: -59.5,-10.5 - parent: 89 - - uid: 11790 + pos: -50.5,-12.5 + parent: 2 + - uid: 6235 components: - type: Transform - pos: -58.5,-10.5 - parent: 89 - - uid: 11791 + pos: -51.5,-12.5 + parent: 2 + - uid: 6236 components: - type: Transform - pos: -58.5,-9.5 - parent: 89 - - uid: 11792 + pos: -52.5,-12.5 + parent: 2 + - uid: 6237 components: - type: Transform - pos: -58.5,-8.5 - parent: 89 - - uid: 11793 + pos: -37.5,10.5 + parent: 2 + - uid: 6238 components: - type: Transform - pos: -58.5,-7.5 - parent: 89 - - uid: 11794 + pos: 13.5,-9.5 + parent: 2 + - uid: 6239 components: - type: Transform - pos: -58.5,-6.5 - parent: 89 - - uid: 11795 + pos: 13.5,-8.5 + parent: 2 + - uid: 6240 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 11796 + pos: 13.5,-7.5 + parent: 2 + - uid: 6241 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 11797 + pos: 13.5,-6.5 + parent: 2 + - uid: 6242 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - uid: 11798 + pos: 14.5,-9.5 + parent: 2 + - uid: 6243 components: - type: Transform - pos: -55.5,-7.5 - parent: 89 - - uid: 11799 + pos: 12.5,-6.5 + parent: 2 + - uid: 6244 components: - type: Transform - pos: -55.5,-8.5 - parent: 89 - - uid: 11800 + pos: 11.5,-6.5 + parent: 2 + - uid: 6245 components: - type: Transform - pos: -55.5,-9.5 - parent: 89 - - uid: 11801 + pos: 10.5,-6.5 + parent: 2 + - uid: 6246 components: - type: Transform - pos: -55.5,-10.5 - parent: 89 - - uid: 11802 + pos: 15.5,-9.5 + parent: 2 + - uid: 6247 components: - type: Transform - pos: -54.5,-10.5 - parent: 89 - - uid: 11803 + pos: 16.5,-9.5 + parent: 2 + - uid: 6248 components: - type: Transform - pos: -53.5,-10.5 - parent: 89 - - uid: 11804 + pos: 17.5,-9.5 + parent: 2 + - uid: 6249 components: - type: Transform - pos: -52.5,-10.5 - parent: 89 - - uid: 11805 + pos: 18.5,-9.5 + parent: 2 + - uid: 6250 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 11806 + pos: 19.5,-9.5 + parent: 2 + - uid: 6251 components: - type: Transform - pos: -50.5,-10.5 - parent: 89 - - uid: 11807 + pos: 20.5,-9.5 + parent: 2 + - uid: 6252 components: - type: Transform - pos: -50.5,-11.5 - parent: 89 - - uid: 11808 + pos: 21.5,-9.5 + parent: 2 + - uid: 6253 components: - type: Transform - pos: -50.5,-12.5 - parent: 89 - - uid: 11809 + pos: 22.5,-9.5 + parent: 2 + - uid: 6254 components: - type: Transform - pos: -49.5,-12.5 - parent: 89 - - uid: 11810 + pos: 23.5,-9.5 + parent: 2 + - uid: 6255 components: - type: Transform - pos: -48.5,-12.5 - parent: 89 - - uid: 11811 + pos: 24.5,-9.5 + parent: 2 + - uid: 6256 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 11812 + pos: 25.5,-9.5 + parent: 2 + - uid: 6257 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 - - uid: 11813 + pos: 26.5,-9.5 + parent: 2 + - uid: 6258 components: - type: Transform - pos: -45.5,-12.5 - parent: 89 - - uid: 11814 + pos: 27.5,-9.5 + parent: 2 + - uid: 6259 components: - type: Transform - pos: -44.5,-12.5 - parent: 89 - - uid: 11815 + pos: 28.5,-9.5 + parent: 2 + - uid: 6260 components: - type: Transform - pos: -73.5,-9.5 - parent: 89 - - uid: 11816 + pos: 29.5,-9.5 + parent: 2 + - uid: 6261 components: - type: Transform - pos: -74.5,-9.5 - parent: 89 - - uid: 11817 + pos: 30.5,-9.5 + parent: 2 + - uid: 6262 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 11818 + pos: 31.5,-9.5 + parent: 2 + - uid: 6263 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 11819 + pos: 32.5,-9.5 + parent: 2 + - uid: 6264 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 11820 + pos: 33.5,-9.5 + parent: 2 + - uid: 6265 components: - type: Transform - pos: -78.5,-9.5 - parent: 89 - - uid: 11827 + pos: 34.5,-9.5 + parent: 2 + - uid: 6266 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - uid: 11828 + pos: 35.5,-9.5 + parent: 2 + - uid: 6267 components: - type: Transform - pos: -82.5,-5.5 - parent: 89 - - uid: 11829 + pos: 36.5,-9.5 + parent: 2 + - uid: 6268 components: - type: Transform - pos: -83.5,-5.5 - parent: 89 - - uid: 11830 + pos: 37.5,-9.5 + parent: 2 + - uid: 6269 components: - type: Transform - pos: -84.5,-5.5 - parent: 89 - - uid: 11844 + pos: 38.5,-9.5 + parent: 2 + - uid: 6270 components: - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 11845 + pos: -57.5,8.5 + parent: 2 + - uid: 6271 components: - type: Transform - pos: 16.5,-13.5 - parent: 89 - - uid: 11846 + pos: -56.5,8.5 + parent: 2 + - uid: 6272 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 11847 + pos: -55.5,8.5 + parent: 2 + - uid: 6273 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11848 + pos: -55.5,9.5 + parent: 2 + - uid: 6274 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 11849 + pos: -55.5,10.5 + parent: 2 + - uid: 6275 components: - type: Transform - pos: 12.5,-13.5 - parent: 89 - - uid: 11850 + pos: -54.5,10.5 + parent: 2 + - uid: 6276 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 11851 + pos: -53.5,10.5 + parent: 2 + - uid: 6277 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 11852 + pos: -52.5,10.5 + parent: 2 + - uid: 6278 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 11853 + pos: -51.5,10.5 + parent: 2 + - uid: 6279 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 11854 + pos: -51.5,9.5 + parent: 2 + - uid: 6280 components: - type: Transform - pos: -21.5,-17.5 - parent: 89 - - uid: 11855 + pos: -51.5,8.5 + parent: 2 + - uid: 6281 components: - type: Transform - pos: -21.5,-18.5 - parent: 89 - - uid: 11856 + pos: -50.5,10.5 + parent: 2 + - uid: 6282 components: - type: Transform - pos: -21.5,-19.5 - parent: 89 - - uid: 11857 + pos: -49.5,10.5 + parent: 2 + - uid: 6283 components: - type: Transform - pos: -20.5,-19.5 - parent: 89 - - uid: 11858 + pos: -48.5,10.5 + parent: 2 + - uid: 6284 components: - type: Transform - pos: -19.5,-19.5 - parent: 89 - - uid: 11860 + pos: -47.5,10.5 + parent: 2 + - uid: 6285 components: - type: Transform - pos: -19.5,-20.5 - parent: 89 - - uid: 11861 + pos: -46.5,10.5 + parent: 2 + - uid: 6286 components: - type: Transform - pos: -19.5,-21.5 - parent: 89 - - uid: 11862 + pos: -45.5,10.5 + parent: 2 + - uid: 6287 components: - type: Transform - pos: -19.5,-22.5 - parent: 89 - - uid: 11863 + pos: -44.5,10.5 + parent: 2 + - uid: 6288 components: - type: Transform - pos: -18.5,-22.5 - parent: 89 - - uid: 11864 + pos: -44.5,11.5 + parent: 2 + - uid: 6289 components: - type: Transform - pos: -17.5,-22.5 - parent: 89 - - uid: 11865 + pos: -43.5,11.5 + parent: 2 + - uid: 6290 components: - type: Transform - pos: -16.5,-22.5 - parent: 89 - - uid: 11866 + pos: -42.5,11.5 + parent: 2 + - uid: 6291 components: - type: Transform - pos: -15.5,-22.5 - parent: 89 - - uid: 11867 + pos: -41.5,11.5 + parent: 2 + - uid: 6292 components: - type: Transform - pos: -14.5,-22.5 - parent: 89 - - uid: 11868 + pos: -40.5,11.5 + parent: 2 + - uid: 6293 components: - type: Transform - pos: -13.5,-22.5 - parent: 89 - - uid: 11869 + pos: -39.5,11.5 + parent: 2 + - uid: 6294 components: - type: Transform - pos: -12.5,-22.5 - parent: 89 - - uid: 11870 + pos: -38.5,11.5 + parent: 2 + - uid: 6295 components: - type: Transform - pos: -11.5,-22.5 - parent: 89 - - uid: 11871 + pos: -37.5,11.5 + parent: 2 + - uid: 6296 components: - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 11872 + pos: 9.5,-6.5 + parent: 2 + - uid: 6297 components: - type: Transform - pos: -9.5,-22.5 - parent: 89 - - uid: 11873 + pos: 8.5,-6.5 + parent: 2 + - uid: 6298 components: - type: Transform - pos: -8.5,-22.5 - parent: 89 - - uid: 11874 + pos: 7.5,-6.5 + parent: 2 + - uid: 6299 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 11875 + pos: 6.5,-6.5 + parent: 2 + - uid: 6300 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 - - uid: 11877 + pos: 5.5,-6.5 + parent: 2 + - uid: 6301 components: - type: Transform - pos: -6.5,-23.5 - parent: 89 - - uid: 11878 + pos: 4.5,-6.5 + parent: 2 + - uid: 6302 components: - type: Transform - pos: -6.5,-24.5 - parent: 89 - - uid: 11880 + pos: 3.5,-6.5 + parent: 2 + - uid: 6303 components: - type: Transform - pos: -5.5,-24.5 - parent: 89 - - uid: 11881 + pos: 3.5,-7.5 + parent: 2 + - uid: 6304 components: - type: Transform - pos: -4.5,-24.5 - parent: 89 - - uid: 11882 + pos: 3.5,-8.5 + parent: 2 + - uid: 6305 components: - type: Transform - pos: -3.5,-24.5 - parent: 89 - - uid: 11883 + pos: 3.5,-9.5 + parent: 2 + - uid: 6306 components: - type: Transform - pos: -2.5,-24.5 - parent: 89 - - uid: 11884 + pos: 3.5,-10.5 + parent: 2 + - uid: 6307 components: - type: Transform - pos: -1.5,-24.5 - parent: 89 - - uid: 11885 + pos: 2.5,-10.5 + parent: 2 + - uid: 6308 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 - - uid: 11886 + pos: 1.5,-10.5 + parent: 2 + - uid: 6309 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 - - uid: 11887 + pos: 0.5,-10.5 + parent: 2 + - uid: 6310 components: - type: Transform - pos: 1.5,-24.5 - parent: 89 - - uid: 11888 + pos: -0.5,-10.5 + parent: 2 + - uid: 6311 components: - type: Transform - pos: 2.5,-24.5 - parent: 89 - - uid: 11889 + pos: -0.5,-9.5 + parent: 2 + - uid: 6312 components: - type: Transform - pos: 3.5,-24.5 - parent: 89 - - uid: 11890 + pos: -0.5,-8.5 + parent: 2 + - uid: 6313 components: - type: Transform - pos: 4.5,-24.5 - parent: 89 - - uid: 11891 + pos: -0.5,-7.5 + parent: 2 + - uid: 6314 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 - - uid: 11892 + pos: -0.5,-6.5 + parent: 2 + - uid: 6315 components: - type: Transform - pos: 6.5,-24.5 - parent: 89 - - uid: 11893 + pos: -0.5,-5.5 + parent: 2 + - uid: 6316 components: - type: Transform - pos: 6.5,-23.5 - parent: 89 - - uid: 11894 + pos: -0.5,-4.5 + parent: 2 + - uid: 6317 components: - type: Transform - pos: 6.5,-22.5 - parent: 89 - - uid: 11895 + pos: -0.5,-3.5 + parent: 2 + - uid: 6318 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 11896 + pos: 0.5,-3.5 + parent: 2 + - uid: 6319 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 11897 + pos: 1.5,-3.5 + parent: 2 + - uid: 6320 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 11898 + pos: 55.5,-23.5 + parent: 2 + - uid: 6321 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 11899 + pos: 8.5,-15.5 + parent: 2 + - uid: 6322 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 11900 + pos: -12.5,-37.5 + parent: 2 + - uid: 6323 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 11901 + pos: -12.5,-36.5 + parent: 2 + - uid: 6324 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 11902 + pos: -12.5,-35.5 + parent: 2 + - uid: 6325 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 11903 + pos: -12.5,-34.5 + parent: 2 + - uid: 6326 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 11904 + pos: -12.5,-33.5 + parent: 2 + - uid: 6327 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 11905 + pos: -12.5,-32.5 + parent: 2 + - uid: 6328 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 11906 + pos: -12.5,-31.5 + parent: 2 + - uid: 6329 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 11907 + pos: -12.5,-30.5 + parent: 2 + - uid: 6330 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 11908 + pos: -12.5,-29.5 + parent: 2 + - uid: 6331 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 11922 + pos: -12.5,-28.5 + parent: 2 + - uid: 6332 components: - type: Transform - pos: -82.5,-8.5 - parent: 89 - - uid: 11923 + pos: -117.5,20.5 + parent: 2 + - uid: 6333 components: - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 11924 + pos: 23.5,31.5 + parent: 2 + - uid: 6334 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 11925 + pos: 24.5,30.5 + parent: 2 + - uid: 6335 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 11926 + pos: 24.5,31.5 + parent: 2 + - uid: 6336 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 11927 + pos: -14.5,19.5 + parent: 2 + - uid: 6337 components: - type: Transform - pos: -80.5,-8.5 - parent: 89 - - uid: 11928 + pos: 13.5,29.5 + parent: 2 + - uid: 6338 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 11929 + pos: 13.5,30.5 + parent: 2 + - uid: 6339 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 12038 + pos: -30.5,21.5 + parent: 2 + - uid: 6340 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 12543 + pos: -30.5,22.5 + parent: 2 + - uid: 6341 components: - type: Transform - pos: -125.5,1.5 - parent: 89 - - uid: 12544 + pos: -30.5,23.5 + parent: 2 + - uid: 6342 components: - type: Transform - pos: -126.5,1.5 - parent: 89 - - uid: 12545 + pos: -30.5,24.5 + parent: 2 + - uid: 6343 components: - type: Transform - pos: -127.5,1.5 - parent: 89 - - uid: 12546 + pos: -30.5,25.5 + parent: 2 + - uid: 6344 components: - type: Transform - pos: -127.5,2.5 - parent: 89 - - uid: 12547 + pos: -30.5,26.5 + parent: 2 + - uid: 6345 components: - type: Transform - pos: -127.5,3.5 - parent: 89 - - uid: 12548 + pos: 6.5,13.5 + parent: 2 + - uid: 6346 components: - type: Transform - pos: -127.5,4.5 - parent: 89 - - uid: 12549 + pos: 7.5,13.5 + parent: 2 + - uid: 6347 components: - type: Transform - pos: -127.5,5.5 - parent: 89 - - uid: 12550 + pos: 8.5,13.5 + parent: 2 + - uid: 6348 components: - type: Transform - pos: -127.5,6.5 - parent: 89 - - uid: 12551 + pos: 9.5,13.5 + parent: 2 + - uid: 6349 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 12552 + pos: 10.5,13.5 + parent: 2 + - uid: 6350 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 12553 + pos: 11.5,13.5 + parent: 2 + - uid: 6351 components: - type: Transform - pos: -125.5,7.5 - parent: 89 - - uid: 12554 + pos: 12.5,13.5 + parent: 2 + - uid: 6352 components: - type: Transform - pos: -125.5,8.5 - parent: 89 - - uid: 12555 + pos: 13.5,13.5 + parent: 2 + - uid: 6353 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 12556 + pos: 14.5,13.5 + parent: 2 + - uid: 6354 components: - type: Transform - pos: -125.5,10.5 - parent: 89 - - uid: 12557 + pos: 13.5,14.5 + parent: 2 + - uid: 6355 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 12558 + pos: 13.5,15.5 + parent: 2 + - uid: 6356 components: - type: Transform - pos: -125.5,0.5 - parent: 89 - - uid: 12559 + pos: 13.5,16.5 + parent: 2 + - uid: 6357 components: - type: Transform - pos: -125.5,-0.5 - parent: 89 - - uid: 12560 + pos: 13.5,17.5 + parent: 2 + - uid: 6358 components: - type: Transform - pos: -125.5,-1.5 - parent: 89 - - uid: 12561 + pos: 13.5,18.5 + parent: 2 + - uid: 6359 components: - type: Transform - pos: -125.5,-2.5 - parent: 89 - - uid: 12562 + pos: 13.5,19.5 + parent: 2 + - uid: 6360 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 12563 + pos: 13.5,20.5 + parent: 2 + - uid: 6361 components: - type: Transform - pos: -125.5,-4.5 - parent: 89 - - uid: 12564 + pos: 13.5,21.5 + parent: 2 + - uid: 6362 components: - type: Transform - pos: -125.5,-5.5 - parent: 89 - - uid: 12565 + pos: 13.5,22.5 + parent: 2 + - uid: 6363 components: - type: Transform - pos: -125.5,-6.5 - parent: 89 - - uid: 12666 + pos: 13.5,23.5 + parent: 2 + - uid: 6364 components: - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 12701 + pos: 13.5,24.5 + parent: 2 + - uid: 6365 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 12705 + pos: 13.5,25.5 + parent: 2 + - uid: 6366 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12706 + pos: 13.5,26.5 + parent: 2 + - uid: 6367 components: - type: Transform - pos: -37.5,11.5 - parent: 89 - - uid: 12761 + pos: 13.5,27.5 + parent: 2 + - uid: 6368 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 12762 + pos: 15.5,13.5 + parent: 2 + - uid: 6369 components: - type: Transform - pos: -37.5,13.5 - parent: 89 - - uid: 12764 + pos: 15.5,14.5 + parent: 2 + - uid: 6370 components: - type: Transform - pos: -36.5,13.5 - parent: 89 - - uid: 12795 + pos: 16.5,14.5 + parent: 2 + - uid: 6371 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 12848 + pos: 17.5,14.5 + parent: 2 + - uid: 6372 components: - type: Transform - pos: 2.5,23.5 - parent: 89 - - uid: 13451 + pos: 18.5,14.5 + parent: 2 + - uid: 6373 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 13452 + pos: 19.5,14.5 + parent: 2 + - uid: 6374 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 13453 + pos: 20.5,14.5 + parent: 2 + - uid: 6375 components: - type: Transform - pos: -53.5,28.5 - parent: 89 - - uid: 13454 + pos: 21.5,14.5 + parent: 2 + - uid: 6376 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 13455 + pos: 22.5,14.5 + parent: 2 + - uid: 6377 components: - type: Transform - pos: -53.5,30.5 - parent: 89 - - uid: 13456 + pos: 23.5,14.5 + parent: 2 + - uid: 6378 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 13457 + pos: 24.5,14.5 + parent: 2 + - uid: 6379 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 13458 + pos: 25.5,14.5 + parent: 2 + - uid: 6380 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13459 + pos: 26.5,14.5 + parent: 2 + - uid: 6381 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13460 + pos: 27.5,14.5 + parent: 2 + - uid: 6382 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13461 + pos: 27.5,15.5 + parent: 2 + - uid: 6383 components: - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 13631 + pos: 27.5,16.5 + parent: 2 + - uid: 6384 components: - type: Transform - pos: -88.5,20.5 - parent: 89 - - uid: 13632 + pos: 27.5,17.5 + parent: 2 + - uid: 6385 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13633 + pos: 27.5,18.5 + parent: 2 + - uid: 6386 components: - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 14066 + pos: 26.5,18.5 + parent: 2 + - uid: 6387 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 14279 + pos: 26.5,19.5 + parent: 2 + - uid: 6388 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 14280 + pos: 26.5,20.5 + parent: 2 + - uid: 6389 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 14283 + pos: 26.5,21.5 + parent: 2 + - uid: 6390 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 14331 + pos: 24.5,15.5 + parent: 2 + - uid: 6391 components: - type: Transform - pos: -115.5,-12.5 - parent: 89 - - uid: 14415 + pos: 24.5,16.5 + parent: 2 + - uid: 6392 components: - type: Transform - pos: -36.5,14.5 - parent: 89 - - uid: 14416 + pos: 24.5,17.5 + parent: 2 + - uid: 6393 components: - type: Transform - pos: -36.5,15.5 - parent: 89 - - uid: 14417 + pos: 24.5,18.5 + parent: 2 + - uid: 6394 components: - type: Transform - pos: -36.5,16.5 - parent: 89 - - uid: 14418 + pos: 24.5,19.5 + parent: 2 + - uid: 6395 components: - type: Transform - pos: -36.5,17.5 - parent: 89 - - uid: 14419 + pos: 24.5,20.5 + parent: 2 + - uid: 6396 components: - type: Transform - pos: -35.5,17.5 - parent: 89 - - uid: 14420 + pos: 24.5,21.5 + parent: 2 + - uid: 6397 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 14421 + pos: 24.5,22.5 + parent: 2 + - uid: 6398 components: - type: Transform - pos: -33.5,17.5 - parent: 89 - - uid: 14422 + pos: 24.5,23.5 + parent: 2 + - uid: 6399 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - uid: 14423 + pos: 24.5,24.5 + parent: 2 + - uid: 6400 components: - type: Transform - pos: -31.5,17.5 - parent: 89 - - uid: 14424 + pos: 24.5,25.5 + parent: 2 + - uid: 6401 components: - type: Transform - pos: -30.5,17.5 - parent: 89 - - uid: 14425 + pos: 24.5,26.5 + parent: 2 + - uid: 6402 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 14426 + pos: 24.5,27.5 + parent: 2 + - uid: 6403 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 14427 + pos: 24.5,28.5 + parent: 2 + - uid: 6404 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 14561 + pos: -30.5,-0.5 + parent: 2 + - uid: 6405 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 14565 + pos: -31.5,-0.5 + parent: 2 + - uid: 6406 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14601 + pos: -32.5,-0.5 + parent: 2 + - uid: 6407 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14602 + pos: -33.5,-0.5 + parent: 2 + - uid: 6408 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14603 + pos: -34.5,-0.5 + parent: 2 + - uid: 6409 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14662 + pos: -35.5,-0.5 + parent: 2 + - uid: 6410 components: - type: Transform - pos: -0.5,23.5 - parent: 89 - - uid: 15004 + pos: -36.5,-0.5 + parent: 2 + - uid: 6411 components: - type: Transform - pos: 4.5,23.5 - parent: 89 - - uid: 15040 + pos: -37.5,-0.5 + parent: 2 + - uid: 6412 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 15121 + pos: -37.5,-1.5 + parent: 2 + - uid: 6413 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 15122 + pos: -37.5,-2.5 + parent: 2 + - uid: 6414 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 15200 + pos: -37.5,-3.5 + parent: 2 + - uid: 6415 components: - type: Transform - pos: -115.5,-11.5 - parent: 89 - - uid: 15252 + pos: -28.5,-1.5 + parent: 2 + - uid: 6416 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 15257 + pos: -27.5,-1.5 + parent: 2 + - uid: 6417 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 15268 + pos: -26.5,-1.5 + parent: 2 + - uid: 6418 components: - type: Transform - pos: -115.5,-10.5 - parent: 89 - - uid: 15273 + pos: -25.5,-1.5 + parent: 2 + - uid: 6419 components: - type: Transform - pos: -2.5,23.5 - parent: 89 - - uid: 15274 + pos: -24.5,-1.5 + parent: 2 + - uid: 6420 components: - type: Transform - pos: 0.5,23.5 - parent: 89 - - uid: 15276 + pos: -23.5,-1.5 + parent: 2 + - uid: 6421 components: - type: Transform - pos: 1.5,23.5 - parent: 89 - - uid: 15279 + pos: -22.5,-1.5 + parent: 2 + - uid: 6422 components: - type: Transform - pos: -116.5,-10.5 - parent: 89 - - uid: 15383 + pos: -21.5,-1.5 + parent: 2 + - uid: 6423 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 15412 + pos: -20.5,-1.5 + parent: 2 + - uid: 6424 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 15418 + pos: -19.5,-1.5 + parent: 2 + - uid: 6425 components: - type: Transform - pos: 16.5,26.5 - parent: 89 - - uid: 15421 + pos: -18.5,-1.5 + parent: 2 + - uid: 6426 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 15460 + pos: -17.5,-1.5 + parent: 2 + - uid: 6427 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 15465 + pos: -17.5,-2.5 + parent: 2 + - uid: 6428 components: - type: Transform - pos: 14.5,26.5 - parent: 89 - - uid: 15483 + pos: -17.5,-3.5 + parent: 2 + - uid: 6429 components: - type: Transform - pos: 20.5,25.5 - parent: 89 - - uid: 15504 + pos: -17.5,-4.5 + parent: 2 + - uid: 6430 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 15520 + pos: -17.5,-5.5 + parent: 2 + - uid: 6431 components: - type: Transform - pos: 15.5,26.5 - parent: 89 - - uid: 15536 + pos: -17.5,-6.5 + parent: 2 + - uid: 6432 components: - type: Transform - pos: 6.5,26.5 - parent: 89 - - uid: 15545 + pos: -17.5,-7.5 + parent: 2 + - uid: 6433 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 15564 + pos: -16.5,-7.5 + parent: 2 + - uid: 6434 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 15577 + pos: -15.5,-7.5 + parent: 2 + - uid: 6435 components: - type: Transform - pos: 7.5,26.5 - parent: 89 - - uid: 15578 + pos: -14.5,-7.5 + parent: 2 + - uid: 6436 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 15580 + pos: -13.5,-7.5 + parent: 2 + - uid: 6437 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 15582 + pos: -12.5,-7.5 + parent: 2 + - uid: 6438 components: - type: Transform - pos: 17.5,26.5 - parent: 89 - - uid: 15583 + pos: -11.5,-7.5 + parent: 2 + - uid: 6439 components: - type: Transform - pos: -43.5,-5.5 - parent: 89 - - uid: 15585 + pos: -10.5,-6.5 + parent: 2 + - uid: 6440 components: - type: Transform - pos: -43.5,-4.5 - parent: 89 - - uid: 15588 + pos: 6.5,12.5 + parent: 2 + - uid: 6441 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 15596 + pos: 6.5,11.5 + parent: 2 + - uid: 6442 components: - type: Transform - pos: -41.5,-4.5 - parent: 89 - - uid: 15606 + pos: 6.5,10.5 + parent: 2 + - uid: 6443 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 15607 + pos: 6.5,9.5 + parent: 2 + - uid: 6444 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 - - uid: 15650 + pos: 6.5,8.5 + parent: 2 + - uid: 6445 components: - type: Transform - pos: -115.5,-13.5 - parent: 89 - - uid: 15651 + pos: 6.5,7.5 + parent: 2 + - uid: 6446 components: - type: Transform - pos: -114.5,-13.5 - parent: 89 - - uid: 15652 + pos: 7.5,7.5 + parent: 2 + - uid: 6447 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - uid: 15653 + pos: 8.5,7.5 + parent: 2 + - uid: 6448 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - uid: 15654 + pos: 9.5,7.5 + parent: 2 + - uid: 6449 components: - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 15658 + pos: 10.5,7.5 + parent: 2 + - uid: 6450 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - uid: 15659 + pos: 11.5,7.5 + parent: 2 + - uid: 6451 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - uid: 15660 + pos: 12.5,7.5 + parent: 2 + - uid: 6452 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 15661 + pos: 13.5,7.5 + parent: 2 + - uid: 6453 components: - type: Transform - pos: -120.5,-10.5 - parent: 89 - - uid: 15662 + pos: 14.5,7.5 + parent: 2 + - uid: 6454 components: - type: Transform - pos: -121.5,-10.5 - parent: 89 - - uid: 15663 + pos: 15.5,7.5 + parent: 2 + - uid: 6455 components: - type: Transform - pos: -122.5,-10.5 - parent: 89 - - uid: 15664 + pos: 16.5,7.5 + parent: 2 + - uid: 6456 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 15665 + pos: 17.5,7.5 + parent: 2 + - uid: 6457 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 15666 + pos: 18.5,7.5 + parent: 2 + - uid: 6458 components: - type: Transform - pos: -125.5,-10.5 - parent: 89 - - uid: 15667 + pos: 19.5,7.5 + parent: 2 + - uid: 6459 components: - type: Transform - pos: -125.5,-9.5 - parent: 89 - - uid: 15668 + pos: 20.5,7.5 + parent: 2 + - uid: 6460 components: - type: Transform - pos: -125.5,-8.5 - parent: 89 - - uid: 15669 + pos: 20.5,8.5 + parent: 2 + - uid: 6461 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 15852 + pos: 20.5,9.5 + parent: 2 + - uid: 6462 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 15863 + pos: 26.5,22.5 + parent: 2 + - uid: 6463 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 15872 + pos: 27.5,22.5 + parent: 2 + - uid: 6464 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 15886 + pos: 28.5,22.5 + parent: 2 + - uid: 6465 components: - type: Transform - pos: 4.5,25.5 - parent: 89 - - uid: 15897 + pos: 29.5,22.5 + parent: 2 + - uid: 6466 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 15902 + pos: 30.5,22.5 + parent: 2 + - uid: 6467 components: - type: Transform - pos: 4.5,26.5 - parent: 89 - - uid: 15903 + pos: 31.5,22.5 + parent: 2 + - uid: 6468 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 15916 + pos: 32.5,22.5 + parent: 2 + - uid: 6469 components: - type: Transform - pos: 35.5,27.5 - parent: 89 - - uid: 16075 + pos: 33.5,22.5 + parent: 2 + - uid: 6470 components: - type: Transform - pos: -131.5,-8.5 - parent: 89 - - uid: 16146 + pos: 34.5,22.5 + parent: 2 + - uid: 6471 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 16163 + pos: 34.5,23.5 + parent: 2 + - uid: 6472 components: - type: Transform - pos: 4.5,24.5 - parent: 89 - - uid: 16173 + pos: 34.5,24.5 + parent: 2 + - uid: 6473 components: - type: Transform - pos: 5.5,26.5 - parent: 89 - - uid: 16274 + pos: 34.5,25.5 + parent: 2 + - uid: 6474 components: - type: Transform - pos: -135.5,-25.5 - parent: 89 - - uid: 16275 + pos: 34.5,26.5 + parent: 2 + - uid: 6475 components: - type: Transform - pos: -134.5,-25.5 - parent: 89 - - uid: 16301 + pos: -3.5,12.5 + parent: 2 + - uid: 6476 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 16302 + pos: -2.5,12.5 + parent: 2 + - uid: 6477 components: - type: Transform - pos: 25.5,22.5 - parent: 89 - - uid: 16303 + pos: -30.5,27.5 + parent: 2 + - uid: 6478 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16304 + pos: -30.5,28.5 + parent: 2 + - uid: 6479 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16305 + pos: -30.5,29.5 + parent: 2 + - uid: 6480 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16306 + pos: -30.5,30.5 + parent: 2 + - uid: 6481 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16307 + pos: -30.5,31.5 + parent: 2 + - uid: 6482 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16308 + pos: -30.5,32.5 + parent: 2 + - uid: 6483 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16309 + pos: -30.5,33.5 + parent: 2 + - uid: 6484 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16310 + pos: -30.5,34.5 + parent: 2 + - uid: 6485 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16311 + pos: -30.5,35.5 + parent: 2 + - uid: 6486 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16312 + pos: -30.5,36.5 + parent: 2 + - uid: 6487 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16313 + pos: -10.5,-24.5 + parent: 2 + - uid: 6488 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16314 + pos: 15.5,-12.5 + parent: 2 + - uid: 6489 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16315 + pos: 15.5,-11.5 + parent: 2 + - uid: 6490 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16528 + pos: -30.5,37.5 + parent: 2 + - uid: 6491 components: - type: Transform - pos: -126.5,17.5 - parent: 89 - - uid: 16531 + pos: -31.5,37.5 + parent: 2 + - uid: 6492 components: - type: Transform - pos: -126.5,18.5 - parent: 89 - - uid: 16532 + pos: -81.5,16.5 + parent: 2 + - uid: 6493 components: - type: Transform - pos: -123.5,19.5 - parent: 89 - - uid: 16542 + pos: -81.5,17.5 + parent: 2 + - uid: 6494 components: - type: Transform - pos: -122.5,19.5 - parent: 89 - - uid: 16580 + pos: -81.5,18.5 + parent: 2 + - uid: 6495 components: - type: Transform - pos: -116.5,13.5 - parent: 89 - - uid: 16581 + pos: -81.5,19.5 + parent: 2 + - uid: 6496 components: - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 16690 + pos: -81.5,20.5 + parent: 2 + - uid: 6497 components: - type: Transform - pos: -37.5,-16.5 - parent: 89 - - uid: 16778 + pos: -82.5,20.5 + parent: 2 + - uid: 6498 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 16779 + pos: -83.5,20.5 + parent: 2 + - uid: 6499 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 16780 + pos: -84.5,20.5 + parent: 2 + - uid: 6500 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 16781 + pos: -84.5,21.5 + parent: 2 + - uid: 6501 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 16782 + pos: -84.5,22.5 + parent: 2 + - uid: 6502 components: - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 16917 + pos: -84.5,23.5 + parent: 2 + - uid: 6503 components: - type: Transform - pos: -118.5,4.5 - parent: 89 - - uid: 17068 + pos: -84.5,24.5 + parent: 2 + - uid: 6504 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 17069 + pos: -84.5,25.5 + parent: 2 + - uid: 6505 components: - type: Transform - pos: -133.5,-25.5 - parent: 89 - - uid: 17071 + pos: -84.5,26.5 + parent: 2 + - uid: 6506 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 17072 + pos: -84.5,27.5 + parent: 2 + - uid: 6507 components: - type: Transform - pos: 13.5,-10.5 - parent: 89 - - uid: 17073 + pos: -84.5,28.5 + parent: 2 + - uid: 6508 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 17075 + pos: -84.5,29.5 + parent: 2 + - uid: 6509 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 17076 + pos: -84.5,30.5 + parent: 2 + - uid: 6510 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 17146 + pos: -84.5,31.5 + parent: 2 + - uid: 6511 components: - type: Transform - pos: -132.5,-25.5 - parent: 89 - - uid: 17161 + pos: -84.5,32.5 + parent: 2 + - uid: 6512 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 17169 + pos: -84.5,33.5 + parent: 2 + - uid: 6513 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 17172 + pos: -84.5,34.5 + parent: 2 + - uid: 6514 components: - type: Transform - pos: -132.5,-4.5 - parent: 89 - - uid: 17173 + pos: -84.5,35.5 + parent: 2 + - uid: 6515 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 17178 + pos: -85.5,35.5 + parent: 2 + - uid: 6516 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 17179 + pos: -86.5,35.5 + parent: 2 + - uid: 6517 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 17182 + pos: -86.5,36.5 + parent: 2 + - uid: 6518 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 17183 + pos: -31.5,38.5 + parent: 2 + - uid: 6519 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 17184 + pos: 24.5,29.5 + parent: 2 + - uid: 6520 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 17185 + pos: 38.5,-10.5 + parent: 2 + - uid: 6521 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 17186 + pos: 38.5,-11.5 + parent: 2 + - uid: 6522 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 17187 + pos: 42.5,-10.5 + parent: 2 + - uid: 6523 components: - type: Transform - pos: 26.5,-9.5 - parent: 89 - - uid: 17188 + pos: 42.5,-11.5 + parent: 2 + - uid: 6524 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 17189 + pos: 42.5,-12.5 + parent: 2 + - uid: 6525 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 17191 + pos: 42.5,-13.5 + parent: 2 + - uid: 6526 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 17192 + pos: 41.5,-13.5 + parent: 2 + - uid: 6527 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 17193 + pos: 40.5,-13.5 + parent: 2 + - uid: 6528 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 17194 + pos: 39.5,-13.5 + parent: 2 + - uid: 6529 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 17195 + pos: 38.5,-13.5 + parent: 2 + - uid: 6530 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 17197 + pos: 38.5,-12.5 + parent: 2 + - uid: 6531 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 17198 + pos: 5.5,13.5 + parent: 2 + - uid: 6532 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 - - uid: 17199 + pos: 10.5,-15.5 + parent: 2 + - uid: 6533 components: - type: Transform - pos: 35.5,-9.5 - parent: 89 - - uid: 17200 + pos: -118.5,20.5 + parent: 2 + - uid: 6534 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 17201 + pos: 9.5,-15.5 + parent: 2 + - uid: 6535 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 - - uid: 17202 + pos: 33.5,26.5 + parent: 2 + - uid: 6536 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 17408 + pos: 47.5,13.5 + parent: 2 + - uid: 6537 components: - type: Transform - pos: -126.5,-19.5 - parent: 89 - - uid: 17409 + pos: 47.5,19.5 + parent: 2 + - uid: 6538 components: - type: Transform - pos: 40.5,26.5 - parent: 89 - - uid: 17412 + pos: -6.5,15.5 + parent: 2 + - uid: 6539 components: - type: Transform - pos: -128.5,-22.5 - parent: 89 - - uid: 18347 + pos: -6.5,16.5 + parent: 2 + - uid: 6540 components: - type: Transform - pos: -117.5,4.5 - parent: 89 - - uid: 18348 + pos: -7.5,16.5 + parent: 2 + - uid: 6541 components: - type: Transform - pos: -116.5,4.5 - parent: 89 - - uid: 18349 + pos: 47.5,18.5 + parent: 2 + - uid: 6542 components: - type: Transform - pos: -115.5,4.5 - parent: 89 - - uid: 18350 + pos: 11.5,-15.5 + parent: 2 + - uid: 6543 components: - type: Transform - pos: -114.5,4.5 - parent: 89 - - uid: 18351 + pos: 13.5,-15.5 + parent: 2 + - uid: 6544 components: - type: Transform - pos: -113.5,4.5 - parent: 89 - - uid: 18352 + pos: 47.5,15.5 + parent: 2 + - uid: 6545 components: - type: Transform - pos: -112.5,4.5 - parent: 89 - - uid: 18353 + pos: 47.5,16.5 + parent: 2 + - uid: 6546 components: - type: Transform - pos: -111.5,4.5 - parent: 89 - - uid: 18354 + pos: 47.5,17.5 + parent: 2 + - uid: 6547 components: - type: Transform - pos: -110.5,4.5 - parent: 89 - - uid: 18355 + pos: 45.5,19.5 + parent: 2 + - uid: 6548 components: - type: Transform - pos: -109.5,4.5 - parent: 89 - - uid: 18388 + pos: 46.5,19.5 + parent: 2 + - uid: 6549 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18390 + pos: 44.5,19.5 + parent: 2 + - uid: 6550 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 18407 + pos: 44.5,20.5 + parent: 2 + - uid: 6551 components: - type: Transform - pos: 51.5,0.5 - parent: 89 - - uid: 18408 + pos: 14.5,19.5 + parent: 2 + - uid: 6552 components: - type: Transform - pos: 51.5,-0.5 - parent: 89 - - uid: 18409 + pos: 15.5,19.5 + parent: 2 + - uid: 6553 components: - type: Transform - pos: 51.5,-1.5 - parent: 89 - - uid: 18410 + pos: 4.5,13.5 + parent: 2 + - uid: 6554 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 18411 + pos: 3.5,13.5 + parent: 2 + - uid: 6555 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 18412 + pos: 2.5,13.5 + parent: 2 + - uid: 6556 components: - type: Transform - pos: 52.5,-3.5 - parent: 89 - - uid: 18413 + pos: 1.5,13.5 + parent: 2 + - uid: 6557 components: - type: Transform - pos: 52.5,-4.5 - parent: 89 - - uid: 18414 + pos: 0.5,13.5 + parent: 2 + - uid: 6558 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 18415 + pos: 0.5,14.5 + parent: 2 + - uid: 6559 components: - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 18416 + pos: -4.5,12.5 + parent: 2 + - uid: 6560 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 18417 + pos: -5.5,12.5 + parent: 2 + - uid: 6561 components: - type: Transform - pos: 51.5,6.5 - parent: 89 - - uid: 18418 + pos: 7.5,-15.5 + parent: 2 + - uid: 6562 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 18419 + pos: 6.5,-15.5 + parent: 2 + - uid: 6563 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 18420 + pos: 6.5,-15.5 + parent: 2 + - uid: 6564 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - uid: 18421 + pos: 54.5,-23.5 + parent: 2 + - uid: 6565 components: - type: Transform - pos: 51.5,10.5 - parent: 89 - - uid: 18422 + pos: 53.5,-23.5 + parent: 2 + - uid: 6566 components: - type: Transform - pos: 51.5,11.5 - parent: 89 - - uid: 19807 + pos: 6.5,-16.5 + parent: 2 + - uid: 6567 components: - type: Transform - pos: -125.5,19.5 - parent: 89 - - uid: 19825 + pos: 45.5,-23.5 + parent: 2 + - uid: 6568 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 19827 + pos: 56.5,-23.5 + parent: 2 + - uid: 6569 components: - type: Transform - pos: -126.5,19.5 - parent: 89 - - uid: 20232 + pos: 57.5,-23.5 + parent: 2 + - uid: 6570 components: - type: Transform - pos: -128.5,-24.5 - parent: 89 - - uid: 20248 + pos: 57.5,-23.5 + parent: 2 + - uid: 6571 components: - type: Transform - pos: -128.5,-16.5 - parent: 89 - - uid: 20251 + pos: 57.5,-22.5 + parent: 2 + - uid: 6572 components: - type: Transform - pos: -128.5,-17.5 - parent: 89 - - uid: 20254 + pos: 57.5,-21.5 + parent: 2 + - uid: 6573 components: - type: Transform - pos: -135.5,-23.5 - parent: 89 - - uid: 20261 + pos: 57.5,-20.5 + parent: 2 + - uid: 6574 components: - type: Transform - pos: -128.5,-31.5 - parent: 89 - - uid: 20262 + pos: 57.5,-19.5 + parent: 2 + - uid: 6575 components: - type: Transform - pos: -128.5,-30.5 - parent: 89 - - uid: 20263 + pos: 57.5,-18.5 + parent: 2 + - uid: 6576 components: - type: Transform - pos: -130.5,-29.5 - parent: 89 - - uid: 20265 + pos: 57.5,-17.5 + parent: 2 + - uid: 6577 components: - type: Transform - pos: -126.5,-29.5 - parent: 89 - - uid: 20266 + pos: 52.5,-23.5 + parent: 2 + - uid: 6578 components: - type: Transform - pos: -128.5,-15.5 - parent: 89 - - uid: 20267 + pos: 51.5,-23.5 + parent: 2 + - uid: 6579 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 - - uid: 20268 + pos: 50.5,-23.5 + parent: 2 + - uid: 6580 components: - type: Transform - pos: -134.5,-23.5 - parent: 89 - - uid: 20269 + pos: 49.5,-23.5 + parent: 2 + - uid: 6581 components: - type: Transform - pos: -128.5,-13.5 - parent: 89 - - uid: 20272 + pos: 48.5,-23.5 + parent: 2 + - uid: 6582 components: - type: Transform - pos: -130.5,-18.5 - parent: 89 - - uid: 20273 + pos: 47.5,-23.5 + parent: 2 + - uid: 6583 components: - type: Transform - pos: -131.5,-18.5 - parent: 89 - - uid: 20274 + pos: 46.5,-23.5 + parent: 2 + - uid: 6584 components: - type: Transform - pos: -132.5,-18.5 - parent: 89 - - uid: 20275 + pos: 45.5,-23.5 + parent: 2 + - uid: 6585 components: - type: Transform - pos: -133.5,-18.5 - parent: 89 - - uid: 20276 + pos: 45.5,-22.5 + parent: 2 + - uid: 6586 components: - type: Transform - pos: 36.5,27.5 - parent: 89 - - uid: 20278 + pos: 45.5,-21.5 + parent: 2 + - uid: 6587 components: - type: Transform - pos: -132.5,-20.5 - parent: 89 - - uid: 20279 + pos: 45.5,-20.5 + parent: 2 + - uid: 6588 components: - type: Transform - pos: -131.5,-20.5 - parent: 89 - - uid: 20280 + pos: 45.5,-19.5 + parent: 2 + - uid: 6589 components: - type: Transform - pos: -130.5,-20.5 - parent: 89 - - uid: 20281 + pos: 45.5,-18.5 + parent: 2 + - uid: 6590 components: - type: Transform - pos: -128.5,-23.5 - parent: 89 - - uid: 20282 + pos: 45.5,-18.5 + parent: 2 + - uid: 6591 components: - type: Transform - pos: -126.5,-18.5 - parent: 89 - - uid: 20283 + pos: 44.5,-18.5 + parent: 2 + - uid: 6592 components: - type: Transform - pos: -125.5,-18.5 - parent: 89 - - uid: 20284 + pos: 43.5,-18.5 + parent: 2 + - uid: 6593 components: - type: Transform - pos: -124.5,-18.5 - parent: 89 - - uid: 20286 + pos: 41.5,-18.5 + parent: 2 + - uid: 6594 components: - type: Transform - pos: -130.5,-19.5 - parent: 89 - - uid: 20287 + pos: 40.5,-18.5 + parent: 2 + - uid: 6595 components: - type: Transform - pos: -126.5,-20.5 - parent: 89 - - uid: 20288 + pos: 39.5,-18.5 + parent: 2 + - uid: 6596 components: - type: Transform - pos: -125.5,-20.5 - parent: 89 - - uid: 20289 + pos: 38.5,-18.5 + parent: 2 + - uid: 6597 components: - type: Transform - pos: -124.5,-20.5 - parent: 89 - - uid: 20290 + pos: 37.5,-18.5 + parent: 2 + - uid: 6598 components: - type: Transform - pos: -133.5,-20.5 - parent: 89 - - uid: 20294 + pos: 6.5,-17.5 + parent: 2 + - uid: 6599 components: - type: Transform - pos: -123.5,-20.5 - parent: 89 - - uid: 20300 + pos: 6.5,-18.5 + parent: 2 + - uid: 6600 components: - type: Transform - pos: -133.5,-23.5 - parent: 89 - - uid: 20301 + pos: 6.5,-18.5 + parent: 2 + - uid: 6601 components: - type: Transform - pos: -132.5,-23.5 - parent: 89 - - uid: 20302 + pos: 7.5,-18.5 + parent: 2 + - uid: 6602 components: - type: Transform - pos: -131.5,-23.5 - parent: 89 - - uid: 20303 + pos: 8.5,-18.5 + parent: 2 + - uid: 6603 components: - type: Transform - pos: -130.5,-23.5 - parent: 89 - - uid: 20304 + pos: 9.5,-18.5 + parent: 2 + - uid: 6604 components: - type: Transform - pos: -126.5,-24.5 - parent: 89 - - uid: 20305 + pos: 10.5,-18.5 + parent: 2 + - uid: 6605 components: - type: Transform - pos: -131.5,-25.5 - parent: 89 - - uid: 20306 + pos: 10.5,-18.5 + parent: 2 + - uid: 6606 components: - type: Transform - pos: -130.5,-25.5 - parent: 89 - - uid: 20308 + pos: 10.5,-19.5 + parent: 2 + - uid: 6607 components: - type: Transform - pos: -130.5,-24.5 - parent: 89 - - uid: 20309 + pos: 10.5,-19.5 + parent: 2 + - uid: 6608 components: - type: Transform - pos: -126.5,-25.5 - parent: 89 - - uid: 20310 + pos: 11.5,-19.5 + parent: 2 + - uid: 6609 components: - type: Transform - pos: -125.5,-25.5 - parent: 89 - - uid: 20311 + pos: 12.5,-19.5 + parent: 2 + - uid: 6610 components: - type: Transform - pos: -124.5,-25.5 - parent: 89 - - uid: 20312 + pos: 13.5,-19.5 + parent: 2 + - uid: 6611 components: - type: Transform - pos: -123.5,-25.5 - parent: 89 - - uid: 20313 + pos: 14.5,-19.5 + parent: 2 + - uid: 6612 components: - type: Transform - pos: -122.5,-25.5 - parent: 89 - - uid: 20315 + pos: 15.5,-19.5 + parent: 2 + - uid: 6613 components: - type: Transform - pos: -126.5,-23.5 - parent: 89 - - uid: 20316 + pos: 15.5,-18.5 + parent: 2 + - uid: 6614 components: - type: Transform - pos: -125.5,-23.5 - parent: 89 - - uid: 20317 + pos: 16.5,-18.5 + parent: 2 + - uid: 6615 components: - type: Transform - pos: -124.5,-23.5 - parent: 89 - - uid: 20318 + pos: 17.5,-18.5 + parent: 2 + - uid: 6616 components: - type: Transform - pos: -123.5,-23.5 - parent: 89 - - uid: 20319 + pos: 17.5,-17.5 + parent: 2 + - uid: 6617 components: - type: Transform - pos: -122.5,-23.5 - parent: 89 - - uid: 20323 + pos: 17.5,-16.5 + parent: 2 + - uid: 6618 components: - type: Transform - pos: -128.5,-21.5 - parent: 89 - - uid: 20324 + pos: 17.5,-16.5 + parent: 2 + - uid: 6619 components: - type: Transform - pos: -126.5,-28.5 - parent: 89 - - uid: 20325 + pos: 18.5,-16.5 + parent: 2 + - uid: 6620 components: - type: Transform - pos: -125.5,-28.5 - parent: 89 - - uid: 20326 + pos: 19.5,-16.5 + parent: 2 + - uid: 6621 components: - type: Transform - pos: -124.5,-28.5 - parent: 89 - - uid: 20327 + pos: 21.5,-16.5 + parent: 2 + - uid: 6622 components: - type: Transform - pos: -123.5,-28.5 - parent: 89 - - uid: 20328 + pos: 22.5,-16.5 + parent: 2 + - uid: 6623 components: - type: Transform - pos: -122.5,-28.5 - parent: 89 - - uid: 20329 + pos: 23.5,-16.5 + parent: 2 + - uid: 6624 components: - type: Transform - pos: -121.5,-28.5 - parent: 89 - - uid: 20331 + pos: 24.5,-16.5 + parent: 2 + - uid: 6625 components: - type: Transform - pos: -127.5,-30.5 - parent: 89 - - uid: 20332 + pos: 25.5,-16.5 + parent: 2 + - uid: 6626 components: - type: Transform - pos: -126.5,-30.5 - parent: 89 - - uid: 20333 + pos: 26.5,-16.5 + parent: 2 + - uid: 6627 components: - type: Transform - pos: -125.5,-30.5 - parent: 89 - - uid: 20334 + pos: 26.5,-17.5 + parent: 2 + - uid: 6628 components: - type: Transform - pos: -124.5,-30.5 - parent: 89 - - uid: 20335 + pos: -119.5,20.5 + parent: 2 + - uid: 6629 components: - type: Transform - pos: -123.5,-30.5 - parent: 89 - - uid: 20336 + pos: -120.5,20.5 + parent: 2 + - uid: 6630 components: - type: Transform - pos: -122.5,-30.5 - parent: 89 - - uid: 20337 + pos: -121.5,20.5 + parent: 2 + - uid: 6631 components: - type: Transform - pos: -121.5,-30.5 - parent: 89 - - uid: 20339 + pos: -122.5,20.5 + parent: 2 + - uid: 6632 components: - type: Transform - pos: -129.5,-30.5 - parent: 89 - - uid: 20340 + pos: -123.5,20.5 + parent: 2 + - uid: 6633 components: - type: Transform - pos: -130.5,-30.5 - parent: 89 - - uid: 20341 + pos: 37.5,-8.5 + parent: 2 + - uid: 6634 components: - type: Transform - pos: -131.5,-30.5 - parent: 89 - - uid: 20342 + pos: 37.5,-7.5 + parent: 2 + - uid: 6635 components: - type: Transform - pos: -132.5,-30.5 - parent: 89 - - uid: 20343 + pos: 37.5,-6.5 + parent: 2 + - uid: 6636 components: - type: Transform - pos: -133.5,-30.5 - parent: 89 - - uid: 20344 + pos: 38.5,-6.5 + parent: 2 + - uid: 6637 components: - type: Transform - pos: -134.5,-30.5 - parent: 89 - - uid: 20345 + pos: 39.5,-6.5 + parent: 2 + - uid: 6638 components: - type: Transform - pos: -135.5,-30.5 - parent: 89 - - uid: 20346 + pos: 40.5,-6.5 + parent: 2 + - uid: 6639 components: - type: Transform - pos: -136.5,-30.5 - parent: 89 - - uid: 20347 + pos: 41.5,-6.5 + parent: 2 + - uid: 6640 components: - type: Transform - pos: -128.5,-18.5 - parent: 89 - - uid: 20348 + pos: 42.5,-6.5 + parent: 2 + - uid: 6641 components: - type: Transform - pos: -130.5,-28.5 - parent: 89 - - uid: 20349 + pos: 43.5,-6.5 + parent: 2 + - uid: 6642 components: - type: Transform - pos: -131.5,-28.5 - parent: 89 - - uid: 20350 + pos: 43.5,-7.5 + parent: 2 + - uid: 6643 components: - type: Transform - pos: -132.5,-28.5 - parent: 89 - - uid: 20351 + pos: 16.5,-12.5 + parent: 2 + - uid: 6644 components: - type: Transform - pos: -133.5,-28.5 - parent: 89 - - uid: 20352 + pos: 12.5,-16.5 + parent: 2 + - uid: 6645 components: - type: Transform - pos: -134.5,-28.5 - parent: 89 - - uid: 20353 + pos: 16.5,-11.5 + parent: 2 + - uid: 6646 components: - type: Transform - pos: -135.5,-28.5 - parent: 89 - - uid: 20354 + pos: 16.5,-10.5 + parent: 2 + - uid: 6647 components: - type: Transform - pos: -136.5,-28.5 - parent: 89 - - uid: 20366 + pos: 15.5,-14.5 + parent: 2 + - uid: 6648 components: - type: Transform - pos: -128.5,-19.5 - parent: 89 - - uid: 20367 + pos: 13.5,-11.5 + parent: 2 + - uid: 6649 components: - type: Transform - pos: 36.5,26.5 - parent: 89 - - uid: 20368 + pos: 12.5,-11.5 + parent: 2 + - uid: 6650 components: - type: Transform - pos: 37.5,26.5 - parent: 89 - - uid: 20369 + pos: 11.5,-11.5 + parent: 2 + - uid: 6651 components: - type: Transform - pos: 38.5,26.5 - parent: 89 - - uid: 20371 + pos: 43.5,-19.5 + parent: 2 + - uid: 6652 components: - type: Transform - pos: 39.5,26.5 - parent: 89 - - uid: 20372 + pos: -11.5,-27.5 + parent: 2 + - uid: 6653 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 20390 + pos: -12.5,-27.5 + parent: 2 + - uid: 6654 components: - type: Transform - pos: -128.5,-12.5 - parent: 89 - - uid: 20391 + pos: -13.5,-27.5 + parent: 2 + - uid: 6655 components: - type: Transform - pos: -129.5,-12.5 - parent: 89 - - uid: 20416 + pos: 41.5,-19.5 + parent: 2 + - uid: 6656 components: - type: Transform - pos: 38.5,-14.5 - parent: 89 - - uid: 20417 + pos: 42.5,-19.5 + parent: 2 + - uid: 6657 components: - type: Transform - pos: 38.5,-15.5 - parent: 89 - - uid: 20425 + pos: -11.5,-26.5 + parent: 2 + - uid: 6658 components: - type: Transform - pos: 50.5,39.5 - parent: 89 - - uid: 20428 + pos: -14.5,-27.5 + parent: 2 + - uid: 6659 components: - type: Transform - pos: 41.5,26.5 - parent: 89 - - uid: 20429 + pos: -14.5,-26.5 + parent: 2 + - uid: 6660 components: - type: Transform - pos: 42.5,26.5 - parent: 89 - - uid: 20430 + pos: -144.5,-14.5 + parent: 2 + - uid: 6661 components: - type: Transform - pos: 43.5,26.5 - parent: 89 - - uid: 20431 + pos: -136.5,-11.5 + parent: 2 + - uid: 6662 components: - type: Transform - pos: 44.5,26.5 - parent: 89 - - uid: 20432 + pos: -137.5,-0.5 + parent: 2 + - uid: 6663 components: - type: Transform - pos: 45.5,26.5 - parent: 89 - - uid: 20433 + pos: -136.5,-0.5 + parent: 2 + - uid: 6664 components: - type: Transform - pos: 46.5,26.5 - parent: 89 - - uid: 20434 + pos: -138.5,-0.5 + parent: 2 + - uid: 6665 components: - type: Transform - pos: 47.5,26.5 - parent: 89 - - uid: 20435 + pos: -136.5,-12.5 + parent: 2 + - uid: 6666 components: - type: Transform - pos: 48.5,26.5 - parent: 89 - - uid: 20457 + pos: -146.5,-14.5 + parent: 2 + - uid: 6667 components: - type: Transform - pos: 53.5,40.5 - parent: 89 - - uid: 20458 + pos: -146.5,-0.5 + parent: 2 + - uid: 6668 components: - type: Transform - pos: 53.5,41.5 - parent: 89 - - uid: 20459 + pos: -111.5,25.5 + parent: 2 + - uid: 6669 components: - type: Transform - pos: 53.5,42.5 - parent: 89 - - uid: 20460 + pos: -108.5,25.5 + parent: 2 + - uid: 6670 components: - type: Transform - pos: 56.5,34.5 - parent: 89 - - uid: 20461 + pos: -110.5,25.5 + parent: 2 + - uid: 6671 components: - type: Transform - pos: 57.5,34.5 - parent: 89 - - uid: 20462 + pos: -147.5,-0.5 + parent: 2 + - uid: 6672 components: - type: Transform - pos: 57.5,35.5 - parent: 89 - - uid: 20463 + pos: -112.5,25.5 + parent: 2 + - uid: 6673 components: - type: Transform - pos: 58.5,35.5 - parent: 89 - - uid: 20464 + pos: -105.5,23.5 + parent: 2 + - uid: 6674 components: - type: Transform - pos: 59.5,35.5 - parent: 89 - - uid: 20465 + pos: -148.5,-14.5 + parent: 2 + - uid: 6675 components: - type: Transform - pos: 60.5,35.5 - parent: 89 - - uid: 20466 + pos: -136.5,-3.5 + parent: 2 + - uid: 6676 components: - type: Transform - pos: 61.5,35.5 - parent: 89 - - uid: 20467 + pos: -147.5,-14.5 + parent: 2 + - uid: 6677 components: - type: Transform - pos: 57.5,33.5 - parent: 89 - - uid: 20468 + pos: -136.5,-13.5 + parent: 2 + - uid: 6678 components: - type: Transform - pos: 58.5,33.5 - parent: 89 - - uid: 20469 + pos: -136.5,-14.5 + parent: 2 + - uid: 6679 components: - type: Transform - pos: 59.5,33.5 - parent: 89 - - uid: 20470 + pos: -139.5,-14.5 + parent: 2 + - uid: 6680 components: - type: Transform - pos: 60.5,33.5 - parent: 89 - - uid: 20471 + pos: -113.5,25.5 + parent: 2 + - uid: 6681 components: - type: Transform - pos: 61.5,33.5 - parent: 89 - - uid: 20472 + pos: -113.5,24.5 + parent: 2 + - uid: 6682 components: - type: Transform - pos: 56.5,31.5 - parent: 89 - - uid: 20477 + pos: -149.5,-1.5 + parent: 2 + - uid: 6683 components: - type: Transform - pos: 56.5,30.5 - parent: 89 - - uid: 20478 + pos: -150.5,-1.5 + parent: 2 + - uid: 6684 components: - type: Transform - pos: 57.5,31.5 - parent: 89 - - uid: 20479 + pos: -149.5,-14.5 + parent: 2 + - uid: 6685 components: - type: Transform - pos: 58.5,31.5 - parent: 89 - - uid: 20480 + pos: -149.5,-13.5 + parent: 2 + - uid: 6686 components: - type: Transform - pos: 59.5,31.5 - parent: 89 - - uid: 20481 + pos: -137.5,-14.5 + parent: 2 + - uid: 6687 components: - type: Transform - pos: 60.5,31.5 - parent: 89 - - uid: 20482 + pos: -105.5,25.5 + parent: 2 + - uid: 6688 components: - type: Transform - pos: 56.5,29.5 - parent: 89 - - uid: 20483 + pos: -104.5,23.5 + parent: 2 + - uid: 6689 components: - type: Transform - pos: 57.5,29.5 - parent: 89 - - uid: 20484 + pos: -110.5,23.5 + parent: 2 + - uid: 6690 components: - type: Transform - pos: 58.5,29.5 - parent: 89 - - uid: 20485 + pos: -107.5,23.5 + parent: 2 + - uid: 6691 components: - type: Transform - pos: 59.5,29.5 - parent: 89 - - uid: 20486 + pos: -103.5,23.5 + parent: 2 + - uid: 6692 components: - type: Transform - pos: 60.5,29.5 - parent: 89 - - uid: 20489 + pos: -106.5,25.5 + parent: 2 + - uid: 6693 components: - type: Transform - pos: 56.5,37.5 - parent: 89 - - uid: 20490 + pos: -139.5,-0.5 + parent: 2 + - uid: 6694 components: - type: Transform - pos: 57.5,37.5 - parent: 89 - - uid: 20491 + pos: -111.5,23.5 + parent: 2 + - uid: 6695 components: - type: Transform - pos: 58.5,37.5 - parent: 89 - - uid: 20492 + pos: -104.5,25.5 + parent: 2 + - uid: 6696 components: - type: Transform - pos: 59.5,37.5 - parent: 89 - - uid: 20493 + pos: -106.5,23.5 + parent: 2 + - uid: 6697 components: - type: Transform - pos: 60.5,37.5 - parent: 89 - - uid: 20494 + pos: -109.5,23.5 + parent: 2 + - uid: 6698 components: - type: Transform - pos: 56.5,39.5 - parent: 89 - - uid: 20495 + pos: -102.5,23.5 + parent: 2 + - uid: 6699 components: - type: Transform - pos: 57.5,39.5 - parent: 89 - - uid: 20496 + pos: -102.5,27.5 + parent: 2 + - uid: 6700 components: - type: Transform - pos: 58.5,39.5 - parent: 89 - - uid: 20497 + pos: -103.5,27.5 + parent: 2 + - uid: 6701 components: - type: Transform - pos: 59.5,39.5 - parent: 89 - - uid: 20498 + pos: -104.5,27.5 + parent: 2 + - uid: 6702 components: - type: Transform - pos: 60.5,39.5 - parent: 89 - - uid: 20510 + pos: -105.5,27.5 + parent: 2 + - uid: 6703 components: - type: Transform - pos: 49.5,39.5 - parent: 89 - - uid: 20511 + pos: -106.5,27.5 + parent: 2 + - uid: 6704 components: - type: Transform - pos: 48.5,39.5 - parent: 89 - - uid: 20512 + pos: -107.5,27.5 + parent: 2 + - uid: 6705 components: - type: Transform - pos: 47.5,39.5 - parent: 89 - - uid: 20513 + pos: -108.5,27.5 + parent: 2 + - uid: 6706 components: - type: Transform - pos: 46.5,39.5 - parent: 89 - - uid: 20514 + pos: -109.5,27.5 + parent: 2 + - uid: 6707 components: - type: Transform - pos: 46.5,37.5 - parent: 89 - - uid: 20515 + pos: -110.5,27.5 + parent: 2 + - uid: 6708 components: - type: Transform - pos: 47.5,37.5 - parent: 89 - - uid: 20516 + pos: -111.5,27.5 + parent: 2 + - uid: 6709 components: - type: Transform - pos: 48.5,37.5 - parent: 89 - - uid: 20517 + pos: -112.5,27.5 + parent: 2 + - uid: 6710 components: - type: Transform - pos: 49.5,37.5 - parent: 89 - - uid: 20518 + pos: -107.5,26.5 + parent: 2 + - uid: 6711 components: - type: Transform - pos: 50.5,37.5 - parent: 89 - - uid: 20520 + pos: -107.5,24.5 + parent: 2 + - uid: 6712 components: - type: Transform - pos: 50.5,38.5 - parent: 89 - - uid: 20528 + pos: -83.5,-11.5 + parent: 2 + - uid: 6713 components: - type: Transform - pos: 49.5,33.5 - parent: 89 - - uid: 20529 + pos: -82.5,-11.5 + parent: 2 + - uid: 6714 components: - type: Transform - pos: 48.5,33.5 - parent: 89 - - uid: 20530 + pos: -87.5,-13.5 + parent: 2 + - uid: 6715 components: - type: Transform - pos: 47.5,33.5 - parent: 89 - - uid: 20531 + pos: -87.5,-12.5 + parent: 2 + - uid: 6716 components: - type: Transform - pos: 46.5,33.5 - parent: 89 - - uid: 20532 + pos: -88.5,-11.5 + parent: 2 + - uid: 6717 components: - type: Transform - pos: 45.5,33.5 - parent: 89 - - uid: 20533 + pos: -136.5,-7.5 + parent: 2 + - uid: 6718 components: - type: Transform - pos: 45.5,35.5 - parent: 89 - - uid: 20534 + pos: -136.5,-10.5 + parent: 2 + - uid: 6719 components: - type: Transform - pos: 46.5,35.5 - parent: 89 - - uid: 20535 + pos: -135.5,-10.5 + parent: 2 + - uid: 6720 components: - type: Transform - pos: 47.5,35.5 - parent: 89 - - uid: 20536 + pos: -134.5,-10.5 + parent: 2 + - uid: 6721 components: - type: Transform - pos: 48.5,35.5 - parent: 89 - - uid: 20537 + pos: -136.5,-2.5 + parent: 2 + - uid: 6722 components: - type: Transform - pos: 49.5,35.5 - parent: 89 - - uid: 20540 + pos: -136.5,-1.5 + parent: 2 + - uid: 6723 components: - type: Transform - pos: 49.5,34.5 - parent: 89 - - uid: 20541 + pos: -132.5,-10.5 + parent: 2 + - uid: 6724 components: - type: Transform - pos: 50.5,34.5 - parent: 89 - - uid: 20549 + pos: -131.5,-10.5 + parent: 2 + - uid: 6725 components: - type: Transform - pos: 50.5,30.5 - parent: 89 - - uid: 20551 + pos: -136.5,-6.5 + parent: 2 + - uid: 6726 components: - type: Transform - pos: 50.5,29.5 - parent: 89 - - uid: 20552 + pos: -136.5,-8.5 + parent: 2 + - uid: 6727 components: - type: Transform - pos: 49.5,29.5 - parent: 89 - - uid: 20553 + pos: -108.5,-14.5 + parent: 2 + - uid: 6728 components: - type: Transform - pos: 48.5,29.5 - parent: 89 - - uid: 20554 + pos: -84.5,-11.5 + parent: 2 + - uid: 6729 components: - type: Transform - pos: 47.5,29.5 - parent: 89 - - uid: 20555 + pos: -106.5,-14.5 + parent: 2 + - uid: 6730 components: - type: Transform - pos: 46.5,29.5 - parent: 89 - - uid: 20558 + pos: -87.5,-14.5 + parent: 2 + - uid: 6731 components: - type: Transform - pos: 46.5,31.5 - parent: 89 - - uid: 20559 + pos: -87.5,-15.5 + parent: 2 + - uid: 6732 components: - type: Transform - pos: 47.5,31.5 - parent: 89 - - uid: 20560 + pos: -88.5,-15.5 + parent: 2 + - uid: 6733 components: - type: Transform - pos: 48.5,31.5 - parent: 89 - - uid: 20561 + pos: -89.5,-15.5 + parent: 2 + - uid: 6734 components: - type: Transform - pos: 49.5,31.5 - parent: 89 - - uid: 20562 + pos: -90.5,-15.5 + parent: 2 + - uid: 6735 components: - type: Transform - pos: 50.5,31.5 - parent: 89 - - uid: 20570 + pos: -91.5,-15.5 + parent: 2 + - uid: 6736 components: - type: Transform - pos: 56.5,38.5 - parent: 89 - - uid: 20803 + pos: -92.5,-15.5 + parent: 2 + - uid: 6737 components: - type: Transform - pos: -128.5,-11.5 - parent: 89 - - uid: 20985 + pos: -93.5,-15.5 + parent: 2 + - uid: 6738 components: - type: Transform - pos: 50.5,11.5 - parent: 89 - - uid: 20986 + pos: -94.5,-15.5 + parent: 2 + - uid: 6739 components: - type: Transform - pos: 49.5,11.5 - parent: 89 - - uid: 20987 + pos: -94.5,-14.5 + parent: 2 + - uid: 6740 components: - type: Transform - pos: 48.5,11.5 - parent: 89 - - uid: 20988 + pos: -95.5,-14.5 + parent: 2 + - uid: 6741 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 20989 + pos: -96.5,-14.5 + parent: 2 + - uid: 6742 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 20990 + pos: -97.5,-14.5 + parent: 2 + - uid: 6743 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 20991 + pos: -98.5,-14.5 + parent: 2 + - uid: 6744 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 20992 + pos: -99.5,-14.5 + parent: 2 + - uid: 6745 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 20993 + pos: -100.5,-14.5 + parent: 2 + - uid: 6746 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 20994 + pos: -101.5,-14.5 + parent: 2 + - uid: 6747 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21048 + pos: -101.5,-13.5 + parent: 2 + - uid: 6748 components: - type: Transform - pos: 44.5,19.5 - parent: 89 - - uid: 21049 + pos: -101.5,-12.5 + parent: 2 + - uid: 6749 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21050 + pos: -100.5,-12.5 + parent: 2 + - uid: 6750 components: - type: Transform - pos: 45.5,19.5 - parent: 89 - - uid: 21051 + pos: -100.5,-11.5 + parent: 2 + - uid: 6751 components: - type: Transform - pos: 46.5,19.5 - parent: 89 - - uid: 21052 + pos: -12.5,-8.5 + parent: 2 + - uid: 6752 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 21053 + pos: -12.5,-9.5 + parent: 2 + - uid: 6753 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21142 + pos: -11.5,-9.5 + parent: 2 + - uid: 6754 components: - type: Transform - pos: -39.5,-2.5 - parent: 89 - - uid: 21144 + pos: -10.5,-9.5 + parent: 2 + - uid: 6755 components: - type: Transform - pos: -39.5,-0.5 - parent: 89 - - uid: 21145 + pos: -9.5,-9.5 + parent: 2 + - uid: 6756 components: - type: Transform - pos: -39.5,-1.5 - parent: 89 - - uid: 21150 + pos: -8.5,-9.5 + parent: 2 + - uid: 6757 components: - type: Transform - pos: -39.5,-3.5 - parent: 89 - - uid: 21151 + pos: -7.5,-9.5 + parent: 2 + - uid: 6758 components: - type: Transform - pos: -39.5,0.5 - parent: 89 - - uid: 21158 + pos: -6.5,-9.5 + parent: 2 + - uid: 6759 components: - type: Transform - pos: -17.5,3.5 - parent: 89 - - uid: 21159 + pos: -5.5,-9.5 + parent: 2 + - uid: 6760 components: - type: Transform - pos: -39.5,1.5 - parent: 89 - - uid: 21163 + pos: -4.5,-9.5 + parent: 2 + - uid: 6761 components: - type: Transform - pos: -39.5,2.5 - parent: 89 - - uid: 21164 + pos: -4.5,-10.5 + parent: 2 + - uid: 6762 components: - type: Transform - pos: -39.5,3.5 - parent: 89 - - uid: 21165 + pos: 10.5,-7.5 + parent: 2 + - uid: 6763 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 21166 + pos: 49.5,0.5 + parent: 2 + - uid: 6764 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 21167 + pos: 49.5,-0.5 + parent: 2 + - uid: 6765 components: - type: Transform - pos: -36.5,3.5 - parent: 89 - - uid: 21168 + pos: 49.5,-1.5 + parent: 2 + - uid: 6766 components: - type: Transform - pos: -35.5,3.5 - parent: 89 - - uid: 21169 + pos: 50.5,-1.5 + parent: 2 + - uid: 6767 components: - type: Transform - pos: -34.5,3.5 - parent: 89 - - uid: 21170 + pos: 51.5,-1.5 + parent: 2 + - uid: 6768 components: - type: Transform - pos: -33.5,3.5 - parent: 89 - - uid: 21171 + pos: 53.5,-2.5 + parent: 2 + - uid: 6769 components: - type: Transform - pos: -32.5,3.5 - parent: 89 - - uid: 21172 + pos: 53.5,-1.5 + parent: 2 + - uid: 6770 components: - type: Transform - pos: -31.5,3.5 - parent: 89 - - uid: 21173 + pos: 53.5,-0.5 + parent: 2 + - uid: 6771 components: - type: Transform - pos: -30.5,3.5 - parent: 89 - - uid: 21174 + pos: -130.5,-5.5 + parent: 2 + - uid: 6772 components: - type: Transform - pos: -29.5,3.5 - parent: 89 - - uid: 21175 + pos: -128.5,-6.5 + parent: 2 + - uid: 6773 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 21176 + pos: -128.5,-5.5 + parent: 2 + - uid: 6774 components: - type: Transform - pos: -27.5,3.5 - parent: 89 - - uid: 21177 + pos: -129.5,-5.5 + parent: 2 + - uid: 6775 components: - type: Transform - pos: -26.5,3.5 - parent: 89 - - uid: 21181 + pos: -128.5,-7.5 + parent: 2 + - uid: 6776 components: - type: Transform - pos: -22.5,3.5 - parent: 89 - - uid: 21182 + pos: -127.5,-7.5 + parent: 2 + - uid: 6777 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 21183 + pos: -126.5,-7.5 + parent: 2 + - uid: 6778 components: - type: Transform - pos: -20.5,3.5 - parent: 89 - - uid: 21184 + pos: -125.5,-7.5 + parent: 2 + - uid: 6779 components: - type: Transform - pos: -19.5,3.5 - parent: 89 - - uid: 21185 + pos: -125.5,-6.5 + parent: 2 + - uid: 6780 components: - type: Transform - pos: -18.5,3.5 - parent: 89 - - uid: 21187 + pos: -125.5,-5.5 + parent: 2 + - uid: 6781 components: - type: Transform - pos: -16.5,3.5 - parent: 89 - - uid: 21188 + pos: -125.5,-4.5 + parent: 2 + - uid: 6782 components: - type: Transform - pos: -15.5,3.5 - parent: 89 - - uid: 21189 + pos: -125.5,-3.5 + parent: 2 + - uid: 6783 components: - type: Transform - pos: -14.5,3.5 - parent: 89 - - uid: 21191 + pos: -124.5,-3.5 + parent: 2 + - uid: 6784 components: - type: Transform - pos: -12.5,3.5 - parent: 89 - - uid: 21192 + pos: -124.5,-2.5 + parent: 2 + - uid: 6785 components: - type: Transform - pos: -13.5,3.5 - parent: 89 - - uid: 21193 + pos: -124.5,-1.5 + parent: 2 + - uid: 6786 components: - type: Transform - pos: -9.5,3.5 - parent: 89 - - uid: 21194 + pos: -123.5,-1.5 + parent: 2 + - uid: 6787 components: - type: Transform - pos: -8.5,3.5 - parent: 89 - - uid: 21195 + pos: -122.5,-1.5 + parent: 2 + - uid: 6788 components: - type: Transform - pos: -5.5,3.5 - parent: 89 - - uid: 21196 + pos: -121.5,-1.5 + parent: 2 + - uid: 6789 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 21283 + pos: -121.5,-0.5 + parent: 2 + - uid: 6790 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 21318 + pos: -121.5,0.5 + parent: 2 + - uid: 6791 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 21319 + pos: -121.5,1.5 + parent: 2 + - uid: 6792 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 21320 + pos: -121.5,2.5 + parent: 2 + - uid: 6793 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 21321 + pos: -121.5,3.5 + parent: 2 + - uid: 6794 components: - type: Transform - pos: 40.5,-18.5 - parent: 89 - - uid: 21322 + pos: -121.5,4.5 + parent: 2 + - uid: 6795 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 21323 + pos: -121.5,5.5 + parent: 2 + - uid: 6796 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 21325 + pos: -121.5,6.5 + parent: 2 + - uid: 6797 components: - type: Transform - pos: 38.5,-17.5 - parent: 89 - - uid: 21326 + pos: -121.5,7.5 + parent: 2 + - uid: 6798 components: - type: Transform - pos: 38.5,-16.5 - parent: 89 - - uid: 21408 + pos: -121.5,8.5 + parent: 2 + - uid: 6799 components: - type: Transform - pos: -23.5,3.5 - parent: 89 - - uid: 21409 + pos: -121.5,9.5 + parent: 2 + - uid: 6800 components: - type: Transform - pos: -24.5,3.5 - parent: 89 - - uid: 21410 + pos: -120.5,9.5 + parent: 2 + - uid: 6801 components: - type: Transform - pos: -25.5,3.5 - parent: 89 - - uid: 21412 + pos: -87.5,-10.5 + parent: 2 + - uid: 6802 components: - type: Transform - pos: -84.5,-4.5 - parent: 89 - - uid: 21417 + pos: -87.5,-9.5 + parent: 2 + - uid: 6803 components: - type: Transform - pos: -1.5,2.5 - parent: 89 - - uid: 21418 + pos: -89.5,-9.5 + parent: 2 + - uid: 6804 components: - type: Transform - pos: -1.5,1.5 - parent: 89 - - uid: 21419 + pos: -88.5,-9.5 + parent: 2 + - uid: 6805 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 21420 + pos: -90.5,-9.5 + parent: 2 + - uid: 6806 components: - type: Transform - pos: -1.5,-0.5 - parent: 89 - - uid: 21421 + pos: -91.5,-9.5 + parent: 2 + - uid: 6807 components: - type: Transform - pos: -1.5,-1.5 - parent: 89 - - uid: 21422 + pos: -91.5,-8.5 + parent: 2 + - uid: 6808 components: - type: Transform - pos: -1.5,-2.5 - parent: 89 - - uid: 21423 + pos: -91.5,-7.5 + parent: 2 + - uid: 6809 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 21424 + pos: -91.5,-6.5 + parent: 2 + - uid: 6810 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 - - uid: 21425 + pos: -91.5,-5.5 + parent: 2 + - uid: 6811 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 21426 + pos: -91.5,-4.5 + parent: 2 + - uid: 6812 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 - - uid: 21427 + pos: -92.5,-4.5 + parent: 2 + - uid: 6813 components: - type: Transform - pos: -1.5,-7.5 - parent: 89 - - uid: 21428 + pos: -93.5,-4.5 + parent: 2 + - uid: 6814 components: - type: Transform - pos: -1.5,-8.5 - parent: 89 - - uid: 21429 + pos: -93.5,-3.5 + parent: 2 + - uid: 6815 components: - type: Transform - pos: -1.5,-9.5 - parent: 89 - - uid: 21430 + pos: -3.5,-38.5 + parent: 2 + - uid: 6816 components: - type: Transform - pos: -1.5,-10.5 - parent: 89 - - uid: 21431 + pos: 2.5,-22.5 + parent: 2 + - uid: 6817 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 - - uid: 21432 + pos: -2.5,-38.5 + parent: 2 + - uid: 6818 components: - type: Transform - pos: -1.5,-12.5 - parent: 89 - - uid: 21433 + pos: -23.5,-17.5 + parent: 2 + - uid: 6819 components: - type: Transform - pos: -1.5,-13.5 - parent: 89 - - uid: 21434 + pos: -36.5,-5.5 + parent: 2 + - uid: 6820 components: - type: Transform - pos: -1.5,-14.5 - parent: 89 - - uid: 21435 + pos: -4.5,-30.5 + parent: 2 + - uid: 23779 components: - type: Transform - pos: -1.5,-15.5 - parent: 89 - - uid: 21436 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23780 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 - - uid: 21437 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23781 components: - type: Transform - pos: 0.5,-15.5 - parent: 89 - - uid: 21438 + pos: 1.5,-11.5 + parent: 23711 + - uid: 23782 components: - type: Transform - pos: 1.5,-15.5 - parent: 89 - - uid: 21439 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23783 components: - type: Transform - pos: 2.5,-15.5 - parent: 89 - - uid: 21440 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23784 components: - type: Transform - pos: 3.5,-15.5 - parent: 89 - - uid: 21441 + pos: 4.5,-10.5 + parent: 23711 + - uid: 23785 components: - type: Transform - pos: 4.5,-15.5 - parent: 89 - - uid: 21442 + pos: 5.5,-10.5 + parent: 23711 + - uid: 24045 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 21612 + pos: 4.5,1.5 + parent: 23919 + - uid: 24046 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 21613 + pos: 2.5,-0.5 + parent: 23919 + - uid: 24047 components: - type: Transform - pos: -132.5,-9.5 - parent: 89 - - uid: 21616 + pos: 7.5,1.5 + parent: 23919 + - uid: 24048 components: - type: Transform - pos: -133.5,-8.5 - parent: 89 - - uid: 21617 + pos: 6.5,1.5 + parent: 23919 + - uid: 24049 components: - type: Transform - pos: -133.5,-7.5 - parent: 89 - - uid: 21618 + pos: 2.5,-1.5 + parent: 23919 + - uid: 24050 components: - type: Transform - pos: -133.5,-6.5 - parent: 89 - - uid: 21619 + pos: 2.5,-2.5 + parent: 23919 + - uid: 24051 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 21655 + pos: 2.5,-3.5 + parent: 23919 + - uid: 24052 components: - type: Transform - pos: 2.5,-2.5 - parent: 21627 - - uid: 21656 + pos: 2.5,-4.5 + parent: 23919 + - uid: 24053 components: - type: Transform - pos: 2.5,-1.5 - parent: 21627 - - uid: 21657 + pos: 2.5,-5.5 + parent: 23919 + - uid: 24054 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 23919 + - uid: 24055 components: - type: Transform - pos: -1.5,-2.5 - parent: 21627 - - uid: 21658 + pos: 3.5,-6.5 + parent: 23919 + - uid: 24056 components: - type: Transform - pos: -1.5,-1.5 - parent: 21627 - - uid: 21659 + pos: 2.5,0.5 + parent: 23919 + - uid: 24057 components: - type: Transform - pos: -0.5,-1.5 - parent: 21627 - - uid: 21660 + pos: 5.5,1.5 + parent: 23919 + - uid: 24058 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - uid: 21661 + pos: 3.5,1.5 + parent: 23919 + - uid: 24059 components: - type: Transform - pos: 1.5,-1.5 - parent: 21627 - - uid: 21662 + pos: 4.5,0.5 + parent: 23919 + - uid: 24060 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 21663 + pos: 3.5,0.5 + parent: 23919 + - uid: 24384 components: - type: Transform - pos: 0.5,0.5 - parent: 21627 - - uid: 21664 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24385 components: - type: Transform - pos: 0.5,-2.5 - parent: 21627 - - uid: 21665 + pos: 1.5,-3.5 + parent: 24340 + - uid: 25548 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 - - uid: 21666 + pos: -8.5,-17.5 + parent: 24450 + - uid: 25549 components: - type: Transform - pos: -0.5,-3.5 - parent: 21627 - - uid: 21667 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25550 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21668 + pos: -8.5,-18.5 + parent: 24450 + - uid: 25551 components: - type: Transform - pos: 2.5,-3.5 - parent: 21627 - - uid: 21669 + pos: -8.5,-21.5 + parent: 24450 + - uid: 25552 components: - type: Transform - pos: -1.5,-3.5 - parent: 21627 - - uid: 21670 + pos: -8.5,-19.5 + parent: 24450 + - uid: 25553 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21966 + pos: -8.5,-20.5 + parent: 24450 + - uid: 25554 components: - type: Transform - pos: -135.5,-4.5 - parent: 89 - - uid: 21967 + pos: -8.5,-22.5 + parent: 24450 + - uid: 25555 components: - type: Transform - pos: -134.5,-4.5 - parent: 89 - - uid: 21969 + pos: -8.5,-23.5 + parent: 24450 + - uid: 25556 components: - type: Transform - pos: -135.5,-3.5 - parent: 89 - - uid: 21970 + pos: -8.5,-24.5 + parent: 24450 + - uid: 25557 components: - type: Transform - pos: -134.5,-3.5 - parent: 89 - - uid: 21972 + pos: -8.5,-25.5 + parent: 24450 + - uid: 25558 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 21973 + pos: -7.5,-2.5 + parent: 24450 + - uid: 25559 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 21976 + pos: -16.5,-2.5 + parent: 24450 + - uid: 25560 components: - type: Transform - pos: -135.5,-2.5 - parent: 89 - - uid: 21989 + pos: -15.5,-3.5 + parent: 24450 + - uid: 25561 components: - type: Transform - pos: -135.5,-12.5 - parent: 89 - - uid: 21994 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25562 components: - type: Transform - pos: -134.5,-12.5 - parent: 89 - - uid: 21995 + pos: -8.5,-3.5 + parent: 24450 + - uid: 25563 components: - type: Transform - pos: -133.5,-12.5 - parent: 89 - - uid: 21996 + pos: -8.5,-2.5 + parent: 24450 + - uid: 25564 components: - type: Transform - pos: -134.5,-11.5 - parent: 89 - - uid: 21997 + pos: -18.5,2.5 + parent: 24450 + - uid: 25565 components: - type: Transform - pos: -135.5,-11.5 - parent: 89 - - uid: 21998 + pos: -20.5,2.5 + parent: 24450 + - uid: 25566 components: - type: Transform - pos: -134.5,-10.5 - parent: 89 - - uid: 21999 + pos: -23.5,2.5 + parent: 24450 + - uid: 25567 components: - type: Transform - pos: -135.5,-10.5 - parent: 89 - - uid: 22010 + pos: -25.5,2.5 + parent: 24450 + - uid: 25568 components: - type: Transform - pos: -131.5,-10.5 - parent: 89 - - uid: 22029 + pos: -27.5,2.5 + parent: 24450 + - uid: 25569 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 22031 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25570 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 22032 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25571 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22033 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25572 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22034 + pos: -14.5,-1.5 + parent: 24450 + - uid: 25573 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22035 + pos: -14.5,-0.5 + parent: 24450 + - uid: 25574 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22036 + pos: -14.5,0.5 + parent: 24450 + - uid: 25575 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22037 + pos: -14.5,1.5 + parent: 24450 + - uid: 25576 components: - type: Transform - pos: 57.5,-24.5 - parent: 89 - - uid: 22038 + pos: -14.5,2.5 + parent: 24450 + - uid: 25577 components: - type: Transform - pos: 57.5,-25.5 - parent: 89 - - uid: 22039 + pos: -14.5,3.5 + parent: 24450 + - uid: 25578 components: - type: Transform - pos: 57.5,-26.5 - parent: 89 - - uid: 22040 + pos: -15.5,4.5 + parent: 24450 + - uid: 25579 components: - type: Transform - pos: 57.5,-27.5 - parent: 89 - - uid: 22041 + pos: -15.5,6.5 + parent: 24450 + - uid: 25580 components: - type: Transform - pos: 57.5,-28.5 - parent: 89 - - uid: 22042 + pos: -12.5,7.5 + parent: 24450 + - uid: 25581 components: - type: Transform - pos: 57.5,-29.5 - parent: 89 - - uid: 22043 + pos: -12.5,8.5 + parent: 24450 + - uid: 25582 components: - type: Transform - pos: 57.5,-30.5 - parent: 89 - - uid: 22045 + pos: -11.5,8.5 + parent: 24450 + - uid: 25583 components: - type: Transform - pos: 56.5,-30.5 - parent: 89 - - uid: 22046 + pos: -11.5,8.5 + parent: 24450 + - uid: 25584 components: - type: Transform - pos: 55.5,-30.5 - parent: 89 - - uid: 22047 + pos: -10.5,8.5 + parent: 24450 + - uid: 25585 components: - type: Transform - pos: 54.5,-30.5 - parent: 89 - - uid: 22048 + pos: -9.5,8.5 + parent: 24450 + - uid: 25586 components: - type: Transform - pos: 53.5,-30.5 - parent: 89 - - uid: 22049 + pos: -8.5,8.5 + parent: 24450 + - uid: 25587 components: - type: Transform - pos: 52.5,-30.5 - parent: 89 - - uid: 22050 + pos: -8.5,8.5 + parent: 24450 + - uid: 25588 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22051 + pos: -8.5,7.5 + parent: 24450 + - uid: 25589 components: - type: Transform - pos: 50.5,-30.5 - parent: 89 - - uid: 22052 + pos: -8.5,6.5 + parent: 24450 + - uid: 25590 components: - type: Transform - pos: 49.5,-30.5 - parent: 89 - - uid: 22053 + pos: -8.5,5.5 + parent: 24450 + - uid: 25591 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 22054 + pos: -8.5,4.5 + parent: 24450 + - uid: 25592 components: - type: Transform - pos: 47.5,-30.5 - parent: 89 - - uid: 22055 + pos: -8.5,3.5 + parent: 24450 + - uid: 25593 components: - type: Transform - pos: 46.5,-30.5 - parent: 89 - - uid: 22056 + pos: -8.5,3.5 + parent: 24450 + - uid: 25594 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 22057 + pos: -9.5,3.5 + parent: 24450 + - uid: 25595 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22058 + pos: -10.5,3.5 + parent: 24450 + - uid: 25596 components: - type: Transform - pos: 45.5,-28.5 - parent: 89 - - uid: 22059 + pos: -11.5,3.5 + parent: 24450 + - uid: 25597 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 - - uid: 22060 + pos: -12.5,3.5 + parent: 24450 + - uid: 25598 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 22061 + pos: -13.5,3.5 + parent: 24450 + - uid: 25599 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 - - uid: 22062 + pos: -14.5,3.5 + parent: 24450 + - uid: 25600 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 - - uid: 22063 + pos: -15.5,3.5 + parent: 24450 + - uid: 25601 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22064 + pos: -15.5,3.5 + parent: 24450 + - uid: 25602 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22065 + pos: -15.5,4.5 + parent: 24450 + - uid: 25603 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22066 + pos: -15.5,5.5 + parent: 24450 + - uid: 25604 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22067 + pos: -15.5,7.5 + parent: 24450 + - uid: 25605 components: - type: Transform - pos: 45.5,-19.5 - parent: 89 - - uid: 22068 + pos: -15.5,8.5 + parent: 24450 + - uid: 25606 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22069 + pos: -14.5,8.5 + parent: 24450 + - uid: 25607 components: - type: Transform - pos: 44.5,-18.5 - parent: 89 - - uid: 22082 + pos: -13.5,8.5 + parent: 24450 + - uid: 25608 components: - type: Transform - pos: 59.5,-16.5 - parent: 89 - - uid: 22083 + pos: -12.5,5.5 + parent: 24450 + - uid: 25609 components: - type: Transform - pos: 60.5,-16.5 - parent: 89 - - uid: 22084 + pos: -12.5,4.5 + parent: 24450 + - uid: 25610 components: - type: Transform - pos: 58.5,-16.5 - parent: 89 - - uid: 22085 + pos: -12.5,6.5 + parent: 24450 + - uid: 27483 components: - type: Transform - pos: 57.5,-16.5 - parent: 89 - - uid: 22086 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27484 components: - type: Transform - pos: 60.5,-17.5 - parent: 89 - - uid: 22087 + pos: 0.5,-11.5 + parent: 27260 + - uid: 27485 components: - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 22088 + pos: 0.5,-10.5 + parent: 27260 + - uid: 27486 components: - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 22089 + pos: 0.5,-9.5 + parent: 27260 + - uid: 27487 components: - type: Transform - pos: 61.5,-18.5 - parent: 89 - - uid: 22090 + pos: 0.5,-8.5 + parent: 27260 + - uid: 27488 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 22092 + pos: 0.5,-7.5 + parent: 27260 + - uid: 27489 components: - type: Transform - pos: 50.5,-37.5 - parent: 89 - - uid: 22093 + pos: -0.5,-7.5 + parent: 27260 + - uid: 27490 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 22094 + pos: -1.5,-7.5 + parent: 27260 + - uid: 27491 components: - type: Transform - pos: 62.5,-19.5 - parent: 89 - - uid: 22095 + pos: -2.5,-7.5 + parent: 27260 + - uid: 27492 components: - type: Transform - pos: 62.5,-20.5 - parent: 89 - - uid: 22096 + pos: 1.5,-7.5 + parent: 27260 + - uid: 27493 components: - type: Transform - pos: 62.5,-21.5 - parent: 89 - - uid: 22097 + pos: 2.5,-7.5 + parent: 27260 + - uid: 27494 components: - type: Transform - pos: 62.5,-22.5 - parent: 89 - - uid: 22098 + pos: 3.5,-7.5 + parent: 27260 +- proto: CableMVStack + entities: + - uid: 6821 components: - type: Transform - pos: 63.5,-24.5 - parent: 89 - - uid: 22099 + pos: -9.465677,-35.477985 + parent: 2 + - uid: 6822 components: - type: Transform - pos: 63.5,-25.5 - parent: 89 - - uid: 22100 + pos: -115.52017,14.53778 + parent: 2 + - uid: 6823 components: - type: Transform - pos: 63.5,-26.5 - parent: 89 - - uid: 22101 + pos: 35.409824,32.517487 + parent: 2 + - uid: 6824 components: - type: Transform - pos: 63.5,-27.5 - parent: 89 - - uid: 22102 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6825 components: - type: Transform - pos: 63.5,-28.5 - parent: 89 - - uid: 22103 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6826 components: - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 22104 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6827 components: - type: Transform - pos: 62.5,-33.5 - parent: 89 - - uid: 22105 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6828 components: - type: Transform - pos: 62.5,-34.5 - parent: 89 - - uid: 22106 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6829 components: - type: Transform - pos: 62.5,-35.5 - parent: 89 - - uid: 22107 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6830 components: - type: Transform - pos: 62.5,-36.5 - parent: 89 - - uid: 22108 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6831 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 22109 + pos: -115.50875,5.940868 + parent: 2 + - uid: 6832 components: - type: Transform - pos: 61.5,-37.5 - parent: 89 - - uid: 22110 + pos: -103.143776,-2.2963343 + parent: 2 + - uid: 6833 components: - type: Transform - pos: 60.5,-37.5 - parent: 89 - - uid: 22111 + pos: -102.487526,-2.2963343 + parent: 2 + - uid: 6834 components: - type: Transform - pos: 59.5,-37.5 - parent: 89 - - uid: 22112 + pos: 32.602047,6.400256 + parent: 2 + - uid: 27495 components: - type: Transform - pos: 58.5,-38.5 - parent: 89 - - uid: 22113 + pos: -1.4373322,-7.369629 + parent: 27260 +- proto: CableMVStack1 + entities: + - uid: 6835 components: - type: Transform - pos: 57.5,-38.5 - parent: 89 - - uid: 22114 + rot: 3.141592653589793 rad + pos: -3.2917204,32.569008 + parent: 2 +- proto: CableTerminal + entities: + - uid: 6836 components: - type: Transform - pos: 56.5,-38.5 - parent: 89 - - uid: 22115 + pos: -121.5,15.5 + parent: 2 + - uid: 6837 components: - type: Transform - pos: 55.5,-38.5 - parent: 89 - - uid: 22118 + rot: 3.141592653589793 rad + pos: -124.5,15.5 + parent: 2 + - uid: 6838 components: - type: Transform - pos: 57.5,-37.5 - parent: 89 - - uid: 22119 + rot: 3.141592653589793 rad + pos: -123.5,15.5 + parent: 2 + - uid: 6839 components: - type: Transform - pos: 57.5,-36.5 - parent: 89 - - uid: 22120 + rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 2 + - uid: 6840 components: - type: Transform - pos: 57.5,-35.5 - parent: 89 - - uid: 22124 + pos: -116.5,14.5 + parent: 2 + - uid: 6841 components: - type: Transform - pos: 56.5,-16.5 - parent: 89 - - uid: 22127 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + - uid: 6842 components: - type: Transform - pos: 55.5,-16.5 - parent: 89 - - uid: 22133 + pos: -112.5,21.5 + parent: 2 + - uid: 6843 components: - type: Transform - pos: -132.5,-12.5 - parent: 89 - - uid: 22134 + rot: 3.141592653589793 rad + pos: -125.5,15.5 + parent: 2 + - uid: 6844 components: - type: Transform - pos: -132.5,-11.5 - parent: 89 - - uid: 22135 + pos: -130.5,-11.5 + parent: 2 + - uid: 6845 components: - type: Transform - pos: -131.5,-12.5 - parent: 89 - - uid: 22137 + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 6846 components: - type: Transform - pos: -131.5,-11.5 - parent: 89 - - uid: 22142 + pos: -123.5,18.5 + parent: 2 + - uid: 6847 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 22143 + pos: -125.5,18.5 + parent: 2 + - uid: 6848 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 22144 + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 6849 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 22145 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - uid: 6850 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 22146 + pos: -124.5,18.5 + parent: 2 + - uid: 6851 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 22147 + rot: 3.141592653589793 rad + pos: -122.5,15.5 + parent: 2 + - uid: 6852 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22148 + pos: -122.5,18.5 + parent: 2 + - uid: 24061 components: - type: Transform - pos: 50.5,-36.5 - parent: 89 - - uid: 22149 + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 23919 + - uid: 25611 components: - type: Transform - pos: 50.5,-35.5 - parent: 89 - - uid: 22150 + pos: -5.5,-16.5 + parent: 24450 + - uid: 27496 components: - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 22151 + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 27260 +- proto: CandleGreenSmall + entities: + - uid: 6853 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 22152 + rot: -1.5707963267948966 rad + pos: 34.749695,-2.0320969 + parent: 2 + - uid: 6854 components: - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 22153 + rot: -1.5707963267948966 rad + pos: 34.85907,-3.6570969 + parent: 2 +- proto: CandleRedSmall + entities: + - uid: 6855 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 22154 + rot: -1.5707963267948966 rad + pos: 33.82782,-6.060961 + parent: 2 + - uid: 6856 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 22155 + rot: -1.5707963267948966 rad + pos: 33.76532,-6.639086 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 6857 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22156 + pos: -7.856884,37.448025 + parent: 2 + - uid: 6858 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 22157 + pos: -7.888134,36.5574 + parent: 2 + - uid: 6859 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 22158 + pos: -7.872509,35.635525 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 6860 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 22159 + pos: -16.616455,-15.321603 + parent: 2 + - uid: 6861 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22160 + pos: -16.522705,-15.493478 + parent: 2 + - uid: 6862 components: - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 22161 + pos: -102.642654,-10.369977 + parent: 2 + - uid: 6863 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 22162 + pos: -102.642654,-10.682477 + parent: 2 + - uid: 6864 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 22164 + pos: -102.43953,-10.682477 + parent: 2 + - uid: 6865 components: - type: Transform - pos: 37.5,-35.5 - parent: 89 - - uid: 22165 + pos: -102.392654,-10.448102 + parent: 2 + - uid: 6866 components: - type: Transform - pos: 48.5,-35.5 - parent: 89 - - uid: 22166 + pos: -102.25203,-10.385602 + parent: 2 + - uid: 6867 components: - type: Transform - pos: 48.5,-36.5 - parent: 89 - - uid: 22167 + pos: -102.18953,-10.666852 + parent: 2 + - uid: 6868 components: - type: Transform - pos: 48.5,-37.5 - parent: 89 - - uid: 22168 + rot: 3.141592653589793 rad + pos: -102.48644,-10.473882 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 6869 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22169 + pos: 47.43045,10.357418 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 6870 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 22170 + pos: -96.5,-23.5 + parent: 2 + - uid: 6871 components: - type: Transform - pos: 36.5,-34.5 - parent: 89 - - uid: 22171 + pos: -123.5,-0.5 + parent: 2 +- proto: CargoIDCard + entities: + - uid: 25612 components: - type: Transform - pos: 36.5,-33.5 - parent: 89 - - uid: 22172 + pos: 6.5659084,-1.4425423 + parent: 24450 +- proto: Carpet + entities: + - uid: 6872 components: - type: Transform - pos: 36.5,-32.5 - parent: 89 - - uid: 22173 + pos: 33.5,-1.5 + parent: 2 + - uid: 6873 components: - type: Transform - pos: 36.5,-31.5 - parent: 89 - - uid: 22174 + pos: 34.5,-2.5 + parent: 2 + - uid: 6874 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22175 + pos: 34.5,-1.5 + parent: 2 + - uid: 6875 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 22176 + pos: 34.5,-3.5 + parent: 2 + - uid: 6876 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 22177 + pos: 33.5,-2.5 + parent: 2 + - uid: 6877 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 22178 + pos: 33.5,-3.5 + parent: 2 + - uid: 6878 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 22179 + pos: 32.5,-3.5 + parent: 2 + - uid: 6879 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 22180 + pos: 32.5,-2.5 + parent: 2 + - uid: 6880 components: - type: Transform - pos: 37.5,-31.5 - parent: 89 - - uid: 22181 + pos: 32.5,-1.5 + parent: 2 + - uid: 6881 components: - type: Transform - pos: 37.5,-30.5 - parent: 89 - - uid: 22182 + pos: -30.5,-5.5 + parent: 2 + - uid: 6882 components: - type: Transform - pos: 37.5,-29.5 - parent: 89 - - uid: 22183 + pos: -30.5,-6.5 + parent: 2 + - uid: 6883 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 - - uid: 22184 + pos: -30.5,-7.5 + parent: 2 + - uid: 6884 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 22185 + pos: -29.5,-5.5 + parent: 2 + - uid: 6885 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22186 + pos: -29.5,-6.5 + parent: 2 + - uid: 6886 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 22187 + pos: -29.5,-7.5 + parent: 2 + - uid: 6887 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 22188 + pos: 22.5,5.5 + parent: 2 + - uid: 6888 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22189 + pos: 22.5,6.5 + parent: 2 + - uid: 6889 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 22190 + pos: 22.5,7.5 + parent: 2 + - uid: 6890 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22191 + pos: 21.5,5.5 + parent: 2 + - uid: 6891 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22192 + pos: 21.5,6.5 + parent: 2 + - uid: 6892 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 22193 + pos: 21.5,7.5 + parent: 2 + - uid: 6893 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 22194 + pos: 20.5,5.5 + parent: 2 + - uid: 6894 components: - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 22195 + pos: 20.5,6.5 + parent: 2 + - uid: 6895 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 22196 + pos: 20.5,7.5 + parent: 2 + - uid: 6896 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 22197 + pos: -78.5,-0.5 + parent: 2 + - uid: 6897 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 22198 + pos: -78.5,-1.5 + parent: 2 + - uid: 6898 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 22199 + pos: -79.5,-0.5 + parent: 2 + - uid: 6899 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22200 + pos: -79.5,-1.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 6900 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22201 + pos: 46.5,13.5 + parent: 2 + - uid: 6901 components: - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 22202 + pos: 18.5,17.5 + parent: 2 + - uid: 6902 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 22203 + pos: 18.5,18.5 + parent: 2 + - uid: 6903 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 22211 + pos: 18.5,19.5 + parent: 2 + - uid: 6904 components: - type: Transform - pos: -132.5,-3.5 - parent: 89 - - uid: 22212 + pos: 19.5,17.5 + parent: 2 + - uid: 6905 components: - type: Transform - pos: 59.5,-22.5 - parent: 89 - - uid: 22213 + pos: 19.5,18.5 + parent: 2 + - uid: 6906 components: - type: Transform - pos: 60.5,-22.5 - parent: 89 - - uid: 22214 + pos: 19.5,19.5 + parent: 2 + - uid: 6907 components: - type: Transform - pos: 61.5,-22.5 - parent: 89 - - uid: 22347 + pos: 20.5,17.5 + parent: 2 + - uid: 6908 components: - type: Transform - pos: -131.5,-4.5 - parent: 89 - - uid: 23588 + pos: 20.5,18.5 + parent: 2 + - uid: 6909 components: - type: Transform - pos: -1.5,-11.5 - parent: 22565 - - uid: 23589 + pos: 20.5,19.5 + parent: 2 + - uid: 27497 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 - - uid: 23590 + pos: -3.5,-5.5 + parent: 27260 + - uid: 27498 components: - type: Transform - pos: -6.5,-15.5 - parent: 22565 - - uid: 23591 + pos: -4.5,-5.5 + parent: 27260 + - uid: 27499 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 - - uid: 23592 + pos: -5.5,-5.5 + parent: 27260 + - uid: 27500 components: - type: Transform - pos: -6.5,-16.5 - parent: 22565 - - uid: 23593 + pos: -4.5,-6.5 + parent: 27260 + - uid: 27501 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 - - uid: 23594 + pos: -5.5,-6.5 + parent: 27260 +- proto: CarpetChapel + entities: + - uid: 6910 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23595 + pos: -52.5,-1.5 + parent: 2 + - uid: 6911 components: - type: Transform - pos: -10.5,-12.5 - parent: 22565 - - uid: 23596 + pos: -52.5,0.5 + parent: 2 + - uid: 6912 components: - type: Transform - pos: -11.5,-12.5 - parent: 22565 - - uid: 23597 + pos: -48.5,-1.5 + parent: 2 + - uid: 6913 components: - type: Transform - pos: -5.5,-15.5 - parent: 22565 - - uid: 23598 + pos: -48.5,0.5 + parent: 2 + - uid: 6914 components: - type: Transform - pos: -17.5,-6.5 - parent: 22565 - - uid: 23599 + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 + - uid: 6915 components: - type: Transform - pos: -0.5,-11.5 - parent: 22565 - - uid: 23600 + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 6916 components: - type: Transform - pos: 0.5,-11.5 - parent: 22565 - - uid: 23601 + rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 + - uid: 6917 components: - type: Transform - pos: -1.5,-12.5 - parent: 22565 - - uid: 23602 + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 6918 components: - type: Transform - pos: -1.5,-13.5 - parent: 22565 - - uid: 23603 + rot: 3.141592653589793 rad + pos: -47.5,1.5 + parent: 2 + - uid: 6919 components: - type: Transform - pos: -4.5,-11.5 - parent: 22565 - - uid: 23604 + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 6920 components: - type: Transform - pos: -0.5,-12.5 - parent: 22565 - - uid: 23605 + rot: 3.141592653589793 rad + pos: -51.5,-0.5 + parent: 2 + - uid: 6921 components: - type: Transform - pos: -0.5,-13.5 - parent: 22565 - - uid: 23606 + rot: 3.141592653589793 rad + pos: -51.5,1.5 + parent: 2 + - uid: 6922 components: - type: Transform - pos: -3.5,-11.5 - parent: 22565 - - uid: 23607 + rot: 1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - uid: 6923 components: - type: Transform - pos: 0.5,-12.5 - parent: 22565 - - uid: 23608 + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 6924 components: - type: Transform - pos: 0.5,-13.5 - parent: 22565 - - uid: 23609 + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 6925 components: - type: Transform - pos: -2.5,-11.5 - parent: 22565 - - uid: 23610 + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 6926 components: - type: Transform - pos: -4.5,-14.5 - parent: 22565 - - uid: 23611 + pos: -52.5,-3.5 + parent: 2 + - uid: 6927 components: - type: Transform - pos: -4.5,-13.5 - parent: 22565 - - uid: 23612 + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 6928 components: - type: Transform - pos: -4.5,-12.5 - parent: 22565 - - uid: 23613 + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 6929 components: - type: Transform - pos: -5.5,-14.5 - parent: 22565 - - uid: 23614 + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 6930 components: - type: Transform - pos: -5.5,-13.5 - parent: 22565 - - uid: 23615 + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 6931 components: - type: Transform - pos: -5.5,-12.5 - parent: 22565 - - uid: 23616 + rot: 3.141592653589793 rad + pos: -49.5,-2.5 + parent: 2 + - uid: 6932 components: - type: Transform - pos: -6.5,-14.5 - parent: 22565 - - uid: 23617 + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 6933 components: - type: Transform - pos: -6.5,-13.5 - parent: 22565 - - uid: 23618 + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 6934 components: - type: Transform - pos: -6.5,-12.5 - parent: 22565 - - uid: 23619 + rot: 1.5707963267948966 rad + pos: -49.5,-3.5 + parent: 2 + - uid: 6935 components: - type: Transform - pos: -4.5,-15.5 - parent: 22565 - - uid: 23620 + rot: 1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 2 + - uid: 6936 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23621 + pos: -48.5,-3.5 + parent: 2 + - uid: 6937 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23622 + pos: -50.5,-3.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 6938 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23623 + pos: -51.5,10.5 + parent: 2 + - uid: 6939 components: - type: Transform - pos: -7.5,-3.5 - parent: 22565 - - uid: 23624 + pos: -51.5,9.5 + parent: 2 + - uid: 6940 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 - - uid: 23625 + pos: -51.5,8.5 + parent: 2 + - uid: 6941 components: - type: Transform - pos: -6.5,-11.5 - parent: 22565 - - uid: 23626 + pos: -50.5,10.5 + parent: 2 + - uid: 6942 components: - type: Transform - pos: -6.5,-4.5 - parent: 22565 - - uid: 23627 + pos: -50.5,9.5 + parent: 2 + - uid: 6943 components: - type: Transform - pos: -6.5,-5.5 - parent: 22565 - - uid: 23628 + pos: -50.5,8.5 + parent: 2 + - uid: 6944 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 23629 + pos: -49.5,10.5 + parent: 2 + - uid: 6945 components: - type: Transform - pos: -6.5,-9.5 - parent: 22565 - - uid: 23630 + pos: -49.5,9.5 + parent: 2 + - uid: 6946 components: - type: Transform - pos: -6.5,-3.5 - parent: 22565 - - uid: 23631 + pos: -49.5,8.5 + parent: 2 + - uid: 6947 components: - type: Transform - pos: -7.5,-13.5 - parent: 22565 - - uid: 23632 + pos: -48.5,10.5 + parent: 2 + - uid: 6948 components: - type: Transform - pos: -8.5,-13.5 - parent: 22565 - - uid: 23633 + pos: -48.5,9.5 + parent: 2 + - uid: 6949 components: - type: Transform - pos: -9.5,-13.5 - parent: 22565 - - uid: 23634 + pos: -48.5,8.5 + parent: 2 + - uid: 6950 components: - type: Transform - pos: -10.5,-13.5 - parent: 22565 - - uid: 23635 + pos: -26.5,31.5 + parent: 2 + - uid: 6951 components: - type: Transform - pos: -15.5,-12.5 - parent: 22565 - - uid: 23636 + pos: -26.5,32.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 6952 components: - type: Transform - pos: -17.5,-3.5 - parent: 22565 - - uid: 23637 + pos: -73.5,-17.5 + parent: 2 + - uid: 6953 components: - type: Transform - pos: -17.5,-4.5 - parent: 22565 - - uid: 23638 + pos: -49.5,1.5 + parent: 2 + - uid: 6954 components: - type: Transform - pos: -17.5,-5.5 - parent: 22565 - - uid: 23639 + pos: -50.5,0.5 + parent: 2 + - uid: 6955 components: - type: Transform - pos: -17.5,-7.5 - parent: 22565 - - uid: 23640 + pos: -50.5,-1.5 + parent: 2 + - uid: 6956 components: - type: Transform - pos: -17.5,-8.5 - parent: 22565 - - uid: 23641 + pos: -50.5,-0.5 + parent: 2 + - uid: 6957 components: - type: Transform - pos: -17.5,-9.5 - parent: 22565 - - uid: 23642 + pos: -49.5,0.5 + parent: 2 + - uid: 6958 components: - type: Transform - pos: -16.5,-3.5 - parent: 22565 - - uid: 23643 + pos: -49.5,-0.5 + parent: 2 + - uid: 6959 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 - - uid: 23644 + pos: -49.5,-1.5 + parent: 2 + - uid: 6960 components: - type: Transform - pos: -5.5,-11.5 - parent: 22565 - - uid: 23646 + pos: -50.5,1.5 + parent: 2 + - uid: 6961 components: - type: Transform - pos: -15.5,-9.5 - parent: 22565 - - uid: 23647 + pos: -73.5,-16.5 + parent: 2 + - uid: 6962 components: - type: Transform - pos: -14.5,-12.5 - parent: 22565 - - uid: 23648 + pos: -72.5,-16.5 + parent: 2 + - uid: 6963 components: - type: Transform - pos: -13.5,-12.5 - parent: 22565 - - uid: 23649 + pos: -72.5,-17.5 + parent: 2 + - uid: 6964 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 - - uid: 23650 + pos: -71.5,-16.5 + parent: 2 + - uid: 6965 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 - - uid: 23651 + pos: -71.5,-17.5 + parent: 2 + - uid: 6966 components: - type: Transform - pos: -17.5,-12.5 - parent: 22565 - - uid: 23652 + pos: -70.5,-16.5 + parent: 2 + - uid: 6967 components: - type: Transform - pos: -17.5,-12.5 - parent: 22565 - - uid: 23653 + pos: -70.5,-17.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 6968 components: - type: Transform - pos: -17.5,-11.5 - parent: 22565 - - uid: 23654 + pos: 4.5,-31.5 + parent: 2 + - uid: 6969 components: - type: Transform - pos: -17.5,-10.5 - parent: 22565 - - uid: 25480 + pos: 4.5,-30.5 + parent: 2 + - uid: 6970 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 - - uid: 25481 + pos: 3.5,-30.5 + parent: 2 + - uid: 6971 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - uid: 25482 + pos: 3.5,-31.5 + parent: 2 + - uid: 6972 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25621 + pos: 2.5,-31.5 + parent: 2 + - uid: 6973 components: - type: Transform - pos: -5.5,-16.5 - parent: 22565 - - uid: 25860 + pos: 2.5,-30.5 + parent: 2 + - uid: 6974 components: - type: Transform - pos: -126.5,3.5 - parent: 89 - - uid: 25861 + pos: 1.5,-30.5 + parent: 2 + - uid: 6975 components: - type: Transform - pos: -125.5,4.5 - parent: 89 - - uid: 25862 + pos: 1.5,-31.5 + parent: 2 + - uid: 6976 components: - type: Transform - pos: -125.5,3.5 - parent: 89 - - uid: 25869 + rot: 3.141592653589793 rad + pos: -75.5,-3.5 + parent: 2 + - uid: 6977 components: - type: Transform - pos: -128.5,-2.5 - parent: 89 - - uid: 25870 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 + parent: 2 + - uid: 6978 components: - type: Transform - pos: -119.5,14.5 - parent: 89 -- proto: CableHVStack - entities: - - uid: 9244 + rot: 3.141592653589793 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 6979 components: - type: Transform - pos: -131.46945,-2.4058437 - parent: 89 - - uid: 10774 + rot: 3.141592653589793 rad + pos: -77.5,-3.5 + parent: 2 + - uid: 6980 components: - type: Transform - pos: -103.4719,-2.5463343 - parent: 89 - - uid: 10775 + rot: 3.141592653589793 rad + pos: -76.5,-3.5 + parent: 2 + - uid: 6981 components: - type: Transform - pos: -103.175026,-2.4682093 - parent: 89 - - uid: 15286 + rot: 3.141592653589793 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 6982 components: - type: Transform - pos: -115.50455,15.490905 - parent: 89 - - uid: 19695 + pos: -46.5,9.5 + parent: 2 + - uid: 6983 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19696 + pos: -46.5,8.5 + parent: 2 + - uid: 6984 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19697 + pos: -45.5,9.5 + parent: 2 + - uid: 6985 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19733 + pos: -53.5,9.5 + parent: 2 + - uid: 6986 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19734 + pos: -53.5,8.5 + parent: 2 + - uid: 6987 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19735 + pos: -46.5,7.5 + parent: 2 + - uid: 6988 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19736 + pos: -45.5,8.5 + parent: 2 + - uid: 6989 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 20086 + pos: -45.5,7.5 + parent: 2 + - uid: 6990 components: - type: Transform - pos: -115.52195,5.4791265 - parent: 89 - - uid: 20364 + pos: -44.5,9.5 + parent: 2 + - uid: 6991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.57262,-11.463894 - parent: 89 - - uid: 20365 + pos: -44.5,8.5 + parent: 2 + - uid: 6992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.69762,-11.620144 - parent: 89 - - uid: 20446 + pos: -44.5,7.5 + parent: 2 + - uid: 6993 components: - type: Transform - pos: 53.39606,26.518478 - parent: 89 -- proto: CableMV - entities: - - uid: 278 + pos: -43.5,9.5 + parent: 2 + - uid: 6994 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 279 + pos: -43.5,8.5 + parent: 2 + - uid: 6995 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 280 + pos: -43.5,7.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 6996 components: - type: Transform - pos: -5.5,-25.5 - parent: 89 - - uid: 299 + pos: 42.5,14.5 + parent: 2 + - uid: 6997 components: - type: Transform - pos: -8.5,-18.5 - parent: 89 - - uid: 304 + pos: 40.5,13.5 + parent: 2 + - uid: 6998 components: - type: Transform - pos: -8.5,-18.5 - parent: 89 - - uid: 305 + pos: 40.5,12.5 + parent: 2 + - uid: 6999 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 336 + pos: 41.5,13.5 + parent: 2 + - uid: 7000 components: - type: Transform - pos: 44.5,9.5 - parent: 89 - - uid: 337 + pos: 41.5,12.5 + parent: 2 + - uid: 7001 components: - type: Transform - pos: 44.5,10.5 - parent: 89 - - uid: 338 + pos: 42.5,12.5 + parent: 2 + - uid: 7002 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 339 + pos: 41.5,14.5 + parent: 2 + - uid: 7003 components: - type: Transform - pos: 44.5,8.5 - parent: 89 - - uid: 349 + pos: 40.5,14.5 + parent: 2 + - uid: 7004 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - uid: 350 + pos: -74.5,-0.5 + parent: 2 + - uid: 7005 components: - type: Transform - pos: 62.5,3.5 - parent: 89 - - uid: 351 + pos: -74.5,-1.5 + parent: 2 + - uid: 7006 components: - type: Transform - pos: 64.5,6.5 - parent: 89 - - uid: 352 + pos: -73.5,-0.5 + parent: 2 + - uid: 7007 components: - type: Transform - pos: 64.5,7.5 - parent: 89 - - uid: 353 + pos: -73.5,-1.5 + parent: 2 + - uid: 7008 components: - type: Transform - pos: 64.5,8.5 - parent: 89 - - uid: 354 + pos: 58.5,4.5 + parent: 2 + - uid: 7009 components: - type: Transform - pos: 62.5,4.5 - parent: 89 - - uid: 361 + pos: 58.5,5.5 + parent: 2 + - uid: 7010 components: - type: Transform - pos: 64.5,0.5 - parent: 89 - - uid: 362 + pos: 58.5,6.5 + parent: 2 + - uid: 7011 components: - type: Transform - pos: 62.5,-0.5 - parent: 89 - - uid: 363 + pos: 58.5,3.5 + parent: 2 + - uid: 7012 components: - type: Transform - pos: 64.5,2.5 - parent: 89 - - uid: 364 + pos: 58.5,2.5 + parent: 2 + - uid: 7013 components: - type: Transform - pos: 62.5,0.5 - parent: 89 - - uid: 373 + pos: 57.5,5.5 + parent: 2 + - uid: 7014 components: - type: Transform - pos: 62.5,8.5 - parent: 89 - - uid: 374 + pos: 57.5,4.5 + parent: 2 + - uid: 7015 components: - type: Transform - pos: 64.5,1.5 - parent: 89 - - uid: 376 + pos: 57.5,3.5 + parent: 2 + - uid: 7016 components: - type: Transform - pos: 63.5,0.5 - parent: 89 - - uid: 384 + pos: 59.5,5.5 + parent: 2 + - uid: 7017 components: - type: Transform - pos: 63.5,10.5 - parent: 89 - - uid: 385 + pos: 59.5,4.5 + parent: 2 + - uid: 7018 components: - type: Transform - pos: 62.5,9.5 - parent: 89 - - uid: 386 + pos: 59.5,3.5 + parent: 2 + - uid: 7019 components: - type: Transform - pos: 64.5,3.5 - parent: 89 - - uid: 390 + pos: -23.5,9.5 + parent: 2 + - uid: 7020 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 404 + pos: -23.5,8.5 + parent: 2 + - uid: 7021 components: - type: Transform - pos: 65.5,13.5 - parent: 89 - - uid: 405 + pos: -22.5,8.5 + parent: 2 + - uid: 7022 components: - type: Transform - pos: 62.5,10.5 - parent: 89 - - uid: 416 + pos: -22.5,9.5 + parent: 2 + - uid: 7023 components: - type: Transform - pos: 65.5,14.5 - parent: 89 - - uid: 417 + pos: 25.5,43.5 + parent: 2 + - uid: 7024 components: - type: Transform - pos: 64.5,10.5 - parent: 89 - - uid: 426 + pos: 25.5,42.5 + parent: 2 + - uid: 7025 components: - type: Transform - pos: 64.5,14.5 - parent: 89 - - uid: 427 + pos: 24.5,43.5 + parent: 2 + - uid: 7026 components: - type: Transform - pos: 63.5,14.5 - parent: 89 - - uid: 428 + pos: 24.5,42.5 + parent: 2 + - uid: 7027 components: - type: Transform - pos: 61.5,13.5 - parent: 89 - - uid: 429 + pos: 23.5,43.5 + parent: 2 + - uid: 7028 components: - type: Transform - pos: 60.5,13.5 - parent: 89 - - uid: 430 + pos: 23.5,42.5 + parent: 2 + - uid: 7029 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 431 + pos: 42.5,13.5 + parent: 2 + - uid: 7030 components: - type: Transform - pos: 52.5,15.5 - parent: 89 - - uid: 432 + pos: -24.5,7.5 + parent: 2 + - uid: 7031 components: - type: Transform - pos: 59.5,16.5 - parent: 89 - - uid: 433 + pos: -24.5,8.5 + parent: 2 + - uid: 7032 components: - type: Transform - pos: 56.5,16.5 - parent: 89 - - uid: 437 + pos: -22.5,7.5 + parent: 2 + - uid: 7033 components: - type: Transform - pos: 42.5,13.5 - parent: 89 - - uid: 439 + pos: -23.5,7.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 7034 components: - type: Transform - pos: 43.5,12.5 - parent: 89 - - uid: 467 + pos: -4.5,3.5 + parent: 2 + - uid: 7035 components: - type: Transform - pos: 49.5,-2.5 - parent: 89 - - uid: 535 + pos: -4.5,1.5 + parent: 2 + - uid: 7036 components: - type: Transform - pos: 63.5,5.5 - parent: 89 - - uid: 536 + pos: -4.5,2.5 + parent: 2 + - uid: 7037 components: - type: Transform - pos: 62.5,5.5 - parent: 89 - - uid: 538 + rot: -1.5707963267948966 rad + pos: -128.5,-12.5 + parent: 2 + - uid: 7038 components: - type: Transform - pos: 58.5,16.5 - parent: 89 - - uid: 539 + rot: -1.5707963267948966 rad + pos: -129.5,-10.5 + parent: 2 + - uid: 7039 components: - type: Transform - pos: 53.5,16.5 - parent: 89 - - uid: 540 + rot: -1.5707963267948966 rad + pos: -129.5,-7.5 + parent: 2 + - uid: 7040 components: - type: Transform - pos: 66.5,10.5 - parent: 89 - - uid: 541 + rot: -1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - uid: 7041 components: - type: Transform - pos: 66.5,12.5 - parent: 89 - - uid: 542 + rot: -1.5707963267948966 rad + pos: -112.5,25.5 + parent: 2 + - uid: 7042 components: - type: Transform - pos: 66.5,13.5 - parent: 89 - - uid: 543 + rot: -1.5707963267948966 rad + pos: -108.5,23.5 + parent: 2 + - uid: 7043 components: - type: Transform - pos: 50.5,-2.5 - parent: 89 - - uid: 590 + rot: -1.5707963267948966 rad + pos: -105.5,23.5 + parent: 2 + - uid: 7044 components: - type: Transform - pos: 45.5,3.5 - parent: 89 - - uid: 591 + rot: -1.5707963267948966 rad + pos: -104.5,23.5 + parent: 2 + - uid: 7045 components: - type: Transform - pos: 44.5,3.5 - parent: 89 - - uid: 592 + rot: -1.5707963267948966 rad + pos: -103.5,23.5 + parent: 2 + - uid: 7046 components: - type: Transform - pos: 40.5,5.5 - parent: 89 - - uid: 593 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 + parent: 2 + - uid: 7047 components: - type: Transform - pos: 40.5,8.5 - parent: 89 - - uid: 594 + rot: -1.5707963267948966 rad + pos: -106.5,23.5 + parent: 2 + - uid: 7048 components: - type: Transform - pos: 40.5,6.5 - parent: 89 - - uid: 595 + rot: -1.5707963267948966 rad + pos: -107.5,23.5 + parent: 2 + - uid: 7049 components: - type: Transform - pos: 41.5,8.5 - parent: 89 - - uid: 597 + pos: -108.5,22.5 + parent: 2 + - uid: 7050 components: - type: Transform - pos: 62.5,14.5 - parent: 89 - - uid: 612 + rot: -1.5707963267948966 rad + pos: -130.5,12.5 + parent: 2 + - uid: 7051 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - uid: 700 + rot: -1.5707963267948966 rad + pos: -121.5,14.5 + parent: 2 + - uid: 7052 components: - type: Transform - pos: 62.5,13.5 - parent: 89 - - uid: 701 + rot: -1.5707963267948966 rad + pos: -120.5,14.5 + parent: 2 + - uid: 7053 components: - type: Transform - pos: 59.5,13.5 - parent: 89 - - uid: 702 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 + parent: 2 + - uid: 7054 components: - type: Transform - pos: 59.5,15.5 - parent: 89 - - uid: 703 + rot: 1.5707963267948966 rad + pos: -105.5,-22.5 + parent: 2 + - uid: 7055 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 704 + rot: 1.5707963267948966 rad + pos: -106.5,-22.5 + parent: 2 + - uid: 7056 components: - type: Transform - pos: 52.5,14.5 - parent: 89 - - uid: 705 + rot: 1.5707963267948966 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 7057 components: - type: Transform - pos: 54.5,16.5 - parent: 89 - - uid: 706 + pos: -126.5,-7.5 + parent: 2 + - uid: 7058 components: - type: Transform - pos: 55.5,16.5 - parent: 89 - - uid: 708 + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 7059 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 710 + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 7060 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 711 + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 7061 components: - type: Transform - pos: 42.5,14.5 - parent: 89 - - uid: 712 + pos: -96.5,22.5 + parent: 2 + - uid: 7062 components: - type: Transform - pos: 43.5,11.5 - parent: 89 - - uid: 715 + pos: -108.5,-13.5 + parent: 2 + - uid: 7063 components: - type: Transform - pos: 57.5,16.5 - parent: 89 - - uid: 789 + pos: -108.5,-12.5 + parent: 2 + - uid: 7064 components: - type: Transform - pos: 45.5,8.5 - parent: 89 - - uid: 818 + pos: -108.5,-11.5 + parent: 2 + - uid: 7065 components: - type: Transform - pos: 52.5,11.5 - parent: 89 - - uid: 820 + pos: -108.5,-10.5 + parent: 2 + - uid: 7066 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 824 + pos: -108.5,-9.5 + parent: 2 + - uid: 7067 components: - type: Transform - pos: 49.5,5.5 - parent: 89 - - uid: 825 + pos: -108.5,-7.5 + parent: 2 + - uid: 7068 components: - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 826 + pos: -108.5,-6.5 + parent: 2 + - uid: 7069 components: - type: Transform - pos: 48.5,5.5 - parent: 89 - - uid: 827 + pos: -108.5,-5.5 + parent: 2 + - uid: 7070 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 828 + pos: -108.5,-4.5 + parent: 2 + - uid: 7071 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 829 + pos: -108.5,-3.5 + parent: 2 + - uid: 7072 components: - type: Transform - pos: 50.5,5.5 - parent: 89 - - uid: 831 + pos: -108.5,-2.5 + parent: 2 + - uid: 7073 components: - type: Transform - pos: 52.5,7.5 - parent: 89 - - uid: 832 + pos: -108.5,-1.5 + parent: 2 + - uid: 7074 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - uid: 833 + pos: -108.5,-0.5 + parent: 2 + - uid: 7075 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - uid: 834 + pos: -108.5,0.5 + parent: 2 + - uid: 7076 components: - type: Transform - pos: 52.5,6.5 - parent: 89 - - uid: 835 + pos: -108.5,1.5 + parent: 2 + - uid: 7077 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - uid: 836 + pos: -108.5,2.5 + parent: 2 + - uid: 7078 components: - type: Transform - pos: 52.5,10.5 - parent: 89 - - uid: 839 + pos: -108.5,3.5 + parent: 2 + - uid: 7079 components: - type: Transform - pos: 47.5,8.5 - parent: 89 - - uid: 840 + pos: -108.5,4.5 + parent: 2 + - uid: 7080 components: - type: Transform - pos: 49.5,8.5 - parent: 89 - - uid: 841 + pos: -108.5,5.5 + parent: 2 + - uid: 7081 components: - type: Transform - pos: 48.5,8.5 - parent: 89 - - uid: 842 + pos: -108.5,6.5 + parent: 2 + - uid: 7082 components: - type: Transform - pos: 50.5,8.5 - parent: 89 - - uid: 843 + pos: -108.5,7.5 + parent: 2 + - uid: 7083 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 846 + pos: -108.5,8.5 + parent: 2 + - uid: 7084 components: - type: Transform - pos: 46.5,8.5 - parent: 89 - - uid: 988 + pos: -108.5,9.5 + parent: 2 + - uid: 7085 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 1113 + pos: -108.5,10.5 + parent: 2 + - uid: 7086 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - uid: 1114 + pos: -108.5,11.5 + parent: 2 + - uid: 7087 components: - type: Transform - pos: 52.5,2.5 - parent: 89 - - uid: 1115 + pos: -108.5,12.5 + parent: 2 + - uid: 7088 components: - type: Transform - pos: 52.5,1.5 - parent: 89 - - uid: 1116 + pos: -108.5,13.5 + parent: 2 + - uid: 7089 components: - type: Transform - pos: 52.5,0.5 - parent: 89 - - uid: 1134 + pos: -105.5,14.5 + parent: 2 + - uid: 7090 components: - type: Transform - pos: 44.5,2.5 - parent: 89 - - uid: 1199 + pos: -106.5,14.5 + parent: 2 + - uid: 7091 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1225 + pos: -107.5,14.5 + parent: 2 + - uid: 7092 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 1246 + pos: -109.5,9.5 + parent: 2 + - uid: 7093 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 1340 + pos: -110.5,9.5 + parent: 2 + - uid: 7094 components: - type: Transform - pos: 2.5,-41.5 - parent: 89 - - uid: 1341 + pos: -111.5,9.5 + parent: 2 + - uid: 7095 components: - type: Transform - pos: 1.5,-41.5 - parent: 89 - - uid: 1342 + pos: -111.5,-1.5 + parent: 2 + - uid: 7096 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 1343 + pos: -110.5,-1.5 + parent: 2 + - uid: 7097 components: - type: Transform - pos: -1.5,-38.5 - parent: 89 - - uid: 1344 + pos: -109.5,-1.5 + parent: 2 + - uid: 7098 components: - type: Transform - pos: -1.5,-36.5 - parent: 89 - - uid: 1345 + pos: -107.5,4.5 + parent: 2 + - uid: 7099 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 - - uid: 1346 + pos: -106.5,4.5 + parent: 2 + - uid: 7100 components: - type: Transform - pos: -1.5,-27.5 - parent: 89 - - uid: 1347 + pos: -105.5,4.5 + parent: 2 + - uid: 7101 components: - type: Transform - pos: -1.5,-26.5 - parent: 89 - - uid: 1348 + pos: -104.5,4.5 + parent: 2 + - uid: 7102 components: - type: Transform - pos: -1.5,-25.5 - parent: 89 - - uid: 1349 + pos: -103.5,4.5 + parent: 2 + - uid: 7103 components: - type: Transform - pos: -2.5,-25.5 - parent: 89 - - uid: 1350 + pos: -102.5,4.5 + parent: 2 + - uid: 7104 components: - type: Transform - pos: -3.5,-25.5 - parent: 89 - - uid: 1357 + pos: -101.5,4.5 + parent: 2 + - uid: 7105 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 1436 + pos: -100.5,4.5 + parent: 2 + - uid: 7106 components: - type: Transform - pos: 49.5,-3.5 - parent: 89 - - uid: 1439 + pos: -99.5,4.5 + parent: 2 + - uid: 7107 components: - type: Transform - pos: 41.5,6.5 - parent: 89 - - uid: 1441 + pos: -98.5,4.5 + parent: 2 + - uid: 7108 components: - type: Transform - pos: 40.5,7.5 - parent: 89 - - uid: 1444 + pos: -98.5,5.5 + parent: 2 + - uid: 7109 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 1489 + pos: -98.5,6.5 + parent: 2 + - uid: 7110 components: - type: Transform - pos: 65.5,10.5 - parent: 89 - - uid: 1547 + pos: -98.5,7.5 + parent: 2 + - uid: 7111 components: - type: Transform - pos: 59.5,14.5 - parent: 89 - - uid: 1553 + pos: -98.5,8.5 + parent: 2 + - uid: 7112 components: - type: Transform - pos: 43.5,10.5 - parent: 89 - - uid: 1554 + pos: 48.5,4.5 + parent: 2 + - uid: 7113 components: - type: Transform - pos: 43.5,3.5 - parent: 89 - - uid: 1555 + pos: 49.5,4.5 + parent: 2 + - uid: 7114 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 1640 + rot: 1.5707963267948966 rad + pos: -108.5,-23.5 + parent: 2 + - uid: 7115 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 1670 + rot: 1.5707963267948966 rad + pos: -120.5,-21.5 + parent: 2 + - uid: 7116 components: - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 1691 + rot: 1.5707963267948966 rad + pos: -119.5,-21.5 + parent: 2 + - uid: 7117 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1705 + rot: 1.5707963267948966 rad + pos: -113.5,-22.5 + parent: 2 + - uid: 7118 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1706 + rot: 1.5707963267948966 rad + pos: -118.5,-21.5 + parent: 2 + - uid: 7119 components: - type: Transform - pos: 1.5,-25.5 - parent: 89 - - uid: 1709 + rot: 1.5707963267948966 rad + pos: -109.5,-23.5 + parent: 2 + - uid: 7120 components: - type: Transform - pos: -7.5,-25.5 - parent: 89 - - uid: 1711 + rot: 1.5707963267948966 rad + pos: -121.5,-21.5 + parent: 2 + - uid: 7121 components: - type: Transform - pos: -7.5,-21.5 - parent: 89 - - uid: 1712 + rot: 1.5707963267948966 rad + pos: -107.5,-23.5 + parent: 2 + - uid: 7122 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1717 + pos: -123.5,9.5 + parent: 2 + - uid: 7123 components: - type: Transform - pos: -2.5,-23.5 - parent: 89 - - uid: 1718 + pos: -122.5,9.5 + parent: 2 + - uid: 7124 components: - type: Transform - pos: -4.5,-25.5 - parent: 89 - - uid: 1719 + pos: -121.5,7.5 + parent: 2 + - uid: 7125 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 1724 + pos: -121.5,8.5 + parent: 2 + - uid: 7126 components: - type: Transform - pos: -1.5,-29.5 - parent: 89 - - uid: 1725 + pos: -121.5,9.5 + parent: 2 + - uid: 7127 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1726 + pos: -121.5,6.5 + parent: 2 + - uid: 7128 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 1727 + pos: -121.5,5.5 + parent: 2 + - uid: 7129 components: - type: Transform - pos: -1.5,-34.5 - parent: 89 - - uid: 1728 + pos: 31.5,5.5 + parent: 2 + - uid: 7130 components: - type: Transform - pos: -1.5,-40.5 - parent: 89 - - uid: 1729 + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 7131 components: - type: Transform - pos: -8.5,-19.5 - parent: 89 - - uid: 1730 + rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - uid: 7132 components: - type: Transform - pos: -0.5,-41.5 - parent: 89 - - uid: 1731 + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - uid: 7133 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1755 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - uid: 7134 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1756 + pos: 31.5,6.5 + parent: 2 + - uid: 7135 components: - type: Transform - pos: -6.5,-25.5 - parent: 89 - - uid: 1757 + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + - uid: 7136 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 - - uid: 1758 + rot: -1.5707963267948966 rad + pos: -83.5,-24.5 + parent: 2 + - uid: 7137 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 1759 + rot: -1.5707963267948966 rad + pos: -83.5,-23.5 + parent: 2 + - uid: 7138 components: - type: Transform - pos: -1.5,-35.5 - parent: 89 - - uid: 1760 + rot: -1.5707963267948966 rad + pos: -83.5,-22.5 + parent: 2 + - uid: 7139 components: - type: Transform - pos: -1.5,-33.5 - parent: 89 - - uid: 1761 + rot: -1.5707963267948966 rad + pos: -83.5,-21.5 + parent: 2 + - uid: 7140 components: - type: Transform - pos: -1.5,-28.5 - parent: 89 - - uid: 1825 + rot: -1.5707963267948966 rad + pos: -82.5,-21.5 + parent: 2 + - uid: 7141 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 1829 + rot: -1.5707963267948966 rad + pos: -81.5,-21.5 + parent: 2 + - uid: 7142 components: - type: Transform - pos: -0.5,-25.5 - parent: 89 - - uid: 1830 + rot: -1.5707963267948966 rad + pos: -80.5,-21.5 + parent: 2 + - uid: 7143 components: - type: Transform - pos: 0.5,-25.5 - parent: 89 - - uid: 1831 + rot: -1.5707963267948966 rad + pos: -79.5,-21.5 + parent: 2 + - uid: 7144 components: - type: Transform - pos: 2.5,-27.5 - parent: 89 - - uid: 1834 + rot: -1.5707963267948966 rad + pos: -77.5,-21.5 + parent: 2 + - uid: 7145 components: - type: Transform - pos: 2.5,-25.5 - parent: 89 - - uid: 1835 + rot: -1.5707963267948966 rad + pos: -78.5,-21.5 + parent: 2 + - uid: 7146 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 - - uid: 1836 + rot: 1.5707963267948966 rad + pos: -111.5,-22.5 + parent: 2 + - uid: 7147 components: - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 1837 + rot: 1.5707963267948966 rad + pos: -106.5,-23.5 + parent: 2 + - uid: 7148 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 - - uid: 1840 + pos: 56.5,-8.5 + parent: 2 + - uid: 7149 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 1851 + pos: 52.5,-8.5 + parent: 2 + - uid: 7150 components: - type: Transform - pos: -8.5,-20.5 - parent: 89 - - uid: 1852 + pos: 10.5,-19.5 + parent: 2 + - uid: 7151 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1853 + rot: 3.141592653589793 rad + pos: 66.5,3.5 + parent: 2 + - uid: 7152 components: - type: Transform - pos: -7.5,-20.5 - parent: 89 - - uid: 1854 + rot: 3.141592653589793 rad + pos: 66.5,2.5 + parent: 2 + - uid: 7153 components: - type: Transform - pos: -7.5,-24.5 - parent: 89 - - uid: 2056 + rot: 3.141592653589793 rad + pos: 68.5,0.5 + parent: 2 + - uid: 7154 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 2374 + rot: 3.141592653589793 rad + pos: 68.5,1.5 + parent: 2 + - uid: 7155 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 2395 + rot: 3.141592653589793 rad + pos: 67.5,1.5 + parent: 2 + - uid: 7156 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 2396 + rot: 3.141592653589793 rad + pos: 66.5,1.5 + parent: 2 + - uid: 7157 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 2397 + rot: 3.141592653589793 rad + pos: 66.5,4.5 + parent: 2 + - uid: 7158 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 2398 + rot: 3.141592653589793 rad + pos: 66.5,5.5 + parent: 2 + - uid: 7159 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 2399 + rot: 3.141592653589793 rad + pos: 66.5,6.5 + parent: 2 + - uid: 7160 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - uid: 2400 + rot: 3.141592653589793 rad + pos: 66.5,7.5 + parent: 2 + - uid: 7161 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 2401 + rot: 3.141592653589793 rad + pos: 67.5,7.5 + parent: 2 + - uid: 7162 components: - type: Transform - pos: 45.5,1.5 - parent: 89 - - uid: 2402 + rot: 3.141592653589793 rad + pos: 68.5,7.5 + parent: 2 + - uid: 7163 components: - type: Transform - pos: 44.5,1.5 - parent: 89 - - uid: 2403 + rot: 3.141592653589793 rad + pos: 68.5,8.5 + parent: 2 + - uid: 7164 components: - type: Transform - pos: 43.5,1.5 - parent: 89 - - uid: 2404 + rot: 3.141592653589793 rad + pos: 68.5,9.5 + parent: 2 + - uid: 7165 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 2405 + rot: 3.141592653589793 rad + pos: 68.5,10.5 + parent: 2 + - uid: 7166 components: - type: Transform - pos: 41.5,1.5 - parent: 89 - - uid: 2406 + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 2 + - uid: 7167 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 2407 + rot: 3.141592653589793 rad + pos: 68.5,12.5 + parent: 2 + - uid: 7168 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 2408 + rot: 3.141592653589793 rad + pos: 68.5,13.5 + parent: 2 + - uid: 7169 components: - type: Transform - pos: 38.5,1.5 - parent: 89 - - uid: 2409 + rot: 3.141592653589793 rad + pos: 68.5,14.5 + parent: 2 + - uid: 7170 components: - type: Transform - pos: 37.5,1.5 - parent: 89 - - uid: 2410 + rot: 3.141592653589793 rad + pos: 68.5,15.5 + parent: 2 + - uid: 7171 components: - type: Transform - pos: 36.5,1.5 - parent: 89 - - uid: 2411 + rot: 3.141592653589793 rad + pos: 68.5,16.5 + parent: 2 + - uid: 7172 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 2412 + rot: 3.141592653589793 rad + pos: 67.5,16.5 + parent: 2 + - uid: 7173 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 2413 + rot: 3.141592653589793 rad + pos: 66.5,16.5 + parent: 2 + - uid: 7174 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 2414 + rot: 3.141592653589793 rad + pos: 65.5,16.5 + parent: 2 + - uid: 7175 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 2415 + rot: 3.141592653589793 rad + pos: 64.5,16.5 + parent: 2 + - uid: 7176 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 2416 + rot: 3.141592653589793 rad + pos: 63.5,16.5 + parent: 2 + - uid: 7177 components: - type: Transform - pos: 35.5,8.5 - parent: 89 - - uid: 2417 + rot: 3.141592653589793 rad + pos: 62.5,16.5 + parent: 2 + - uid: 7178 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 2418 + pos: -119.5,14.5 + parent: 2 + - uid: 7179 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 2419 + rot: 1.5707963267948966 rad + pos: -110.5,-23.5 + parent: 2 + - uid: 7180 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 2420 + rot: 1.5707963267948966 rad + pos: -121.5,-19.5 + parent: 2 + - uid: 7181 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 2421 + rot: 1.5707963267948966 rad + pos: -121.5,-20.5 + parent: 2 + - uid: 7182 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 2422 + rot: 1.5707963267948966 rad + pos: -115.5,-22.5 + parent: 2 + - uid: 7183 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 2423 + rot: 1.5707963267948966 rad + pos: -117.5,-22.5 + parent: 2 + - uid: 7184 components: - type: Transform - pos: 36.5,14.5 - parent: 89 - - uid: 2424 + pos: -119.5,13.5 + parent: 2 + - uid: 7185 components: - type: Transform - pos: 37.5,14.5 - parent: 89 - - uid: 2425 + pos: 10.5,-18.5 + parent: 2 + - uid: 7186 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 2426 + pos: 15.5,-19.5 + parent: 2 + - uid: 7187 components: - type: Transform - pos: 39.5,14.5 - parent: 89 - - uid: 2429 + pos: -48.5,-19.5 + parent: 2 + - uid: 7188 components: - type: Transform - pos: 32.5,4.5 - parent: 89 - - uid: 2431 + pos: -48.5,-20.5 + parent: 2 + - uid: 7189 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2432 + pos: -47.5,-19.5 + parent: 2 + - uid: 7190 components: - type: Transform - pos: 34.5,3.5 - parent: 89 - - uid: 2433 + pos: -47.5,-20.5 + parent: 2 + - uid: 7191 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2434 + pos: -46.5,-19.5 + parent: 2 + - uid: 7192 components: - type: Transform - pos: 33.5,3.5 - parent: 89 - - uid: 2435 + pos: -46.5,-20.5 + parent: 2 + - uid: 7193 components: - type: Transform - pos: 32.5,3.5 - parent: 89 - - uid: 2436 + pos: -45.5,-19.5 + parent: 2 + - uid: 7194 components: - type: Transform - pos: 32.5,5.5 - parent: 89 - - uid: 2437 + pos: -45.5,-20.5 + parent: 2 + - uid: 7195 components: - type: Transform - pos: 32.5,6.5 - parent: 89 - - uid: 2438 + pos: -44.5,-19.5 + parent: 2 + - uid: 7196 components: - type: Transform - pos: 32.5,7.5 - parent: 89 - - uid: 2439 + pos: -44.5,-20.5 + parent: 2 + - uid: 7197 components: - type: Transform - pos: 32.5,8.5 - parent: 89 - - uid: 2446 + pos: -43.5,-19.5 + parent: 2 + - uid: 7198 components: - type: Transform - pos: 40.5,2.5 - parent: 89 - - uid: 2478 + pos: -43.5,-20.5 + parent: 2 + - uid: 7199 components: - type: Transform - pos: 40.5,3.5 - parent: 89 - - uid: 2479 + pos: -42.5,-19.5 + parent: 2 + - uid: 7200 components: - type: Transform - pos: 40.5,4.5 - parent: 89 - - uid: 2480 + pos: -42.5,-20.5 + parent: 2 + - uid: 7201 components: - type: Transform - pos: 41.5,4.5 - parent: 89 - - uid: 2566 + pos: -47.5,-21.5 + parent: 2 + - uid: 7202 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 2655 + pos: -46.5,-21.5 + parent: 2 + - uid: 7203 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 3136 + pos: -45.5,-21.5 + parent: 2 + - uid: 7204 components: - type: Transform - pos: 52.5,-7.5 - parent: 89 - - uid: 3209 + pos: -44.5,-21.5 + parent: 2 + - uid: 7205 components: - type: Transform - pos: 49.5,12.5 - parent: 89 - - uid: 3216 + pos: -43.5,-21.5 + parent: 2 + - uid: 7206 components: - type: Transform - pos: 64.5,5.5 - parent: 89 - - uid: 3253 + pos: -49.5,-19.5 + parent: 2 + - uid: 7207 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 3281 + pos: -49.5,-20.5 + parent: 2 + - uid: 7208 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 3290 + pos: -50.5,-19.5 + parent: 2 + - uid: 7209 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 3302 + pos: -50.5,-20.5 + parent: 2 + - uid: 7210 components: - type: Transform - pos: 52.5,-4.5 - parent: 89 - - uid: 3303 + pos: 23.5,-16.5 + parent: 2 + - uid: 7211 components: - type: Transform - pos: 52.5,-3.5 - parent: 89 - - uid: 3308 + pos: 20.5,-16.5 + parent: 2 + - uid: 7212 components: - type: Transform - pos: 52.5,16.5 - parent: 89 - - uid: 3311 + pos: 35.5,-16.5 + parent: 2 + - uid: 7213 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 3312 + pos: -93.5,22.5 + parent: 2 + - uid: 7214 components: - type: Transform - pos: 52.5,-1.5 - parent: 89 - - uid: 3313 + pos: -90.5,22.5 + parent: 2 + - uid: 7215 components: - type: Transform - pos: 52.5,-0.5 - parent: 89 - - uid: 3325 + pos: 19.5,-16.5 + parent: 2 + - uid: 7216 components: - type: Transform - pos: 64.5,-5.5 - parent: 89 - - uid: 3327 + pos: 36.5,-16.5 + parent: 2 + - uid: 7217 components: - type: Transform - pos: 65.5,-5.5 - parent: 89 - - uid: 3330 + pos: -91.5,22.5 + parent: 2 + - uid: 7218 components: - type: Transform - pos: 65.5,-4.5 - parent: 89 - - uid: 3332 + pos: -94.5,22.5 + parent: 2 + - uid: 7219 components: - type: Transform - pos: 66.5,-4.5 - parent: 89 - - uid: 3334 + pos: -95.5,22.5 + parent: 2 + - uid: 7220 components: - type: Transform - pos: 66.5,-3.5 - parent: 89 - - uid: 4192 + pos: 28.5,22.5 + parent: 2 + - uid: 7221 components: - type: Transform - pos: 66.5,-2.5 - parent: 89 - - uid: 4193 + pos: -37.5,-7.5 + parent: 2 + - uid: 7222 components: - type: Transform - pos: 65.5,-1.5 - parent: 89 - - uid: 4194 + pos: -37.5,-4.5 + parent: 2 + - uid: 7223 components: - type: Transform - pos: 66.5,-1.5 - parent: 89 - - uid: 4323 + pos: -43.5,-6.5 + parent: 2 + - uid: 7224 components: - type: Transform - pos: 13.5,-14.5 - parent: 89 - - uid: 4619 + pos: -43.5,-7.5 + parent: 2 + - uid: 7225 components: - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 4980 + pos: -43.5,-11.5 + parent: 2 + - uid: 7226 components: - type: Transform - pos: -117.5,18.5 - parent: 89 - - uid: 5073 + pos: -43.5,-12.5 + parent: 2 + - uid: 7227 components: - type: Transform - pos: 63.5,-1.5 - parent: 89 - - uid: 5074 + pos: -43.5,-13.5 + parent: 2 + - uid: 7228 components: - type: Transform - pos: 62.5,-1.5 - parent: 89 - - uid: 5148 + pos: -42.5,-15.5 + parent: 2 + - uid: 7229 components: - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 5844 + pos: -41.5,-15.5 + parent: 2 + - uid: 7230 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 6014 + pos: -40.5,-15.5 + parent: 2 + - uid: 7231 components: - type: Transform - pos: 64.5,-1.5 - parent: 89 - - uid: 6133 + pos: -38.5,-15.5 + parent: 2 + - uid: 7232 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 6147 + pos: -37.5,-15.5 + parent: 2 + - uid: 7233 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 6222 + pos: -30.5,-16.5 + parent: 2 + - uid: 7234 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 6223 + pos: -31.5,-16.5 + parent: 2 + - uid: 7235 components: - type: Transform - pos: -52.5,-11.5 - parent: 89 - - uid: 6224 + pos: -32.5,-16.5 + parent: 2 + - uid: 7236 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 6225 + pos: -25.5,-16.5 + parent: 2 + - uid: 7237 components: - type: Transform - pos: 0.5,12.5 - parent: 89 - - uid: 6235 + pos: -25.5,-17.5 + parent: 2 + - uid: 7238 components: - type: Transform - pos: -82.5,-5.5 - parent: 89 - - uid: 6236 + pos: -25.5,-18.5 + parent: 2 + - uid: 7239 components: - type: Transform - pos: -73.5,-9.5 - parent: 89 - - uid: 6237 + pos: -25.5,-19.5 + parent: 2 + - uid: 7240 components: - type: Transform - pos: -70.5,-13.5 - parent: 89 - - uid: 6238 + pos: -25.5,-20.5 + parent: 2 + - uid: 7241 components: - type: Transform - pos: -70.5,-15.5 - parent: 89 - - uid: 6239 + pos: -25.5,-23.5 + parent: 2 + - uid: 7242 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 6241 + pos: -25.5,-24.5 + parent: 2 + - uid: 7243 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 6244 + pos: -25.5,-25.5 + parent: 2 + - uid: 7244 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 6245 + pos: -20.5,-26.5 + parent: 2 + - uid: 7245 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 6246 + pos: -19.5,-26.5 + parent: 2 + - uid: 7246 components: - type: Transform - pos: -73.5,-10.5 - parent: 89 - - uid: 6248 + pos: -18.5,-26.5 + parent: 2 + - uid: 7247 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 6249 + pos: -17.5,-26.5 + parent: 2 + - uid: 7248 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - uid: 6250 + pos: -14.5,-26.5 + parent: 2 + - uid: 7249 components: - type: Transform - pos: -67.5,-9.5 - parent: 89 - - uid: 6251 + pos: -12.5,-28.5 + parent: 2 + - uid: 7250 components: - type: Transform - pos: -67.5,-8.5 - parent: 89 - - uid: 6252 + pos: -12.5,-29.5 + parent: 2 + - uid: 7251 components: - type: Transform - pos: -68.5,-8.5 - parent: 89 - - uid: 6253 + pos: -12.5,-30.5 + parent: 2 + - uid: 7252 components: - type: Transform - pos: -44.5,-12.5 - parent: 89 - - uid: 6326 + pos: -12.5,-31.5 + parent: 2 + - uid: 7253 components: - type: Transform - pos: -1.5,12.5 - parent: 89 - - uid: 6327 + pos: 53.5,-8.5 + parent: 2 + - uid: 7254 components: - type: Transform - pos: -0.5,12.5 - parent: 89 - - uid: 6330 + pos: -42.5,-21.5 + parent: 2 + - uid: 7255 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 6338 + pos: 16.5,-18.5 + parent: 2 + - uid: 7256 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 6339 + pos: 15.5,-18.5 + parent: 2 + - uid: 7257 components: - type: Transform - pos: -80.5,-8.5 - parent: 89 - - uid: 6341 + pos: 18.5,-16.5 + parent: 2 + - uid: 7258 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 6343 + pos: 36.5,-17.5 + parent: 2 + - uid: 7259 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 6344 + pos: -99.5,26.5 + parent: 2 + - uid: 7260 components: - type: Transform - pos: -78.5,-9.5 - parent: 89 - - uid: 6345 + pos: -97.5,25.5 + parent: 2 + - uid: 7261 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 6346 + pos: -96.5,25.5 + parent: 2 + - uid: 7262 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - uid: 6347 + pos: -95.5,25.5 + parent: 2 + - uid: 7263 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 6348 + pos: 9.5,-18.5 + parent: 2 + - uid: 7264 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 6349 + rot: -1.5707963267948966 rad + pos: -130.5,13.5 + parent: 2 + - uid: 7265 components: - type: Transform - pos: -74.5,-9.5 - parent: 89 - - uid: 6350 + pos: -129.5,12.5 + parent: 2 + - uid: 7266 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 6351 + pos: -128.5,12.5 + parent: 2 + - uid: 7267 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 6352 + rot: -1.5707963267948966 rad + pos: -127.5,11.5 + parent: 2 + - uid: 7268 components: - type: Transform - pos: -82.5,-6.5 - parent: 89 - - uid: 6353 + pos: -130.5,9.5 + parent: 2 + - uid: 7269 components: - type: Transform - pos: -82.5,-8.5 - parent: 89 - - uid: 6354 + pos: -129.5,9.5 + parent: 2 + - uid: 7270 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 6355 + pos: -128.5,9.5 + parent: 2 + - uid: 7271 components: - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 6374 + pos: -127.5,9.5 + parent: 2 + - uid: 7272 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 - - uid: 6375 + pos: -126.5,9.5 + parent: 2 + - uid: 7273 components: - type: Transform - pos: -71.5,-10.5 - parent: 89 - - uid: 6376 + pos: -125.5,9.5 + parent: 2 + - uid: 7274 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 6382 + pos: -124.5,9.5 + parent: 2 + - uid: 7275 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 6512 + pos: -129.5,8.5 + parent: 2 + - uid: 7276 components: - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 6521 + pos: -129.5,7.5 + parent: 2 + - uid: 7277 components: - type: Transform - pos: -132.5,-4.5 - parent: 89 - - uid: 6535 + pos: -129.5,6.5 + parent: 2 + - uid: 7278 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 6537 + pos: -129.5,5.5 + parent: 2 + - uid: 7279 components: - type: Transform - pos: -132.5,-5.5 - parent: 89 - - uid: 6538 + pos: -129.5,4.5 + parent: 2 + - uid: 7280 components: - type: Transform - pos: -131.5,-5.5 - parent: 89 - - uid: 6539 + pos: -129.5,3.5 + parent: 2 + - uid: 7281 components: - type: Transform - pos: -128.5,-7.5 - parent: 89 - - uid: 6540 + pos: -129.5,2.5 + parent: 2 + - uid: 7282 components: - type: Transform - pos: -128.5,-8.5 - parent: 89 - - uid: 6541 + pos: -129.5,1.5 + parent: 2 + - uid: 7283 components: - type: Transform - pos: -128.5,-5.5 - parent: 89 - - uid: 6542 + pos: -129.5,0.5 + parent: 2 + - uid: 7284 components: - type: Transform - pos: -128.5,-6.5 - parent: 89 - - uid: 6552 + pos: -129.5,-0.5 + parent: 2 + - uid: 7285 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - uid: 6557 + pos: -129.5,-1.5 + parent: 2 + - uid: 7286 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - uid: 6559 + pos: -129.5,-2.5 + parent: 2 + - uid: 7287 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 6980 + pos: -129.5,-3.5 + parent: 2 + - uid: 7288 components: - type: Transform - pos: -117.5,19.5 - parent: 89 - - uid: 7141 + pos: -128.5,-3.5 + parent: 2 + - uid: 7289 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 7166 + pos: -127.5,-3.5 + parent: 2 + - uid: 7290 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 7307 + pos: -126.5,-3.5 + parent: 2 + - uid: 7291 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 7309 + pos: -125.5,-3.5 + parent: 2 + - uid: 7292 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 7310 + pos: -124.5,-3.5 + parent: 2 + - uid: 7293 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 7324 + pos: -124.5,-2.5 + parent: 2 + - uid: 7294 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 7576 + pos: -124.5,-1.5 + parent: 2 + - uid: 7295 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 7854 + pos: -123.5,-1.5 + parent: 2 + - uid: 7296 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 7858 + pos: -122.5,-1.5 + parent: 2 + - uid: 7297 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 7971 + pos: -121.5,-1.5 + parent: 2 + - uid: 7298 components: - type: Transform - pos: 59.5,-7.5 - parent: 89 - - uid: 8004 + pos: -121.5,-0.5 + parent: 2 + - uid: 7299 components: - type: Transform - pos: 13.5,-15.5 - parent: 89 - - uid: 8014 + pos: -121.5,2.5 + parent: 2 + - uid: 7300 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 8218 + pos: -121.5,1.5 + parent: 2 + - uid: 7301 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8220 + pos: 24.5,7.5 + parent: 2 + - uid: 7302 components: - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 8221 + pos: 28.5,8.5 + parent: 2 + - uid: 7303 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8222 + pos: 27.5,8.5 + parent: 2 + - uid: 7304 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8225 + pos: 26.5,8.5 + parent: 2 + - uid: 7305 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8226 + pos: 25.5,8.5 + parent: 2 + - uid: 7306 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8227 + pos: 25.5,6.5 + parent: 2 + - uid: 7307 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8228 + pos: 26.5,6.5 + parent: 2 + - uid: 7308 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 8229 + pos: 27.5,6.5 + parent: 2 + - uid: 7309 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 8230 + pos: 29.5,6.5 + parent: 2 + - uid: 7310 components: - type: Transform - pos: -3.5,31.5 - parent: 89 - - uid: 8232 + pos: 24.5,8.5 + parent: 2 + - uid: 7311 components: - type: Transform - pos: -3.5,33.5 - parent: 89 - - uid: 8233 + pos: 24.5,6.5 + parent: 2 + - uid: 7312 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 8234 + pos: 24.5,5.5 + parent: 2 + - uid: 7313 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8235 + pos: -97.5,22.5 + parent: 2 + - uid: 7314 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 8236 + pos: -108.5,14.5 + parent: 2 + - uid: 7315 components: - type: Transform - pos: -3.5,37.5 - parent: 89 - - uid: 8237 + pos: 17.5,26.5 + parent: 2 + - uid: 7316 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8238 + pos: -119.5,16.5 + parent: 2 + - uid: 7317 components: - type: Transform - pos: -3.5,39.5 - parent: 89 - - uid: 8240 + rot: 1.5707963267948966 rad + pos: -109.5,1.5 + parent: 2 + - uid: 7318 components: - type: Transform - pos: -2.5,39.5 - parent: 89 - - uid: 8242 + rot: 1.5707963267948966 rad + pos: -117.5,-21.5 + parent: 2 + - uid: 7319 components: - type: Transform - pos: -2.5,38.5 - parent: 89 - - uid: 8846 + pos: 20.5,26.5 + parent: 2 + - uid: 7320 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 9239 + pos: -98.5,22.5 + parent: 2 + - uid: 7321 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 9242 + pos: -92.5,22.5 + parent: 2 + - uid: 7322 components: - type: Transform - pos: -132.5,-3.5 - parent: 89 - - uid: 9323 + pos: -89.5,22.5 + parent: 2 + - uid: 7323 components: - type: Transform - pos: 2.5,-28.5 - parent: 89 - - uid: 9336 + pos: -87.5,20.5 + parent: 2 + - uid: 7324 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 9345 + pos: -87.5,19.5 + parent: 2 + - uid: 7325 components: - type: Transform - pos: -70.5,-14.5 - parent: 89 - - uid: 9348 + pos: -87.5,18.5 + parent: 2 + - uid: 7326 components: - type: Transform - pos: -70.5,-11.5 - parent: 89 - - uid: 9349 + pos: -104.5,17.5 + parent: 2 + - uid: 7327 components: - type: Transform - pos: -70.5,-12.5 - parent: 89 - - uid: 9395 + pos: -103.5,17.5 + parent: 2 + - uid: 7328 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 9402 + pos: -102.5,17.5 + parent: 2 + - uid: 7329 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 9405 + pos: -101.5,17.5 + parent: 2 + - uid: 7330 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 9406 + pos: -100.5,19.5 + parent: 2 + - uid: 7331 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 9407 + pos: -100.5,20.5 + parent: 2 + - uid: 7332 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 9408 + pos: -93.5,29.5 + parent: 2 + - uid: 7333 components: - type: Transform - pos: -48.5,-12.5 - parent: 89 - - uid: 9409 + pos: -92.5,28.5 + parent: 2 + - uid: 7334 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 9410 + pos: -92.5,29.5 + parent: 2 + - uid: 7335 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 9411 + pos: -91.5,29.5 + parent: 2 + - uid: 7336 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 - - uid: 9412 + pos: -89.5,27.5 + parent: 2 + - uid: 7337 components: - type: Transform - pos: -45.5,-12.5 - parent: 89 - - uid: 9414 + pos: -89.5,28.5 + parent: 2 + - uid: 7338 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 9415 + pos: -88.5,28.5 + parent: 2 + - uid: 7339 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 9617 + pos: -111.5,16.5 + parent: 2 + - uid: 7340 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 10692 + pos: -111.5,14.5 + parent: 2 + - uid: 7341 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 10693 + pos: -111.5,15.5 + parent: 2 + - uid: 7342 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 10695 + pos: -100.5,15.5 + parent: 2 + - uid: 7343 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 10696 + pos: -100.5,14.5 + parent: 2 + - uid: 7344 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 10697 + rot: -1.5707963267948966 rad + pos: -99.5,13.5 + parent: 2 + - uid: 7345 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 10698 + pos: -98.5,13.5 + parent: 2 + - uid: 7346 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 10699 + pos: -97.5,13.5 + parent: 2 + - uid: 7347 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 10700 + pos: -85.5,-1.5 + parent: 2 + - uid: 7348 components: - type: Transform - pos: -9.5,-17.5 - parent: 89 - - uid: 10701 + pos: -80.5,-5.5 + parent: 2 + - uid: 7349 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 10702 + pos: -80.5,-6.5 + parent: 2 + - uid: 7350 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 10703 + pos: -80.5,-7.5 + parent: 2 + - uid: 7351 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 10704 + pos: -77.5,-9.5 + parent: 2 + - uid: 7352 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 10705 + pos: -76.5,-9.5 + parent: 2 + - uid: 7353 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 10706 + pos: -75.5,-9.5 + parent: 2 + - uid: 7354 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 10707 + pos: -81.5,2.5 + parent: 2 + - uid: 7355 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 10708 + pos: -81.5,3.5 + parent: 2 + - uid: 7356 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 10709 + pos: 6.5,-17.5 + parent: 2 + - uid: 7357 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 10710 + pos: 6.5,-18.5 + parent: 2 + - uid: 7358 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 10711 + pos: 6.5,-19.5 + parent: 2 + - uid: 7359 components: - type: Transform - pos: -13.5,-16.5 - parent: 89 - - uid: 10712 + pos: 6.5,-20.5 + parent: 2 + - uid: 7360 components: - type: Transform - pos: -16.5,-16.5 - parent: 89 - - uid: 10713 + pos: 6.5,-21.5 + parent: 2 + - uid: 7361 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 10714 + pos: 10.5,-15.5 + parent: 2 + - uid: 7362 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 10715 + pos: 11.5,-15.5 + parent: 2 + - uid: 7363 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 10716 + pos: 12.5,-15.5 + parent: 2 + - uid: 7364 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 10717 + pos: -77.5,16.5 + parent: 2 + - uid: 7365 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 10718 + pos: -76.5,16.5 + parent: 2 + - uid: 7366 components: - type: Transform - pos: -20.5,-16.5 - parent: 89 - - uid: 10719 + pos: -76.5,17.5 + parent: 2 + - uid: 7367 components: - type: Transform - pos: -19.5,-16.5 - parent: 89 - - uid: 10720 + pos: -76.5,18.5 + parent: 2 + - uid: 7368 components: - type: Transform - pos: -18.5,-16.5 - parent: 89 - - uid: 10721 + pos: -73.5,20.5 + parent: 2 + - uid: 7369 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 10722 + pos: -72.5,20.5 + parent: 2 + - uid: 7370 components: - type: Transform - pos: -15.5,-16.5 - parent: 89 - - uid: 10723 + pos: -71.5,20.5 + parent: 2 + - uid: 7371 components: - type: Transform - pos: -14.5,-16.5 - parent: 89 - - uid: 10724 + pos: -70.5,20.5 + parent: 2 + - uid: 7372 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 - - uid: 10725 + pos: -65.5,21.5 + parent: 2 + - uid: 7373 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 10727 + pos: -43.5,20.5 + parent: 2 + - uid: 7374 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 10728 + pos: -37.5,13.5 + parent: 2 + - uid: 7375 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 10729 + pos: -36.5,13.5 + parent: 2 + - uid: 7376 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 10730 + pos: -37.5,12.5 + parent: 2 + - uid: 7377 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 10731 + pos: -39.5,11.5 + parent: 2 + - uid: 7378 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 10732 + pos: -40.5,11.5 + parent: 2 + - uid: 7379 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 10733 + pos: -3.5,34.5 + parent: 2 + - uid: 7380 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 10734 + pos: -53.5,29.5 + parent: 2 + - uid: 7381 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 10735 + pos: -53.5,23.5 + parent: 2 + - uid: 7382 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 10809 + pos: -53.5,27.5 + parent: 2 + - uid: 7383 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 10838 + pos: -36.5,20.5 + parent: 2 + - uid: 7384 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 10877 + pos: -53.5,20.5 + parent: 2 + - uid: 7385 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 10936 + pos: -52.5,20.5 + parent: 2 + - uid: 7386 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 10945 + pos: -51.5,20.5 + parent: 2 + - uid: 7387 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 10950 + pos: -4.5,30.5 + parent: 2 + - uid: 7388 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 11007 + pos: -3.5,30.5 + parent: 2 + - uid: 7389 components: - type: Transform - pos: 13.5,32.5 - parent: 89 - - uid: 11073 + pos: -48.5,20.5 + parent: 2 + - uid: 7390 components: - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11078 + pos: -47.5,20.5 + parent: 2 + - uid: 7391 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 11085 + pos: 1.5,30.5 + parent: 2 + - uid: 7392 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11097 + pos: -39.5,20.5 + parent: 2 + - uid: 7393 components: - type: Transform - pos: -3.5,25.5 - parent: 89 - - uid: 11102 + pos: -44.5,20.5 + parent: 2 + - uid: 7394 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 11104 + pos: -42.5,20.5 + parent: 2 + - uid: 7395 components: - type: Transform - pos: -29.5,16.5 - parent: 89 - - uid: 11155 + pos: -53.5,31.5 + parent: 2 + - uid: 7396 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 11160 + pos: -52.5,31.5 + parent: 2 + - uid: 7397 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11161 + pos: -53.5,26.5 + parent: 2 + - uid: 7398 components: - type: Transform pos: -38.5,20.5 - parent: 89 - - uid: 11162 + parent: 2 + - uid: 7399 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11163 + pos: -40.5,20.5 + parent: 2 + - uid: 7400 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 11164 + pos: -53.5,22.5 + parent: 2 + - uid: 7401 components: - type: Transform pos: -35.5,20.5 - parent: 89 - - uid: 11165 + parent: 2 + - uid: 7402 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11166 + pos: -40.5,21.5 + parent: 2 + - uid: 7403 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11167 + pos: -3.5,35.5 + parent: 2 + - uid: 7404 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11168 + pos: -51.5,31.5 + parent: 2 + - uid: 7405 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11169 + pos: -51.5,29.5 + parent: 2 + - uid: 7406 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11170 + pos: -51.5,30.5 + parent: 2 + - uid: 7407 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11171 + pos: -3.5,36.5 + parent: 2 + - uid: 7408 components: - type: Transform - pos: -28.5,20.5 - parent: 89 - - uid: 11172 + pos: -37.5,22.5 + parent: 2 + - uid: 7409 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11173 + pos: -37.5,23.5 + parent: 2 + - uid: 7410 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 11174 + pos: -37.5,24.5 + parent: 2 + - uid: 7411 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11175 + rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - uid: 7412 components: - type: Transform - pos: -29.5,15.5 - parent: 89 - - uid: 11176 + rot: 1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + - uid: 7413 components: - type: Transform - pos: -29.5,14.5 - parent: 89 - - uid: 11177 + rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 7414 components: - type: Transform - pos: -29.5,13.5 - parent: 89 - - uid: 11178 + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - uid: 7415 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11179 + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - uid: 7416 components: - type: Transform - pos: -27.5,13.5 - parent: 89 - - uid: 11180 + rot: 1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - uid: 7417 components: - type: Transform - pos: -27.5,14.5 - parent: 89 - - uid: 11181 + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 7418 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 11219 + rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - uid: 7419 components: - type: Transform - pos: -117.5,14.5 - parent: 89 - - uid: 11222 + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 7420 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11227 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 7421 components: - type: Transform - pos: -39.5,23.5 - parent: 89 - - uid: 11276 + rot: 1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 7422 components: - type: Transform - pos: -21.5,19.5 - parent: 89 - - uid: 11277 + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + - uid: 7423 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11278 + rot: 1.5707963267948966 rad + pos: -19.5,12.5 + parent: 2 + - uid: 7424 components: - type: Transform - pos: -22.5,20.5 - parent: 89 - - uid: 11279 + rot: 1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - uid: 7425 components: - type: Transform - pos: -23.5,20.5 - parent: 89 - - uid: 11280 + pos: 16.5,26.5 + parent: 2 + - uid: 7426 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11281 + pos: 18.5,26.5 + parent: 2 + - uid: 7427 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11282 + rot: 1.5707963267948966 rad + pos: 14.5,41.5 + parent: 2 + - uid: 7428 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11382 + rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - uid: 7429 components: - type: Transform - pos: -36.5,7.5 - parent: 89 - - uid: 11383 + rot: 1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - uid: 7430 components: - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 11392 + rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 2 + - uid: 7431 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11393 + rot: 1.5707963267948966 rad + pos: 14.5,42.5 + parent: 2 + - uid: 7432 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11394 + rot: 1.5707963267948966 rad + pos: 14.5,44.5 + parent: 2 + - uid: 7433 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11395 + rot: 3.141592653589793 rad + pos: -121.5,-10.5 + parent: 2 + - uid: 7434 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11396 + rot: 3.141592653589793 rad + pos: -122.5,-10.5 + parent: 2 + - uid: 7435 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11397 + rot: 3.141592653589793 rad + pos: -123.5,-10.5 + parent: 2 + - uid: 7436 components: - type: Transform - pos: -14.5,12.5 - parent: 89 - - uid: 11408 + rot: 3.141592653589793 rad + pos: -124.5,-10.5 + parent: 2 + - uid: 7437 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11409 + rot: 3.141592653589793 rad + pos: -125.5,-10.5 + parent: 2 + - uid: 7438 components: - type: Transform - pos: -14.5,18.5 - parent: 89 - - uid: 11836 + rot: 3.141592653589793 rad + pos: -125.5,-9.5 + parent: 2 + - uid: 7439 components: - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 11837 + rot: 3.141592653589793 rad + pos: -125.5,-8.5 + parent: 2 + - uid: 7440 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 11838 + rot: 3.141592653589793 rad + pos: -125.5,-7.5 + parent: 2 + - uid: 7441 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11839 + rot: 3.141592653589793 rad + pos: -125.5,-6.5 + parent: 2 + - uid: 7442 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 11840 + rot: 3.141592653589793 rad + pos: -125.5,-5.5 + parent: 2 + - uid: 7443 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 11841 + rot: 3.141592653589793 rad + pos: -125.5,-4.5 + parent: 2 + - uid: 7444 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 11842 + rot: 3.141592653589793 rad + pos: -125.5,12.5 + parent: 2 + - uid: 7445 components: - type: Transform - pos: 13.5,-10.5 - parent: 89 - - uid: 11920 + rot: 3.141592653589793 rad + pos: -125.5,11.5 + parent: 2 + - uid: 7446 components: - type: Transform - pos: -36.5,8.5 - parent: 89 - - uid: 11930 + rot: 3.141592653589793 rad + pos: -125.5,10.5 + parent: 2 + - uid: 7447 components: - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 11931 + rot: 3.141592653589793 rad + pos: -119.5,15.5 + parent: 2 + - uid: 7448 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 11932 + pos: -113.5,-10.5 + parent: 2 + - uid: 7449 components: - type: Transform - pos: -119.5,11.5 - parent: 89 - - uid: 11933 + pos: -114.5,-10.5 + parent: 2 + - uid: 7450 components: - type: Transform - pos: -119.5,10.5 - parent: 89 - - uid: 11934 + pos: -112.5,-10.5 + parent: 2 + - uid: 7451 components: - type: Transform - pos: -119.5,9.5 - parent: 89 - - uid: 11935 + pos: -111.5,-9.5 + parent: 2 + - uid: 7452 components: - type: Transform - pos: -118.5,9.5 - parent: 89 - - uid: 11936 + pos: -111.5,-8.5 + parent: 2 + - uid: 7453 components: - type: Transform - pos: -117.5,9.5 - parent: 89 - - uid: 11937 + pos: -111.5,-7.5 + parent: 2 + - uid: 7454 components: - type: Transform - pos: -116.5,9.5 - parent: 89 - - uid: 11938 + pos: -111.5,-6.5 + parent: 2 + - uid: 7455 components: - type: Transform - pos: -115.5,9.5 - parent: 89 - - uid: 11939 + pos: -111.5,-5.5 + parent: 2 + - uid: 7456 components: - type: Transform - pos: -114.5,9.5 - parent: 89 - - uid: 11940 + pos: -36.5,-16.5 + parent: 2 + - uid: 7457 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 11941 + pos: 29.5,22.5 + parent: 2 + - uid: 7458 components: - type: Transform - pos: -112.5,9.5 - parent: 89 - - uid: 11942 + pos: 30.5,22.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 7460 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 11943 + pos: 32.5,22.5 + parent: 2 + - uid: 7461 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 11944 + pos: 57.5,-22.5 + parent: 2 + - uid: 7462 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 11945 + pos: -35.5,-16.5 + parent: 2 + - uid: 7463 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 11946 + pos: -34.5,-16.5 + parent: 2 + - uid: 7464 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 11947 + rot: 1.5707963267948966 rad + pos: -111.5,29.5 + parent: 2 + - uid: 7465 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 11948 + rot: 1.5707963267948966 rad + pos: -136.5,11.5 + parent: 2 + - uid: 7466 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 11949 + rot: 1.5707963267948966 rad + pos: -134.5,22.5 + parent: 2 + - uid: 7467 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 11950 + rot: 1.5707963267948966 rad + pos: -135.5,26.5 + parent: 2 + - uid: 7468 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 11951 + rot: 1.5707963267948966 rad + pos: -134.5,26.5 + parent: 2 + - uid: 7469 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 11952 + rot: 1.5707963267948966 rad + pos: -133.5,26.5 + parent: 2 + - uid: 7470 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 11953 + rot: 1.5707963267948966 rad + pos: -132.5,26.5 + parent: 2 + - uid: 7471 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 11954 + rot: 1.5707963267948966 rad + pos: -136.5,17.5 + parent: 2 + - uid: 7472 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 11955 + rot: 1.5707963267948966 rad + pos: -135.5,16.5 + parent: 2 + - uid: 7473 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 11956 + rot: 1.5707963267948966 rad + pos: -138.5,15.5 + parent: 2 + - uid: 7474 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 11957 + rot: 1.5707963267948966 rad + pos: -138.5,16.5 + parent: 2 + - uid: 7475 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 11958 + rot: 1.5707963267948966 rad + pos: -138.5,17.5 + parent: 2 + - uid: 7476 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 11959 + rot: 1.5707963267948966 rad + pos: -133.5,25.5 + parent: 2 + - uid: 7477 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 11960 + rot: 1.5707963267948966 rad + pos: -136.5,16.5 + parent: 2 + - uid: 7478 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 11961 + pos: -123.5,23.5 + parent: 2 + - uid: 7479 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 11962 + pos: -128.5,26.5 + parent: 2 + - uid: 7480 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 11963 + pos: -130.5,26.5 + parent: 2 + - uid: 7481 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 11964 + pos: -126.5,24.5 + parent: 2 + - uid: 7482 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 11965 + pos: -126.5,25.5 + parent: 2 + - uid: 7483 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 11966 + pos: -126.5,26.5 + parent: 2 + - uid: 7484 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 11967 + pos: -127.5,26.5 + parent: 2 + - uid: 7485 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 11968 + pos: -122.5,24.5 + parent: 2 + - uid: 7486 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 11969 + rot: 1.5707963267948966 rad + pos: -104.5,29.5 + parent: 2 + - uid: 7487 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 11970 + rot: 1.5707963267948966 rad + pos: -113.5,29.5 + parent: 2 + - uid: 7488 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 11971 + rot: 1.5707963267948966 rad + pos: -110.5,29.5 + parent: 2 + - uid: 7489 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 11972 + pos: -123.5,24.5 + parent: 2 + - uid: 7490 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 11973 + pos: -124.5,24.5 + parent: 2 + - uid: 7491 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 11974 + pos: -106.5,29.5 + parent: 2 + - uid: 7492 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 11975 + pos: -107.5,29.5 + parent: 2 + - uid: 7493 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 11976 + pos: -129.5,25.5 + parent: 2 + - uid: 7494 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 11977 + pos: -129.5,26.5 + parent: 2 + - uid: 7495 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 11978 + rot: 1.5707963267948966 rad + pos: -136.5,15.5 + parent: 2 + - uid: 7496 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 11979 + rot: 1.5707963267948966 rad + pos: -135.5,22.5 + parent: 2 + - uid: 7497 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 11980 + rot: 1.5707963267948966 rad + pos: -135.5,23.5 + parent: 2 + - uid: 7498 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 11981 + rot: 1.5707963267948966 rad + pos: -135.5,21.5 + parent: 2 + - uid: 7499 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 11982 + rot: 1.5707963267948966 rad + pos: -104.5,30.5 + parent: 2 + - uid: 7500 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 11983 + rot: 1.5707963267948966 rad + pos: -103.5,30.5 + parent: 2 + - uid: 7501 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 11984 + rot: 1.5707963267948966 rad + pos: -11.5,44.5 + parent: 2 + - uid: 7502 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 11985 + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 7503 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 11986 + rot: 1.5707963267948966 rad + pos: -16.5,35.5 + parent: 2 + - uid: 7504 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 11987 + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 7505 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 11988 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 + parent: 2 + - uid: 7506 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 11989 + rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 + - uid: 7507 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 11990 + rot: 1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - uid: 7508 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 11991 + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - uid: 7509 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 11992 + rot: 1.5707963267948966 rad + pos: -21.5,36.5 + parent: 2 + - uid: 7510 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 11993 + rot: 1.5707963267948966 rad + pos: -22.5,36.5 + parent: 2 + - uid: 7511 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 11995 + rot: 1.5707963267948966 rad + pos: -13.5,44.5 + parent: 2 + - uid: 7512 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 11996 + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - uid: 7513 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 11997 + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 7514 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 11998 + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 7515 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 12004 + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 7516 components: - type: Transform - pos: -107.5,-3.5 - parent: 89 - - uid: 12005 + rot: 1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - uid: 7517 components: - type: Transform - pos: -106.5,-3.5 - parent: 89 - - uid: 12008 + rot: 1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 7518 components: - type: Transform - pos: -106.5,-2.5 - parent: 89 - - uid: 12039 + rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 2 + - uid: 7519 components: - type: Transform - pos: -107.5,-17.5 - parent: 89 - - uid: 12040 + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - uid: 7520 components: - type: Transform - pos: -106.5,-17.5 - parent: 89 - - uid: 12041 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 + parent: 2 + - uid: 7521 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 12042 + rot: 1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - uid: 7522 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 - - uid: 12043 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - uid: 7523 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 - - uid: 12044 + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 7524 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 12045 + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - uid: 7525 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 - - uid: 12046 + rot: 1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 7526 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 12047 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - uid: 7527 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12133 + rot: 1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - uid: 7528 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 12134 + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - uid: 7529 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 12135 + rot: 1.5707963267948966 rad + pos: -15.5,26.5 + parent: 2 + - uid: 7530 components: - type: Transform - pos: -95.5,8.5 - parent: 89 - - uid: 12136 + rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - uid: 7531 components: - type: Transform - pos: -94.5,8.5 - parent: 89 - - uid: 12137 + rot: 1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - uid: 7532 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 12138 + rot: 1.5707963267948966 rad + pos: -47.5,47.5 + parent: 2 + - uid: 7533 components: - type: Transform - pos: -94.5,6.5 - parent: 89 - - uid: 12139 + rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 2 + - uid: 7534 components: - type: Transform - pos: -94.5,5.5 - parent: 89 - - uid: 12140 + rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - uid: 7535 components: - type: Transform - pos: -94.5,4.5 - parent: 89 - - uid: 12141 + rot: 1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 7536 components: - type: Transform - pos: -94.5,3.5 - parent: 89 - - uid: 12142 + rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - uid: 7537 components: - type: Transform - pos: -95.5,3.5 - parent: 89 - - uid: 12143 + rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 2 + - uid: 7538 components: - type: Transform - pos: -96.5,3.5 - parent: 89 - - uid: 12196 + rot: 1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - uid: 7539 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 12197 + rot: 1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 + - uid: 7540 components: - type: Transform - pos: -102.5,6.5 - parent: 89 - - uid: 12198 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 2 + - uid: 7541 components: - type: Transform - pos: -102.5,7.5 - parent: 89 - - uid: 12199 + rot: 1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 7542 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - uid: 12200 + rot: 1.5707963267948966 rad + pos: -26.5,36.5 + parent: 2 + - uid: 7543 components: - type: Transform - pos: -102.5,9.5 - parent: 89 - - uid: 12201 + rot: 1.5707963267948966 rad + pos: -39.5,37.5 + parent: 2 + - uid: 7544 components: - type: Transform - pos: -101.5,9.5 - parent: 89 - - uid: 12203 + rot: 1.5707963267948966 rad + pos: -39.5,36.5 + parent: 2 + - uid: 7545 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 12221 + rot: 1.5707963267948966 rad + pos: -39.5,35.5 + parent: 2 + - uid: 7546 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 12222 + rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 2 + - uid: 7547 components: - type: Transform - pos: -109.5,1.5 - parent: 89 - - uid: 12223 + rot: 1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - uid: 7548 components: - type: Transform - pos: -111.5,1.5 - parent: 89 - - uid: 12255 + rot: 1.5707963267948966 rad + pos: -42.5,34.5 + parent: 2 + - uid: 7549 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - uid: 12332 + rot: 1.5707963267948966 rad + pos: -43.5,34.5 + parent: 2 + - uid: 7550 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 12333 + rot: 1.5707963267948966 rad + pos: -43.5,33.5 + parent: 2 + - uid: 7551 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 12334 + rot: 1.5707963267948966 rad + pos: -47.5,46.5 + parent: 2 + - uid: 7552 components: - type: Transform - pos: -118.5,17.5 - parent: 89 - - uid: 12335 + rot: 1.5707963267948966 rad + pos: -47.5,45.5 + parent: 2 + - uid: 7553 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 12336 + rot: 1.5707963267948966 rad + pos: -47.5,44.5 + parent: 2 + - uid: 7554 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 12337 + rot: 1.5707963267948966 rad + pos: -49.5,24.5 + parent: 2 + - uid: 7555 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 12338 + rot: 1.5707963267948966 rad + pos: -47.5,40.5 + parent: 2 + - uid: 7556 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 12339 + rot: 1.5707963267948966 rad + pos: -47.5,39.5 + parent: 2 + - uid: 7557 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 12340 + rot: 1.5707963267948966 rad + pos: -47.5,38.5 + parent: 2 + - uid: 7558 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 12341 + rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 2 + - uid: 7559 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 12342 + rot: 1.5707963267948966 rad + pos: -48.5,35.5 + parent: 2 + - uid: 7560 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 12343 + rot: 1.5707963267948966 rad + pos: -48.5,34.5 + parent: 2 + - uid: 7561 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 12344 + rot: 1.5707963267948966 rad + pos: -48.5,33.5 + parent: 2 + - uid: 7562 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 12345 + rot: 1.5707963267948966 rad + pos: -48.5,32.5 + parent: 2 + - uid: 7563 components: - type: Transform - pos: -108.5,18.5 - parent: 89 - - uid: 12346 + rot: 1.5707963267948966 rad + pos: -48.5,31.5 + parent: 2 + - uid: 7564 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 12347 + rot: 1.5707963267948966 rad + pos: -48.5,24.5 + parent: 2 + - uid: 7565 components: - type: Transform - pos: -108.5,20.5 - parent: 89 - - uid: 12348 + rot: 1.5707963267948966 rad + pos: -48.5,25.5 + parent: 2 + - uid: 7566 components: - type: Transform - pos: -108.5,21.5 - parent: 89 - - uid: 12349 + rot: 1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 7567 components: - type: Transform - pos: -107.5,21.5 - parent: 89 - - uid: 12350 + rot: 1.5707963267948966 rad + pos: -49.5,27.5 + parent: 2 + - uid: 7568 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12396 + rot: 1.5707963267948966 rad + pos: -48.5,27.5 + parent: 2 + - uid: 7569 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 12397 + rot: 1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 7570 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 12398 + rot: 1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 7571 components: - type: Transform - pos: -105.5,17.5 - parent: 89 - - uid: 12399 + rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - uid: 7572 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 12400 + rot: 1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - uid: 7573 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 12401 + rot: 1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - uid: 7574 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 12402 + rot: 1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - uid: 7575 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 12403 + rot: 1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - uid: 7576 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 12404 + rot: 1.5707963267948966 rad + pos: -7.5,48.5 + parent: 2 + - uid: 7577 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 12405 + rot: 1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - uid: 7578 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 12406 + rot: 1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - uid: 7579 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 12407 + rot: 1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - uid: 7580 components: - type: Transform - pos: -100.5,21.5 - parent: 89 - - uid: 12408 + rot: 1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - uid: 7581 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 12409 + rot: 1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - uid: 7582 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 12410 + rot: 1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 7583 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 12411 + rot: 1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 7584 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 12412 + rot: 1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 7585 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 12413 + rot: 1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - uid: 7586 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 12414 + rot: 1.5707963267948966 rad + pos: 2.5,49.5 + parent: 2 + - uid: 7587 components: - type: Transform - pos: -101.5,25.5 - parent: 89 - - uid: 12431 + rot: 1.5707963267948966 rad + pos: 3.5,49.5 + parent: 2 + - uid: 7588 components: - type: Transform - pos: -118.5,14.5 - parent: 89 - - uid: 12609 + rot: 1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - uid: 7589 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 12622 + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - uid: 7590 components: - type: Transform - pos: -37.5,9.5 - parent: 89 - - uid: 12651 + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - uid: 7591 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12662 + rot: 1.5707963267948966 rad + pos: 6.5,48.5 + parent: 2 + - uid: 7592 components: - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 12777 + rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 2 + - uid: 7593 components: - type: Transform - pos: 55.5,-7.5 - parent: 89 - - uid: 12822 + rot: 1.5707963267948966 rad + pos: 6.5,46.5 + parent: 2 + - uid: 7594 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 13118 + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 7595 components: - type: Transform - pos: -15.5,14.5 - parent: 89 - - uid: 13119 + rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - uid: 7596 components: - type: Transform - pos: -16.5,14.5 - parent: 89 - - uid: 13120 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 7597 components: - type: Transform - pos: -17.5,14.5 - parent: 89 - - uid: 13121 + rot: 1.5707963267948966 rad + pos: 5.5,45.5 + parent: 2 + - uid: 7598 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - uid: 13122 + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 7599 components: - type: Transform - pos: -19.5,14.5 - parent: 89 - - uid: 13123 + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 2 + - uid: 7600 components: - type: Transform - pos: -19.5,13.5 - parent: 89 - - uid: 13124 + rot: 1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - uid: 7601 components: - type: Transform - pos: -19.5,12.5 - parent: 89 - - uid: 13125 + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - uid: 7602 components: - type: Transform - pos: -19.5,11.5 - parent: 89 - - uid: 13126 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 + - uid: 7603 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 13127 + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 7604 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 13140 + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 7605 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 13141 + rot: 1.5707963267948966 rad + pos: 14.5,40.5 + parent: 2 + - uid: 7606 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 13142 + rot: 1.5707963267948966 rad + pos: 14.5,39.5 + parent: 2 + - uid: 7607 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 13143 + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - uid: 7608 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 13144 + rot: 1.5707963267948966 rad + pos: 35.5,32.5 + parent: 2 + - uid: 7609 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 13145 + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 7610 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 13146 + rot: 1.5707963267948966 rad + pos: 35.5,30.5 + parent: 2 + - uid: 7611 components: - type: Transform - pos: -13.5,6.5 - parent: 89 - - uid: 13147 + rot: 1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - uid: 7612 components: - type: Transform - pos: -12.5,6.5 - parent: 89 - - uid: 13148 + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - uid: 7613 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 13149 + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 7614 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 13150 + rot: 1.5707963267948966 rad + pos: 68.5,-2.5 + parent: 2 + - uid: 7615 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13188 + rot: 1.5707963267948966 rad + pos: 68.5,-3.5 + parent: 2 + - uid: 7616 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 13189 + rot: 1.5707963267948966 rad + pos: 67.5,-0.5 + parent: 2 + - uid: 7617 components: - type: Transform - pos: -10.5,7.5 - parent: 89 - - uid: 13190 + rot: 1.5707963267948966 rad + pos: 67.5,-1.5 + parent: 2 + - uid: 7618 components: - type: Transform - pos: -9.5,7.5 - parent: 89 - - uid: 13191 + rot: 1.5707963267948966 rad + pos: 67.5,-2.5 + parent: 2 + - uid: 7619 components: - type: Transform - pos: -8.5,7.5 - parent: 89 - - uid: 13192 + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 + parent: 2 + - uid: 7620 components: - type: Transform - pos: -7.5,7.5 - parent: 89 - - uid: 13193 + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 7621 components: - type: Transform - pos: -6.5,7.5 - parent: 89 - - uid: 13194 + rot: 1.5707963267948966 rad + pos: 64.5,-7.5 + parent: 2 + - uid: 7622 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - uid: 13195 + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - uid: 7623 components: - type: Transform - pos: -6.5,9.5 - parent: 89 - - uid: 13196 + rot: 1.5707963267948966 rad + pos: 62.5,-7.5 + parent: 2 + - uid: 7624 components: - type: Transform - pos: -6.5,10.5 - parent: 89 - - uid: 13197 + rot: 1.5707963267948966 rad + pos: 62.5,-8.5 + parent: 2 + - uid: 7625 components: - type: Transform - pos: -6.5,11.5 - parent: 89 - - uid: 13198 + rot: 1.5707963267948966 rad + pos: 62.5,-9.5 + parent: 2 + - uid: 7626 components: - type: Transform - pos: -6.5,12.5 - parent: 89 - - uid: 13199 + rot: 1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 2 + - uid: 7627 components: - type: Transform - pos: -6.5,13.5 - parent: 89 - - uid: 13200 + rot: 1.5707963267948966 rad + pos: 60.5,-9.5 + parent: 2 + - uid: 7628 components: - type: Transform - pos: -6.5,14.5 - parent: 89 - - uid: 13211 + rot: 1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 2 + - uid: 7629 components: - type: Transform - pos: -29.5,-0.5 - parent: 89 - - uid: 13212 + rot: 3.141592653589793 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 7630 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 - - uid: 13213 + pos: 29.5,-16.5 + parent: 2 + - uid: 7631 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13308 + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 2 + - uid: 7632 components: - type: Transform - pos: -82.5,-4.5 - parent: 89 - - uid: 13309 + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 7633 components: - type: Transform - pos: -82.5,-3.5 - parent: 89 - - uid: 13310 + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 7634 components: - type: Transform - pos: -82.5,-2.5 - parent: 89 - - uid: 13311 + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 2 + - uid: 7635 components: - type: Transform - pos: -82.5,-1.5 - parent: 89 - - uid: 13312 + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 2 + - uid: 7636 components: - type: Transform - pos: -82.5,-0.5 - parent: 89 - - uid: 13313 + rot: 3.141592653589793 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 7637 components: - type: Transform - pos: -82.5,0.5 - parent: 89 - - uid: 13314 + rot: 3.141592653589793 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 7638 components: - type: Transform - pos: -81.5,0.5 - parent: 89 - - uid: 13315 + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 7639 components: - type: Transform - pos: -81.5,1.5 - parent: 89 - - uid: 13316 + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 7640 components: - type: Transform - pos: -81.5,2.5 - parent: 89 - - uid: 13317 + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 + - uid: 7641 components: - type: Transform - pos: -81.5,3.5 - parent: 89 - - uid: 13318 + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 7642 components: - type: Transform - pos: -81.5,4.5 - parent: 89 - - uid: 13319 + rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 2 + - uid: 7643 components: - type: Transform - pos: -80.5,4.5 - parent: 89 - - uid: 13320 + rot: 3.141592653589793 rad + pos: 11.5,-26.5 + parent: 2 + - uid: 7644 components: - type: Transform - pos: -79.5,4.5 - parent: 89 - - uid: 13321 + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 7645 components: - type: Transform - pos: -78.5,4.5 - parent: 89 - - uid: 13322 + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 2 + - uid: 7646 components: - type: Transform - pos: -77.5,4.5 - parent: 89 - - uid: 13323 + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 2 + - uid: 7647 components: - type: Transform - pos: -76.5,4.5 - parent: 89 - - uid: 13324 + rot: 3.141592653589793 rad + pos: 8.5,-32.5 + parent: 2 + - uid: 7648 components: - type: Transform - pos: -76.5,3.5 - parent: 89 - - uid: 13325 + rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 2 + - uid: 7649 components: - type: Transform - pos: -76.5,2.5 - parent: 89 - - uid: 13326 + rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 2 + - uid: 7650 components: - type: Transform - pos: -76.5,1.5 - parent: 89 - - uid: 13327 + rot: 3.141592653589793 rad + pos: 7.5,-34.5 + parent: 2 + - uid: 7651 components: - type: Transform - pos: -77.5,1.5 - parent: 89 - - uid: 13328 + rot: 3.141592653589793 rad + pos: 6.5,-34.5 + parent: 2 + - uid: 7652 components: - type: Transform - pos: -78.5,1.5 - parent: 89 - - uid: 13329 + rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 2 + - uid: 7653 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 13330 + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 7654 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13462 + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 7655 components: - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 13463 + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 7656 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13464 + rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 7657 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13465 + rot: 3.141592653589793 rad + pos: 2.5,-34.5 + parent: 2 + - uid: 7658 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13466 + rot: 3.141592653589793 rad + pos: 3.5,-35.5 + parent: 2 + - uid: 7659 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 13467 + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 7660 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 13468 + rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 2 + - uid: 7661 components: - type: Transform - pos: -52.5,32.5 - parent: 89 - - uid: 13469 + rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 2 + - uid: 7662 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 13470 + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 2 + - uid: 7663 components: - type: Transform - pos: -52.5,34.5 - parent: 89 - - uid: 13471 + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 7664 components: - type: Transform - pos: -52.5,35.5 - parent: 89 - - uid: 13472 + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 7665 components: - type: Transform - pos: -53.5,35.5 - parent: 89 - - uid: 13473 + rot: 3.141592653589793 rad + pos: 5.5,-40.5 + parent: 2 + - uid: 7666 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 13474 + rot: 3.141592653589793 rad + pos: 5.5,-41.5 + parent: 2 + - uid: 7667 components: - type: Transform - pos: -55.5,35.5 - parent: 89 - - uid: 13475 + rot: 3.141592653589793 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 7668 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 13476 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 2 + - uid: 7669 components: - type: Transform - pos: -56.5,34.5 - parent: 89 - - uid: 13477 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 + parent: 2 + - uid: 7670 components: - type: Transform - pos: -56.5,33.5 - parent: 89 - - uid: 13478 + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 2 + - uid: 7671 components: - type: Transform - pos: -57.5,33.5 - parent: 89 - - uid: 13479 + rot: 3.141592653589793 rad + pos: 3.5,-48.5 + parent: 2 + - uid: 7672 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 13480 + rot: 3.141592653589793 rad + pos: -10.5,-44.5 + parent: 2 + - uid: 7673 components: - type: Transform - pos: -59.5,33.5 - parent: 89 - - uid: 13481 + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 2 + - uid: 7674 components: - type: Transform - pos: -59.5,32.5 - parent: 89 - - uid: 13482 + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 2 + - uid: 7675 components: - type: Transform - pos: -59.5,31.5 - parent: 89 - - uid: 13483 + rot: 3.141592653589793 rad + pos: -2.5,-48.5 + parent: 2 + - uid: 7676 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13634 + rot: 3.141592653589793 rad + pos: -6.5,-48.5 + parent: 2 + - uid: 7677 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13635 + rot: 3.141592653589793 rad + pos: 2.5,-48.5 + parent: 2 + - uid: 7678 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 13636 + rot: 3.141592653589793 rad + pos: 0.5,-48.5 + parent: 2 + - uid: 7679 components: - type: Transform - pos: -67.5,13.5 - parent: 89 - - uid: 13637 + rot: 3.141592653589793 rad + pos: 3.5,-47.5 + parent: 2 + - uid: 7680 components: - type: Transform - pos: -67.5,12.5 - parent: 89 - - uid: 13638 + rot: 3.141592653589793 rad + pos: -1.5,-48.5 + parent: 2 + - uid: 7681 components: - type: Transform - pos: -67.5,11.5 - parent: 89 - - uid: 13639 + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 7682 components: - type: Transform - pos: -67.5,10.5 - parent: 89 - - uid: 13640 + rot: 3.141592653589793 rad + pos: -5.5,-48.5 + parent: 2 + - uid: 7683 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 13641 + rot: 3.141592653589793 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 7684 components: - type: Transform - pos: -68.5,9.5 - parent: 89 - - uid: 13642 + rot: 3.141592653589793 rad + pos: -4.5,-48.5 + parent: 2 + - uid: 7685 components: - type: Transform - pos: -69.5,9.5 - parent: 89 - - uid: 13643 + rot: 3.141592653589793 rad + pos: -7.5,-48.5 + parent: 2 + - uid: 7686 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 13644 + rot: 3.141592653589793 rad + pos: -10.5,-48.5 + parent: 2 + - uid: 7687 components: - type: Transform - pos: -71.5,9.5 - parent: 89 - - uid: 13645 + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 2 + - uid: 7688 components: - type: Transform - pos: -72.5,9.5 - parent: 89 - - uid: 13646 + rot: 3.141592653589793 rad + pos: -10.5,-46.5 + parent: 2 + - uid: 7689 components: - type: Transform - pos: -72.5,10.5 - parent: 89 - - uid: 13647 + rot: 3.141592653589793 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 7690 components: - type: Transform - pos: -72.5,11.5 - parent: 89 - - uid: 13648 + rot: 3.141592653589793 rad + pos: -9.5,-43.5 + parent: 2 + - uid: 7691 components: - type: Transform - pos: -72.5,12.5 - parent: 89 - - uid: 13649 + rot: 3.141592653589793 rad + pos: -10.5,-43.5 + parent: 2 + - uid: 7692 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 13650 + rot: 3.141592653589793 rad + pos: -10.5,-40.5 + parent: 2 + - uid: 7693 components: - type: Transform - pos: -72.5,14.5 - parent: 89 - - uid: 13651 + rot: 3.141592653589793 rad + pos: -10.5,-41.5 + parent: 2 + - uid: 7694 components: - type: Transform - pos: -72.5,15.5 - parent: 89 - - uid: 13652 + rot: 3.141592653589793 rad + pos: -10.5,-42.5 + parent: 2 + - uid: 7695 components: - type: Transform - pos: -72.5,16.5 - parent: 89 - - uid: 13653 + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 7696 components: - type: Transform - pos: -73.5,16.5 - parent: 89 - - uid: 13654 + rot: 3.141592653589793 rad + pos: -9.5,-39.5 + parent: 2 + - uid: 7697 components: - type: Transform - pos: -74.5,16.5 - parent: 89 - - uid: 13655 + rot: 3.141592653589793 rad + pos: -12.5,-39.5 + parent: 2 + - uid: 7698 components: - type: Transform - pos: -75.5,16.5 - parent: 89 - - uid: 13656 + rot: 3.141592653589793 rad + pos: -14.5,-37.5 + parent: 2 + - uid: 7699 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 13657 + rot: 3.141592653589793 rad + pos: -13.5,-39.5 + parent: 2 + - uid: 7700 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 13658 + rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 2 + - uid: 7701 components: - type: Transform - pos: -78.5,16.5 - parent: 89 - - uid: 13659 + rot: 3.141592653589793 rad + pos: -14.5,-39.5 + parent: 2 + - uid: 7702 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 13660 + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 2 + - uid: 7703 components: - type: Transform - pos: -80.5,16.5 - parent: 89 - - uid: 13661 + rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 7704 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 13662 + rot: 3.141592653589793 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 7705 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 13663 + rot: 3.141592653589793 rad + pos: -15.5,-34.5 + parent: 2 + - uid: 7706 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 13664 + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 7707 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 13665 + rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 2 + - uid: 7708 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 13666 + rot: 3.141592653589793 rad + pos: -15.5,-35.5 + parent: 2 + - uid: 7709 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 13667 + rot: 3.141592653589793 rad + pos: -15.5,-31.5 + parent: 2 + - uid: 7710 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 13668 + rot: 3.141592653589793 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 7711 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 13669 + rot: 3.141592653589793 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 7712 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 13670 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - uid: 7713 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 13671 + rot: 3.141592653589793 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 7714 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 13672 + rot: 3.141592653589793 rad + pos: -17.5,-30.5 + parent: 2 + - uid: 7715 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 13673 + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 7716 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 13674 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - uid: 7717 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 13675 + rot: 3.141592653589793 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 7718 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 13676 + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 7719 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 13677 + rot: 3.141592653589793 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 7720 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 13678 + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 + - uid: 7721 components: - type: Transform - pos: -88.5,20.5 - parent: 89 - - uid: 13679 + rot: 3.141592653589793 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 7722 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13680 + rot: 3.141592653589793 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 7723 components: - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 13756 + rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 2 + - uid: 7724 components: - type: Transform - pos: -75.5,4.5 - parent: 89 - - uid: 13757 + rot: 3.141592653589793 rad + pos: -27.5,-29.5 + parent: 2 + - uid: 7725 components: - type: Transform - pos: -74.5,4.5 - parent: 89 - - uid: 13758 + rot: 3.141592653589793 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 7726 components: - type: Transform - pos: -73.5,4.5 - parent: 89 - - uid: 13759 + rot: 3.141592653589793 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 7727 components: - type: Transform - pos: -72.5,4.5 - parent: 89 - - uid: 13760 + rot: 3.141592653589793 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 7728 components: - type: Transform - pos: -71.5,4.5 - parent: 89 - - uid: 13761 + rot: 3.141592653589793 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 7729 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13779 + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 + - uid: 7730 components: - type: Transform - pos: -70.5,4.5 - parent: 89 - - uid: 13780 + rot: 3.141592653589793 rad + pos: -29.5,-26.5 + parent: 2 + - uid: 7731 components: - type: Transform - pos: -69.5,4.5 - parent: 89 - - uid: 13781 + rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 2 + - uid: 7732 components: - type: Transform - pos: -68.5,4.5 - parent: 89 - - uid: 13782 + rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 2 + - uid: 7733 components: - type: Transform - pos: -67.5,4.5 - parent: 89 - - uid: 13783 + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + - uid: 7734 components: - type: Transform - pos: -66.5,4.5 - parent: 89 - - uid: 13784 + rot: 3.141592653589793 rad + pos: -29.5,-22.5 + parent: 2 + - uid: 7735 components: - type: Transform - pos: -65.5,4.5 - parent: 89 - - uid: 13785 + rot: 3.141592653589793 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 7736 components: - type: Transform - pos: -64.5,4.5 - parent: 89 - - uid: 13786 + rot: 3.141592653589793 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 7737 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 13787 + rot: 3.141592653589793 rad + pos: -29.5,-19.5 + parent: 2 + - uid: 7738 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13850 + rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 2 + - uid: 7739 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 13851 + rot: 3.141592653589793 rad + pos: -39.5,-20.5 + parent: 2 + - uid: 7740 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 13852 + rot: 3.141592653589793 rad + pos: -37.5,-20.5 + parent: 2 + - uid: 7741 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 13853 + rot: 3.141592653589793 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 7742 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 13854 + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 7743 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 13855 + rot: 3.141592653589793 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 7744 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 13856 + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 7745 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 - - uid: 13857 + rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 7746 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 13858 + rot: 3.141592653589793 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 7747 components: - type: Transform - pos: -41.5,-4.5 - parent: 89 - - uid: 13859 + rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 7748 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 13860 + pos: 57.5,-19.5 + parent: 2 + - uid: 7749 components: - type: Transform - pos: -43.5,-4.5 - parent: 89 - - uid: 13861 + pos: 57.5,-20.5 + parent: 2 + - uid: 7750 components: - type: Transform - pos: -43.5,-5.5 - parent: 89 - - uid: 13862 + pos: 57.5,-18.5 + parent: 2 + - uid: 7751 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 13863 + pos: -99.5,25.5 + parent: 2 + - uid: 7752 components: - type: Transform - pos: -44.5,-6.5 - parent: 89 - - uid: 13864 + pos: -100.5,25.5 + parent: 2 + - uid: 7753 components: - type: Transform - pos: -45.5,-6.5 - parent: 89 - - uid: 13865 + pos: 5.5,26.5 + parent: 2 + - uid: 7754 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 - - uid: 13866 + pos: 6.5,26.5 + parent: 2 + - uid: 7755 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 13867 + pos: -14.5,23.5 + parent: 2 + - uid: 7756 components: - type: Transform - pos: -49.5,-12.5 - parent: 89 - - uid: 13868 + pos: -13.5,23.5 + parent: 2 + - uid: 7757 components: - type: Transform - pos: -50.5,-12.5 - parent: 89 - - uid: 13869 + pos: -12.5,23.5 + parent: 2 + - uid: 7758 components: - type: Transform - pos: -51.5,-12.5 - parent: 89 - - uid: 13870 + pos: -8.5,23.5 + parent: 2 + - uid: 7759 components: - type: Transform - pos: -52.5,-12.5 - parent: 89 - - uid: 14002 + pos: -7.5,23.5 + parent: 2 + - uid: 7760 components: - type: Transform - pos: 56.5,-7.5 - parent: 89 - - uid: 14003 + pos: 7.5,26.5 + parent: 2 + - uid: 7761 components: - type: Transform - pos: 57.5,-7.5 - parent: 89 - - uid: 14004 + pos: 10.5,26.5 + parent: 2 + - uid: 7762 components: - type: Transform - pos: 58.5,-7.5 - parent: 89 - - uid: 14005 + pos: 33.5,35.5 + parent: 2 + - uid: 7763 components: - type: Transform - pos: 53.5,-7.5 - parent: 89 - - uid: 14063 + pos: 9.5,26.5 + parent: 2 + - uid: 7764 components: - type: Transform - pos: -37.5,10.5 - parent: 89 - - uid: 14086 + pos: 33.5,34.5 + parent: 2 + - uid: 7765 components: - type: Transform - pos: 54.5,-7.5 - parent: 89 - - uid: 14095 + pos: 30.5,35.5 + parent: 2 + - uid: 7766 components: - type: Transform - pos: 61.5,-4.5 - parent: 89 - - uid: 14096 + pos: 31.5,35.5 + parent: 2 + - uid: 7767 components: - type: Transform - pos: 62.5,-4.5 - parent: 89 - - uid: 14097 + pos: 32.5,35.5 + parent: 2 + - uid: 7768 components: - type: Transform - pos: 59.5,-5.5 - parent: 89 - - uid: 14099 + rot: -1.5707963267948966 rad + pos: -131.5,13.5 + parent: 2 + - uid: 7769 components: - type: Transform - pos: 59.5,-4.5 - parent: 89 - - uid: 14100 + rot: -1.5707963267948966 rad + pos: -119.5,12.5 + parent: 2 + - uid: 7770 components: - type: Transform - pos: 60.5,-4.5 - parent: 89 - - uid: 14101 + pos: 29.5,36.5 + parent: 2 + - uid: 7771 components: - type: Transform - pos: 59.5,-6.5 - parent: 89 - - uid: 14102 + pos: 29.5,37.5 + parent: 2 + - uid: 7772 components: - type: Transform - pos: 63.5,-5.5 - parent: 89 - - uid: 14281 + pos: 29.5,35.5 + parent: 2 + - uid: 7773 components: - type: Transform - pos: 66.5,11.5 - parent: 89 - - uid: 14286 + pos: 29.5,38.5 + parent: 2 + - uid: 7774 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 14287 + pos: 29.5,39.5 + parent: 2 + - uid: 7775 components: - type: Transform - pos: 13.5,-8.5 - parent: 89 - - uid: 14288 + pos: 29.5,40.5 + parent: 2 + - uid: 7776 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - uid: 14289 + pos: 28.5,40.5 + parent: 2 + - uid: 7777 components: - type: Transform - pos: 13.5,-6.5 - parent: 89 - - uid: 14290 + pos: 28.5,41.5 + parent: 2 + - uid: 7778 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 14291 + pos: 17.5,35.5 + parent: 2 + - uid: 7779 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 - - uid: 14292 + pos: 18.5,35.5 + parent: 2 + - uid: 7780 components: - type: Transform - pos: 11.5,-6.5 - parent: 89 - - uid: 14293 + pos: 19.5,35.5 + parent: 2 + - uid: 7781 components: - type: Transform - pos: 10.5,-6.5 - parent: 89 - - uid: 14296 + pos: 19.5,36.5 + parent: 2 + - uid: 7782 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 14297 + pos: 19.5,37.5 + parent: 2 + - uid: 7783 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 14298 + pos: 19.5,38.5 + parent: 2 + - uid: 7784 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 14299 + pos: 19.5,39.5 + parent: 2 + - uid: 7785 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 14300 + pos: 19.5,40.5 + parent: 2 + - uid: 7786 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 14301 + pos: 20.5,40.5 + parent: 2 + - uid: 7787 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 14302 + pos: 20.5,41.5 + parent: 2 + - uid: 7788 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 14303 + rot: 1.5707963267948966 rad + pos: 41.5,26.5 + parent: 2 + - uid: 7789 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 14304 + rot: 1.5707963267948966 rad + pos: 40.5,26.5 + parent: 2 + - uid: 7790 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 14305 + pos: 10.5,-20.5 + parent: 2 + - uid: 7791 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 14306 + pos: 30.5,-16.5 + parent: 2 + - uid: 7792 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 14307 + rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 2 + - uid: 7793 components: - type: Transform - pos: 26.5,-9.5 - parent: 89 - - uid: 14308 + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - uid: 7794 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 14309 + rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 2 + - uid: 7795 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 14310 + rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 2 + - uid: 7796 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 14311 + pos: 60.5,-7.5 + parent: 2 + - uid: 7797 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 14312 + pos: 66.5,-0.5 + parent: 2 + - uid: 7798 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 14313 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 7799 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 14314 + rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - uid: 7800 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 14315 + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - uid: 7801 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 14316 + rot: 1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 7802 components: - type: Transform - pos: 35.5,-9.5 - parent: 89 - - uid: 14317 + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - uid: 7803 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 - - uid: 14318 + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - uid: 7804 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 - - uid: 14319 + rot: -1.5707963267948966 rad + pos: 29.5,34.5 + parent: 2 + - uid: 7805 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 14320 + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - uid: 7806 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 14321 + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 7807 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14388 + pos: 28.5,6.5 + parent: 2 + - uid: 7808 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 14390 + pos: 29.5,8.5 + parent: 2 + - uid: 7809 components: - type: Transform - pos: -56.5,8.5 - parent: 89 - - uid: 14391 + rot: 1.5707963267948966 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 7810 components: - type: Transform - pos: -55.5,8.5 - parent: 89 - - uid: 14392 + rot: -1.5707963267948966 rad + pos: -124.5,15.5 + parent: 2 + - uid: 7811 components: - type: Transform - pos: -55.5,9.5 - parent: 89 - - uid: 14393 + pos: -123.5,18.5 + parent: 2 + - uid: 7812 components: - type: Transform - pos: -55.5,10.5 - parent: 89 - - uid: 14394 + rot: -1.5707963267948966 rad + pos: -103.5,25.5 + parent: 2 + - uid: 7813 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 14395 + rot: -1.5707963267948966 rad + pos: -111.5,23.5 + parent: 2 + - uid: 7814 components: - type: Transform - pos: -53.5,10.5 - parent: 89 - - uid: 14396 + rot: -1.5707963267948966 rad + pos: -112.5,23.5 + parent: 2 + - uid: 7815 components: - type: Transform - pos: -52.5,10.5 - parent: 89 - - uid: 14397 + rot: -1.5707963267948966 rad + pos: -123.5,14.5 + parent: 2 + - uid: 7816 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 14398 + rot: -1.5707963267948966 rad + pos: -104.5,27.5 + parent: 2 + - uid: 7817 components: - type: Transform - pos: -51.5,9.5 - parent: 89 - - uid: 14399 + rot: -1.5707963267948966 rad + pos: -112.5,20.5 + parent: 2 + - uid: 7818 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - uid: 14400 + rot: -1.5707963267948966 rad + pos: -112.5,21.5 + parent: 2 + - uid: 7819 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 14401 + rot: -1.5707963267948966 rad + pos: -105.5,27.5 + parent: 2 + - uid: 7820 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 14402 + rot: 3.141592653589793 rad + pos: -113.5,25.5 + parent: 2 + - uid: 7821 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 14403 + rot: 3.141592653589793 rad + pos: -114.5,23.5 + parent: 2 + - uid: 7822 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 14404 + rot: 3.141592653589793 rad + pos: -114.5,24.5 + parent: 2 + - uid: 7823 components: - type: Transform - pos: -46.5,10.5 - parent: 89 - - uid: 14405 + rot: 3.141592653589793 rad + pos: -116.5,23.5 + parent: 2 + - uid: 7824 components: - type: Transform - pos: -45.5,10.5 - parent: 89 - - uid: 14406 + pos: -109.5,29.5 + parent: 2 + - uid: 7825 components: - type: Transform - pos: -44.5,10.5 - parent: 89 - - uid: 14407 + rot: 3.141592653589793 rad + pos: -115.5,23.5 + parent: 2 + - uid: 7826 components: - type: Transform - pos: -44.5,11.5 - parent: 89 - - uid: 14408 + rot: 3.141592653589793 rad + pos: -117.5,23.5 + parent: 2 + - uid: 7827 components: - type: Transform - pos: -43.5,11.5 - parent: 89 - - uid: 14409 + rot: 3.141592653589793 rad + pos: -114.5,25.5 + parent: 2 + - uid: 7828 components: - type: Transform - pos: -42.5,11.5 - parent: 89 - - uid: 14410 + rot: -1.5707963267948966 rad + pos: -111.5,21.5 + parent: 2 + - uid: 7829 components: - type: Transform - pos: -41.5,11.5 - parent: 89 - - uid: 14411 + rot: -1.5707963267948966 rad + pos: -111.5,20.5 + parent: 2 + - uid: 7830 components: - type: Transform - pos: -40.5,11.5 - parent: 89 - - uid: 14412 + pos: -108.5,29.5 + parent: 2 + - uid: 7831 components: - type: Transform - pos: -39.5,11.5 - parent: 89 - - uid: 14413 + rot: -1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 + - uid: 7832 components: - type: Transform - pos: -38.5,11.5 - parent: 89 - - uid: 14414 + rot: -1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 + - uid: 7833 components: - type: Transform - pos: -37.5,11.5 - parent: 89 - - uid: 14432 + rot: -1.5707963267948966 rad + pos: -123.5,15.5 + parent: 2 + - uid: 7834 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 - - uid: 14433 + rot: -1.5707963267948966 rad + pos: -109.5,27.5 + parent: 2 + - uid: 7835 components: - type: Transform - pos: 8.5,-6.5 - parent: 89 - - uid: 14434 + rot: -1.5707963267948966 rad + pos: -110.5,27.5 + parent: 2 + - uid: 7836 components: - type: Transform - pos: 7.5,-6.5 - parent: 89 - - uid: 14435 + rot: 1.5707963267948966 rad + pos: -103.5,-21.5 + parent: 2 + - uid: 7837 components: - type: Transform - pos: 6.5,-6.5 - parent: 89 - - uid: 14436 + rot: -1.5707963267948966 rad + pos: -107.5,27.5 + parent: 2 + - uid: 7838 components: - type: Transform - pos: 5.5,-6.5 - parent: 89 - - uid: 14437 + rot: -1.5707963267948966 rad + pos: -108.5,27.5 + parent: 2 + - uid: 7839 components: - type: Transform - pos: 4.5,-6.5 - parent: 89 - - uid: 14438 + rot: -1.5707963267948966 rad + pos: -106.5,27.5 + parent: 2 + - uid: 7840 components: - type: Transform - pos: 3.5,-6.5 - parent: 89 - - uid: 14439 + rot: 3.141592653589793 rad + pos: -107.5,24.5 + parent: 2 + - uid: 7841 components: - type: Transform - pos: 3.5,-7.5 - parent: 89 - - uid: 14440 + rot: 3.141592653589793 rad + pos: -107.5,26.5 + parent: 2 + - uid: 7842 components: - type: Transform - pos: 3.5,-8.5 - parent: 89 - - uid: 14441 + rot: -1.5707963267948966 rad + pos: -108.5,25.5 + parent: 2 + - uid: 7843 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 14442 + rot: -1.5707963267948966 rad + pos: -131.5,15.5 + parent: 2 + - uid: 7844 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 - - uid: 14443 + rot: -1.5707963267948966 rad + pos: -130.5,16.5 + parent: 2 + - uid: 7845 components: - type: Transform - pos: 2.5,-10.5 - parent: 89 - - uid: 14444 + rot: -1.5707963267948966 rad + pos: -129.5,16.5 + parent: 2 + - uid: 7846 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 - - uid: 14445 + rot: -1.5707963267948966 rad + pos: -129.5,15.5 + parent: 2 + - uid: 7847 components: - type: Transform - pos: 0.5,-10.5 - parent: 89 - - uid: 14446 + rot: -1.5707963267948966 rad + pos: -111.5,27.5 + parent: 2 + - uid: 7848 components: - type: Transform - pos: -0.5,-10.5 - parent: 89 - - uid: 14447 + rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 + - uid: 7849 components: - type: Transform - pos: -0.5,-9.5 - parent: 89 - - uid: 14448 + rot: -1.5707963267948966 rad + pos: -131.5,14.5 + parent: 2 + - uid: 7850 components: - type: Transform - pos: -0.5,-8.5 - parent: 89 - - uid: 14449 + rot: -1.5707963267948966 rad + pos: -131.5,16.5 + parent: 2 + - uid: 7851 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 - - uid: 14450 + rot: -1.5707963267948966 rad + pos: -110.5,25.5 + parent: 2 + - uid: 7852 components: - type: Transform - pos: -0.5,-6.5 - parent: 89 - - uid: 14451 + pos: -105.5,29.5 + parent: 2 + - uid: 7853 components: - type: Transform - pos: -0.5,-5.5 - parent: 89 - - uid: 14452 + rot: 1.5707963267948966 rad + pos: -111.5,-23.5 + parent: 2 + - uid: 7854 components: - type: Transform - pos: -0.5,-4.5 - parent: 89 - - uid: 14453 + rot: -1.5707963267948966 rad + pos: -112.5,27.5 + parent: 2 + - uid: 7855 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 14454 + rot: -1.5707963267948966 rad + pos: -104.5,25.5 + parent: 2 + - uid: 7856 components: - type: Transform - pos: 0.5,-3.5 - parent: 89 - - uid: 14455 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - uid: 7857 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14604 + rot: -1.5707963267948966 rad + pos: -129.5,13.5 + parent: 2 + - uid: 7858 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14609 + rot: -1.5707963267948966 rad + pos: -129.5,14.5 + parent: 2 + - uid: 7859 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14622 + rot: -1.5707963267948966 rad + pos: -127.5,12.5 + parent: 2 + - uid: 7860 components: - type: Transform - pos: 55.5,-23.5 - parent: 89 - - uid: 14638 + rot: -1.5707963267948966 rad + pos: -127.5,13.5 + parent: 2 + - uid: 7861 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14646 + rot: -1.5707963267948966 rad + pos: -126.5,11.5 + parent: 2 + - uid: 7862 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14800 + rot: -1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - uid: 7863 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 14916 + rot: -1.5707963267948966 rad + pos: -124.5,12.5 + parent: 2 + - uid: 7864 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14917 + rot: -1.5707963267948966 rad + pos: -123.5,12.5 + parent: 2 + - uid: 7865 components: - type: Transform - pos: -12.5,-36.5 - parent: 89 - - uid: 14918 + pos: -127.5,-7.5 + parent: 2 + - uid: 7866 components: - type: Transform - pos: -12.5,-35.5 - parent: 89 - - uid: 14919 + rot: -1.5707963267948966 rad + pos: -103.5,27.5 + parent: 2 + - uid: 7867 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 14920 + rot: -1.5707963267948966 rad + pos: -102.5,27.5 + parent: 2 + - uid: 7868 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 14921 + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 7869 components: - type: Transform - pos: -12.5,-32.5 - parent: 89 - - uid: 14922 + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 7870 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 14923 + rot: -1.5707963267948966 rad + pos: -110.5,23.5 + parent: 2 + - uid: 7871 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 14924 + rot: -1.5707963267948966 rad + pos: -109.5,23.5 + parent: 2 + - uid: 7872 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 14925 + rot: -1.5707963267948966 rad + pos: -111.5,25.5 + parent: 2 + - uid: 7873 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 15042 + rot: -1.5707963267948966 rad + pos: -109.5,25.5 + parent: 2 + - uid: 7874 components: - type: Transform - pos: -117.5,20.5 - parent: 89 - - uid: 15063 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 + parent: 2 + - uid: 7875 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15123 + pos: -111.5,-10.5 + parent: 2 + - uid: 7876 components: - type: Transform - pos: 24.5,30.5 - parent: 89 - - uid: 15149 + rot: -1.5707963267948966 rad + pos: -131.5,-11.5 + parent: 2 + - uid: 7877 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 15171 + rot: -1.5707963267948966 rad + pos: -130.5,-10.5 + parent: 2 + - uid: 7878 components: - type: Transform - pos: -14.5,19.5 - parent: 89 - - uid: 15448 + rot: -1.5707963267948966 rad + pos: -130.5,-11.5 + parent: 2 + - uid: 7879 components: - type: Transform - pos: 13.5,29.5 - parent: 89 - - uid: 15541 + rot: -1.5707963267948966 rad + pos: -130.5,-12.5 + parent: 2 + - uid: 7880 components: - type: Transform - pos: 13.5,30.5 - parent: 89 - - uid: 15637 + rot: -1.5707963267948966 rad + pos: -131.5,-12.5 + parent: 2 + - uid: 7881 components: - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 15642 + rot: -1.5707963267948966 rad + pos: -127.5,-7.5 + parent: 2 + - uid: 7882 components: - type: Transform - pos: -111.5,-14.5 - parent: 89 - - uid: 15643 + rot: -1.5707963267948966 rad + pos: -128.5,-14.5 + parent: 2 + - uid: 7883 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15750 + rot: -1.5707963267948966 rad + pos: -128.5,-13.5 + parent: 2 + - uid: 7884 components: - type: Transform - pos: -30.5,21.5 - parent: 89 - - uid: 15783 + rot: -1.5707963267948966 rad + pos: -128.5,-11.5 + parent: 2 + - uid: 7885 components: - type: Transform - pos: -30.5,22.5 - parent: 89 - - uid: 15856 + rot: 3.141592653589793 rad + pos: -88.5,-5.5 + parent: 2 + - uid: 7886 components: - type: Transform - pos: -30.5,23.5 - parent: 89 - - uid: 15888 + rot: 3.141592653589793 rad + pos: -88.5,-4.5 + parent: 2 + - uid: 7887 components: - type: Transform - pos: -30.5,24.5 - parent: 89 - - uid: 15891 + rot: -1.5707963267948966 rad + pos: -128.5,-10.5 + parent: 2 + - uid: 7888 components: - type: Transform - pos: -30.5,25.5 - parent: 89 - - uid: 15901 + rot: 3.141592653589793 rad + pos: -87.5,-5.5 + parent: 2 + - uid: 7889 components: - type: Transform - pos: -30.5,26.5 - parent: 89 - - uid: 15928 + rot: 3.141592653589793 rad + pos: -87.5,-4.5 + parent: 2 + - uid: 7890 components: - type: Transform - pos: 6.5,13.5 - parent: 89 - - uid: 15929 + rot: 3.141592653589793 rad + pos: -86.5,-4.5 + parent: 2 + - uid: 7891 components: - type: Transform - pos: 7.5,13.5 - parent: 89 - - uid: 15930 + rot: 3.141592653589793 rad + pos: -86.5,-5.5 + parent: 2 + - uid: 7892 components: - type: Transform - pos: 8.5,13.5 - parent: 89 - - uid: 15931 + pos: -44.5,-14.5 + parent: 2 + - uid: 7893 components: - type: Transform - pos: 9.5,13.5 - parent: 89 - - uid: 15932 + rot: -1.5707963267948966 rad + pos: -122.5,-5.5 + parent: 2 + - uid: 7894 components: - type: Transform - pos: 10.5,13.5 - parent: 89 - - uid: 15933 + rot: 3.141592653589793 rad + pos: -87.5,-6.5 + parent: 2 + - uid: 7895 components: - type: Transform - pos: 11.5,13.5 - parent: 89 - - uid: 15934 + pos: -76.5,-21.5 + parent: 2 + - uid: 7896 components: - type: Transform - pos: 12.5,13.5 - parent: 89 - - uid: 15935 + rot: 3.141592653589793 rad + pos: -86.5,-6.5 + parent: 2 + - uid: 7897 components: - type: Transform - pos: 13.5,13.5 - parent: 89 - - uid: 15936 + rot: 3.141592653589793 rad + pos: -88.5,-6.5 + parent: 2 + - uid: 7898 components: - type: Transform - pos: 14.5,13.5 - parent: 89 - - uid: 15937 + rot: 3.141592653589793 rad + pos: -85.5,-4.5 + parent: 2 + - uid: 7899 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 15938 + pos: 1.5,3.5 + parent: 2 + - uid: 7900 components: - type: Transform - pos: 13.5,15.5 - parent: 89 - - uid: 15939 + pos: 1.5,2.5 + parent: 2 + - uid: 7901 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 15940 + pos: 1.5,1.5 + parent: 2 + - uid: 7902 components: - type: Transform - pos: 13.5,17.5 - parent: 89 - - uid: 15941 + pos: 33.5,3.5 + parent: 2 + - uid: 7903 components: - type: Transform - pos: 13.5,18.5 - parent: 89 - - uid: 15942 + pos: 33.5,2.5 + parent: 2 + - uid: 7904 components: - type: Transform - pos: 13.5,19.5 - parent: 89 - - uid: 15943 + pos: 33.5,1.5 + parent: 2 + - uid: 7905 components: - type: Transform - pos: 13.5,20.5 - parent: 89 - - uid: 15944 + pos: -4.5,-11.5 + parent: 2 + - uid: 7906 components: - type: Transform - pos: 13.5,21.5 - parent: 89 - - uid: 15945 + pos: -4.5,-12.5 + parent: 2 + - uid: 7907 components: - type: Transform - pos: 13.5,22.5 - parent: 89 - - uid: 15946 + pos: -4.5,-13.5 + parent: 2 + - uid: 7908 components: - type: Transform - pos: 13.5,23.5 - parent: 89 - - uid: 15947 + pos: -21.5,3.5 + parent: 2 + - uid: 7909 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 15948 + pos: -21.5,2.5 + parent: 2 + - uid: 7910 components: - type: Transform - pos: 13.5,25.5 - parent: 89 - - uid: 15949 + pos: -21.5,1.5 + parent: 2 + - uid: 7911 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 15950 + pos: -21.5,3.5 + parent: 2 + - uid: 7912 components: - type: Transform - pos: 13.5,27.5 - parent: 89 - - uid: 15953 + pos: -21.5,2.5 + parent: 2 + - uid: 7913 components: - type: Transform - pos: 15.5,13.5 - parent: 89 - - uid: 15954 + pos: -21.5,1.5 + parent: 2 + - uid: 7914 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 15955 + pos: -28.5,4.5 + parent: 2 + - uid: 7915 components: - type: Transform - pos: 16.5,14.5 - parent: 89 - - uid: 15956 + pos: -28.5,3.5 + parent: 2 + - uid: 7916 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 15957 + pos: -30.5,6.5 + parent: 2 + - uid: 7917 components: - type: Transform - pos: 18.5,14.5 - parent: 89 - - uid: 15958 + pos: -31.5,6.5 + parent: 2 + - uid: 7918 components: - type: Transform - pos: 19.5,14.5 - parent: 89 - - uid: 15959 + pos: -32.5,6.5 + parent: 2 + - uid: 7919 components: - type: Transform - pos: 20.5,14.5 - parent: 89 - - uid: 15960 + pos: -38.5,4.5 + parent: 2 + - uid: 7920 components: - type: Transform - pos: 21.5,14.5 - parent: 89 - - uid: 15961 + pos: -38.5,3.5 + parent: 2 + - uid: 7921 components: - type: Transform - pos: 22.5,14.5 - parent: 89 - - uid: 15962 + pos: -42.5,5.5 + parent: 2 + - uid: 7922 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 15963 + pos: -42.5,4.5 + parent: 2 + - uid: 7923 components: - type: Transform - pos: 24.5,14.5 - parent: 89 - - uid: 15964 + pos: -42.5,3.5 + parent: 2 + - uid: 7924 components: - type: Transform - pos: 25.5,14.5 - parent: 89 - - uid: 15965 + pos: -38.5,-11.5 + parent: 2 + - uid: 7925 components: - type: Transform - pos: 26.5,14.5 - parent: 89 - - uid: 15966 + pos: -38.5,-12.5 + parent: 2 + - uid: 7926 components: - type: Transform - pos: 27.5,14.5 - parent: 89 - - uid: 15967 + pos: -38.5,-13.5 + parent: 2 + - uid: 7927 components: - type: Transform - pos: 27.5,15.5 - parent: 89 - - uid: 15968 + pos: -65.5,6.5 + parent: 2 + - uid: 7928 components: - type: Transform - pos: 27.5,16.5 - parent: 89 - - uid: 15969 + pos: -66.5,6.5 + parent: 2 + - uid: 7929 components: - type: Transform - pos: 27.5,17.5 - parent: 89 - - uid: 15970 + pos: -65.5,13.5 + parent: 2 + - uid: 7930 components: - type: Transform - pos: 27.5,18.5 - parent: 89 - - uid: 15971 + pos: -65.5,14.5 + parent: 2 + - uid: 7931 components: - type: Transform - pos: 26.5,18.5 - parent: 89 - - uid: 15972 + pos: -70.5,10.5 + parent: 2 + - uid: 7932 components: - type: Transform - pos: 26.5,19.5 - parent: 89 - - uid: 15973 + pos: -70.5,9.5 + parent: 2 + - uid: 7933 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15974 + pos: -76.5,8.5 + parent: 2 + - uid: 7934 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 15975 + pos: -76.5,9.5 + parent: 2 + - uid: 7935 components: - type: Transform - pos: 24.5,15.5 - parent: 89 - - uid: 15976 + pos: -70.5,16.5 + parent: 2 + - uid: 7936 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 15977 + pos: -70.5,17.5 + parent: 2 + - uid: 7937 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 15978 + pos: -70.5,18.5 + parent: 2 + - uid: 7938 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 15979 + pos: -50.5,16.5 + parent: 2 + - uid: 7939 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 15980 + pos: -50.5,17.5 + parent: 2 + - uid: 7940 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 15981 + pos: -50.5,18.5 + parent: 2 + - uid: 7941 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 15982 + pos: -46.5,18.5 + parent: 2 + - uid: 7942 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 15983 + pos: -46.5,17.5 + parent: 2 + - uid: 7943 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 15984 + pos: -46.5,16.5 + parent: 2 + - uid: 7944 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 15985 + pos: -55.5,19.5 + parent: 2 + - uid: 7945 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 15986 + pos: -56.5,19.5 + parent: 2 + - uid: 7946 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 15987 + pos: -57.5,19.5 + parent: 2 + - uid: 7947 components: - type: Transform - pos: 24.5,27.5 - parent: 89 - - uid: 15988 + pos: -82.5,11.5 + parent: 2 + - uid: 7948 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 16201 + pos: -81.5,11.5 + parent: 2 + - uid: 7949 components: - type: Transform - pos: -30.5,-0.5 - parent: 89 - - uid: 16202 + pos: -80.5,11.5 + parent: 2 + - uid: 7950 components: - type: Transform - pos: -31.5,-0.5 - parent: 89 - - uid: 16203 + pos: -89.5,0.5 + parent: 2 + - uid: 7951 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 - - uid: 16204 + pos: -88.5,0.5 + parent: 2 + - uid: 7952 components: - type: Transform - pos: -33.5,-0.5 - parent: 89 - - uid: 16205 + pos: -45.5,-12.5 + parent: 2 + - uid: 7953 components: - type: Transform - pos: -34.5,-0.5 - parent: 89 - - uid: 16206 + pos: -43.5,-16.5 + parent: 2 + - uid: 7954 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 16207 + pos: -27.5,-16.5 + parent: 2 + - uid: 7955 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 16208 + pos: -24.5,-19.5 + parent: 2 + - uid: 7956 components: - type: Transform - pos: -37.5,-0.5 - parent: 89 - - uid: 16209 + pos: -64.5,-13.5 + parent: 2 + - uid: 7957 components: - type: Transform - pos: -37.5,-1.5 - parent: 89 - - uid: 16210 + pos: -64.5,-12.5 + parent: 2 + - uid: 7958 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 16211 + pos: -64.5,-11.5 + parent: 2 + - uid: 7959 components: - type: Transform - pos: -37.5,-3.5 - parent: 89 - - uid: 16213 + pos: -64.5,-10.5 + parent: 2 + - uid: 7960 components: - type: Transform - pos: -28.5,-1.5 - parent: 89 - - uid: 16214 + pos: -64.5,-9.5 + parent: 2 + - uid: 7961 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 - - uid: 16215 + pos: -65.5,-13.5 + parent: 2 + - uid: 7962 components: - type: Transform - pos: -26.5,-1.5 - parent: 89 - - uid: 16216 + pos: -65.5,-12.5 + parent: 2 + - uid: 7963 components: - type: Transform - pos: -25.5,-1.5 - parent: 89 - - uid: 16217 + pos: -65.5,-11.5 + parent: 2 + - uid: 7964 components: - type: Transform - pos: -24.5,-1.5 - parent: 89 - - uid: 16218 + pos: -65.5,-10.5 + parent: 2 + - uid: 7965 components: - type: Transform - pos: -23.5,-1.5 - parent: 89 - - uid: 16219 + pos: -65.5,-9.5 + parent: 2 + - uid: 7966 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 16220 + pos: -66.5,-13.5 + parent: 2 + - uid: 7967 components: - type: Transform - pos: -21.5,-1.5 - parent: 89 - - uid: 16221 + pos: -66.5,-12.5 + parent: 2 + - uid: 7968 components: - type: Transform - pos: -20.5,-1.5 - parent: 89 - - uid: 16222 + pos: -66.5,-11.5 + parent: 2 + - uid: 7969 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 16223 + pos: -66.5,-10.5 + parent: 2 + - uid: 7970 components: - type: Transform - pos: -18.5,-1.5 - parent: 89 - - uid: 16224 + pos: -66.5,-9.5 + parent: 2 + - uid: 7971 components: - type: Transform - pos: -17.5,-1.5 - parent: 89 - - uid: 16225 + pos: -61.5,-13.5 + parent: 2 + - uid: 7972 components: - type: Transform - pos: -17.5,-2.5 - parent: 89 - - uid: 16226 + pos: -61.5,-12.5 + parent: 2 + - uid: 7973 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 - - uid: 16227 + pos: -61.5,-11.5 + parent: 2 + - uid: 7974 components: - type: Transform - pos: -17.5,-4.5 - parent: 89 - - uid: 16228 + pos: -61.5,-10.5 + parent: 2 + - uid: 7975 components: - type: Transform - pos: -17.5,-5.5 - parent: 89 - - uid: 16229 + pos: -61.5,-9.5 + parent: 2 + - uid: 7976 components: - type: Transform - pos: -17.5,-6.5 - parent: 89 - - uid: 16230 + pos: -60.5,-13.5 + parent: 2 + - uid: 7977 components: - type: Transform - pos: -17.5,-7.5 - parent: 89 - - uid: 16231 + pos: -60.5,-12.5 + parent: 2 + - uid: 7978 components: - type: Transform - pos: -16.5,-7.5 - parent: 89 - - uid: 16232 + pos: -60.5,-11.5 + parent: 2 + - uid: 7979 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 16233 + pos: -60.5,-10.5 + parent: 2 + - uid: 7980 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 16234 + pos: -60.5,-9.5 + parent: 2 + - uid: 7981 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 16235 + pos: -59.5,-13.5 + parent: 2 + - uid: 7982 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 16236 + pos: -59.5,-12.5 + parent: 2 + - uid: 7983 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 16237 + pos: -59.5,-11.5 + parent: 2 + - uid: 7984 components: - type: Transform - pos: -10.5,-7.5 - parent: 89 - - uid: 16238 + pos: -59.5,-10.5 + parent: 2 + - uid: 7985 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16247 + pos: -59.5,-9.5 + parent: 2 + - uid: 7986 components: - type: Transform - pos: 6.5,12.5 - parent: 89 - - uid: 16248 + pos: 34.5,24.5 + parent: 2 + - uid: 7987 components: - type: Transform - pos: 6.5,11.5 - parent: 89 - - uid: 16249 + pos: 34.5,25.5 + parent: 2 + - uid: 7988 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 16250 + pos: 34.5,26.5 + parent: 2 + - uid: 7989 components: - type: Transform - pos: 6.5,9.5 - parent: 89 - - uid: 16251 + pos: 36.5,26.5 + parent: 2 + - uid: 7990 components: - type: Transform - pos: 6.5,8.5 - parent: 89 - - uid: 16252 + pos: 36.5,27.5 + parent: 2 + - uid: 7991 components: - type: Transform - pos: 6.5,7.5 - parent: 89 - - uid: 16253 + pos: 37.5,26.5 + parent: 2 + - uid: 7992 components: - type: Transform - pos: 7.5,7.5 - parent: 89 - - uid: 16254 + pos: 38.5,26.5 + parent: 2 + - uid: 7993 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 16255 + pos: 39.5,26.5 + parent: 2 + - uid: 7994 components: - type: Transform - pos: 9.5,7.5 - parent: 89 - - uid: 16256 + pos: -149.5,-0.5 + parent: 2 + - uid: 7995 components: - type: Transform - pos: 10.5,7.5 - parent: 89 - - uid: 16257 + rot: -1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - uid: 7996 components: - type: Transform - pos: 11.5,7.5 - parent: 89 - - uid: 16258 + rot: -1.5707963267948966 rad + pos: -133.5,-10.5 + parent: 2 + - uid: 7997 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 16259 + rot: -1.5707963267948966 rad + pos: -135.5,-9.5 + parent: 2 + - uid: 7998 components: - type: Transform - pos: 13.5,7.5 - parent: 89 - - uid: 16260 + rot: -1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - uid: 7999 components: - type: Transform - pos: 14.5,7.5 - parent: 89 - - uid: 16261 + rot: -1.5707963267948966 rad + pos: -135.5,-11.5 + parent: 2 + - uid: 8000 components: - type: Transform - pos: 15.5,7.5 - parent: 89 - - uid: 16262 + rot: -1.5707963267948966 rad + pos: -132.5,-9.5 + parent: 2 + - uid: 8001 components: - type: Transform - pos: 16.5,7.5 - parent: 89 - - uid: 16263 + rot: -1.5707963267948966 rad + pos: -132.5,-8.5 + parent: 2 + - uid: 8002 components: - type: Transform - pos: 17.5,7.5 - parent: 89 - - uid: 16264 + rot: -1.5707963267948966 rad + pos: -132.5,-6.5 + parent: 2 + - uid: 8003 components: - type: Transform - pos: 18.5,7.5 - parent: 89 - - uid: 16265 + rot: -1.5707963267948966 rad + pos: -132.5,-5.5 + parent: 2 + - uid: 8004 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 16266 + rot: -1.5707963267948966 rad + pos: -133.5,-4.5 + parent: 2 + - uid: 8005 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 16267 + rot: -1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - uid: 8006 components: - type: Transform - pos: 20.5,8.5 - parent: 89 - - uid: 16268 + rot: -1.5707963267948966 rad + pos: -135.5,-5.5 + parent: 2 + - uid: 8007 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16318 + rot: -1.5707963267948966 rad + pos: -135.5,-4.5 + parent: 2 + - uid: 8008 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16319 + rot: -1.5707963267948966 rad + pos: -135.5,-3.5 + parent: 2 + - uid: 8009 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16320 + rot: -1.5707963267948966 rad + pos: -135.5,-2.5 + parent: 2 + - uid: 8010 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16321 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 + - uid: 8011 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16322 + rot: -1.5707963267948966 rad + pos: -122.5,-7.5 + parent: 2 + - uid: 8012 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16323 + rot: -1.5707963267948966 rad + pos: -121.5,-5.5 + parent: 2 + - uid: 8013 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16324 + rot: -1.5707963267948966 rad + pos: -121.5,-6.5 + parent: 2 + - uid: 8014 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16325 + rot: -1.5707963267948966 rad + pos: -121.5,-7.5 + parent: 2 + - uid: 8015 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16326 + rot: -1.5707963267948966 rad + pos: -120.5,-5.5 + parent: 2 + - uid: 8016 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16327 + rot: -1.5707963267948966 rad + pos: -120.5,-6.5 + parent: 2 + - uid: 8017 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16328 + rot: -1.5707963267948966 rad + pos: -120.5,-7.5 + parent: 2 + - uid: 8018 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16329 + rot: -1.5707963267948966 rad + pos: -119.5,-5.5 + parent: 2 + - uid: 8019 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16330 + rot: -1.5707963267948966 rad + pos: -119.5,-6.5 + parent: 2 + - uid: 8020 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16345 + rot: -1.5707963267948966 rad + pos: -119.5,-7.5 + parent: 2 + - uid: 8021 components: - type: Transform - pos: -3.5,12.5 - parent: 89 - - uid: 16346 + rot: -1.5707963267948966 rad + pos: -118.5,-5.5 + parent: 2 + - uid: 8022 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 16577 + rot: -1.5707963267948966 rad + pos: -118.5,-6.5 + parent: 2 + - uid: 8023 components: - type: Transform - pos: -30.5,27.5 - parent: 89 - - uid: 16613 + rot: -1.5707963267948966 rad + pos: -118.5,-7.5 + parent: 2 + - uid: 8024 components: - type: Transform - pos: -30.5,28.5 - parent: 89 - - uid: 16620 + rot: -1.5707963267948966 rad + pos: -117.5,-5.5 + parent: 2 + - uid: 8025 components: - type: Transform - pos: -30.5,29.5 - parent: 89 - - uid: 16637 + rot: -1.5707963267948966 rad + pos: -117.5,-6.5 + parent: 2 + - uid: 8026 components: - type: Transform - pos: -30.5,30.5 - parent: 89 - - uid: 16640 + rot: -1.5707963267948966 rad + pos: -117.5,-7.5 + parent: 2 + - uid: 8027 components: - type: Transform - pos: -30.5,31.5 - parent: 89 - - uid: 16643 + rot: -1.5707963267948966 rad + pos: -116.5,-5.5 + parent: 2 + - uid: 8028 components: - type: Transform - pos: -30.5,32.5 - parent: 89 - - uid: 16644 + rot: -1.5707963267948966 rad + pos: -116.5,-6.5 + parent: 2 + - uid: 8029 components: - type: Transform - pos: -30.5,33.5 - parent: 89 - - uid: 16645 + rot: -1.5707963267948966 rad + pos: -116.5,-7.5 + parent: 2 + - uid: 8030 components: - type: Transform - pos: -30.5,34.5 - parent: 89 - - uid: 16646 + rot: -1.5707963267948966 rad + pos: -115.5,-5.5 + parent: 2 + - uid: 8031 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - uid: 16647 + rot: -1.5707963267948966 rad + pos: -115.5,-6.5 + parent: 2 + - uid: 8032 components: - type: Transform - pos: -30.5,36.5 - parent: 89 - - uid: 16721 + rot: -1.5707963267948966 rad + pos: -115.5,-7.5 + parent: 2 + - uid: 8033 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 16732 + rot: -1.5707963267948966 rad + pos: -128.5,-8.5 + parent: 2 + - uid: 8034 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 16733 + rot: -1.5707963267948966 rad + pos: -130.5,-7.5 + parent: 2 + - uid: 8035 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 16768 + rot: -1.5707963267948966 rad + pos: -131.5,-7.5 + parent: 2 + - uid: 8036 components: - type: Transform - pos: -30.5,37.5 - parent: 89 - - uid: 16798 + rot: -1.5707963267948966 rad + pos: -132.5,-7.5 + parent: 2 + - uid: 8037 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - uid: 16834 + rot: -1.5707963267948966 rad + pos: -133.5,-7.5 + parent: 2 + - uid: 8038 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 16835 + rot: -1.5707963267948966 rad + pos: -133.5,-6.5 + parent: 2 + - uid: 8039 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 16836 + rot: -1.5707963267948966 rad + pos: -133.5,-8.5 + parent: 2 + - uid: 8040 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 16837 + rot: 3.141592653589793 rad + pos: -85.5,-5.5 + parent: 2 + - uid: 8041 components: - type: Transform - pos: -81.5,19.5 - parent: 89 - - uid: 16838 + rot: 3.141592653589793 rad + pos: -85.5,-6.5 + parent: 2 + - uid: 8042 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 16839 + rot: 3.141592653589793 rad + pos: -84.5,-4.5 + parent: 2 + - uid: 8043 components: - type: Transform - pos: -82.5,20.5 - parent: 89 - - uid: 16840 + rot: 3.141592653589793 rad + pos: -84.5,-5.5 + parent: 2 + - uid: 8044 components: - type: Transform - pos: -83.5,20.5 - parent: 89 - - uid: 16841 + rot: 3.141592653589793 rad + pos: -84.5,-6.5 + parent: 2 + - uid: 8045 components: - type: Transform - pos: -84.5,20.5 - parent: 89 - - uid: 16842 + rot: 1.5707963267948966 rad + pos: -94.5,-12.5 + parent: 2 + - uid: 8046 components: - type: Transform - pos: -84.5,21.5 - parent: 89 - - uid: 16843 + rot: 1.5707963267948966 rad + pos: -94.5,-15.5 + parent: 2 + - uid: 8047 components: - type: Transform - pos: -84.5,22.5 - parent: 89 - - uid: 16844 + rot: 1.5707963267948966 rad + pos: -93.5,-15.5 + parent: 2 + - uid: 8048 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 16845 + rot: 1.5707963267948966 rad + pos: -92.5,-15.5 + parent: 2 + - uid: 8049 components: - type: Transform - pos: -84.5,24.5 - parent: 89 - - uid: 16846 + rot: 1.5707963267948966 rad + pos: -91.5,-15.5 + parent: 2 + - uid: 8050 components: - type: Transform - pos: -84.5,25.5 - parent: 89 - - uid: 16847 + rot: 1.5707963267948966 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 8051 components: - type: Transform - pos: -84.5,26.5 - parent: 89 - - uid: 16848 + rot: 1.5707963267948966 rad + pos: -89.5,-15.5 + parent: 2 + - uid: 8052 components: - type: Transform - pos: -84.5,27.5 - parent: 89 - - uid: 16849 + rot: 1.5707963267948966 rad + pos: -88.5,-15.5 + parent: 2 + - uid: 8053 components: - type: Transform - pos: -84.5,28.5 - parent: 89 - - uid: 16850 + rot: 1.5707963267948966 rad + pos: -87.5,-15.5 + parent: 2 + - uid: 8054 components: - type: Transform - pos: -84.5,29.5 - parent: 89 - - uid: 16851 + rot: 1.5707963267948966 rad + pos: -86.5,-15.5 + parent: 2 + - uid: 8055 components: - type: Transform - pos: -84.5,30.5 - parent: 89 - - uid: 16852 + rot: 1.5707963267948966 rad + pos: -85.5,-15.5 + parent: 2 + - uid: 8056 components: - type: Transform - pos: -84.5,31.5 - parent: 89 - - uid: 16853 + rot: 1.5707963267948966 rad + pos: -84.5,-15.5 + parent: 2 + - uid: 8057 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 16854 + rot: 1.5707963267948966 rad + pos: -83.5,-15.5 + parent: 2 + - uid: 8058 components: - type: Transform - pos: -84.5,33.5 - parent: 89 - - uid: 16855 + rot: 1.5707963267948966 rad + pos: -83.5,-14.5 + parent: 2 + - uid: 8059 components: - type: Transform - pos: -84.5,34.5 - parent: 89 - - uid: 16856 + rot: 1.5707963267948966 rad + pos: -82.5,-14.5 + parent: 2 + - uid: 8060 components: - type: Transform - pos: -84.5,35.5 - parent: 89 - - uid: 16857 + rot: 1.5707963267948966 rad + pos: -81.5,-14.5 + parent: 2 + - uid: 8061 components: - type: Transform - pos: -85.5,35.5 - parent: 89 - - uid: 16858 + rot: 1.5707963267948966 rad + pos: -80.5,-14.5 + parent: 2 + - uid: 8062 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 16859 + rot: 1.5707963267948966 rad + pos: -96.5,-14.5 + parent: 2 + - uid: 8063 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 16884 + rot: 1.5707963267948966 rad + pos: -97.5,-14.5 + parent: 2 + - uid: 8064 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 16991 + rot: 1.5707963267948966 rad + pos: -98.5,-14.5 + parent: 2 + - uid: 8065 components: - type: Transform - pos: 62.5,-5.5 - parent: 89 - - uid: 17038 + rot: 1.5707963267948966 rad + pos: -100.5,-14.5 + parent: 2 + - uid: 8066 components: - type: Transform - pos: 24.5,29.5 - parent: 89 - - uid: 18393 + rot: 1.5707963267948966 rad + pos: -101.5,-14.5 + parent: 2 + - uid: 8067 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 18394 + rot: 1.5707963267948966 rad + pos: -101.5,-13.5 + parent: 2 + - uid: 8068 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 18395 + rot: 1.5707963267948966 rad + pos: -104.5,-13.5 + parent: 2 + - uid: 8069 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 18396 + rot: 1.5707963267948966 rad + pos: -103.5,-15.5 + parent: 2 + - uid: 8070 components: - type: Transform - pos: 42.5,-11.5 - parent: 89 - - uid: 18397 + rot: 1.5707963267948966 rad + pos: -103.5,-16.5 + parent: 2 + - uid: 8071 components: - type: Transform - pos: 42.5,-12.5 - parent: 89 - - uid: 18398 + rot: 1.5707963267948966 rad + pos: -103.5,-17.5 + parent: 2 + - uid: 8072 components: - type: Transform - pos: 42.5,-13.5 - parent: 89 - - uid: 18399 + rot: 1.5707963267948966 rad + pos: -103.5,-18.5 + parent: 2 + - uid: 8073 components: - type: Transform - pos: 41.5,-13.5 - parent: 89 - - uid: 18400 + rot: 1.5707963267948966 rad + pos: -104.5,-18.5 + parent: 2 + - uid: 8074 components: - type: Transform - pos: 40.5,-13.5 - parent: 89 - - uid: 18401 + rot: 1.5707963267948966 rad + pos: -105.5,-18.5 + parent: 2 + - uid: 8075 components: - type: Transform - pos: 39.5,-13.5 - parent: 89 - - uid: 18402 + rot: 1.5707963267948966 rad + pos: -106.5,-18.5 + parent: 2 + - uid: 8076 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18403 + rot: 1.5707963267948966 rad + pos: -107.5,-18.5 + parent: 2 + - uid: 8077 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 18661 + rot: 1.5707963267948966 rad + pos: -108.5,-18.5 + parent: 2 + - uid: 8078 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - uid: 19543 + rot: 1.5707963267948966 rad + pos: -109.5,-14.5 + parent: 2 + - uid: 8079 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 19672 + rot: 1.5707963267948966 rad + pos: -109.5,-15.5 + parent: 2 + - uid: 8080 components: - type: Transform - pos: -118.5,20.5 - parent: 89 - - uid: 19801 + rot: 1.5707963267948966 rad + pos: -108.5,-15.5 + parent: 2 + - uid: 8081 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 20191 + rot: 1.5707963267948966 rad + pos: -107.5,-15.5 + parent: 2 + - uid: 8082 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 20322 + rot: 1.5707963267948966 rad + pos: -106.5,-15.5 + parent: 2 + - uid: 8083 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 20826 + rot: 1.5707963267948966 rad + pos: -105.5,-15.5 + parent: 2 + - uid: 8084 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 20830 + rot: 1.5707963267948966 rad + pos: -104.5,-15.5 + parent: 2 + - uid: 8085 components: - type: Transform - pos: -6.5,15.5 - parent: 89 - - uid: 20832 + rot: 1.5707963267948966 rad + pos: -109.5,-19.5 + parent: 2 + - uid: 8086 components: - type: Transform - pos: -6.5,16.5 - parent: 89 - - uid: 20833 + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 8087 components: - type: Transform - pos: -7.5,16.5 - parent: 89 - - uid: 20835 + rot: 1.5707963267948966 rad + pos: -109.5,-21.5 + parent: 2 + - uid: 8088 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 20909 + rot: 1.5707963267948966 rad + pos: -109.5,-22.5 + parent: 2 + - uid: 8089 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 20979 + rot: 1.5707963267948966 rad + pos: -108.5,-19.5 + parent: 2 + - uid: 8090 components: - type: Transform - pos: 13.5,-15.5 - parent: 89 - - uid: 20997 + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 8091 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 20998 + rot: 1.5707963267948966 rad + pos: -108.5,-21.5 + parent: 2 + - uid: 8092 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 20999 + rot: 1.5707963267948966 rad + pos: -108.5,-22.5 + parent: 2 + - uid: 8093 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21268 + pos: -87.5,-14.5 + parent: 2 + - uid: 8094 components: - type: Transform - pos: 45.5,19.5 - parent: 89 - - uid: 21280 + pos: -87.5,-12.5 + parent: 2 + - uid: 8095 components: - type: Transform - pos: 46.5,19.5 - parent: 89 - - uid: 21281 + pos: -87.5,-11.5 + parent: 2 + - uid: 8096 components: - type: Transform - pos: 44.5,19.5 - parent: 89 - - uid: 21282 + pos: -87.5,-10.5 + parent: 2 + - uid: 8097 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21308 + pos: -87.5,-9.5 + parent: 2 + - uid: 8098 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 21355 + pos: -86.5,-8.5 + parent: 2 + - uid: 8099 components: - type: Transform - pos: 15.5,19.5 - parent: 89 - - uid: 21600 + pos: -86.5,-9.5 + parent: 2 + - uid: 8100 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 21601 + pos: -86.5,-10.5 + parent: 2 + - uid: 8101 components: - type: Transform - pos: 3.5,13.5 - parent: 89 - - uid: 21602 + pos: -87.5,-8.5 + parent: 2 + - uid: 8102 components: - type: Transform - pos: 2.5,13.5 - parent: 89 - - uid: 21603 + pos: -87.5,-7.5 + parent: 2 + - uid: 8103 components: - type: Transform - pos: 1.5,13.5 - parent: 89 - - uid: 21604 + pos: -88.5,-7.5 + parent: 2 + - uid: 8104 components: - type: Transform - pos: 0.5,13.5 - parent: 89 - - uid: 21605 + pos: -87.5,-7.5 + parent: 2 + - uid: 8105 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 21608 + pos: -86.5,-7.5 + parent: 2 + - uid: 8106 components: - type: Transform - pos: -4.5,12.5 - parent: 89 - - uid: 21609 + pos: -85.5,-7.5 + parent: 2 + - uid: 8107 components: - type: Transform - pos: -5.5,12.5 - parent: 89 - - uid: 21671 + pos: -84.5,-7.5 + parent: 2 + - uid: 8108 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21672 + pos: -136.5,-13.5 + parent: 2 + - uid: 8109 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21724 + pos: -136.5,-14.5 + parent: 2 + - uid: 8110 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 21725 + pos: -138.5,-14.5 + parent: 2 + - uid: 8111 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 21726 + pos: -138.5,-13.5 + parent: 2 + - uid: 8112 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 21952 + pos: -139.5,-13.5 + parent: 2 + - uid: 8113 components: - type: Transform - pos: 54.5,-23.5 - parent: 89 - - uid: 22129 + pos: -140.5,-13.5 + parent: 2 + - uid: 8114 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22130 + pos: -140.5,-14.5 + parent: 2 + - uid: 8115 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 22132 + pos: -141.5,-14.5 + parent: 2 + - uid: 8116 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22139 + pos: -142.5,-14.5 + parent: 2 + - uid: 8117 components: - type: Transform - pos: 56.5,-23.5 - parent: 89 - - uid: 22226 + pos: -143.5,-14.5 + parent: 2 + - uid: 8118 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22228 + pos: -144.5,-14.5 + parent: 2 + - uid: 8119 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22229 + pos: -145.5,-14.5 + parent: 2 + - uid: 8120 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22230 + pos: -146.5,-14.5 + parent: 2 + - uid: 8121 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22231 + pos: -146.5,-13.5 + parent: 2 + - uid: 8122 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22232 + pos: -147.5,-13.5 + parent: 2 + - uid: 8123 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22233 + pos: -148.5,-13.5 + parent: 2 + - uid: 8124 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 22234 + pos: -148.5,-14.5 + parent: 2 + - uid: 8125 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 22237 + pos: -149.5,-13.5 + parent: 2 + - uid: 8126 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22238 + pos: -150.5,-12.5 + parent: 2 + - uid: 8127 components: - type: Transform - pos: 51.5,-23.5 - parent: 89 - - uid: 22239 + pos: -149.5,-12.5 + parent: 2 + - uid: 8128 components: - - type: Transform - pos: 50.5,-23.5 - parent: 89 - - uid: 22240 + - type: Transform + pos: -149.5,-11.5 + parent: 2 + - uid: 8129 components: - type: Transform - pos: 49.5,-23.5 - parent: 89 - - uid: 22241 + pos: -149.5,-10.5 + parent: 2 + - uid: 8130 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22242 + pos: -150.5,-10.5 + parent: 2 + - uid: 8131 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 - - uid: 22243 + pos: -150.5,-9.5 + parent: 2 + - uid: 8132 components: - type: Transform - pos: 46.5,-23.5 - parent: 89 - - uid: 22244 + pos: -150.5,-8.5 + parent: 2 + - uid: 8133 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22245 + pos: -150.5,-7.5 + parent: 2 + - uid: 8134 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22246 + pos: -150.5,-6.5 + parent: 2 + - uid: 8135 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22247 + pos: -150.5,-5.5 + parent: 2 + - uid: 8136 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22248 + pos: -150.5,-4.5 + parent: 2 + - uid: 8137 components: - type: Transform - pos: 45.5,-19.5 - parent: 89 - - uid: 22249 + pos: -149.5,-4.5 + parent: 2 + - uid: 8138 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22250 + pos: -149.5,-3.5 + parent: 2 + - uid: 8139 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22251 + pos: -149.5,-2.5 + parent: 2 + - uid: 8140 components: - type: Transform - pos: 44.5,-18.5 - parent: 89 - - uid: 22252 + pos: -149.5,-1.5 + parent: 2 + - uid: 8141 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 22253 + pos: -148.5,-0.5 + parent: 2 + - uid: 8142 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 22254 + pos: -148.5,-1.5 + parent: 2 + - uid: 8143 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 22255 + pos: -147.5,-1.5 + parent: 2 + - uid: 8144 components: - type: Transform - pos: 40.5,-18.5 - parent: 89 - - uid: 22256 + pos: -146.5,-1.5 + parent: 2 + - uid: 8145 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 22257 + pos: -146.5,-0.5 + parent: 2 + - uid: 8146 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22258 + pos: -145.5,-0.5 + parent: 2 + - uid: 8147 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 22544 + pos: -144.5,-0.5 + parent: 2 + - uid: 8148 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 22559 + pos: -143.5,-0.5 + parent: 2 + - uid: 8149 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 22561 + pos: -142.5,-0.5 + parent: 2 + - uid: 8150 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 23655 + pos: -141.5,-0.5 + parent: 2 + - uid: 8151 components: - type: Transform - pos: -8.5,-17.5 - parent: 22565 - - uid: 23656 + pos: -140.5,-0.5 + parent: 2 + - uid: 8152 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23657 + pos: -140.5,-1.5 + parent: 2 + - uid: 8153 components: - type: Transform - pos: -8.5,-18.5 - parent: 22565 - - uid: 23658 + pos: -139.5,-1.5 + parent: 2 + - uid: 8154 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 23659 + pos: -138.5,-1.5 + parent: 2 + - uid: 8155 components: - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 23660 + pos: -138.5,-0.5 + parent: 2 + - uid: 8156 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 23661 + pos: -137.5,-1.5 + parent: 2 + - uid: 8157 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 23662 + pos: -136.5,-2.5 + parent: 2 + - uid: 8158 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 23663 + pos: -137.5,-2.5 + parent: 2 + - uid: 8159 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 23664 + pos: -137.5,-3.5 + parent: 2 + - uid: 8160 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 23665 + pos: -137.5,-4.5 + parent: 2 + - uid: 8161 components: - type: Transform - pos: -7.5,-2.5 - parent: 22565 - - uid: 23666 + pos: -136.5,-4.5 + parent: 2 + - uid: 8162 components: - type: Transform - pos: -16.5,-2.5 - parent: 22565 - - uid: 23667 + pos: -136.5,-5.5 + parent: 2 + - uid: 8163 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 - - uid: 23668 + pos: -136.5,-6.5 + parent: 2 + - uid: 8164 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23669 + pos: -136.5,-7.5 + parent: 2 + - uid: 8165 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 23670 + pos: -136.5,-8.5 + parent: 2 + - uid: 8166 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 - - uid: 23671 + pos: -136.5,-9.5 + parent: 2 + - uid: 8167 components: - type: Transform - pos: -18.5,2.5 - parent: 22565 - - uid: 23672 + pos: -136.5,-10.5 + parent: 2 + - uid: 8168 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - uid: 23673 + pos: -137.5,-10.5 + parent: 2 + - uid: 8169 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - uid: 23674 + pos: -137.5,-11.5 + parent: 2 + - uid: 8170 components: - type: Transform - pos: -25.5,2.5 - parent: 22565 - - uid: 23675 + pos: -137.5,-12.5 + parent: 2 + - uid: 8171 components: - type: Transform - pos: -27.5,2.5 - parent: 22565 - - uid: 23676 + pos: -137.5,-13.5 + parent: 2 + - uid: 8172 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23677 + rot: 3.141592653589793 rad + pos: -80.5,-15.5 + parent: 2 + - uid: 8173 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23678 + rot: 3.141592653589793 rad + pos: -79.5,-15.5 + parent: 2 + - uid: 8174 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23679 + rot: 3.141592653589793 rad + pos: -78.5,-15.5 + parent: 2 + - uid: 8175 components: - type: Transform - pos: -14.5,-1.5 - parent: 22565 - - uid: 23680 + rot: 3.141592653589793 rad + pos: -78.5,-16.5 + parent: 2 + - uid: 8176 components: - type: Transform - pos: -14.5,-0.5 - parent: 22565 - - uid: 23681 + rot: 3.141592653589793 rad + pos: -78.5,-17.5 + parent: 2 + - uid: 8177 components: - type: Transform - pos: -14.5,0.5 - parent: 22565 - - uid: 23682 + rot: 3.141592653589793 rad + pos: -78.5,-18.5 + parent: 2 + - uid: 8178 components: - type: Transform - pos: -14.5,1.5 - parent: 22565 - - uid: 23683 + rot: 3.141592653589793 rad + pos: -76.5,-20.5 + parent: 2 + - uid: 8179 components: - type: Transform - pos: -14.5,2.5 - parent: 22565 - - uid: 23684 + rot: 3.141592653589793 rad + pos: -76.5,-19.5 + parent: 2 + - uid: 8180 components: - type: Transform - pos: -14.5,3.5 - parent: 22565 - - uid: 23685 + rot: 3.141592653589793 rad + pos: -77.5,-19.5 + parent: 2 + - uid: 8181 components: - type: Transform - pos: -15.5,4.5 - parent: 22565 - - uid: 23686 + rot: 3.141592653589793 rad + pos: -76.5,-18.5 + parent: 2 + - uid: 8182 components: - type: Transform - pos: -15.5,6.5 - parent: 22565 - - uid: 23687 + rot: 3.141592653589793 rad + pos: -76.5,-17.5 + parent: 2 + - uid: 8183 components: - type: Transform - pos: -12.5,7.5 - parent: 22565 - - uid: 23688 + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - uid: 8184 components: - type: Transform - pos: -12.5,8.5 - parent: 22565 - - uid: 23689 + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - uid: 8185 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 23690 + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 2 + - uid: 8186 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 23691 + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - uid: 8187 components: - type: Transform - pos: -10.5,8.5 - parent: 22565 - - uid: 23692 + pos: -114.5,29.5 + parent: 2 + - uid: 8188 components: - type: Transform - pos: -9.5,8.5 - parent: 22565 - - uid: 23693 + pos: -120.5,24.5 + parent: 2 + - uid: 8189 components: - type: Transform - pos: -8.5,8.5 - parent: 22565 - - uid: 23694 + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 8190 components: - type: Transform - pos: -8.5,8.5 - parent: 22565 - - uid: 23695 + rot: 3.141592653589793 rad + pos: -102.5,-13.5 + parent: 2 + - uid: 8191 components: - type: Transform - pos: -8.5,7.5 - parent: 22565 - - uid: 23696 + pos: -94.5,-14.5 + parent: 2 + - uid: 8192 components: - type: Transform - pos: -8.5,6.5 - parent: 22565 - - uid: 23697 + pos: -118.5,27.5 + parent: 2 + - uid: 8193 components: - type: Transform - pos: -8.5,5.5 - parent: 22565 - - uid: 23698 + pos: -95.5,-14.5 + parent: 2 + - uid: 8194 components: - type: Transform - pos: -8.5,4.5 - parent: 22565 - - uid: 23699 + pos: -116.5,27.5 + parent: 2 + - uid: 8195 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 - - uid: 23700 + pos: -119.5,26.5 + parent: 2 + - uid: 8196 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 - - uid: 23701 + pos: -94.5,-13.5 + parent: 2 + - uid: 8197 components: - type: Transform - pos: -9.5,3.5 - parent: 22565 - - uid: 23702 + pos: -115.5,27.5 + parent: 2 + - uid: 8198 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 - - uid: 23703 + rot: 3.141592653589793 rad + pos: -99.5,-14.5 + parent: 2 + - uid: 8199 components: - type: Transform - pos: -11.5,3.5 - parent: 22565 - - uid: 23704 + pos: -114.5,28.5 + parent: 2 + - uid: 8200 components: - type: Transform - pos: -12.5,3.5 - parent: 22565 - - uid: 23705 + rot: 3.141592653589793 rad + pos: -103.5,-14.5 + parent: 2 + - uid: 8201 components: - type: Transform - pos: -13.5,3.5 - parent: 22565 - - uid: 23706 + rot: 3.141592653589793 rad + pos: -103.5,-13.5 + parent: 2 + - uid: 8202 components: - type: Transform - pos: -14.5,3.5 - parent: 22565 - - uid: 23707 + pos: -119.5,24.5 + parent: 2 + - uid: 8203 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 - - uid: 23708 + pos: -122.5,18.5 + parent: 2 + - uid: 8204 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 - - uid: 23709 + rot: 1.5707963267948966 rad + pos: -125.5,15.5 + parent: 2 + - uid: 8205 components: - type: Transform - pos: -15.5,4.5 - parent: 22565 - - uid: 23710 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - uid: 8206 components: - type: Transform - pos: -15.5,5.5 - parent: 22565 - - uid: 23711 + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 8207 components: - type: Transform - pos: -15.5,7.5 - parent: 22565 - - uid: 23712 + pos: -126.5,15.5 + parent: 2 + - uid: 8208 components: - type: Transform - pos: -15.5,8.5 - parent: 22565 - - uid: 23713 + pos: -124.5,18.5 + parent: 2 + - uid: 8209 components: - type: Transform - pos: -14.5,8.5 - parent: 22565 - - uid: 23714 + pos: -126.5,18.5 + parent: 2 + - uid: 8210 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 - - uid: 24729 + pos: -125.5,18.5 + parent: 2 + - uid: 8211 components: - type: Transform - pos: 7.5,-18.5 - parent: 89 - - uid: 24731 + pos: -122.5,15.5 + parent: 2 + - uid: 8212 components: - type: Transform - pos: 8.5,-18.5 - parent: 89 - - uid: 24734 + pos: -121.5,16.5 + parent: 2 + - uid: 24062 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 24735 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 23919 + - uid: 24063 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 24736 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 23919 + - uid: 27502 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 24737 + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 27260 + - uid: 27503 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 24738 + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 27260 + - uid: 27504 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 24739 + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 27260 + - uid: 27505 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 - - uid: 24740 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 27260 + - uid: 27506 components: - type: Transform - pos: 12.5,-19.5 - parent: 89 - - uid: 24741 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 27260 + - uid: 27507 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 - - uid: 24742 + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 27260 + - uid: 27508 components: - type: Transform - pos: 14.5,-19.5 - parent: 89 - - uid: 24743 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 27260 + - uid: 27509 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 24744 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 27260 + - uid: 27510 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 24745 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 27260 + - uid: 27511 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 24746 + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 27260 + - uid: 27512 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24747 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 27260 + - uid: 27513 components: - type: Transform - pos: 17.5,-17.5 - parent: 89 - - uid: 24748 + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 27260 + - uid: 27514 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24751 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 27260 + - uid: 27515 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24752 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 27260 + - uid: 27516 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 24753 + pos: -0.5,-15.5 + parent: 27260 + - uid: 27517 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 24754 + pos: 0.5,-15.5 + parent: 27260 + - uid: 27518 components: - type: Transform - pos: 21.5,-16.5 - parent: 89 - - uid: 24755 + pos: 1.5,-15.5 + parent: 27260 + - uid: 27519 components: - type: Transform - pos: 22.5,-16.5 - parent: 89 - - uid: 24756 + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 27260 + - uid: 27520 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 24757 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 27260 + - uid: 27521 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 24758 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 27260 + - uid: 27522 components: - type: Transform - pos: 25.5,-16.5 - parent: 89 - - uid: 24759 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 27260 + - uid: 27523 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24760 + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 27260 + - uid: 27524 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 25483 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 27260 + - uid: 27525 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25484 + pos: 5.5,-0.5 + parent: 27260 + - uid: 27526 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - uid: 25485 + pos: 5.5,-2.5 + parent: 27260 + - uid: 27527 components: - type: Transform - pos: 1.5,-11.5 - parent: 18153 - - uid: 25486 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 27260 + - uid: 27528 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 - - uid: 25487 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 27260 + - uid: 27529 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25488 + pos: -9.5,-5.5 + parent: 27260 + - uid: 27530 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 - - uid: 25489 + pos: -10.5,-3.5 + parent: 27260 + - uid: 27531 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 - - uid: 25654 + pos: -10.5,0.5 + parent: 27260 + - uid: 27532 components: - type: Transform - pos: -12.5,5.5 - parent: 22565 - - uid: 25655 + pos: -8.5,0.5 + parent: 27260 + - uid: 27533 components: - type: Transform - pos: -12.5,4.5 - parent: 22565 - - uid: 25656 + pos: -8.5,-3.5 + parent: 27260 + - uid: 27534 components: - type: Transform - pos: -12.5,6.5 - parent: 22565 - - uid: 25675 + pos: 9.5,-3.5 + parent: 27260 + - uid: 27535 components: - type: Transform - pos: -119.5,20.5 - parent: 89 - - uid: 25855 + pos: 9.5,2.5 + parent: 27260 + - uid: 27536 components: - type: Transform - pos: -120.5,20.5 - parent: 89 - - uid: 25856 + pos: 11.5,2.5 + parent: 27260 + - uid: 27537 components: - type: Transform - pos: -121.5,20.5 - parent: 89 - - uid: 25857 + pos: 11.5,-3.5 + parent: 27260 + - uid: 27538 components: - type: Transform - pos: -122.5,20.5 - parent: 89 - - uid: 25858 + pos: 10.5,-0.5 + parent: 27260 + - uid: 27539 components: - type: Transform - pos: -123.5,20.5 - parent: 89 -- proto: CableMVStack + pos: 10.5,-6.5 + parent: 27260 +- proto: Cautery entities: - - uid: 14944 + - uid: 8213 components: - type: Transform - pos: -9.465677,-35.477985 - parent: 89 - - uid: 15045 + pos: -12.431932,21.596758 + parent: 2 + - uid: 8214 components: - type: Transform - pos: -133.55994,-2.31929 - parent: 89 - - uid: 15288 + pos: -1.7167411,15.760399 + parent: 2 +- proto: CentcomComputerComms + entities: + - uid: 24064 components: - type: Transform - pos: -115.52017,14.53778 - parent: 89 - - uid: 18186 + pos: 3.5,6.5 + parent: 23919 +- proto: Chair + entities: + - uid: 8215 components: - type: Transform - pos: -133.73679,-2.6017027 - parent: 89 - - uid: 18250 + rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 + - uid: 8216 components: - type: Transform - pos: 35.409824,32.517487 - parent: 89 - - uid: 19704 + rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - uid: 8217 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19705 + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 8218 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19706 + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 8219 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19737 + rot: 3.141592653589793 rad + pos: -62.5,43.5 + parent: 2 + - uid: 8220 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19738 + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - uid: 8221 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19739 + pos: -77.5,-23.5 + parent: 2 + - uid: 8222 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19740 + rot: 3.141592653589793 rad + pos: -77.5,-25.5 + parent: 2 + - uid: 8223 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 20084 + rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 2 + - uid: 8224 components: - type: Transform - pos: -115.50875,5.940868 - parent: 89 - - uid: 21095 + pos: -66.5,1.5 + parent: 2 + - uid: 8225 components: - type: Transform - pos: -103.143776,-2.2963343 - parent: 89 - - uid: 21096 + pos: -65.5,1.5 + parent: 2 + - uid: 8226 components: - type: Transform - pos: -102.487526,-2.2963343 - parent: 89 -- proto: CableMVStack1 - entities: - - uid: 8340 + pos: -63.5,1.5 + parent: 2 + - uid: 8227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.2917204,32.569008 - parent: 89 -- proto: CableTerminal - entities: - - uid: 490 + pos: -62.5,1.5 + parent: 2 + - uid: 8228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-3.5 - parent: 89 - - uid: 8563 + pos: -60.5,1.5 + parent: 2 + - uid: 8229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,17.5 - parent: 89 - - uid: 8566 + pos: -59.5,1.5 + parent: 2 + - uid: 8230 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,17.5 - parent: 89 - - uid: 8568 + pos: -105.5,8.5 + parent: 2 + - uid: 8231 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,17.5 - parent: 89 - - uid: 11666 + pos: -103.5,8.5 + parent: 2 + - uid: 8232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 89 - - uid: 15859 + pos: -100.5,-1.5 + parent: 2 + - uid: 8233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,17.5 - parent: 89 - - uid: 15881 + pos: -101.5,-1.5 + parent: 2 + - uid: 8234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,17.5 - parent: 89 - - uid: 16511 + pos: -102.5,-1.5 + parent: 2 + - uid: 8235 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,17.5 - parent: 89 - - uid: 16582 + pos: -100.5,-3.5 + parent: 2 + - uid: 8236 components: - type: Transform - pos: -116.5,14.5 - parent: 89 - - uid: 20277 + rot: 3.141592653589793 rad + pos: -101.5,-3.5 + parent: 2 + - uid: 8237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 89 - - uid: 22122 + rot: 3.141592653589793 rad + pos: -102.5,-3.5 + parent: 2 + - uid: 8238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-12.5 - parent: 89 - - uid: 22123 + rot: 3.141592653589793 rad + pos: -103.5,-3.5 + parent: 2 + - uid: 8239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-11.5 - parent: 89 - - uid: 22361 + pos: -103.5,-1.5 + parent: 2 + - uid: 8240 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,-4.5 - parent: 89 - - uid: 23715 + pos: -104.5,-2.5 + parent: 2 + - uid: 8241 components: - type: Transform - pos: -5.5,-16.5 - parent: 22565 -- proto: CannabisSeeds - entities: - - uid: 8060 + rot: -1.5707963267948966 rad + pos: -91.5,3.5 + parent: 2 + - uid: 8242 components: - type: Transform - pos: -7.856884,37.448025 - parent: 89 - - uid: 8061 + rot: -1.5707963267948966 rad + pos: -91.5,2.5 + parent: 2 + - uid: 8243 components: - type: Transform - pos: -7.888134,36.5574 - parent: 89 - - uid: 8062 + rot: -1.5707963267948966 rad + pos: -51.5,45.5 + parent: 2 + - uid: 8244 components: - type: Transform - pos: -7.872509,35.635525 - parent: 89 -- proto: CapacitorStockPart - entities: - - uid: 84 + rot: -1.5707963267948966 rad + pos: -51.5,41.5 + parent: 2 + - uid: 8245 components: - type: Transform - pos: -16.616455,-15.321603 - parent: 89 - - uid: 88 + rot: 1.5707963267948966 rad + pos: -62.5,35.5 + parent: 2 + - uid: 8246 components: - type: Transform - pos: -16.522705,-15.493478 - parent: 89 - - uid: 7056 + rot: 1.5707963267948966 rad + pos: -62.5,34.5 + parent: 2 + - uid: 8247 components: - type: Transform - pos: -102.642654,-10.369977 - parent: 89 - - uid: 7057 + rot: 1.5707963267948966 rad + pos: -62.5,33.5 + parent: 2 + - uid: 8248 components: - type: Transform - pos: -102.642654,-10.682477 - parent: 89 - - uid: 7058 + rot: -1.5707963267948966 rad + pos: -64.5,32.5 + parent: 2 + - uid: 8249 components: - type: Transform - pos: -102.43953,-10.682477 - parent: 89 - - uid: 7059 + rot: -1.5707963267948966 rad + pos: -64.5,33.5 + parent: 2 + - uid: 8250 components: - type: Transform - pos: -102.392654,-10.448102 - parent: 89 - - uid: 7060 + rot: -1.5707963267948966 rad + pos: -64.5,34.5 + parent: 2 + - uid: 8251 components: - type: Transform - pos: -102.25203,-10.385602 - parent: 89 - - uid: 7061 + rot: -1.5707963267948966 rad + pos: -64.5,35.5 + parent: 2 + - uid: 8252 components: - type: Transform - pos: -102.18953,-10.666852 - parent: 89 - - uid: 20791 + rot: -1.5707963267948966 rad + pos: -64.5,36.5 + parent: 2 + - uid: 8253 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.48644,-10.473882 - parent: 89 -- proto: CaptainIDCard - entities: - - uid: 838 - components: - - type: Transform - pos: 47.43045,10.357418 - parent: 89 -- proto: CarbonDioxideCanister - entities: - - uid: 1139 + pos: -60.5,28.5 + parent: 2 + - uid: 8254 components: - type: Transform - pos: -96.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: CargoIDCard - entities: - - uid: 23716 + rot: 3.141592653589793 rad + pos: -59.5,28.5 + parent: 2 + - uid: 8255 components: - type: Transform - pos: 6.5659084,-1.4425423 - parent: 22565 -- proto: Carpet - entities: - - uid: 2843 + rot: 3.141592653589793 rad + pos: -58.5,28.5 + parent: 2 + - uid: 8256 components: - type: Transform - pos: 33.5,-1.5 - parent: 89 - - uid: 2847 + rot: 3.141592653589793 rad + pos: -57.5,28.5 + parent: 2 + - uid: 8257 components: - type: Transform - pos: 34.5,-2.5 - parent: 89 - - uid: 3032 + rot: 1.5707963267948966 rad + pos: -67.5,41.5 + parent: 2 + - uid: 8258 components: - type: Transform - pos: 34.5,-1.5 - parent: 89 - - uid: 3041 + rot: 1.5707963267948966 rad + pos: -67.5,42.5 + parent: 2 + - uid: 8259 components: - type: Transform - pos: 34.5,-3.5 - parent: 89 - - uid: 3043 + rot: 1.5707963267948966 rad + pos: -67.5,43.5 + parent: 2 + - uid: 8260 components: - type: Transform - pos: 33.5,-2.5 - parent: 89 - - uid: 3064 + rot: 1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - uid: 8261 components: - type: Transform - pos: 33.5,-3.5 - parent: 89 - - uid: 3065 + pos: -62.5,45.5 + parent: 2 + - uid: 8262 components: - type: Transform - pos: 32.5,-3.5 - parent: 89 - - uid: 3066 + pos: -61.5,45.5 + parent: 2 + - uid: 8263 components: - type: Transform - pos: 32.5,-2.5 - parent: 89 - - uid: 3067 + pos: -60.5,45.5 + parent: 2 + - uid: 8264 components: - type: Transform - pos: 32.5,-1.5 - parent: 89 - - uid: 3980 + rot: 1.5707963267948966 rad + pos: -89.5,7.5 + parent: 2 + - uid: 8265 components: - type: Transform - pos: -30.5,-5.5 - parent: 89 - - uid: 3981 + rot: 1.5707963267948966 rad + pos: -89.5,8.5 + parent: 2 + - uid: 8266 components: - type: Transform - pos: -30.5,-6.5 - parent: 89 - - uid: 3982 + pos: -63.5,5.5 + parent: 2 + - uid: 8267 components: - type: Transform - pos: -30.5,-7.5 - parent: 89 - - uid: 3983 + rot: 1.5707963267948966 rad + pos: -69.5,12.5 + parent: 2 + - uid: 8268 components: - type: Transform - pos: -29.5,-5.5 - parent: 89 - - uid: 3984 + rot: 1.5707963267948966 rad + pos: -69.5,13.5 + parent: 2 + - uid: 8269 components: - type: Transform - pos: -29.5,-6.5 - parent: 89 - - uid: 3985 + pos: -62.5,5.5 + parent: 2 + - uid: 8270 components: - type: Transform - pos: -29.5,-7.5 - parent: 89 - - uid: 10474 + pos: -69.5,5.5 + parent: 2 + - uid: 8271 components: - type: Transform - pos: 22.5,5.5 - parent: 89 - - uid: 10475 + pos: -68.5,5.5 + parent: 2 + - uid: 8272 components: - type: Transform - pos: 22.5,6.5 - parent: 89 - - uid: 10476 + pos: -98.5,18.5 + parent: 2 + - uid: 8273 components: - type: Transform - pos: 22.5,7.5 - parent: 89 - - uid: 10477 + pos: -97.5,18.5 + parent: 2 + - uid: 8274 components: - type: Transform - pos: 21.5,5.5 - parent: 89 - - uid: 10478 + rot: 3.141592653589793 rad + pos: -122.5,21.5 + parent: 2 + - uid: 8275 components: - type: Transform - pos: 21.5,6.5 - parent: 89 - - uid: 10479 + rot: 3.141592653589793 rad + pos: -121.5,21.5 + parent: 2 + - uid: 8276 components: - type: Transform - pos: 21.5,7.5 - parent: 89 - - uid: 10480 + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 2 + - uid: 8277 components: - type: Transform - pos: 20.5,5.5 - parent: 89 - - uid: 10481 + rot: 1.5707963267948966 rad + pos: -45.5,21.5 + parent: 2 + - uid: 8278 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - uid: 10482 + rot: 3.141592653589793 rad + pos: -79.5,7.5 + parent: 2 + - uid: 8279 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 17078 + rot: 3.141592653589793 rad + pos: -78.5,7.5 + parent: 2 + - uid: 8280 components: - type: Transform - pos: -78.5,-0.5 - parent: 89 - - uid: 17079 + rot: 1.5707963267948966 rad + pos: -89.5,9.5 + parent: 2 + - uid: 8281 components: - type: Transform - pos: -78.5,-1.5 - parent: 89 - - uid: 17080 + rot: -1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 8282 components: - type: Transform - pos: -79.5,-0.5 - parent: 89 - - uid: 17081 + rot: 1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 8283 components: - type: Transform - pos: -79.5,-1.5 - parent: 89 -- proto: CarpetBlue - entities: - - uid: 793 + rot: 1.5707963267948966 rad + pos: -86.5,33.5 + parent: 2 + - uid: 8284 components: - type: Transform - pos: 46.5,13.5 - parent: 89 - - uid: 21558 + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 8285 components: - type: Transform - pos: 18.5,17.5 - parent: 89 - - uid: 21559 + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 2 + - uid: 8286 components: - type: Transform - pos: 18.5,18.5 - parent: 89 - - uid: 21560 + pos: -2.5,-27.5 + parent: 2 + - uid: 8287 components: - type: Transform - pos: 18.5,19.5 - parent: 89 - - uid: 21561 + rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 2 + - uid: 8288 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 21562 + pos: -0.5,-27.5 + parent: 2 + - uid: 8289 components: - type: Transform - pos: 19.5,18.5 - parent: 89 - - uid: 21563 + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + - uid: 8290 components: - type: Transform - pos: 19.5,19.5 - parent: 89 - - uid: 21564 + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 8291 components: - type: Transform - pos: 20.5,17.5 - parent: 89 - - uid: 21566 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 8292 components: - type: Transform - pos: 20.5,18.5 - parent: 89 - - uid: 21568 + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 8293 components: - type: Transform - pos: 20.5,19.5 - parent: 89 -- proto: CarpetChapel - entities: - - uid: 6754 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 8294 components: - type: Transform - pos: -52.5,-1.5 - parent: 89 - - uid: 6755 + pos: 4.5,-10.5 + parent: 2 + - uid: 8295 components: - type: Transform - pos: -52.5,0.5 - parent: 89 - - uid: 6756 + rot: -1.5707963267948966 rad + pos: -64.5,41.5 + parent: 2 + - uid: 8296 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 6757 + rot: 1.5707963267948966 rad + pos: -60.5,42.5 + parent: 2 + - uid: 8297 components: - type: Transform - pos: -48.5,0.5 - parent: 89 - - uid: 6758 + rot: 3.141592653589793 rad + pos: -63.5,43.5 + parent: 2 + - uid: 8298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,1.5 - parent: 89 - - uid: 6759 + rot: 3.141592653589793 rad + pos: -61.5,43.5 + parent: 2 + - uid: 8299 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 89 - - uid: 6760 + pos: -33.5,-14.5 + parent: 2 + - uid: 8300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 89 - - uid: 6761 + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 8301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 89 - - uid: 6762 + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 8302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,1.5 - parent: 89 - - uid: 6763 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 8303 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 89 - - uid: 6764 + pos: -14.5,24.5 + parent: 2 + - uid: 8304 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-0.5 - parent: 89 - - uid: 6765 + pos: -13.5,24.5 + parent: 2 + - uid: 8305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,1.5 - parent: 89 - - uid: 6766 + pos: 13.5,3.5 + parent: 2 + - uid: 8306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,0.5 - parent: 89 - - uid: 6767 + pos: 12.5,3.5 + parent: 2 + - uid: 8307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-1.5 - parent: 89 - - uid: 6768 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - uid: 8308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 89 - - uid: 6770 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 8309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 89 - - uid: 6773 + pos: 47.5,-30.5 + parent: 2 + - uid: 8310 components: - type: Transform - pos: -52.5,-3.5 - parent: 89 - - uid: 6774 + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 8311 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-2.5 - parent: 89 - - uid: 6775 + pos: 36.5,-27.5 + parent: 2 + - uid: 8312 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 89 - - uid: 6776 + pos: 36.5,-26.5 + parent: 2 + - uid: 8313 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 89 - - uid: 6777 + pos: 36.5,-25.5 + parent: 2 + - uid: 8314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-2.5 - parent: 89 - - uid: 6778 + rot: -1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 8315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-2.5 - parent: 89 - - uid: 6779 + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 8316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-2.5 - parent: 89 - - uid: 6780 + pos: 4.5,-0.5 + parent: 2 + - uid: 8317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 89 - - uid: 6781 + pos: 5.5,-0.5 + parent: 2 + - uid: 8318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 89 - - uid: 6782 + pos: 2.5,-1.5 + parent: 2 + - uid: 8319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 89 - - uid: 6783 + pos: 2.5,-2.5 + parent: 2 + - uid: 8320 components: - type: Transform - pos: -48.5,-3.5 - parent: 89 - - uid: 6785 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 8321 components: - type: Transform - pos: -50.5,-3.5 - parent: 89 -- proto: CarpetGreen - entities: - - uid: 9973 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 8322 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 9974 + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 8323 components: - type: Transform - pos: -51.5,9.5 - parent: 89 - - uid: 9975 + pos: -5.5,-6.5 + parent: 2 + - uid: 25613 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - uid: 9976 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 24450 + - uid: 25614 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 9977 + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 24450 + - uid: 25615 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 9978 + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 24450 + - uid: 25616 components: - type: Transform - pos: -50.5,8.5 - parent: 89 - - uid: 9979 + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 24450 + - uid: 25617 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 9980 + pos: -30.5,12.5 + parent: 24450 + - uid: 25618 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 9981 + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 24450 + - uid: 25619 components: - type: Transform - pos: -49.5,8.5 - parent: 89 - - uid: 9982 + pos: 6.5,12.5 + parent: 24450 + - uid: 25620 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 9983 + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 24450 + - uid: 25621 components: - type: Transform - pos: -48.5,9.5 - parent: 89 - - uid: 9984 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 + parent: 24450 + - uid: 25622 components: - type: Transform - pos: -48.5,8.5 - parent: 89 - - uid: 10114 + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 24450 + - uid: 25623 components: - type: Transform - pos: -26.5,31.5 - parent: 89 - - uid: 10265 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 24450 + - uid: 25624 components: - type: Transform - pos: -26.5,32.5 - parent: 89 -- proto: CarpetOrange - entities: - - uid: 4513 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 24450 + - uid: 25625 components: - type: Transform - pos: -73.5,-17.5 - parent: 89 - - uid: 4575 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 24450 + - uid: 25626 components: - type: Transform - pos: -49.5,1.5 - parent: 89 - - uid: 4644 + rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 24450 + - uid: 25627 components: - type: Transform - pos: -50.5,0.5 - parent: 89 - - uid: 4645 + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 24450 + - uid: 25628 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 - - uid: 4646 + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 24450 + - uid: 25629 components: - type: Transform - pos: -50.5,-0.5 - parent: 89 - - uid: 4647 + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 24450 + - uid: 25630 components: - type: Transform - pos: -49.5,0.5 - parent: 89 - - uid: 4648 + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 24450 + - uid: 25631 components: - type: Transform - pos: -49.5,-0.5 - parent: 89 - - uid: 4649 + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 24450 + - uid: 25632 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 - - uid: 5113 + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 24450 + - uid: 25633 components: - type: Transform - pos: -50.5,1.5 - parent: 89 - - uid: 6043 + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 24450 + - uid: 25634 components: - type: Transform - pos: -73.5,-16.5 - parent: 89 - - uid: 6113 + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 24450 + - uid: 25635 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 6114 + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 24450 + - uid: 25636 components: - type: Transform - pos: -72.5,-17.5 - parent: 89 - - uid: 6115 + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 24450 + - uid: 25637 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 6116 + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 24450 +- proto: ChairCarp + entities: + - uid: 8324 components: - type: Transform - pos: -71.5,-17.5 - parent: 89 - - uid: 6117 + rot: 3.141592653589793 rad + pos: -76.5,-3.5 + parent: 2 + - uid: 8325 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 6118 + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - uid: 8326 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 -- proto: CarpetPurple + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 +- proto: ChairFolding entities: - - uid: 171 + - uid: 8327 components: - type: Transform - pos: 4.5,-31.5 - parent: 89 - - uid: 172 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - uid: 8328 components: - type: Transform - pos: 4.5,-30.5 - parent: 89 - - uid: 173 + rot: 1.5707963267948966 rad + pos: -8.5,41.5 + parent: 2 + - uid: 8329 components: - type: Transform - pos: 3.5,-30.5 - parent: 89 - - uid: 174 + pos: -7.5,42.5 + parent: 2 + - uid: 8330 components: - type: Transform - pos: 3.5,-31.5 - parent: 89 - - uid: 175 + pos: -6.5,42.5 + parent: 2 + - uid: 8331 components: - type: Transform - pos: 2.5,-31.5 - parent: 89 - - uid: 176 + rot: 1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - uid: 8332 components: - type: Transform - pos: 2.5,-30.5 - parent: 89 - - uid: 177 + pos: -13.5,9.5 + parent: 2 + - uid: 8333 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 178 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 8334 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 - - uid: 4564 + pos: -12.5,9.5 + parent: 2 + - uid: 8335 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-3.5 - parent: 89 - - uid: 4880 + pos: -10.5,6.5 + parent: 2 + - uid: 8336 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-2.5 - parent: 89 - - uid: 4881 + pos: -13.5,6.5 + parent: 2 + - uid: 8337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-2.5 - parent: 89 - - uid: 5005 + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + - uid: 8338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-3.5 - parent: 89 - - uid: 5006 + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-3.5 - parent: 89 - - uid: 5489 + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 8340 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-2.5 - parent: 89 - - uid: 9942 + pos: -0.5,11.5 + parent: 2 + - uid: 8341 components: - type: Transform - pos: -46.5,9.5 - parent: 89 - - uid: 9943 + pos: 6.5,14.5 + parent: 2 + - uid: 8342 components: - type: Transform - pos: -46.5,8.5 - parent: 89 - - uid: 9985 + pos: 10.5,14.5 + parent: 2 + - uid: 8343 components: - type: Transform - pos: -45.5,9.5 - parent: 89 - - uid: 9986 + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 8344 components: - type: Transform - pos: -53.5,9.5 - parent: 89 - - uid: 9987 + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - uid: 8345 components: - type: Transform - pos: -53.5,8.5 - parent: 89 - - uid: 9988 + pos: -0.5,13.5 + parent: 2 + - uid: 8346 components: - type: Transform - pos: -46.5,7.5 - parent: 89 - - uid: 9993 + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 2 + - uid: 8347 components: - type: Transform - pos: -45.5,8.5 - parent: 89 - - uid: 9994 + rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 2 + - uid: 8348 components: - type: Transform - pos: -45.5,7.5 - parent: 89 - - uid: 9995 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - uid: 8349 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 9996 + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 8350 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 9997 + rot: 1.5707963267948966 rad + pos: -80.52398,-2.1615353 + parent: 2 + - uid: 8351 components: - type: Transform - pos: -44.5,7.5 - parent: 89 - - uid: 9998 + pos: 44.5,-37.5 + parent: 2 + - uid: 8352 components: - type: Transform - pos: -43.5,9.5 - parent: 89 - - uid: 9999 + rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 8353 components: - type: Transform - pos: -43.5,8.5 - parent: 89 - - uid: 10000 + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 8354 components: - type: Transform - pos: -43.5,7.5 - parent: 89 -- proto: CarpetSBlue - entities: - - uid: 792 + rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - uid: 8355 components: - type: Transform - pos: 42.5,14.5 - parent: 89 - - uid: 1866 + rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 2 + - uid: 8356 components: - type: Transform - pos: 40.5,13.5 - parent: 89 - - uid: 1867 + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 2 + - uid: 8357 components: - type: Transform - pos: 40.5,12.5 - parent: 89 - - uid: 1868 + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 + - uid: 8358 components: - type: Transform - pos: 41.5,13.5 - parent: 89 - - uid: 1869 + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 8359 components: - type: Transform - pos: 41.5,12.5 - parent: 89 - - uid: 3197 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - uid: 8360 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 3205 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 8361 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 3283 + rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 8362 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 17082 + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 8363 components: - type: Transform - pos: -74.5,-0.5 - parent: 89 - - uid: 17083 + pos: 46.5,-37.5 + parent: 2 + - uid: 25638 components: - type: Transform - pos: -74.5,-1.5 - parent: 89 - - uid: 17084 + pos: 1.5,10.5 + parent: 24450 + - uid: 25639 components: - type: Transform - pos: -73.5,-0.5 - parent: 89 - - uid: 17085 + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 24450 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 8364 components: - type: Transform - pos: -73.5,-1.5 - parent: 89 - - uid: 17255 + rot: 3.141592653589793 rad + pos: 11.471899,11.74773 + parent: 2 + - uid: 8365 components: - type: Transform - pos: 58.5,4.5 - parent: 89 - - uid: 17257 + pos: -95.61365,13.948328 + parent: 2 + - uid: 8366 components: - type: Transform - pos: 58.5,5.5 - parent: 89 - - uid: 17258 + pos: -95.22208,13.431689 + parent: 2 + - uid: 8367 components: - type: Transform - pos: 58.5,6.5 - parent: 89 - - uid: 17259 + pos: -5.5526714,40.87957 + parent: 2 + - uid: 8368 components: - type: Transform - pos: 58.5,3.5 - parent: 89 - - uid: 17260 + rot: 3.141592653589793 rad + pos: 11.471899,11.669605 + parent: 2 + - uid: 8369 components: - type: Transform - pos: 58.5,2.5 - parent: 89 - - uid: 17261 + rot: 3.141592653589793 rad + pos: 11.471899,11.74773 + parent: 2 + - uid: 8370 components: - type: Transform - pos: 57.5,5.5 - parent: 89 - - uid: 17262 + rot: 3.141592653589793 rad + pos: 11.518774,11.59148 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 8371 components: - type: Transform - pos: 57.5,4.5 - parent: 89 - - uid: 17263 + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 8372 components: - type: Transform - pos: 57.5,3.5 - parent: 89 - - uid: 17264 + pos: -15.5,-19.5 + parent: 2 + - uid: 8373 components: - type: Transform - pos: 59.5,5.5 - parent: 89 - - uid: 17265 + rot: 1.5707963267948966 rad + pos: 43.5,5.5 + parent: 2 + - uid: 8374 components: - type: Transform - pos: 59.5,4.5 - parent: 89 - - uid: 17266 + rot: -1.5707963267948966 rad + pos: 42.5,9.5 + parent: 2 + - uid: 8375 components: - type: Transform - pos: 59.5,3.5 - parent: 89 - - uid: 17941 + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 8376 components: - type: Transform - pos: -23.5,9.5 - parent: 89 - - uid: 19522 + pos: 25.5,-4.5 + parent: 2 + - uid: 8377 components: - type: Transform - pos: -23.5,8.5 - parent: 89 - - uid: 19523 + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 8378 components: - type: Transform - pos: -22.5,8.5 - parent: 89 - - uid: 19524 + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 8379 components: - type: Transform - pos: -22.5,9.5 - parent: 89 - - uid: 19965 + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 8380 components: - type: Transform - pos: 25.5,43.5 - parent: 89 - - uid: 19966 + rot: 3.141592653589793 rad + pos: -62.5,-4.5 + parent: 2 + - uid: 8381 components: - type: Transform - pos: 25.5,42.5 - parent: 89 - - uid: 19967 + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - uid: 8382 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - uid: 19968 + pos: -44.5,9.5 + parent: 2 + - uid: 8383 components: - type: Transform - pos: 24.5,42.5 - parent: 89 - - uid: 19969 + rot: 3.141592653589793 rad + pos: -44.5,7.5 + parent: 2 + - uid: 8384 components: - type: Transform - pos: 23.5,43.5 - parent: 89 - - uid: 19970 + rot: 1.5707963267948966 rad + pos: -46.5,8.5 + parent: 2 + - uid: 8385 components: - type: Transform - pos: 23.5,42.5 - parent: 89 - - uid: 20719 + pos: -19.5,6.5 + parent: 2 + - uid: 8386 components: - type: Transform - pos: 42.5,13.5 - parent: 89 -- proto: Catwalk - entities: - - uid: 727 + rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 8387 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 730 + rot: 3.141592653589793 rad + pos: -44.5,1.5 + parent: 2 + - uid: 8388 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 731 + pos: -104.5,10.5 + parent: 2 + - uid: 8389 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 733 + rot: -1.5707963267948966 rad + pos: -99.5,-2.5 + parent: 2 + - uid: 8390 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 734 + pos: -85.5,12.5 + parent: 2 + - uid: 8391 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 735 + rot: 3.141592653589793 rad + pos: -88.5,13.5 + parent: 2 + - uid: 8392 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 736 + pos: -60.5,8.5 + parent: 2 + - uid: 8393 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 737 + rot: 1.5707963267948966 rad + pos: -59.5,8.5 + parent: 2 + - uid: 8394 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 738 + rot: 1.5707963267948966 rad + pos: -59.5,21.5 + parent: 2 + - uid: 8395 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 740 + rot: 3.141592653589793 rad + pos: -61.5,21.5 + parent: 2 + - uid: 8396 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 741 + rot: 3.141592653589793 rad + pos: -118.5,5.5 + parent: 2 + - uid: 8397 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 742 + rot: 3.141592653589793 rad + pos: -104.5,20.5 + parent: 2 + - uid: 8398 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 743 + pos: -79.5,-0.5 + parent: 2 + - uid: 8399 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 744 + pos: -78.5,-0.5 + parent: 2 + - uid: 8400 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 745 + rot: 3.141592653589793 rad + pos: -72.5,-6.5 + parent: 2 + - uid: 8401 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 746 + rot: 1.5707963267948966 rad + pos: -20.5,28.5 + parent: 2 + - uid: 8402 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 747 + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 8403 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 748 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 8404 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 749 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 8405 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 750 + rot: 1.5707963267948966 rad + pos: -84.5,16.5 + parent: 2 + - uid: 8406 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 751 + pos: 13.5,6.5 + parent: 2 + - uid: 8407 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 752 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 8408 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 753 + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - uid: 8409 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 754 + pos: 18.5,12.5 + parent: 2 + - uid: 8410 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 755 + rot: 1.5707963267948966 rad + pos: -75.5,-6.5 + parent: 2 + - uid: 8411 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 756 + rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 2 + - uid: 8412 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 757 + rot: 1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - uid: 8413 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 758 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - uid: 8414 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 759 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - uid: 8415 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 760 + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 8416 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 761 + rot: -1.5707963267948966 rad + pos: -112.5,-6.5 + parent: 2 + - uid: 8417 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 766 + pos: -118.5,2.5 + parent: 2 + - uid: 8418 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 767 + rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 2 + - uid: 8419 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 768 + rot: 1.5707963267948966 rad + pos: 35.5,25.5 + parent: 2 + - uid: 8420 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 769 + pos: 34.5,-26.5 + parent: 2 + - uid: 8421 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 770 + rot: -1.5707963267948966 rad + pos: 8.667198,-0.4799447 + parent: 2 + - uid: 8422 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 771 + rot: 3.141592653589793 rad + pos: 32.6637,-6.297804 + parent: 2 + - uid: 8423 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 772 + rot: 3.141592653589793 rad + pos: 31.5117,-6.2267814 + parent: 2 + - uid: 8424 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 773 + rot: -1.5707963267948966 rad + pos: 8.5943165,-2.3581014 + parent: 2 + - uid: 8425 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 774 + rot: -1.5707963267948966 rad + pos: 8.5630665,-1.3268514 + parent: 2 + - uid: 8426 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 775 + rot: 3.141592653589793 rad + pos: -94.52728,-4.3229737 + parent: 2 + - uid: 8427 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 776 + rot: 1.5707963267948966 rad + pos: -97.44916,5.549966 + parent: 2 + - uid: 8428 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 777 + rot: -1.5707963267948966 rad + pos: -92.4298,-4.5519886 + parent: 2 + - uid: 8429 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 778 + rot: -1.5707963267948966 rad + pos: -92.39855,-5.4269886 + parent: 2 + - uid: 8430 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 779 + rot: 1.5707963267948966 rad + pos: -94.53918,-5.5519886 + parent: 2 + - uid: 25640 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 780 + pos: -13.5,-26.5 + parent: 24450 + - uid: 25641 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 781 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 24450 + - uid: 25642 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 782 + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 24450 +- proto: ChairOfficeLight + entities: + - uid: 8431 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 783 + pos: -11.5,11.5 + parent: 2 + - uid: 8432 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 784 + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - uid: 8433 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 785 + pos: -45.5,9.5 + parent: 2 + - uid: 8434 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 786 + rot: 3.141592653589793 rad + pos: -45.5,7.5 + parent: 2 + - uid: 8435 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 787 + pos: -74.5,-0.5 + parent: 2 + - uid: 8436 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 788 + pos: -73.5,-0.5 + parent: 2 + - uid: 8437 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 847 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - uid: 8438 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 854 + pos: -1.5,20.5 + parent: 2 + - uid: 8439 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 911 + pos: 15.5,12.5 + parent: 2 + - uid: 8440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-9.5 - parent: 89 - - uid: 913 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 8441 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-9.5 - parent: 89 - - uid: 960 + pos: 25.5,12.5 + parent: 2 + - uid: 8442 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-10.5 - parent: 89 - - uid: 963 + pos: -8.5,-16.5 + parent: 2 + - uid: 8443 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-8.5 - parent: 89 - - uid: 964 + pos: -2.5,8.5 + parent: 2 + - uid: 8444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-9.5 - parent: 89 - - uid: 1996 + pos: -8.5,21.5 + parent: 2 + - uid: 8445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-8.5 - parent: 89 - - uid: 2016 + pos: 25.5,37.5 + parent: 2 + - uid: 8446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 - - uid: 2018 + rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 + - uid: 8447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-10.5 - parent: 89 - - uid: 2090 + pos: -0.5,6.5 + parent: 2 + - uid: 27540 components: - type: Transform - pos: -123.5,9.5 - parent: 89 - - uid: 2093 + pos: -4.5,-12.5 + parent: 27260 +- proto: ChairPilotSeat + entities: + - uid: 8448 components: - type: Transform - pos: -122.5,9.5 - parent: 89 - - uid: 2094 + pos: 55.5,-5.5 + parent: 2 + - uid: 8449 components: - type: Transform - pos: -121.5,7.5 - parent: 89 - - uid: 2095 + pos: 59.5,-5.5 + parent: 2 + - uid: 8450 components: - type: Transform - pos: -121.5,8.5 - parent: 89 - - uid: 2096 + pos: 52.5,-5.5 + parent: 2 + - uid: 8451 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 2097 + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 8452 components: - type: Transform - pos: -121.5,6.5 - parent: 89 - - uid: 2098 + rot: 1.5707963267948966 rad + pos: 58.5,3.5 + parent: 2 + - uid: 8453 components: - type: Transform - pos: -121.5,5.5 - parent: 89 - - uid: 2180 + rot: 1.5707963267948966 rad + pos: 62.5,2.5 + parent: 2 + - uid: 8454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,5.5 - parent: 89 - - uid: 2206 + rot: 1.5707963267948966 rad + pos: 58.5,5.5 + parent: 2 + - uid: 8455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 89 - - uid: 2207 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 8456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 89 - - uid: 2208 + rot: 1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - uid: 8457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 89 - - uid: 2210 + rot: 1.5707963267948966 rad + pos: 62.5,6.5 + parent: 2 + - uid: 8458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 89 - - uid: 2211 + rot: 3.141592653589793 rad + pos: 54.5,9.5 + parent: 2 + - uid: 8459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 89 - - uid: 2212 + rot: 3.141592653589793 rad + pos: 57.5,9.5 + parent: 2 + - uid: 8460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 89 - - uid: 2213 + rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 2 + - uid: 8461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 89 - - uid: 2214 + rot: 3.141592653589793 rad + pos: 55.5,14.5 + parent: 2 + - uid: 8462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 89 - - uid: 2239 + rot: 3.141592653589793 rad + pos: 56.5,14.5 + parent: 2 + - uid: 8463 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2337 + rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 + - uid: 8464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-24.5 - parent: 89 - - uid: 2345 + rot: 1.5707963267948966 rad + pos: 64.5,12.5 + parent: 2 + - uid: 8465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-23.5 - parent: 89 - - uid: 2347 + rot: 1.5707963267948966 rad + pos: 64.5,11.5 + parent: 2 + - uid: 8466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-22.5 - parent: 89 - - uid: 2348 + pos: 56.5,-5.5 + parent: 2 + - uid: 8467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-21.5 - parent: 89 - - uid: 2350 + pos: 54.5,-0.5 + parent: 2 + - uid: 8468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-21.5 - parent: 89 - - uid: 2351 + pos: 57.5,-0.5 + parent: 2 + - uid: 8469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-21.5 - parent: 89 - - uid: 2353 + pos: -44.5,-19.5 + parent: 2 + - uid: 8470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-21.5 - parent: 89 - - uid: 2354 + pos: -43.5,-19.5 + parent: 2 + - uid: 8471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-21.5 - parent: 89 - - uid: 2355 + pos: -43.5,-19.5 + parent: 2 + - uid: 8472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-21.5 - parent: 89 - - uid: 2356 + pos: -42.5,-19.5 + parent: 2 + - uid: 8473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-21.5 - parent: 89 - - uid: 2358 + rot: 1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 2 + - uid: 8474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-21.5 - parent: 89 - - uid: 2503 + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 23786 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-7.5 - parent: 89 - - uid: 2555 + pos: 2.5,-6.5 + parent: 23711 + - uid: 23787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 23711 + - uid: 23788 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-11.5 - parent: 89 - - uid: 3096 + pos: 3.5,-2.5 + parent: 23711 + - uid: 23789 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 3130 + pos: 1.5,-4.5 + parent: 23711 + - uid: 23790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,3.5 - parent: 89 - - uid: 3134 + pos: 2.5,-4.5 + parent: 23711 + - uid: 23791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,2.5 - parent: 89 - - uid: 3163 + pos: 1.5,-7.5 + parent: 23711 + - uid: 23792 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,0.5 - parent: 89 - - uid: 3164 + pos: 1.5,-6.5 + parent: 23711 + - uid: 23793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,1.5 - parent: 89 - - uid: 3166 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 23711 + - uid: 23794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,1.5 - parent: 89 - - uid: 3167 + pos: 2.5,-7.5 + parent: 23711 + - uid: 23795 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,1.5 - parent: 89 - - uid: 3168 + pos: 1.5,-9.5 + parent: 23711 + - uid: 23796 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,4.5 - parent: 89 - - uid: 3169 + pos: 2.5,-9.5 + parent: 23711 + - uid: 24065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,5.5 - parent: 89 - - uid: 3170 + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 23919 + - uid: 24066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,6.5 - parent: 89 - - uid: 3171 + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 23919 + - uid: 24067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 89 - - uid: 3172 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 23919 + - uid: 24068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,7.5 - parent: 89 - - uid: 3173 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 23919 + - uid: 24069 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 89 - - uid: 3176 + pos: 7.5,3.5 + parent: 23919 + - uid: 24070 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,8.5 - parent: 89 - - uid: 3177 + pos: 3.5,5.5 + parent: 23919 + - uid: 24071 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,9.5 - parent: 89 - - uid: 3178 + pos: 1.5,3.5 + parent: 23919 + - uid: 24072 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,10.5 - parent: 89 - - uid: 3179 + pos: 4.5,5.5 + parent: 23919 + - uid: 24073 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,11.5 - parent: 89 - - uid: 3180 + pos: 5.5,5.5 + parent: 23919 + - uid: 24386 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,12.5 - parent: 89 - - uid: 3181 + pos: -0.5,-2.5 + parent: 24340 + - uid: 24387 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,13.5 - parent: 89 - - uid: 3182 + pos: 1.5,-2.5 + parent: 24340 + - uid: 24388 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,14.5 - parent: 89 - - uid: 3183 + pos: 0.5,-0.5 + parent: 24340 +- proto: ChairRitual + entities: + - uid: 8475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,15.5 - parent: 89 - - uid: 3184 + rot: -1.5707963267948966 rad + pos: -18.443472,17.699806 + parent: 2 + - uid: 8476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,16.5 - parent: 89 - - uid: 3185 + rot: -1.5707963267948966 rad + pos: -18.516855,16.74582 + parent: 2 + - uid: 8477 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,16.5 - parent: 89 - - uid: 3186 + pos: -19.48919,16.635744 + parent: 2 + - uid: 8478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,16.5 - parent: 89 - - uid: 3187 + pos: -19.544226,18.525372 + parent: 2 + - uid: 8479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.498213,17.736498 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.49851,18.617102 + parent: 2 +- proto: ChairWood + entities: + - uid: 8481 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 8482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,16.5 - parent: 89 - - uid: 3188 + pos: -47.5,-1.5 + parent: 2 + - uid: 8483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,16.5 - parent: 89 - - uid: 3189 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 8484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,16.5 - parent: 89 - - uid: 3191 + pos: -51.5,-1.5 + parent: 2 + - uid: 8485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,16.5 - parent: 89 - - uid: 3256 + pos: -52.5,-1.5 + parent: 2 + - uid: 8486 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 3338 + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - uid: 8487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-7.5 - parent: 89 - - uid: 3350 + pos: -51.5,0.5 + parent: 2 + - uid: 8488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-11.5 - parent: 89 - - uid: 3351 + pos: -51.5,-0.5 + parent: 2 + - uid: 8489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-11.5 - parent: 89 - - uid: 3353 + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 8490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-8.5 - parent: 89 - - uid: 3354 + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 8491 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-8.5 - parent: 89 - - uid: 3549 - components: - - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 4241 + pos: -22.5,-7.5 + parent: 2 + - uid: 8492 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 4257 + pos: -19.5,-1.5 + parent: 2 + - uid: 8493 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 4297 + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 + - uid: 8494 components: - type: Transform - pos: -48.5,-19.5 - parent: 89 - - uid: 4298 + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 8495 components: - type: Transform - pos: -48.5,-20.5 - parent: 89 - - uid: 4299 + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 8496 components: - type: Transform - pos: -47.5,-19.5 - parent: 89 - - uid: 4300 + rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 8497 components: - type: Transform - pos: -47.5,-20.5 - parent: 89 - - uid: 4301 + pos: -47.5,-0.5 + parent: 2 + - uid: 8498 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 4302 + pos: -48.5,-1.5 + parent: 2 + - uid: 8499 components: - type: Transform - pos: -46.5,-20.5 - parent: 89 - - uid: 4303 + pos: -52.5,-0.5 + parent: 2 + - uid: 8500 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 - - uid: 4304 + pos: -48.5,0.5 + parent: 2 + - uid: 8501 components: - type: Transform - pos: -45.5,-20.5 - parent: 89 - - uid: 4305 + pos: -47.5,0.5 + parent: 2 + - uid: 8502 components: - type: Transform - pos: -44.5,-19.5 - parent: 89 - - uid: 4306 + pos: -48.5,-0.5 + parent: 2 + - uid: 8503 components: - type: Transform - pos: -44.5,-20.5 - parent: 89 - - uid: 4307 + pos: -75.5,1.5 + parent: 2 + - uid: 8504 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4308 + pos: -79.5,1.5 + parent: 2 + - uid: 8505 components: - type: Transform - pos: -43.5,-20.5 - parent: 89 - - uid: 4309 + pos: -78.5,1.5 + parent: 2 + - uid: 8506 components: - type: Transform - pos: -42.5,-19.5 - parent: 89 - - uid: 4310 + pos: -77.5,1.5 + parent: 2 + - uid: 8507 components: - type: Transform - pos: -42.5,-20.5 - parent: 89 - - uid: 4311 + pos: -74.5,1.5 + parent: 2 + - uid: 8508 components: - type: Transform - pos: -47.5,-21.5 - parent: 89 - - uid: 4312 + pos: -73.5,1.5 + parent: 2 + - uid: 8509 components: - type: Transform - pos: -46.5,-21.5 - parent: 89 - - uid: 4313 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 8510 components: - type: Transform - pos: -45.5,-21.5 - parent: 89 - - uid: 4314 + rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 8511 components: - type: Transform - pos: -44.5,-21.5 - parent: 89 - - uid: 4315 + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 8512 components: - type: Transform - pos: -43.5,-21.5 - parent: 89 - - uid: 4316 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 8513 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 4317 + pos: -26.5,-5.5 + parent: 2 + - uid: 8514 components: - type: Transform - pos: -49.5,-20.5 - parent: 89 - - uid: 4318 + rot: -1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 8515 components: - type: Transform - pos: -50.5,-19.5 - parent: 89 - - uid: 4319 + rot: -1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 8516 components: - type: Transform - pos: -50.5,-20.5 - parent: 89 - - uid: 4321 + pos: -120.64618,21.483479 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 8517 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 4322 + pos: -4.5048585,20.65735 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 8518 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 4981 + pos: -4.322945,19.72414 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 8519 components: - type: Transform - pos: 35.5,-16.5 - parent: 89 - - uid: 5078 + rot: 3.141592653589793 rad + pos: -45.522533,8.605168 + parent: 2 + - uid: 8520 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 5079 + pos: -2.4906597,-28.383318 + parent: 2 + - uid: 8521 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 5213 + rot: 1.5707963267948966 rad + pos: -34.51852,-14.432817 + parent: 2 +- proto: chem_master + entities: + - uid: 8522 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 5318 + pos: -2.5,9.5 + parent: 2 + - uid: 8523 components: - type: Transform - pos: 36.5,-16.5 - parent: 89 - - uid: 5396 + pos: 0.5,5.5 + parent: 2 + - uid: 27541 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 5417 + pos: -5.5,-13.5 + parent: 27260 +- proto: ChemDispenser + entities: + - uid: 8524 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 5836 + pos: -3.5,9.5 + parent: 2 + - uid: 27542 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 6130 + pos: -4.5,-13.5 + parent: 27260 +- proto: ChemDispenserEmpty + entities: + - uid: 8525 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 6485 + pos: -0.5,5.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 8526 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 6704 + pos: -14.19345,-15.127384 + parent: 2 + - uid: 8527 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 6706 + pos: -13.9767065,-15.464462 + parent: 2 + - uid: 27543 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 6707 + rot: -1.5707963267948966 rad + pos: -3.3637543,-13.543121 + parent: 27260 +- proto: ChemistryHotplate + entities: + - uid: 8528 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 6708 + pos: 4.5,-18.5 + parent: 2 + - type: ItemPlacer + placedEntities: + - 10566 + - type: PlaceableSurface + isPlaceable: False + - uid: 8529 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 6709 + pos: -2.5,5.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 8530 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 6710 + rot: 3.141592653589793 rad + pos: -44.56941,8.605168 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 8531 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 6711 + rot: -1.5707963267948966 rad + pos: -49.5,-3.5 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 8532 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 6712 + pos: -87.7599,27.81324 + parent: 2 + - uid: 8533 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 6713 + pos: -87.7599,27.90699 + parent: 2 + - uid: 8534 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 6714 + pos: -87.7599,28.00074 + parent: 2 +- proto: CigarGold + entities: + - uid: 8535 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 6715 + pos: 20.468182,7.551762 + parent: 2 + - uid: 8536 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 6716 + pos: -98.620224,17.58848 + parent: 2 +- proto: CigarGoldSpent + entities: + - uid: 8537 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 6721 + rot: -1.5707963267948966 rad + pos: 47.87538,22.994505 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 25643 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 6722 + pos: -14.517942,7.518115 + parent: 24450 +- proto: CigCartonRed + entities: + - uid: 8538 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 6723 + pos: -97.5623,12.583653 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 8539 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 6726 + pos: -117.54554,-14.493891 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 8540 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 6727 + pos: -120.92743,21.530354 + parent: 2 + - uid: 8541 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 6728 + pos: 5.6514907,-1.2318032 + parent: 2 +- proto: CigPackSyndicate + entities: + - uid: 25645 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 6729 + parent: 25644 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CircuitImprinter + entities: + - uid: 8542 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 6730 + pos: -14.5,-18.5 + parent: 2 + - uid: 25647 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 6731 + pos: -27.5,3.5 + parent: 24450 + - uid: 25648 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 6732 + pos: 3.5,3.5 + parent: 24450 +- proto: ClarinetInstrument + entities: + - uid: 8543 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 6733 + pos: -35.620186,-5.4584527 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 8544 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 6738 + pos: -40.5,9.5 + parent: 2 +- proto: ClockworkGrille + entities: + - uid: 8545 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 6739 + pos: 4.5,-9.5 + parent: 2 + - uid: 8546 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 6740 + pos: 7.5,-7.5 + parent: 2 + - uid: 8547 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 6741 + pos: 6.5,-10.5 + parent: 2 + - uid: 8548 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 6742 + pos: 12.5,-4.5 + parent: 2 + - uid: 8549 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 6743 + pos: 13.5,-4.5 + parent: 2 + - uid: 8550 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 6744 + pos: 14.5,-4.5 + parent: 2 + - uid: 8551 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 6745 + pos: 15.5,-4.5 + parent: 2 + - uid: 8552 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 6746 + pos: 28.5,-7.5 + parent: 2 + - uid: 8553 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 6747 + pos: 24.5,-11.5 + parent: 2 + - uid: 8554 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 7135 + pos: 18.5,-11.5 + parent: 2 + - uid: 8555 components: - type: Transform - pos: -42.5,-21.5 - parent: 89 - - uid: 7320 + pos: 11.5,-11.5 + parent: 2 + - uid: 8556 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 7331 + pos: 41.5,-14.5 + parent: 2 + - uid: 8557 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 7350 + pos: 42.5,-19.5 + parent: 2 + - uid: 8558 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 7635 + pos: 35.5,-4.5 + parent: 2 + - uid: 8559 components: - type: Transform - pos: 36.5,-17.5 - parent: 89 - - uid: 7684 + pos: 32.5,-4.5 + parent: 2 + - uid: 8560 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 7686 + pos: 39.5,-31.5 + parent: 2 + - uid: 8561 components: - type: Transform - pos: -99.5,26.5 - parent: 89 - - uid: 7688 + pos: 39.5,-32.5 + parent: 2 + - uid: 8562 components: - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 7689 + pos: 39.5,-29.5 + parent: 2 + - uid: 8563 components: - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 7690 + rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 8564 components: - type: Transform - pos: -96.5,28.5 - parent: 89 - - uid: 7691 + rot: 3.141592653589793 rad + pos: 56.5,-34.5 + parent: 2 + - uid: 8565 components: - type: Transform - pos: -97.5,25.5 - parent: 89 - - uid: 7692 + pos: 43.5,-19.5 + parent: 2 + - uid: 8566 components: - type: Transform - pos: -96.5,25.5 - parent: 89 - - uid: 7693 + rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 8567 components: - type: Transform - pos: -95.5,25.5 - parent: 89 - - uid: 8381 + rot: 3.141592653589793 rad + pos: 58.5,-34.5 + parent: 2 + - uid: 8568 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 8468 + pos: 39.5,-30.5 + parent: 2 + - uid: 8569 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 8469 + pos: 8.5,-7.5 + parent: 2 + - uid: 8570 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 8470 + pos: 6.5,-12.5 + parent: 2 + - uid: 8571 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 8471 + pos: 21.5,-11.5 + parent: 2 + - uid: 8572 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 8472 + pos: 25.5,-7.5 + parent: 2 + - uid: 8573 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 8524 + pos: 27.5,-11.5 + parent: 2 + - uid: 8574 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 8525 + pos: 34.5,-4.5 + parent: 2 + - uid: 8575 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 8526 + pos: 41.5,-12.5 + parent: 2 + - uid: 8576 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 9191 + rot: 3.141592653589793 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 8577 components: - type: Transform - pos: -130.5,9.5 - parent: 89 - - uid: 9192 + pos: 39.5,-33.5 + parent: 2 + - uid: 8578 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - uid: 9193 + pos: 33.5,-26.5 + parent: 2 + - uid: 8579 components: - type: Transform - pos: -128.5,9.5 - parent: 89 - - uid: 9194 + pos: 13.5,-11.5 + parent: 2 + - uid: 8580 components: - type: Transform - pos: -127.5,9.5 - parent: 89 - - uid: 9195 + pos: 41.5,-19.5 + parent: 2 + - uid: 8581 components: - type: Transform - pos: -126.5,9.5 - parent: 89 - - uid: 9196 + rot: 3.141592653589793 rad + pos: 59.5,-33.5 + parent: 2 + - uid: 8582 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 9197 + rot: 3.141592653589793 rad + pos: 57.5,-34.5 + parent: 2 + - uid: 8583 components: - type: Transform - pos: -124.5,9.5 - parent: 89 - - uid: 9198 + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 8584 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 9199 + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 8585 components: - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 9200 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 8586 components: - type: Transform - pos: -129.5,6.5 - parent: 89 - - uid: 9201 + pos: 39.5,-28.5 + parent: 2 + - uid: 8587 components: - type: Transform - pos: -129.5,5.5 - parent: 89 - - uid: 9202 + pos: 33.5,-27.5 + parent: 2 +- proto: CloningPodMachineCircuitboard + entities: + - uid: 8588 components: - type: Transform - pos: -129.5,4.5 - parent: 89 - - uid: 9203 + pos: 22.4702,35.513382 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8589 components: - type: Transform - pos: -129.5,3.5 - parent: 89 - - uid: 9204 + pos: -15.5,-0.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 8590 components: - type: Transform - pos: -129.5,2.5 - parent: 89 - - uid: 9205 + pos: -45.5,-13.5 + parent: 2 + - uid: 8591 components: - type: Transform - pos: -129.5,1.5 - parent: 89 - - uid: 9206 + pos: -25.5,-15.5 + parent: 2 + - uid: 8592 components: - type: Transform - pos: -129.5,0.5 - parent: 89 - - uid: 9207 + pos: -1.5,-21.5 + parent: 2 + - uid: 8593 components: - type: Transform - pos: -129.5,-0.5 - parent: 89 - - uid: 9208 + pos: 38.5,9.5 + parent: 2 + - uid: 8594 components: - type: Transform - pos: -129.5,-1.5 - parent: 89 - - uid: 9209 + pos: 11.5,-7.5 + parent: 2 + - uid: 8595 components: - type: Transform - pos: -129.5,-2.5 - parent: 89 - - uid: 9210 + pos: 38.5,0.5 + parent: 2 + - uid: 8596 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 9211 + pos: -91.5,0.5 + parent: 2 + - uid: 8597 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 9212 + pos: -91.5,1.5 + parent: 2 + - uid: 8598 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 9213 + pos: -67.5,33.5 + parent: 2 + - uid: 8599 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 9214 + pos: -64.5,42.5 + parent: 2 + - uid: 8600 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 9215 + pos: -63.5,45.5 + parent: 2 + - uid: 8601 components: - type: Transform - pos: -124.5,-3.5 - parent: 89 - - uid: 9217 + pos: -66.5,23.5 + parent: 2 + - uid: 8602 components: - type: Transform - pos: -124.5,-2.5 - parent: 89 - - uid: 9218 + pos: -55.5,28.5 + parent: 2 + - uid: 8603 components: - type: Transform - pos: -124.5,-1.5 - parent: 89 - - uid: 9219 + pos: -58.5,39.5 + parent: 2 + - uid: 8604 components: - type: Transform - pos: -123.5,-1.5 - parent: 89 - - uid: 9220 + pos: -62.5,32.5 + parent: 2 + - uid: 8605 components: - type: Transform - pos: -122.5,-1.5 - parent: 89 - - uid: 9221 + pos: -89.5,23.5 + parent: 2 + - uid: 8606 components: - type: Transform - pos: -121.5,-1.5 - parent: 89 - - uid: 9222 + pos: -85.5,47.5 + parent: 2 + - uid: 8607 components: - type: Transform - pos: -121.5,-0.5 - parent: 89 - - uid: 9225 + pos: -94.5,23.5 + parent: 2 + - uid: 8608 components: - type: Transform - pos: -121.5,2.5 - parent: 89 - - uid: 9226 + pos: -69.5,14.5 + parent: 2 + - uid: 8609 components: - type: Transform - pos: -121.5,1.5 - parent: 89 - - uid: 9256 + pos: -74.5,5.5 + parent: 2 + - uid: 8610 components: - type: Transform - pos: 24.5,7.5 - parent: 89 - - uid: 9278 + pos: -78.5,15.5 + parent: 2 + - uid: 8611 components: - type: Transform - pos: 28.5,8.5 - parent: 89 - - uid: 9279 + pos: -78.5,13.5 + parent: 2 + - uid: 8612 components: - type: Transform - pos: 27.5,8.5 - parent: 89 - - uid: 9280 + pos: -52.5,25.5 + parent: 2 + - uid: 8613 components: - type: Transform - pos: 26.5,8.5 - parent: 89 - - uid: 9281 + pos: -112.5,-2.5 + parent: 2 + - uid: 8614 components: - type: Transform - pos: 25.5,8.5 - parent: 89 - - uid: 9282 + pos: -41.5,-5.5 + parent: 2 + - uid: 8615 components: - type: Transform - pos: 25.5,6.5 - parent: 89 - - uid: 9283 + pos: -33.5,10.5 + parent: 2 + - uid: 8616 components: - type: Transform - pos: 26.5,6.5 - parent: 89 - - uid: 9284 + pos: -58.5,5.5 + parent: 2 + - uid: 8617 components: - type: Transform - pos: 27.5,6.5 - parent: 89 - - uid: 9285 + pos: 10.5,27.5 + parent: 2 + - uid: 8618 components: - type: Transform - pos: 28.5,6.5 - parent: 89 - - uid: 9286 + pos: -60.5,12.5 + parent: 2 + - uid: 8619 components: - type: Transform - pos: 24.5,8.5 - parent: 89 - - uid: 9320 + pos: 19.5,25.5 + parent: 2 + - uid: 8620 components: - type: Transform - pos: 24.5,6.5 - parent: 89 - - uid: 9321 + pos: -112.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8621 components: - type: Transform - pos: 24.5,5.5 - parent: 89 - - uid: 10406 + pos: -17.5,22.5 + parent: 2 + - uid: 8622 components: - type: Transform - pos: -97.5,22.5 - parent: 89 - - uid: 10464 + pos: -33.5,5.5 + parent: 2 + - uid: 8623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-11.5 - parent: 89 - - uid: 10683 + pos: -101.5,2.5 + parent: 2 + - uid: 24074 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 11215 + pos: 4.5,-11.5 + parent: 23919 + - uid: 27544 components: - type: Transform - pos: 17.5,26.5 - parent: 89 - - uid: 12219 + pos: 0.5,-0.5 + parent: 27260 +- proto: ClosetFireFilled + entities: + - uid: 8624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,1.5 - parent: 89 - - uid: 12220 + pos: -45.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,1.5 - parent: 89 - - uid: 12840 + pos: -59.5,5.5 + parent: 2 + - uid: 8626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-10.5 - parent: 89 - - uid: 12841 + pos: -27.5,-15.5 + parent: 2 + - uid: 8627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-8.5 - parent: 89 - - uid: 12858 + pos: -67.5,40.5 + parent: 2 + - uid: 8628 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 14073 + pos: 39.5,0.5 + parent: 2 + - uid: 8629 components: - type: Transform - pos: -98.5,22.5 - parent: 89 - - uid: 14260 + pos: -8.5,26.5 + parent: 2 + - uid: 8630 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 14547 + pos: -90.5,18.5 + parent: 2 + - uid: 8631 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 14549 + pos: -112.5,0.5 + parent: 2 + - uid: 8632 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 14550 + pos: -112.5,7.5 + parent: 2 + - uid: 8633 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 14551 + pos: -111.5,7.5 + parent: 2 + - uid: 8634 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 14552 + pos: -67.5,34.5 + parent: 2 + - uid: 8635 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 14553 + pos: 23.5,23.5 + parent: 2 + - uid: 8636 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 14554 + pos: -61.5,28.5 + parent: 2 + - uid: 8637 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 14555 + pos: -62.5,11.5 + parent: 2 + - uid: 8638 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 14556 + pos: -69.5,11.5 + parent: 2 + - uid: 8639 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 14557 + pos: 9.5,27.5 + parent: 2 + - uid: 8640 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 14578 + pos: -17.5,23.5 + parent: 2 + - uid: 8641 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - uid: 14580 + pos: -33.5,11.5 + parent: 2 + - uid: 8642 components: - type: Transform - pos: -92.5,28.5 - parent: 89 - - uid: 14581 + pos: -75.5,15.5 + parent: 2 + - uid: 8643 components: - type: Transform - pos: -92.5,29.5 - parent: 89 - - uid: 14584 + pos: -111.5,0.5 + parent: 2 + - uid: 8644 components: - type: Transform - pos: -91.5,29.5 - parent: 89 - - uid: 14585 + pos: -52.5,26.5 + parent: 2 + - uid: 8645 components: - type: Transform - pos: -89.5,27.5 - parent: 89 - - uid: 14586 + pos: 11.5,-10.5 + parent: 2 + - uid: 8646 components: - type: Transform - pos: -89.5,28.5 - parent: 89 - - uid: 14589 + pos: -73.5,5.5 + parent: 2 + - uid: 8647 components: - type: Transform - pos: -88.5,28.5 - parent: 89 - - uid: 14590 + pos: -88.5,-2.5 + parent: 2 + - uid: 8648 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 14592 + pos: -89.5,-2.5 + parent: 2 + - uid: 8649 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 14593 + pos: -87.5,-2.5 + parent: 2 + - uid: 8650 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 14594 + pos: -83.5,47.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 8651 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 14611 + pos: -39.5,9.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 8652 components: - type: Transform - pos: -100.5,15.5 - parent: 89 - - uid: 14613 + pos: -38.5,9.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 8653 components: - type: Transform - pos: -100.5,14.5 - parent: 89 - - uid: 14614 + pos: -1.5,-20.5 + parent: 2 + - uid: 8654 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 14615 + pos: -2.5,-33.5 + parent: 2 + - uid: 8655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,13.5 - parent: 89 - - uid: 14616 + pos: -0.5,-33.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 8656 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 14617 + pos: 10.5,-1.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 8657 components: - type: Transform - pos: -98.5,13.5 - parent: 89 - - uid: 14618 + pos: 11.5,30.5 + parent: 2 + - uid: 8658 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 14675 + pos: 10.5,30.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 8659 components: - type: Transform - pos: -85.5,-1.5 - parent: 89 - - uid: 14676 + pos: -73.5,-2.5 + parent: 2 + - uid: 8660 components: - type: Transform - pos: -85.5,-2.5 - parent: 89 - - uid: 14677 + pos: -73.5,-3.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 25070 components: - type: Transform - pos: -85.5,-3.5 - parent: 89 - - uid: 14678 + pos: 9.5,12.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25071 + - 25075 + - 25077 + - 25072 + - 25076 + - 25073 + - 25074 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25078 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 14679 + pos: 9.5,6.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25083 + - 25084 + - 25080 + - 25081 + - 25079 + - 25082 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25085 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 14680 + pos: 9.5,9.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25090 + - 25091 + - 25088 + - 25087 + - 25086 + - 25089 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25092 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 14681 + pos: -33.5,6.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25093 + - 25099 + - 25098 + - 25095 + - 25097 + - 25096 + - 25094 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25100 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 14682 + pos: -33.5,8.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25103 + - 25101 + - 25106 + - 25105 + - 25102 + - 25104 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25107 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 14683 + pos: -33.5,12.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + 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: + - 25110 + - 25111 + - 25114 + - 25113 + - 25109 + - 25108 + - 25112 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25649 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 14684 + pos: 10.5,1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25655 + - 25658 + - 25654 + - 25657 + - 25653 + - 25656 + - 25651 + - 25650 + - 25652 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25659 components: - type: Transform - pos: -81.5,2.5 - parent: 89 - - uid: 14685 + pos: -34.5,1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + 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: + - 25668 + - 25667 + - 25665 + - 25664 + - 25666 + - 25663 + - 25662 + - 25661 + - 25660 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8661 components: - type: Transform - pos: -81.5,3.5 - parent: 89 - - uid: 14708 + pos: -97.5,11.5 + parent: 2 + - uid: 8662 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 14709 + pos: -26.5,-20.5 + parent: 2 + - uid: 8663 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 14710 + pos: -45.5,-14.5 + parent: 2 + - uid: 8664 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 14711 + pos: -15.5,-27.5 + parent: 2 + - uid: 8665 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 14712 + pos: -16.5,-27.5 + parent: 2 + - uid: 8666 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 14713 + pos: -95.5,15.5 + parent: 2 + - uid: 8667 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 14714 + pos: -95.5,14.5 + parent: 2 + - uid: 8668 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 14715 + pos: -1.5,32.5 + parent: 2 + - uid: 8669 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 14716 + pos: -1.5,31.5 + parent: 2 + - uid: 8670 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 14749 + pos: -98.5,11.5 + parent: 2 + - uid: 8671 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 14750 + pos: -112.5,12.5 + parent: 2 + - uid: 8672 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 14751 + pos: -112.5,13.5 + parent: 2 + - uid: 8673 components: - type: Transform - pos: -76.5,17.5 - parent: 89 - - uid: 14752 + pos: -75.5,19.5 + parent: 2 + - uid: 8674 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 14753 + pos: -75.5,17.5 + parent: 2 + - uid: 8675 components: - type: Transform - pos: -73.5,20.5 - parent: 89 - - uid: 14754 + pos: -52.5,24.5 + parent: 2 + - uid: 8676 components: - type: Transform - pos: -72.5,20.5 - parent: 89 - - uid: 14755 + pos: -38.5,22.5 + parent: 2 + - uid: 8677 components: - type: Transform - pos: -71.5,20.5 - parent: 89 - - uid: 14756 + pos: -26.5,-15.5 + parent: 2 + - uid: 8678 components: - type: Transform - pos: -70.5,20.5 - parent: 89 - - uid: 14757 + pos: -17.5,-27.5 + parent: 2 + - uid: 8679 components: - type: Transform - pos: -65.5,21.5 - parent: 89 - - uid: 14782 + pos: -81.5,-0.5 + parent: 2 + - uid: 8680 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 14790 + pos: 18.5,25.5 + parent: 2 + - uid: 8681 components: - type: Transform - pos: -37.5,13.5 - parent: 89 - - uid: 14791 + pos: 5.5,27.5 + parent: 2 + - uid: 8682 components: - type: Transform - pos: -36.5,13.5 - parent: 89 - - uid: 14792 + pos: -17.5,24.5 + parent: 2 + - uid: 8683 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 14793 + pos: -87.5,23.5 + parent: 2 + - uid: 8684 components: - type: Transform - pos: -39.5,11.5 - parent: 89 - - uid: 14794 + pos: -116.5,21.5 + parent: 2 + - uid: 8685 components: - type: Transform - pos: -40.5,11.5 - parent: 89 - - uid: 14810 + pos: -117.5,21.5 + parent: 2 + - uid: 8686 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 14812 + pos: -99.5,11.5 + parent: 2 + - uid: 8687 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 14813 + pos: 56.5,-21.5 + parent: 2 + - uid: 25644 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 14814 + pos: -28.5,11.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + 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: + - 25645 + - 25646 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25669 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 14818 + pos: -28.5,10.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 8688 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 14821 + pos: -115.5,10.5 + parent: 2 + - uid: 8689 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 14824 + pos: -116.5,10.5 + parent: 2 + - uid: 8690 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 14825 + pos: -116.5,-2.5 + parent: 2 + - uid: 8691 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 14826 + pos: -115.5,-2.5 + parent: 2 + - uid: 8692 components: - type: Transform - pos: -4.5,30.5 - parent: 89 - - uid: 14827 + pos: -115.5,-0.5 + parent: 2 + - uid: 8693 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 14828 + pos: -116.5,-0.5 + parent: 2 + - uid: 8694 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 14829 + pos: -2.5,-36.5 + parent: 2 + - uid: 8695 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 14830 + pos: -0.5,-36.5 + parent: 2 + - uid: 8696 components: - type: Transform - pos: 1.5,30.5 - parent: 89 - - uid: 14831 + pos: -6.5,-27.5 + parent: 2 + - uid: 8697 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 14832 + pos: -116.5,8.5 + parent: 2 + - uid: 8698 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 14834 + pos: -115.5,8.5 + parent: 2 + - uid: 8699 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 14835 + pos: -122.5,-3.5 + parent: 2 + - uid: 8700 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 14836 + pos: -121.5,-3.5 + parent: 2 + - uid: 8701 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 14837 + pos: -126.5,-5.5 + parent: 2 + - uid: 8702 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 14838 + pos: -126.5,-4.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 8703 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 14839 + pos: 11.5,42.5 + parent: 2 + - uid: 8704 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 14840 + pos: 5.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetToolFilled + entities: + - uid: 8705 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 14841 + pos: -40.5,-17.5 + parent: 2 + - uid: 8706 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 14842 + pos: -8.5,25.5 + parent: 2 + - uid: 8707 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 14845 + pos: -16.5,12.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 8708 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 14846 + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 8709 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 14849 + pos: 9.5,43.5 + parent: 2 + - uid: 8710 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 14851 + rot: 1.5707963267948966 rad + pos: -87.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8711 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 14854 + rot: 1.5707963267948966 rad + pos: -86.5,20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8712 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 14855 + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 8713 components: - type: Transform - pos: -37.5,22.5 - parent: 89 - - uid: 14856 + pos: -7.5,0.5 + parent: 2 + - uid: 8714 components: - type: Transform - pos: -37.5,23.5 - parent: 89 - - uid: 14857 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 8715 components: - type: Transform - pos: -37.5,24.5 - parent: 89 - - uid: 14998 + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 2 + - uid: 24347 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 89 - - uid: 14999 + pos: -0.5,-4.5 + parent: 24340 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24349 + - 24348 + - 24350 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 8716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,20.5 - parent: 89 - - uid: 15000 + pos: -53.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8717 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 89 - - uid: 15001 + pos: -13.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 89 - - uid: 15002 + pos: -87.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8719 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 89 - - uid: 15017 + pos: -86.5,21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8720 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,24.5 - parent: 89 - - uid: 15018 + pos: -2.5,-6.5 + parent: 2 + - uid: 8721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 89 - - uid: 15019 + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 8722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,18.5 - parent: 89 - - uid: 15020 + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - uid: 8723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 89 - - uid: 15021 + pos: -5.5,0.5 + parent: 2 +- proto: ClothingBackpackDuffelSalvage + entities: + - uid: 8724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 89 - - uid: 15022 + rot: -1.5707963267948966 rad + pos: -46.265625,-9.4375 + parent: 2 +- proto: ClothingBackpackDuffelSyndicateMedicalBundleFilled + entities: + - uid: 8725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 89 - - uid: 15023 + pos: -2.5655928,-45.444603 + parent: 2 +- proto: ClothingBackpackMerc + entities: + - uid: 8726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 89 - - uid: 15024 + pos: -125.666534,-12.781693 + parent: 2 +- proto: ClothingBackpackSatchelLeather + entities: + - uid: 8727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,12.5 - parent: 89 - - uid: 15025 + pos: 18.11255,19.774199 + parent: 2 +- proto: ClothingBackpackSatchelSalvage + entities: + - uid: 8728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,13.5 - parent: 89 - - uid: 15043 + pos: -46.67585,-9.307626 + parent: 2 + - uid: 8729 components: - type: Transform - pos: 16.5,26.5 - parent: 89 - - uid: 15058 + pos: -46.48835,-9.557626 + parent: 2 +- proto: ClothingBeltChampion + entities: + - uid: 8730 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 15089 + pos: 50.6875,-2.2932522 + parent: 2 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 8731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 - parent: 89 - - uid: 15090 + pos: -36.594994,9.431238 + parent: 2 +- proto: ClothingBeltSalvageWebbing + entities: + - uid: 8732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 89 - - uid: 15092 + pos: -46.33284,-10.549416 + parent: 2 + - uid: 8733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,45.5 - parent: 89 - - uid: 15154 + pos: -46.598465,-10.565041 + parent: 2 +- proto: ClothingBeltSuspenders + entities: + - uid: 8734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 89 - - uid: 15192 + pos: 6.5650086,27.578575 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 8735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,42.5 - parent: 89 - - uid: 15199 + pos: -12.5832405,-23.436749 + parent: 2 + - uid: 8736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,44.5 - parent: 89 - - uid: 15670 + pos: -90.483246,13.521247 + parent: 2 + - uid: 8737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-10.5 - parent: 89 - - uid: 15671 + pos: -11.502785,-31.531437 + parent: 2 + - uid: 25670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-10.5 - parent: 89 - - uid: 15672 + pos: -25.504887,7.5219393 + parent: 24450 + - uid: 25671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-10.5 - parent: 89 - - uid: 15673 + pos: -24.504887,7.5375643 + parent: 24450 + - uid: 25672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-10.5 - parent: 89 - - uid: 15674 + pos: -23.567387,7.5375643 + parent: 24450 + - uid: 25673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-10.5 - parent: 89 - - uid: 15675 + pos: -20.291004,7.4594393 + parent: 24450 + - uid: 25674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-9.5 - parent: 89 - - uid: 15676 + pos: -19.474846,7.4933014 + parent: 24450 + - uid: 25675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-8.5 - parent: 89 - - uid: 15677 + pos: -18.67797,7.5558014 + parent: 24450 + - uid: 25676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-7.5 - parent: 89 - - uid: 15678 + pos: -5.2654724,7.5089264 + parent: 24450 + - uid: 25677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-6.5 - parent: 89 - - uid: 15679 + pos: -4.4217224,7.4776764 + parent: 24450 + - uid: 25678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-5.5 - parent: 89 - - uid: 15680 + pos: -3.5467224,7.4933014 + parent: 24450 + - uid: 25679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-4.5 - parent: 89 - - uid: 15682 + pos: -0.32033086,7.5089264 + parent: 24450 + - uid: 25680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,12.5 - parent: 89 - - uid: 15683 + pos: 0.60154414,7.4620514 + parent: 24450 + - uid: 25681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,11.5 - parent: 89 - - uid: 15684 + pos: 1.4609191,7.4308014 + parent: 24450 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 8738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,10.5 - parent: 89 - - uid: 15685 + pos: 31.336422,7.572131 + parent: 2 + - uid: 8739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,12.5 - parent: 89 - - uid: 15694 + pos: 31.383297,7.572131 + parent: 2 + - uid: 8740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,15.5 - parent: 89 - - uid: 15695 + pos: 31.648922,7.603381 + parent: 2 + - uid: 8741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,16.5 - parent: 89 - - uid: 15717 + pos: 31.430172,7.540881 + parent: 2 + - uid: 8742 components: - type: Transform - pos: -113.5,-10.5 - parent: 89 - - uid: 15718 + pos: 31.352047,7.556506 + parent: 2 + - uid: 8743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-14.5 - parent: 89 - - uid: 15719 + pos: -132.49495,-2.4833856 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 8744 components: - type: Transform - pos: -114.5,-10.5 - parent: 89 - - uid: 15720 + pos: 1.4933057,-29.171928 + parent: 2 + - uid: 8745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-14.5 - parent: 89 - - uid: 15722 + pos: -6.5,-38.5 + parent: 2 + - uid: 8746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-14.5 - parent: 89 - - uid: 15724 + pos: -95.44649,17.646513 + parent: 2 +- proto: ClothingEyesBinoclardLenses + entities: + - uid: 8747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-14.5 - parent: 89 - - uid: 15726 + pos: -75.56238,-5.1952434 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-14.5 - parent: 89 - - uid: 15727 + pos: 19.43496,18.059008 + parent: 2 + - uid: 8749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-15.5 - parent: 89 - - uid: 15728 + pos: 32.38131,20.658113 + parent: 2 + - uid: 8750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-16.5 - parent: 89 - - uid: 15729 + pos: 32.334435,20.829988 + parent: 2 + - uid: 8751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-16.5 - parent: 89 - - uid: 15730 + pos: 32.47506,20.486238 + parent: 2 + - uid: 8753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-16.5 - parent: 89 - - uid: 16401 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesGarGiga + entities: + - uid: 8761 components: + - type: MetaData + desc: Интересной формы очки, серии Kamelot, что-бы это не значило. + name: причудливые очки серии Kamelot - type: Transform - pos: -112.5,-10.5 - parent: 89 - - uid: 16402 + pos: -41.48185,10.589271 + parent: 2 + - uid: 8762 components: - type: Transform - pos: -111.5,-10.5 - parent: 89 - - uid: 16403 + pos: -27.495356,28.748674 + parent: 2 + - uid: 8763 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 16404 + pos: -44.306797,14.376387 + parent: 2 + - uid: 8764 components: - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 16405 + pos: -6.482778,40.52599 + parent: 2 + - uid: 8765 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 16406 + pos: 0.51973057,43.37215 + parent: 2 +- proto: ClothingEyesGlassesJamjar + entities: + - uid: 8766 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 16407 + pos: -73.79168,-1.4282905 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 8768 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 16512 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,12.5 - parent: 89 - - uid: 16692 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8782 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 16870 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 8788 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16872 + pos: -79.18537,-1.440521 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 8789 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16873 + pos: 21.488688,-3.148366 + parent: 2 +- proto: ClothingEyesHudBeer + entities: + - uid: 8790 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16874 + pos: 21.488688,-3.413991 + parent: 2 + - uid: 8791 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 17096 + pos: 21.473063,-3.273366 + parent: 2 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 8792 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 17304 + rot: -1.5707963267948966 rad + pos: -14.756002,-21.47323 + parent: 2 + - uid: 8793 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 17307 + pos: -104.4267,9.473066 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 8794 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 17312 + rot: 1.5707963267948966 rad + pos: 16.093824,11.569571 + parent: 2 + - uid: 8795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,29.5 - parent: 89 - - uid: 17313 + pos: 16.625074,12.069571 + parent: 2 + - uid: 8796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,29.5 - parent: 89 - - uid: 17314 + rot: -1.5707963267948966 rad + pos: 16.0782,11.475821 + parent: 2 + - uid: 8797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,11.5 - parent: 89 - - uid: 17316 + rot: 3.141592653589793 rad + pos: 16.468824,12.116446 + parent: 2 + - uid: 27545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,22.5 - parent: 89 - - uid: 17317 + pos: -2.5900269,-11.5877075 + parent: 27260 +- proto: ClothingEyesHudSecurity + entities: + - uid: 8798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,26.5 - parent: 89 - - uid: 17318 + pos: 26.980837,-0.48639452 + parent: 2 + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,26.5 - parent: 89 - - uid: 17319 + pos: 26.996462,-0.31451952 + parent: 2 + - uid: 8800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,26.5 - parent: 89 - - uid: 17320 + pos: 28.012087,-0.5020195 + parent: 2 + - uid: 8801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,26.5 - parent: 89 - - uid: 17321 + pos: 28.012087,-0.31451952 + parent: 2 +- proto: ClothingHandsGlovesAerostatic + entities: + - uid: 8802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,17.5 - parent: 89 - - uid: 17322 + pos: -19.437286,27.58992 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 8803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,16.5 - parent: 89 - - uid: 17323 + pos: -1.468462,46.55005 + parent: 2 + - uid: 8804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,15.5 - parent: 89 - - uid: 17324 + pos: 19.002268,29.716091 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 8805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,16.5 - parent: 89 - - uid: 17325 + pos: 17.674143,30.887966 + parent: 2 + - uid: 8806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,17.5 - parent: 89 - - uid: 17326 + pos: -5.452837,46.534424 + parent: 2 +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 8807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,25.5 - parent: 89 - - uid: 17327 + pos: 40.5,14.5 + parent: 2 + - uid: 8808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,16.5 - parent: 89 - - uid: 17360 + pos: -20.591122,23.817823 + parent: 2 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 8809 components: - type: Transform - pos: -123.5,23.5 - parent: 89 - - uid: 17365 + pos: 20.510513,7.296205 + parent: 2 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 8810 components: - type: Transform - pos: -128.5,26.5 - parent: 89 - - uid: 17366 + pos: 13.742942,5.514955 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8769 components: - type: Transform - pos: -116.5,24.5 - parent: 89 - - uid: 17367 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8776 components: - type: Transform - pos: -130.5,26.5 - parent: 89 - - uid: 17372 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,29.5 - parent: 89 - - uid: 17384 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8811 components: - type: Transform - pos: -126.5,24.5 - parent: 89 - - uid: 17385 + pos: -98.397224,9.416823 + parent: 2 + - uid: 8812 components: - type: Transform - pos: -126.5,25.5 - parent: 89 - - uid: 17386 + pos: -98.41285,9.729323 + parent: 2 + - uid: 8813 components: - type: Transform - pos: -126.5,26.5 - parent: 89 - - uid: 17387 + pos: 3.3797808,36.4109 + parent: 2 + - uid: 8814 components: - type: Transform - pos: -127.5,26.5 - parent: 89 - - uid: 17389 + pos: 32.570797,6.603381 + parent: 2 + - uid: 8815 components: - type: Transform - pos: -122.5,24.5 - parent: 89 - - uid: 17393 + pos: 32.508297,6.790881 + parent: 2 + - uid: 8816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,29.5 - parent: 89 - - uid: 17396 + pos: 32.555172,6.665881 + parent: 2 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,28.5 - parent: 89 - - uid: 17397 + pos: 32.555172,6.806506 + parent: 2 + - uid: 8818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,29.5 - parent: 89 - - uid: 17398 + pos: 32.555172,6.728381 + parent: 2 + - uid: 8820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,27.5 - parent: 89 - - uid: 17399 + parent: 8819 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,28.5 - parent: 89 - - uid: 17400 + parent: 8821 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,29.5 - parent: 89 - - uid: 17401 + parent: 8823 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,29.5 - parent: 89 - - uid: 17402 + parent: 8825 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,29.5 - parent: 89 - - uid: 17416 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 8827 components: - type: Transform - pos: -123.5,24.5 - parent: 89 - - uid: 17420 + pos: -90.483246,12.677497 + parent: 2 + - uid: 8828 components: - type: Transform - pos: -118.5,23.5 - parent: 89 - - uid: 17421 + pos: -91.46152,23.723183 + parent: 2 + - uid: 8829 components: - type: Transform - pos: -124.5,24.5 - parent: 89 - - uid: 17422 + pos: 8.534033,-16.600626 + parent: 2 + - uid: 25682 components: - type: Transform - pos: -118.5,24.5 - parent: 89 - - uid: 17423 + pos: 5.594854,1.5872421 + parent: 24450 + - uid: 25683 components: - type: Transform - pos: -117.5,24.5 - parent: 89 - - uid: 17425 + pos: 6.297979,1.5247421 + parent: 24450 + - uid: 25684 components: - type: Transform - pos: -129.5,25.5 - parent: 89 - - uid: 17428 + pos: 7.032354,1.5403671 + parent: 24450 + - uid: 25685 components: - type: Transform - pos: -129.5,26.5 - parent: 89 - - uid: 17446 + pos: -31.132912,1.5716171 + parent: 24450 + - uid: 25686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,15.5 - parent: 89 - - uid: 17454 + pos: -30.320412,1.5247421 + parent: 24450 + - uid: 25687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,22.5 - parent: 89 - - uid: 17455 + pos: -29.617287,1.5247421 + parent: 24450 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 8830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,23.5 - parent: 89 - - uid: 17456 + pos: -46.476616,-9.521127 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 8754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,21.5 - parent: 89 - - uid: 17457 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,30.5 - parent: 89 - - uid: 17458 + pos: 18.379253,23.490591 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 8832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,30.5 - parent: 89 - - uid: 17470 + pos: 9.748317,42.759 + parent: 2 + - uid: 8833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,44.5 - parent: 89 - - uid: 17472 + pos: 9.576442,42.66525 + parent: 2 + - uid: 8834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,45.5 - parent: 89 - - uid: 17484 + pos: 9.46803,9.090267 + parent: 2 + - uid: 8835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 89 - - uid: 17487 + pos: -9.527635,20.493486 + parent: 2 +- proto: ClothingHeadCapCentcomBlack + entities: + - uid: 8836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,43.5 - parent: 89 - - uid: 17489 + pos: 47.618473,-6.3060718 + parent: 2 +- proto: ClothingHeadHatBunny + entities: + - uid: 8838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 - parent: 89 - - uid: 17490 + pos: 13.368769,5.764955 + parent: 2 +- proto: ClothingHeadHatCargosoftFlipped + entities: + - uid: 8839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 89 - - uid: 17491 + pos: -61.638783,-4.495265 + parent: 2 +- proto: ClothingHeadHatCatEars + entities: + - uid: 8840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,43.5 - parent: 89 - - uid: 17492 + pos: 44.45559,17.498344 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 8841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,36.5 - parent: 89 - - uid: 17493 + pos: 47.398846,-24.403196 + parent: 2 + - uid: 8842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,36.5 - parent: 89 - - uid: 17494 + pos: 47.72697,-24.637571 + parent: 2 +- proto: ClothingHeadHatERTLeaderBeret + entities: + - uid: 27547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,36.5 - parent: 89 - - uid: 17495 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHardhatArmored + entities: + - uid: 8843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,44.5 - parent: 89 - - uid: 17496 + pos: -25.51856,29.62787 + parent: 2 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 25688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 89 - - uid: 17497 + pos: -30.721146,1.5559921 + parent: 24450 + - uid: 25689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 89 - - uid: 17498 + pos: -30.143023,1.5403671 + parent: 24450 + - uid: 25690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,39.5 - parent: 89 - - uid: 17499 + pos: -29.486773,1.5247421 + parent: 24450 + - uid: 25691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 89 - - uid: 17500 + pos: 5.516729,1.5247421 + parent: 24450 + - uid: 25692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,36.5 - parent: 89 - - uid: 17501 + pos: 6.141729,1.5247421 + parent: 24450 + - uid: 25693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,35.5 - parent: 89 - - uid: 17502 + pos: 6.735479,1.5091171 + parent: 24450 +- proto: ClothingHeadHatHoodBioGeneral + entities: + - uid: 8844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,34.5 - parent: 89 - - uid: 17503 + pos: 27.533932,31.764072 + parent: 2 +- proto: ClothingHeadHatHoodGoliathCloak + entities: + - uid: 8845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,33.5 - parent: 89 - - uid: 17504 + pos: -68.53844,-19.214548 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 8846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 - parent: 89 - - uid: 17505 + pos: -27.262207,24.532402 + parent: 2 + - uid: 8847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,33.5 - parent: 89 - - uid: 17506 + pos: -27.652832,24.532402 + parent: 2 +- proto: ClothingHeadHatParamedicsoft + entities: + - uid: 8848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 89 - - uid: 17507 + pos: 17.990076,23.53068 + parent: 2 +- proto: ClothingHeadHatPurplesoftFlipped + entities: + - uid: 8849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,29.5 - parent: 89 - - uid: 17508 + pos: -66.46791,1.4331145 + parent: 2 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 8851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 89 - - uid: 17509 + pos: -9.563451,20.796513 + parent: 2 +- proto: ClothingHeadHatSyndie + entities: + - uid: 8852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,29.5 - parent: 89 - - uid: 17511 + pos: -112.51237,-23.449892 + parent: 2 +- proto: ClothingHeadHatTophat + entities: + - uid: 8853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 - parent: 89 - - uid: 17512 + pos: -26.41045,-3.4169827 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 8854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,31.5 - parent: 89 - - uid: 17513 + pos: -1.4408808,-2.2997437 + parent: 2 + - uid: 8855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,26.5 - parent: 89 - - uid: 17514 + pos: -41.526688,-11.524264 + parent: 2 +- proto: ClothingHeadHatWizard + entities: + - uid: 8856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,26.5 - parent: 89 - - uid: 17515 + pos: -34.465157,24.600704 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 8857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,26.5 - parent: 89 - - uid: 17516 + pos: 44.612514,-6.462657 + parent: 2 + - uid: 8858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 89 - - uid: 17517 + pos: 44.320847,-6.4730735 + parent: 2 + - uid: 8859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 - parent: 89 - - uid: 17518 + pos: 44.820847,-6.462657 + parent: 2 +- proto: ClothingHeadHelmetERTLeader + entities: + - uid: 27548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 89 - - uid: 17519 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 8860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,47.5 - parent: 89 - - uid: 17520 + pos: 54.324352,-13.24983 + parent: 2 + - uid: 25072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 89 - - uid: 17521 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,37.5 - parent: 89 - - uid: 17522 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,35.5 - parent: 89 - - uid: 17523 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 89 - - uid: 17524 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 89 - - uid: 17525 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 89 - - uid: 17526 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,37.5 - parent: 89 - - uid: 17527 + pos: 46.504883,-6.2790465 + parent: 2 + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 89 - - uid: 17528 + pos: 46.775715,-6.2269635 + parent: 2 + - uid: 8863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 - parent: 89 - - uid: 17529 + pos: 47.403194,-6.361627 + parent: 2 + - uid: 8864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,35.5 - parent: 89 - - uid: 17531 + pos: 46.359047,-6.2582135 + parent: 2 + - uid: 8865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,36.5 - parent: 89 - - uid: 17533 + pos: 47.785137,-6.361627 + parent: 2 + - uid: 8866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 89 - - uid: 17534 + pos: 47.590694,-6.3685718 + parent: 2 + - uid: 24532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,36.5 - parent: 89 - - uid: 17535 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetSwat + entities: + - uid: 8867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,35.5 - parent: 89 - - uid: 17536 + pos: 40.498325,-9.095125 + parent: 2 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 8868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 89 - - uid: 17537 + pos: -87.24428,27.581451 + parent: 2 +- proto: ClothingHeadRastaHat + entities: + - uid: 8869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 89 - - uid: 17538 + pos: -5.363779,-7.512106 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 8870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 89 - - uid: 17539 + pos: -93.74811,-9.168023 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 8871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 89 - - uid: 17540 + pos: -8.481108,17.56099 + parent: 2 + - uid: 8872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,33.5 - parent: 89 - - uid: 17541 + pos: -8.485481,17.643927 + parent: 2 +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 27554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,46.5 - parent: 89 - - uid: 17542 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskClown + entities: + - uid: 8873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,45.5 - parent: 89 - - uid: 17543 + pos: -35.60017,-3.048325 + parent: 2 +- proto: ClothingMaskClownBanana + entities: + - uid: 8874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,44.5 - parent: 89 - - uid: 17544 + pos: 50.546875,-2.8088772 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 8875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,24.5 - parent: 89 - - uid: 17545 + pos: -99.463165,2.5775177 + parent: 2 + - uid: 8876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,40.5 - parent: 89 - - uid: 17546 + pos: -56.4669,12.53417 + parent: 2 + - uid: 8877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,39.5 - parent: 89 - - uid: 17547 + pos: -9.6575165,-0.47812033 + parent: 2 + - uid: 8878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 89 - - uid: 17548 + pos: -9.2356415,-0.47812033 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 8879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 89 - - uid: 17549 + rot: 3.141592653589793 rad + pos: -93.704895,-6.4565554 + parent: 2 + - uid: 8880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 89 - - uid: 17550 + pos: -103.42277,9.610933 + parent: 2 + - uid: 8881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,34.5 - parent: 89 - - uid: 17551 + pos: 0.5000324,27.651428 + parent: 2 + - uid: 8882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,33.5 - parent: 89 - - uid: 17552 + pos: -112.0045,-13.262295 + parent: 2 + - uid: 8883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 89 - - uid: 17553 + rot: 3.141592653589793 rad + pos: -93.329895,-6.5346804 + parent: 2 +- proto: ClothingMaskGasCentcom + entities: + - uid: 8884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,31.5 - parent: 89 - - uid: 17554 + pos: -27.471012,33.45121 + parent: 2 +- proto: ClothingMaskGasERT + entities: + - uid: 27560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,24.5 - parent: 89 - - uid: 17555 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,25.5 - parent: 89 - - uid: 17556 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,24.5 - parent: 89 - - uid: 17557 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 - parent: 89 - - uid: 17558 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasMerc + entities: + - uid: 8885 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,27.5 - parent: 89 - - uid: 17559 + pos: -151.82591,-16.404423 + parent: 2 +- proto: ClothingMaskGasSwat + entities: + - uid: 8886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 89 - - uid: 17560 + pos: 40.4827,-9.313875 + parent: 2 + - uid: 27584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,26.5 - parent: 89 - - uid: 17561 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 8887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 89 - - uid: 17562 + pos: -8.493736,13.698058 + parent: 2 + - uid: 8888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,49.5 - parent: 89 - - uid: 17563 + pos: -8.493736,13.619933 + parent: 2 + - uid: 8889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,49.5 - parent: 89 - - uid: 17564 + pos: -8.509361,13.541808 + parent: 2 + - uid: 8890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,49.5 - parent: 89 - - uid: 17565 + pos: -8.458017,13.747701 + parent: 2 + - uid: 8891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,49.5 - parent: 89 - - uid: 17566 + pos: -8.504817,13.653951 + parent: 2 + - uid: 8892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 89 - - uid: 17567 + pos: -8.504817,13.575826 + parent: 2 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 8893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 89 - - uid: 17568 + pos: -68.51435,-19.383087 + parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 8894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,48.5 - parent: 89 - - uid: 17569 + pos: 19.533554,-18.54226 + parent: 2 +- proto: ClothingNeckGoldmedal + entities: + - uid: 8895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,49.5 - parent: 89 - - uid: 17570 + pos: 48.282852,-2.0643146 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 8896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,49.5 - parent: 89 - - uid: 17571 + pos: 44.379528,-12.608146 + parent: 2 + - uid: 8897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,49.5 - parent: 89 - - uid: 17572 + pos: 44.551403,-12.233146 + parent: 2 +- proto: ClothingNeckHorrific + entities: + - uid: 8898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 89 - - uid: 17573 + pos: -39.61603,28.938139 + parent: 2 +- proto: ClothingNeckMantleCap + entities: + - uid: 8899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,48.5 - parent: 89 - - uid: 17574 + pos: 47.81577,10.405572 + parent: 2 +- proto: ClothingNeckMantleERTLeader + entities: + - uid: 27549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,48.5 - parent: 89 - - uid: 17575 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 8902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,49.5 - parent: 89 - - uid: 17576 + pos: -35.64279,-9.370201 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 8903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,49.5 - parent: 89 - - uid: 17577 + pos: 32.963474,20.751863 + parent: 2 + - uid: 8904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,49.5 - parent: 89 - - uid: 17578 + pos: 33.025974,20.611238 + parent: 2 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 8905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,49.5 - parent: 89 - - uid: 17579 + pos: -87.77427,27.411627 + parent: 2 +- proto: ClothingNeckTieDet + entities: + - uid: 8906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,49.5 - parent: 89 - - uid: 17580 + pos: 8.465353,27.48247 + parent: 2 +- proto: ClothingOuterAerostaticBomberJacket + entities: + - uid: 8907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,49.5 - parent: 89 - - uid: 17581 + pos: -19.437286,28.49617 + parent: 2 +- proto: ClothingOuterApron + entities: + - uid: 8908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,48.5 - parent: 89 - - uid: 17582 + pos: -6.622481,35.579773 + parent: 2 +- proto: ClothingOuterApronChef + entities: + - uid: 8909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 89 - - uid: 17583 + pos: 48.38322,-24.418821 + parent: 2 + - uid: 8910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,46.5 - parent: 89 - - uid: 17584 + pos: 48.680096,-24.606321 + parent: 2 +- proto: ClothingOuterArmorBasic + entities: + - uid: 8911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 89 - - uid: 17585 + pos: 44.570847,-6.775157 + parent: 2 + - uid: 8912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,44.5 - parent: 89 - - uid: 17586 + pos: 44.820847,-6.7855735 + parent: 2 + - uid: 8913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 89 - - uid: 17587 + pos: 44.372932,-6.806407 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 8914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,45.5 - parent: 89 - - uid: 17588 + rot: 3.141592653589793 rad + pos: 47.618473,-6.736627 + parent: 2 + - uid: 8915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,47.5 - parent: 89 - - uid: 17589 + rot: 3.141592653589793 rad + pos: 47.424026,-6.7713494 + parent: 2 + - uid: 8916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 89 - - uid: 17591 + rot: 3.141592653589793 rad + pos: 47.805973,-6.736627 + parent: 2 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 8917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,42.5 - parent: 89 - - uid: 17592 + pos: 40.529575,-9.73575 + 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: ClothingOuterArmorReflective + entities: + - uid: 8918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,42.5 - parent: 89 - - uid: 17595 + pos: 45.754883,-6.6644635 + parent: 2 + - uid: 8919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 89 - - uid: 17596 + pos: 45.338215,-6.67488 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 89 - - uid: 17599 + pos: 46.400715,-6.7165465 + parent: 2 + - uid: 8921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,41.5 - parent: 89 - - uid: 17607 + pos: 46.567383,-6.6957135 + parent: 2 + - uid: 8922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,40.5 - parent: 89 - - uid: 17608 + pos: 46.859047,-6.6852965 + parent: 2 + - uid: 24533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,39.5 - parent: 89 - - uid: 17629 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioGeneral + entities: + - uid: 8923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,34.5 - parent: 89 - - uid: 17637 + pos: 27.533932,31.373447 + parent: 2 +- proto: ClothingOuterCoatHoSGreatcoat + entities: + - uid: 8924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,32.5 - parent: 89 - - uid: 17638 + pos: 47.639305,-6.576905 + parent: 2 +- proto: ClothingOuterCoatLab + entities: + - uid: 8755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,32.5 - parent: 89 - - uid: 17639 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatParamedicWB + entities: + - uid: 8925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 - parent: 89 - - uid: 17640 + pos: 17.990076,23.68693 + parent: 2 +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 8926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 89 - - uid: 17641 + pos: -39.54277,32.313835 + parent: 2 +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 27579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,29.5 - parent: 89 - - uid: 17643 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTLeader + entities: + - uid: 27585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 - parent: 89 - - uid: 17779 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 27555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 89 - - uid: 17805 + parent: 27553 + - 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]50%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 27561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-2.5 - parent: 89 - - uid: 17806 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-3.5 - parent: 89 - - uid: 17807 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-0.5 - parent: 89 - - uid: 17808 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 25073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-1.5 - parent: 89 - - uid: 17809 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-2.5 - parent: 89 - - uid: 17810 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 - parent: 89 - - uid: 17811 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 89 - - uid: 17812 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-7.5 - parent: 89 - - uid: 17813 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-7.5 - parent: 89 - - uid: 17814 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitLuxury + entities: + - uid: 8928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-7.5 - parent: 89 - - uid: 17815 + parent: 8927 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 24534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 89 - - uid: 17816 + parent: 24526 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 25694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 89 - - uid: 17817 + pos: -29.495789,-3.492447 + parent: 24450 +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 8929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 89 - - uid: 17818 + pos: 54.511852,-13.46858 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 8930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 89 - - uid: 17819 + pos: 21.501547,31.709066 + parent: 2 + - uid: 8932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-8.5 - parent: 89 - - uid: 17820 + parent: 8931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 89 - - uid: 17821 + parent: 8931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 89 - - uid: 17822 + parent: 8938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 89 - - uid: 17823 + parent: 8938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 89 - - uid: 17879 + pos: 27.752682,31.732822 + parent: 2 +- proto: ClothingOuterWinterSyndieCapArmored + entities: + - uid: 8946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-19.5 - parent: 89 - - uid: 17880 + rot: -1.5707963267948966 rad + pos: -87.45478,27.080427 + parent: 2 +- proto: ClothingOuterWizard + entities: + - uid: 8947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-18.5 - parent: 89 - - uid: 17882 + pos: -34.433907,24.100704 + parent: 2 +- proto: ClothingShoesAerostatic + entities: + - uid: 8948 components: - type: Transform - pos: 29.5,-16.5 - parent: 89 - - uid: 17897 + pos: -19.421661,27.93367 + parent: 2 +- proto: ClothingShoesBling + entities: + - uid: 8949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 89 - - uid: 17898 + pos: 50.53125,-2.9807522 + parent: 2 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 25695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-21.5 - parent: 89 - - uid: 17899 + pos: -15.45606,-2.582761 + parent: 24450 +- proto: ClothingShoesBootsMag + entities: + - uid: 5 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 89 - - uid: 17900 + pos: 24.469347,-18.35476 + parent: 2 + - type: Magboots + toggleActionEntity: 6 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6 + - uid: 8770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 89 - - uid: 17920 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 89 - - uid: 17924 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 89 - - uid: 17927 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 89 - - uid: 17928 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-25.5 - parent: 89 - - uid: 17930 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 89 - - uid: 17931 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 89 - - uid: 17932 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-28.5 - parent: 89 - - uid: 17934 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsSalvage + entities: + - uid: 8950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-27.5 - parent: 89 - - uid: 17936 + pos: -46.546875,-10.40625 + parent: 2 +- proto: ClothingShoesChameleonNoSlips + entities: + - uid: 8951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 89 - - uid: 17938 + pos: -102.50028,27.336597 + parent: 2 +- proto: ClothingShoesChef + entities: + - uid: 8952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-30.5 - parent: 89 - - uid: 17939 + pos: -14.475378,-5.505477 + parent: 2 +- proto: ClothingShoesClown + entities: + - uid: 8953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-31.5 - parent: 89 - - uid: 17942 + pos: -35.56892,-3.4077 + parent: 2 +- proto: ClothingShoesGreenLizardskin + entities: + - uid: 8954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-31.5 - parent: 89 - - uid: 17943 + pos: -42.542587,28.46403 + parent: 2 +- proto: ClothingShoesLeather + entities: + - uid: 8756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-32.5 - parent: 89 - - uid: 17944 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 89 - - uid: 17945 + pos: -72.94503,-6.821913 + parent: 2 + - uid: 8956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 89 - - uid: 17946 + pos: 47.008595,14.970873 + parent: 2 +- proto: ClothingShoesSkates + entities: + - uid: 8958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 89 - - uid: 17948 + parent: 8957 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesSlippers + entities: + - uid: 8959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 89 - - uid: 17949 + pos: 41.338043,14.397523 + parent: 2 +- proto: ClothingShoesWizard + entities: + - uid: 8960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 89 - - uid: 17950 + pos: -34.48078,23.52258 + parent: 2 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 8757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-34.5 - parent: 89 - - uid: 17951 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtDetectiveGrey + entities: + - uid: 8758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 89 - - uid: 17952 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAerostatic + entities: + - uid: 8961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 89 - - uid: 17953 + pos: -19.499786,29.230545 + parent: 2 +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 8962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 89 - - uid: 17955 + pos: -35.553295,-3.360825 + parent: 2 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 8759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-34.5 - parent: 89 - - uid: 17956 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 8760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-35.5 - parent: 89 - - uid: 17957 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTLeader + entities: + - uid: 27550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-36.5 - parent: 89 - - uid: 17959 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlue + entities: + - uid: 8963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-35.5 - parent: 89 - - uid: 17960 + pos: -0.7239857,46.668728 + parent: 2 +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 8964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 89 - - uid: 17961 + pos: -6.2239857,46.590603 + parent: 2 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 25074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-37.5 - parent: 89 - - uid: 17962 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 89 - - uid: 17963 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 89 - - uid: 17964 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-40.5 - parent: 89 - - uid: 17965 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-41.5 - parent: 89 - - uid: 17966 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-43.5 - parent: 89 - - uid: 17967 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSuperstarCop + entities: + - uid: 8965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 89 - - uid: 17968 + pos: -39.995895,29.48571 + parent: 2 +- proto: ClusterBangFull + entities: + - uid: 1117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 89 - - uid: 17970 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-48.5 - parent: 89 - - uid: 17971 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-48.5 - parent: 89 - - uid: 17972 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 8966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-44.5 - parent: 89 - - uid: 17973 + pos: -93.5,29.5 + parent: 2 + - uid: 8967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 89 - - uid: 17974 + rot: -1.5707963267948966 rad + pos: -91.5,29.5 + parent: 2 + - uid: 8968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 89 - - uid: 17975 + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 8969 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-48.5 - parent: 89 - - uid: 17977 + pos: 15.5,-16.5 + parent: 2 + - uid: 8970 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-48.5 - parent: 89 - - uid: 17978 + pos: 13.5,-15.5 + parent: 2 + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 89 - - uid: 17979 + pos: 43.5,-8.5 + parent: 2 + - uid: 8972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-48.5 - parent: 89 - - uid: 17980 + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - uid: 25696 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-47.5 - parent: 89 - - uid: 17981 + pos: 1.5,9.5 + parent: 24450 + - uid: 25697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 89 - - uid: 17982 + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 24450 +- proto: Cobweb2 + entities: + - uid: 8973 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 89 - - uid: 17983 + pos: -93.5,27.5 + parent: 2 + - uid: 8974 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-48.5 - parent: 89 - - uid: 17984 + pos: 14.5,-15.5 + parent: 2 + - uid: 8975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-47.5 - parent: 89 - - uid: 17985 + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 25698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 89 - - uid: 17986 + pos: 4.5,11.5 + parent: 24450 +- proto: CockroachTimedSpawner + entities: + - uid: 8976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-48.5 - parent: 89 - - uid: 17987 + pos: -21.5,-23.5 + parent: 2 + - uid: 8977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 89 - - uid: 17988 + pos: -38.5,11.5 + parent: 2 + - uid: 8978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 89 - - uid: 17989 + pos: -39.5,28.5 + parent: 2 + - uid: 8979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-46.5 - parent: 89 - - uid: 17990 + pos: -33.5,-17.5 + parent: 2 + - uid: 8980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-46.5 - parent: 89 - - uid: 17991 + pos: 6.5,26.5 + parent: 2 + - uid: 8981 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-43.5 - parent: 89 - - uid: 17992 + pos: 34.5,-16.5 + parent: 2 + - uid: 8982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-43.5 - parent: 89 - - uid: 17993 + pos: -42.5,-17.5 + parent: 2 + - uid: 8983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-40.5 - parent: 89 - - uid: 17994 + pos: -44.5,-8.5 + parent: 2 + - uid: 8984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-41.5 - parent: 89 - - uid: 17995 + pos: -25.5,-23.5 + parent: 2 + - uid: 8985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-42.5 - parent: 89 - - uid: 17996 + pos: -11.5,-30.5 + parent: 2 + - uid: 8986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-39.5 - parent: 89 - - uid: 17997 + pos: 6.5,-28.5 + parent: 2 + - uid: 8987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-39.5 - parent: 89 - - uid: 17998 + pos: 4.5,-16.5 + parent: 2 + - uid: 8988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-39.5 - parent: 89 - - uid: 17999 + pos: 17.5,-18.5 + parent: 2 + - uid: 8989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-37.5 - parent: 89 - - uid: 18000 + pos: 48.5,4.5 + parent: 2 + - uid: 8990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-39.5 - parent: 89 - - uid: 18001 + pos: 40.5,19.5 + parent: 2 + - uid: 8991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-38.5 - parent: 89 - - uid: 18002 + pos: 31.5,22.5 + parent: 2 + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-39.5 - parent: 89 - - uid: 18003 + pos: -6.5,23.5 + parent: 2 + - uid: 8993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-39.5 - parent: 89 - - uid: 18004 + pos: -6.5,33.5 + parent: 2 + - uid: 8994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-38.5 - parent: 89 - - uid: 18005 + pos: 0.5,36.5 + parent: 2 + - uid: 8995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-37.5 - parent: 89 - - uid: 18007 + pos: -2.5,43.5 + parent: 2 + - uid: 8996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-34.5 - parent: 89 - - uid: 18008 + pos: -20.5,22.5 + parent: 2 + - uid: 8997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-34.5 - parent: 89 - - uid: 18009 + pos: -18.5,16.5 + parent: 2 + - uid: 8998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-33.5 - parent: 89 - - uid: 18011 + pos: -17.5,13.5 + parent: 2 + - uid: 8999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-35.5 - parent: 89 - - uid: 18012 + pos: -36.5,-1.5 + parent: 2 + - uid: 9000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-31.5 - parent: 89 - - uid: 18013 + pos: -45.5,20.5 + parent: 2 + - uid: 9001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-30.5 - parent: 89 - - uid: 18014 + pos: -53.5,25.5 + parent: 2 + - uid: 9002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-30.5 - parent: 89 - - uid: 18015 + pos: -53.5,35.5 + parent: 2 + - uid: 9003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 89 - - uid: 18016 + pos: -71.5,20.5 + parent: 2 + - uid: 9004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-30.5 - parent: 89 - - uid: 18017 + pos: -76.5,16.5 + parent: 2 + - uid: 9005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-30.5 - parent: 89 - - uid: 18018 + pos: -87.5,18.5 + parent: 2 + - uid: 9006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 89 - - uid: 18019 + pos: -96.5,25.5 + parent: 2 + - uid: 9007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 - parent: 89 - - uid: 18020 + pos: -100.5,13.5 + parent: 2 + - uid: 9008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-30.5 - parent: 89 - - uid: 18021 + pos: -103.5,17.5 + parent: 2 + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 89 - - uid: 18022 + pos: -114.5,18.5 + parent: 2 + - uid: 9010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-30.5 - parent: 89 - - uid: 18023 + pos: -129.5,20.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 9011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-20.5 - parent: 89 - - uid: 18024 + pos: 5.2764907,-1.3724282 + parent: 2 +- proto: CombatMedipen + entities: + - uid: 9013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-29.5 - parent: 89 - - uid: 18025 + parent: 9012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-30.5 - parent: 89 - - uid: 18026 + parent: 9014 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 89 - - uid: 18028 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-29.5 - parent: 89 - - uid: 18029 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 9016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-30.5 - parent: 89 - - uid: 18030 + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - uid: 9017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-30.5 - parent: 89 - - uid: 18031 + pos: 35.5,15.5 + parent: 2 + - uid: 9018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-27.5 - parent: 89 - - uid: 18032 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 9019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-28.5 - parent: 89 - - uid: 18033 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 2 + - uid: 9020 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 89 - - uid: 18034 + pos: 35.5,12.5 + parent: 2 + - uid: 9021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-26.5 - parent: 89 - - uid: 18035 + pos: 33.5,15.5 + parent: 2 + - uid: 9022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 89 - - uid: 18036 + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - uid: 9023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-23.5 - parent: 89 - - uid: 18037 + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - uid: 9024 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-24.5 - parent: 89 - - uid: 18038 + pos: 33.5,12.5 + parent: 2 + - uid: 9025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-22.5 - parent: 89 - - uid: 18039 + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 9026 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-20.5 - parent: 89 - - uid: 18040 + pos: 48.5,14.5 + parent: 2 + - uid: 9027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-20.5 - parent: 89 - - uid: 18041 + rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 2 + - uid: 9028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-19.5 - parent: 89 - - uid: 18042 + pos: -72.5,-16.5 + parent: 2 + - uid: 9029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-19.5 - parent: 89 - - uid: 18043 + pos: 34.5,15.5 + parent: 2 + - uid: 9030 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-20.5 - parent: 89 - - uid: 18044 + pos: 34.5,12.5 + parent: 2 + - uid: 9031 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-21.5 - parent: 89 - - uid: 18045 + pos: -3.5,42.5 + parent: 2 + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 89 - - uid: 18046 + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 9033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-20.5 - parent: 89 - - uid: 18049 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 9034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-20.5 - parent: 89 - - uid: 18050 + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - uid: 9035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-20.5 - parent: 89 - - uid: 18051 + pos: 47.5,11.5 + parent: 2 + - uid: 9036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-20.5 - parent: 89 - - uid: 18052 + pos: -122.5,-13.5 + parent: 2 + - uid: 9037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 89 - - uid: 18053 + rot: -1.5707963267948966 rad + pos: -123.5,-12.5 + parent: 2 + - uid: 9038 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-21.5 - parent: 89 - - uid: 18054 + pos: 30.5,-13.5 + parent: 2 + - uid: 9039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 89 - - uid: 18055 + pos: -52.5,48.5 + parent: 2 + - uid: 9040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-22.5 - parent: 89 - - uid: 18057 + pos: -53.5,48.5 + parent: 2 + - uid: 9041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-22.5 - parent: 89 - - uid: 18058 + pos: -54.5,48.5 + parent: 2 + - uid: 9042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-22.5 - parent: 89 - - uid: 18137 + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - uid: 9043 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 18181 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 9044 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 18185 + rot: 3.141592653589793 rad + pos: 56.5,-26.5 + parent: 2 + - uid: 9045 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 18331 + pos: 55.5,-32.5 + parent: 2 + - uid: 9046 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 18976 + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 9047 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 18977 + rot: 1.5707963267948966 rad + pos: 34.5,-24.5 + parent: 2 + - uid: 9048 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 19622 + pos: 56.5,-32.5 + parent: 2 + - uid: 9049 components: - type: Transform - pos: 5.5,26.5 - parent: 89 - - uid: 19632 + rot: 1.5707963267948966 rad + pos: 57.5,-32.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 9050 components: - type: Transform - pos: 6.5,26.5 - parent: 89 - - uid: 19633 + pos: 54.446102,2.4674153 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 9051 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 19646 + pos: 57.5,10.5 + parent: 2 + - uid: 9052 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 19708 + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + - uid: 9053 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 19710 + rot: -1.5707963267948966 rad + pos: 65.5,11.5 + parent: 2 + - uid: 9054 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 19711 + rot: -1.5707963267948966 rad + pos: -28.5,35.5 + parent: 2 + - uid: 9055 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 19714 + rot: 3.141592653589793 rad + pos: -118.5,1.5 + parent: 2 + - uid: 9056 components: - type: Transform - pos: 7.5,26.5 - parent: 89 - - uid: 19788 + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 9057 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 19789 + rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 9058 components: - type: Transform - pos: 33.5,35.5 - parent: 89 - - uid: 19790 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 9059 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 19791 + pos: -129.5,23.5 + parent: 2 + - uid: 9060 components: - type: Transform - pos: 33.5,34.5 - parent: 89 - - uid: 19792 + rot: -1.5707963267948966 rad + pos: -91.5,29.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 9061 components: - type: Transform - pos: 30.5,35.5 - parent: 89 - - uid: 19799 + pos: -69.5,-9.5 + parent: 2 + - uid: 9062 components: - type: Transform - pos: 31.5,35.5 - parent: 89 - - uid: 19800 + pos: -64.5,-6.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 9063 components: - type: Transform - pos: 32.5,35.5 - parent: 89 - - uid: 19816 + rot: 1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 9064 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 19826 + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 9065 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 19828 + rot: 3.141592653589793 rad + pos: -65.5,-2.5 + parent: 2 + - uid: 9066 components: - type: Transform - pos: -123.5,16.5 - parent: 89 - - uid: 19829 + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 9067 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 19831 + rot: -1.5707963267948966 rad + pos: 63.5,1.5 + parent: 2 + - uid: 9068 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 19832 + pos: 59.5,15.5 + parent: 2 + - uid: 9069 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 19833 + rot: -1.5707963267948966 rad + pos: 59.5,3.5 + parent: 2 + - uid: 9070 components: - type: Transform - pos: -123.5,13.5 - parent: 89 - - uid: 19834 + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 25699 components: - type: Transform - pos: -123.5,15.5 - parent: 89 - - uid: 19835 + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 24450 +- proto: ComputerCrewMonitoring + entities: + - uid: 9071 components: - type: Transform - pos: -123.5,14.5 - parent: 89 - - uid: 19839 + pos: 52.5,15.5 + parent: 2 + - uid: 9072 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 19840 + pos: 8.5,-10.5 + parent: 2 + - uid: 9073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,12.5 - parent: 89 - - uid: 19890 + pos: 13.5,-0.5 + parent: 2 + - uid: 9074 components: - type: Transform - pos: 29.5,36.5 - parent: 89 - - uid: 19918 + rot: 3.141592653589793 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 9075 components: - type: Transform - pos: 29.5,37.5 - parent: 89 - - uid: 19919 + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - uid: 9076 components: - type: Transform - pos: 29.5,35.5 - parent: 89 - - uid: 19924 + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - uid: 9077 components: - type: Transform - pos: 29.5,38.5 - parent: 89 - - uid: 19925 + rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 2 + - uid: 9078 components: - type: Transform - pos: 29.5,39.5 - parent: 89 - - uid: 19926 + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 9079 components: - type: Transform - pos: 29.5,40.5 - parent: 89 - - uid: 19927 + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 9080 components: - type: Transform - pos: 28.5,40.5 - parent: 89 - - uid: 19928 + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 9081 components: - type: Transform - pos: 28.5,41.5 - parent: 89 - - uid: 19930 + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 2 + - uid: 9082 components: - type: Transform - pos: 16.5,35.5 - parent: 89 - - uid: 19931 + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 9083 components: - type: Transform - pos: 17.5,35.5 - parent: 89 - - uid: 19932 + rot: 1.5707963267948966 rad + pos: -86.5,12.5 + parent: 2 + - uid: 9084 components: - type: Transform - pos: 18.5,35.5 - parent: 89 - - uid: 19933 + rot: 3.141592653589793 rad + pos: -84.5,15.5 + parent: 2 + - uid: 9085 components: - type: Transform - pos: 19.5,35.5 - parent: 89 - - uid: 19934 + rot: 3.141592653589793 rad + pos: -60.5,7.5 + parent: 2 + - uid: 9086 components: - type: Transform - pos: 19.5,36.5 - parent: 89 - - uid: 19935 + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - uid: 9087 components: - type: Transform - pos: 19.5,37.5 - parent: 89 - - uid: 19936 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 9088 components: - type: Transform - pos: 19.5,38.5 - parent: 89 - - uid: 19937 + pos: -73.5,-5.5 + parent: 2 + - uid: 9089 components: - type: Transform - pos: 19.5,39.5 - parent: 89 - - uid: 19938 + rot: 3.141592653589793 rad + pos: 59.5,-6.5 + parent: 2 + - uid: 23797 components: - type: Transform - pos: 19.5,40.5 - parent: 89 - - uid: 19939 + pos: 4.5,-1.5 + parent: 23711 + - uid: 25700 components: - type: Transform - pos: 20.5,40.5 - parent: 89 - - uid: 19940 + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 24450 + - uid: 25701 components: - type: Transform - pos: 20.5,41.5 - parent: 89 - - uid: 20244 + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 24450 +- proto: ComputerFrame + entities: + - uid: 9090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,26.5 - parent: 89 - - uid: 20374 + rot: -1.5707963267948966 rad + pos: -131.5,-6.5 + parent: 2 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,31.5 - parent: 89 - - uid: 20375 + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 9092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,33.5 - parent: 89 - - uid: 20376 + pos: 10.5,18.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 9093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 - parent: 89 - - uid: 20377 + rot: 3.141592653589793 rad + pos: 42.5,8.5 + parent: 2 + - uid: 9094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,37.5 - parent: 89 - - uid: 20380 + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 9095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,40.5 - parent: 89 - - uid: 20394 + rot: -1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 2 +- proto: ComputerIFF + entities: + - uid: 24389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,27.5 - parent: 89 - - uid: 20403 + pos: -0.5,-1.5 + parent: 24340 +- proto: ComputerIFFSyndicate + entities: + - uid: 24075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,28.5 - parent: 89 - - uid: 20404 + pos: 5.5,6.5 + parent: 23919 + - uid: 27588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,26.5 - parent: 89 - - uid: 20405 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 27260 +- proto: ComputerIFFSyndicateCircuitboard + entities: + - uid: 25702 components: + - type: MetaData + name: консоль системы опознования - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,26.5 - parent: 89 - - uid: 20406 + pos: 3.543898,11.66512 + parent: 24450 +- proto: ComputerMassMedia + entities: + - uid: 9096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,26.5 - parent: 89 - - uid: 20407 + pos: -26.5,9.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 9097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,26.5 - parent: 89 - - uid: 20408 + pos: 14.5,-0.5 + parent: 2 + - uid: 9098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 89 - - uid: 20409 + rot: 3.141592653589793 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 9099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,26.5 - parent: 89 - - uid: 20410 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 9100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,26.5 - parent: 89 - - uid: 20411 + pos: -121.5,14.5 + parent: 2 + - uid: 9101 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,26.5 - parent: 89 - - uid: 20412 + pos: -105.5,10.5 + parent: 2 + - uid: 9102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,26.5 - parent: 89 - - uid: 20413 + pos: -118.5,6.5 + parent: 2 + - uid: 9103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,26.5 - parent: 89 - - uid: 20423 + rot: 3.141592653589793 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 9104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,41.5 - parent: 89 - - uid: 20424 + rot: 3.141592653589793 rad + pos: -128.5,-2.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 9105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,42.5 - parent: 89 - - uid: 20436 + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - uid: 9106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,26.5 - parent: 89 - - uid: 20438 + pos: 55.5,15.5 + parent: 2 + - uid: 9107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,29.5 - parent: 89 - - uid: 20439 + pos: -49.5,-19.5 + parent: 2 + - uid: 9108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,26.5 - parent: 89 - - uid: 20450 + pos: -113.5,-6.5 + parent: 2 + - uid: 9109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,30.5 - parent: 89 - - uid: 20451 + rot: 3.141592653589793 rad + pos: -117.5,1.5 + parent: 2 + - uid: 23798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 89 - - uid: 20452 + pos: 2.5,-1.5 + parent: 23711 + - uid: 24390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,34.5 - parent: 89 - - uid: 20453 + pos: 1.5,-1.5 + parent: 24340 + - uid: 25703 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 89 - - uid: 20454 + pos: -14.5,-26.5 + parent: 24450 + - uid: 25704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,38.5 - parent: 89 - - uid: 20455 + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 24450 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 9110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,39.5 - parent: 89 - - uid: 20473 + rot: -1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 2 + - uid: 9111 components: - type: Transform - pos: -128.5,-17.5 - parent: 89 - - uid: 20474 + pos: -7.5,-34.5 + parent: 2 + - uid: 9112 components: - type: Transform - pos: -128.5,-18.5 - parent: 89 - - uid: 20499 + pos: 1.5,-27.5 + parent: 2 + - uid: 9113 components: - type: Transform - pos: -128.5,-19.5 - parent: 89 - - uid: 20500 + rot: -1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 9114 components: - type: Transform - pos: -128.5,-20.5 - parent: 89 - - uid: 20501 + pos: -70.5,-9.5 + parent: 2 + - uid: 9115 components: - type: Transform - pos: -128.5,-21.5 - parent: 89 - - uid: 20502 + rot: 3.141592653589793 rad + pos: -50.5,-14.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 9116 components: + - type: MetaData + name: консоль управления корабля - type: Transform - pos: -128.5,-22.5 - parent: 89 - - uid: 20503 + rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 23799 components: - type: Transform - pos: -128.5,-23.5 - parent: 89 - - uid: 20504 + pos: 3.5,-1.5 + parent: 23711 + - uid: 24076 components: - type: Transform - pos: -128.5,-24.5 - parent: 89 - - uid: 20505 + pos: 4.5,6.5 + parent: 23919 + - uid: 24391 components: - type: Transform - pos: -128.5,-25.5 - parent: 89 - - uid: 20506 + pos: 0.5,0.5 + parent: 24340 +- proto: ComputerShuttleCargo + entities: + - uid: 9117 components: - type: Transform - pos: -128.5,-26.5 - parent: 89 - - uid: 20507 + rot: 1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 9118 components: - type: Transform - pos: -128.5,-27.5 - parent: 89 - - uid: 20508 + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 9119 components: - type: Transform - pos: -128.5,-28.5 - parent: 89 - - uid: 20509 + rot: 1.5707963267948966 rad + pos: -105.5,11.5 + parent: 2 + - uid: 9120 components: - type: Transform - pos: -128.5,-29.5 - parent: 89 - - uid: 20519 + pos: -117.5,6.5 + parent: 2 + - uid: 9121 components: - type: Transform - pos: -127.5,-19.5 - parent: 89 - - uid: 20523 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 + parent: 2 + - uid: 9122 components: - type: Transform - pos: -130.5,-19.5 - parent: 89 - - uid: 20526 + rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 + - uid: 25705 components: - type: Transform - pos: -129.5,-19.5 - parent: 89 - - uid: 20538 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 24450 +- proto: ComputerStationRecords + entities: + - uid: 9123 components: - type: Transform - pos: -127.5,-24.5 - parent: 89 - - uid: 20539 + rot: -1.5707963267948966 rad + pos: 63.5,7.5 + parent: 2 + - uid: 9124 components: - type: Transform - pos: -126.5,-24.5 - parent: 89 - - uid: 20542 + pos: 54.5,10.5 + parent: 2 + - uid: 9125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,38.5 - parent: 89 - - uid: 20550 + pos: 65.5,12.5 + parent: 2 + - uid: 9126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 89 - - uid: 20563 + pos: -20.5,6.5 + parent: 2 + - uid: 9127 components: - type: Transform - pos: -130.5,-24.5 - parent: 89 - - uid: 20564 + rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 2 + - uid: 25706 components: - type: Transform - pos: -129.5,-24.5 - parent: 89 - - uid: 20565 + rot: -1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 24450 + - uid: 25707 components: - type: Transform - pos: -127.5,-29.5 - parent: 89 - - uid: 20566 + rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 24450 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 9128 components: - type: Transform - pos: -126.5,-29.5 - parent: 89 - - uid: 20567 + rot: -1.5707963267948966 rad + pos: 63.5,6.5 + parent: 2 + - uid: 9129 components: - type: Transform - pos: -128.5,-30.5 - parent: 89 - - uid: 20568 + pos: 7.5,-10.5 + parent: 2 + - uid: 9130 components: - type: Transform - pos: -129.5,-29.5 - parent: 89 - - uid: 20569 + rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 2 + - uid: 9131 components: - type: Transform - pos: -130.5,-29.5 - parent: 89 - - uid: 20656 + pos: -88.5,14.5 + parent: 2 + - uid: 9132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,38.5 - parent: 89 - - uid: 20657 + pos: -58.5,8.5 + parent: 2 + - uid: 9133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,38.5 - parent: 89 - - uid: 20659 + pos: -61.5,22.5 + parent: 2 + - uid: 9134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,38.5 - parent: 89 - - uid: 20660 + pos: -102.5,20.5 + parent: 2 + - uid: 9135 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,38.5 - parent: 89 - - uid: 20661 + pos: 22.5,6.5 + parent: 2 + - uid: 9136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,38.5 - parent: 89 - - uid: 20662 + pos: 56.5,15.5 + parent: 2 + - uid: 25708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,38.5 - parent: 89 - - uid: 20663 + pos: -9.5,6.5 + parent: 24450 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 9137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 89 - - uid: 20666 + pos: 22.5,5.5 + parent: 2 + - uid: 9138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,38.5 - parent: 89 - - uid: 20667 + pos: -27.5,9.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 9139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 - parent: 89 - - uid: 20668 + pos: -12.5,-16.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 9140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,38.5 - parent: 89 - - uid: 20669 + pos: -22.5,-3.5 + parent: 2 + - uid: 9141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,38.5 - parent: 89 - - uid: 20670 + pos: -22.5,29.5 + parent: 2 + - uid: 9142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,38.5 - parent: 89 - - uid: 20671 + pos: -37.5,29.5 + parent: 2 + - uid: 9143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,38.5 - parent: 89 - - uid: 20675 + pos: 42.5,12.5 + parent: 2 + - uid: 9144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,34.5 - parent: 89 - - uid: 20676 + pos: 48.5,15.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,34.5 - parent: 89 - - uid: 20677 + pos: -139.5,-3.5 + parent: 2 + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,34.5 - parent: 89 - - uid: 20678 + pos: -147.5,-3.5 + parent: 2 + - uid: 9147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,34.5 - parent: 89 - - uid: 20679 + pos: -147.5,-11.5 + parent: 2 + - uid: 9148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 89 - - uid: 20680 + pos: -139.5,-11.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 9149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 89 - - uid: 20681 + rot: 3.141592653589793 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 9150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 89 - - uid: 20682 + rot: 3.141592653589793 rad + pos: -55.5,-14.5 + parent: 2 + - uid: 9151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 89 - - uid: 20684 + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 + - uid: 9152 components: - type: Transform - pos: -125.5,-19.5 - parent: 89 - - uid: 20685 + pos: -66.5,-5.5 + parent: 2 + - uid: 9153 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,34.5 - parent: 89 - - uid: 20686 + pos: -95.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,34.5 - parent: 89 - - uid: 20687 + pos: -63.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 - parent: 89 - - uid: 20688 + pos: -63.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,34.5 - parent: 89 - - uid: 20689 + pos: -63.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,34.5 - parent: 89 - - uid: 20690 + pos: -63.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,34.5 - parent: 89 - - uid: 20691 + pos: -63.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 89 - - uid: 20692 + pos: -59.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 89 - - uid: 20693 + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 89 - - uid: 20694 + pos: -59.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,30.5 - parent: 89 - - uid: 20695 + pos: -59.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,30.5 - parent: 89 - - uid: 20696 + pos: -59.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,30.5 - parent: 89 - - uid: 20697 + pos: -66.5,-4.5 + parent: 2 + - uid: 9165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,30.5 - parent: 89 - - uid: 20698 + pos: -66.5,-3.5 + parent: 2 + - uid: 9166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 - parent: 89 - - uid: 20699 + pos: -66.5,-2.5 + parent: 2 + - uid: 9167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,30.5 - parent: 89 - - uid: 20701 + pos: -59.5,-2.5 + parent: 2 + - uid: 9168 components: - type: Transform - pos: -124.5,-19.5 - parent: 89 - - uid: 20703 + pos: -59.5,-3.5 + parent: 2 + - uid: 9169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 89 - - uid: 20704 + pos: -59.5,-4.5 + parent: 2 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 - parent: 89 - - uid: 20705 + pos: -59.5,-5.5 + parent: 2 + - uid: 9171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,30.5 - parent: 89 - - uid: 20706 + rot: 3.141592653589793 rad + pos: -95.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,30.5 - parent: 89 - - uid: 20707 + pos: -98.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,30.5 - parent: 89 - - uid: 20708 + pos: -99.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9174 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,30.5 - parent: 89 - - uid: 20709 + pos: -97.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9175 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,30.5 - parent: 89 - - uid: 20743 - components: - - type: Transform - pos: -131.5,-19.5 - parent: 89 - - uid: 20745 - components: - - type: Transform - pos: -132.5,-19.5 - parent: 89 - - uid: 20746 - components: - - type: Transform - pos: -133.5,-19.5 - parent: 89 - - uid: 20747 - components: - - type: Transform - pos: -126.5,-19.5 - parent: 89 - - uid: 20748 + pos: -96.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9176 components: - type: Transform - pos: -123.5,-19.5 - parent: 89 - - uid: 20749 + rot: 3.141592653589793 rad + pos: -95.5,28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9177 components: - type: Transform - pos: -122.5,-19.5 - parent: 89 - - uid: 20750 + rot: -1.5707963267948966 rad + pos: -102.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9178 components: - type: Transform - pos: -134.5,-19.5 - parent: 89 - - uid: 20751 + rot: -1.5707963267948966 rad + pos: -101.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9179 components: - type: Transform - pos: -131.5,-29.5 - parent: 89 - - uid: 20752 + rot: -1.5707963267948966 rad + pos: -100.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9180 components: - type: Transform - pos: -131.5,-24.5 - parent: 89 - - uid: 20753 + rot: 1.5707963267948966 rad + pos: -96.5,27.5 + parent: 2 + - uid: 9181 components: - type: Transform - pos: -132.5,-24.5 - parent: 89 - - uid: 20754 + rot: 1.5707963267948966 rad + pos: -97.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 25709 components: - type: Transform - pos: -133.5,-24.5 - parent: 89 - - uid: 20755 + pos: -18.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25710 components: - type: Transform - pos: -134.5,-24.5 - parent: 89 - - uid: 20756 + pos: -20.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25711 components: - type: Transform - pos: -135.5,-24.5 - parent: 89 - - uid: 20757 + pos: -20.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25712 components: - type: Transform - pos: -136.5,-24.5 - parent: 89 - - uid: 20759 + pos: -20.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25713 components: - type: Transform - pos: -125.5,-24.5 - parent: 89 - - uid: 20760 + pos: -18.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25714 components: - type: Transform - pos: -124.5,-24.5 - parent: 89 - - uid: 20761 + pos: -18.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25715 components: - type: Transform - pos: -123.5,-24.5 - parent: 89 - - uid: 20762 + pos: -18.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25716 components: - type: Transform - pos: -122.5,-24.5 - parent: 89 - - uid: 20763 + pos: -20.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25717 components: - type: Transform - pos: -121.5,-24.5 - parent: 89 - - uid: 20765 + pos: -23.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25718 components: - type: Transform - pos: -125.5,-29.5 - parent: 89 - - uid: 20766 + pos: -23.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25719 components: - type: Transform - pos: -124.5,-29.5 - parent: 89 - - uid: 20767 + pos: -23.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25720 components: - type: Transform - pos: -123.5,-29.5 - parent: 89 - - uid: 20768 + pos: -25.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25721 components: - type: Transform - pos: -122.5,-29.5 - parent: 89 - - uid: 20769 + pos: -25.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25722 components: - type: Transform - pos: -121.5,-29.5 - parent: 89 - - uid: 20770 + pos: -25.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25723 components: - type: Transform - pos: -120.5,-29.5 - parent: 89 - - uid: 20771 + pos: -25.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25724 components: - type: Transform - pos: -132.5,-29.5 - parent: 89 - - uid: 20772 + pos: -23.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25725 components: - type: Transform - pos: -133.5,-29.5 - parent: 89 - - uid: 20773 + pos: -5.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25726 components: - type: Transform - pos: -134.5,-29.5 - parent: 89 - - uid: 20774 + pos: -5.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25727 components: - type: Transform - pos: -135.5,-29.5 - parent: 89 - - uid: 20775 + pos: -5.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25728 components: - type: Transform - pos: -136.5,-29.5 - parent: 89 - - uid: 20776 + pos: -5.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25729 components: - type: Transform - pos: -137.5,-29.5 - parent: 89 - - uid: 20880 + pos: -3.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25730 components: - type: Transform - pos: 10.5,-20.5 - parent: 89 - - uid: 20917 + pos: -3.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25731 components: - type: Transform - pos: 30.5,-16.5 - parent: 89 - - uid: 20927 + pos: -3.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 - parent: 89 - - uid: 20930 + pos: -3.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 89 - - uid: 20934 + pos: -0.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,19.5 - parent: 89 - - uid: 20935 + pos: -0.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,19.5 - parent: 89 - - uid: 21089 + pos: -0.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25736 components: - type: Transform - pos: 60.5,-7.5 - parent: 89 - - uid: 21100 + pos: -0.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25737 components: - type: Transform - pos: 66.5,-0.5 - parent: 89 - - uid: 21147 + pos: 1.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 89 - - uid: 21148 + pos: 1.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 89 - - uid: 21575 + pos: 1.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,45.5 - parent: 89 - - uid: 21577 + pos: 1.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 +- proto: CowToolboxFilled + entities: + - uid: 9182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,45.5 - parent: 89 -- proto: Cautery + pos: 10.596526,-19.552021 + parent: 2 +- proto: CrateCoffin entities: - - uid: 17915 + - uid: 9183 components: - type: Transform - pos: -12.431932,21.596758 - parent: 89 - - uid: 20822 + pos: -50.5,-6.5 + parent: 2 + - uid: 9184 components: - type: Transform - pos: -1.7167411,15.760399 - parent: 89 -- proto: Chair + pos: -50.5,-7.5 + parent: 2 +- proto: CrateCommandSecure entities: - - uid: 129 + - uid: 24077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-17.5 - parent: 89 - - uid: 131 + pos: 2.5,4.5 + parent: 23919 + - 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: + - 24078 + - 24079 + - 24088 + - 24083 + - 24080 + - 24089 + - 24084 + - 24085 + - 24086 + - 24090 + - 24091 + - 24081 + - 24087 + - 24092 + - 24082 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 24093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-17.5 - parent: 89 - - uid: 206 + pos: 6.5,4.5 + parent: 23919 + - 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: + - 24094 + - 24095 + - 24096 + - 24097 + - 24098 + - 24099 + - 24100 + - 24101 + - 24102 + - 24103 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmergencyRadiationKit + entities: + - uid: 9185 components: - type: Transform - pos: -6.5,-20.5 - parent: 89 - - uid: 207 + pos: -60.5,-13.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 9186 components: - type: Transform - pos: -5.5,-20.5 - parent: 89 - - uid: 208 + pos: 49.5,3.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 9187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 89 - - uid: 209 + pos: -91.5,15.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: + - 9217 + - 9216 + - 9215 + - 9214 + - 9213 + - 9212 + - 9211 + - 9210 + - 9209 + - 9208 + - 9207 + - 9206 + - 9205 + - 9204 + - 9203 + - 9202 + - 9201 + - 9200 + - 9199 + - 9198 + - 9197 + - 9196 + - 9195 + - 9194 + - 9193 + - 9192 + - 9191 + - 9190 + - 9189 + - 9188 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringCableBulk + entities: + - uid: 9218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 89 - - uid: 372 + pos: 10.5,-16.5 + parent: 2 +- proto: CrateEngineeringJetpack + entities: + - uid: 9219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 89 - - uid: 2124 + pos: -60.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringParticleAccelerator + entities: + - uid: 9220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 89 - - uid: 2558 + pos: -115.5,-8.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 9221 components: - type: Transform - pos: -77.5,-23.5 - parent: 89 - - uid: 2559 + pos: -101.5,-10.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 + - uid: 9222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-25.5 - parent: 89 - - uid: 3120 + pos: -99.5,-10.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 + - uid: 9223 components: - type: Transform - pos: 47.5,-4.5 - parent: 89 - - uid: 3990 + pos: -100.5,-10.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: + - 9224 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFreezer + entities: + - uid: 9225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 - - uid: 3993 + pos: -11.5,17.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 9226 components: - type: Transform - pos: -8.5,-7.5 - parent: 89 - - uid: 5846 + pos: -60.5,-11.5 + parent: 2 +- proto: CrateFunLizardPlushieBulk + entities: + - uid: 9227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-13.5 - parent: 89 - - uid: 6085 + pos: -61.5,-12.5 + parent: 2 +- proto: CrateFunParty + entities: + - uid: 9228 components: - type: Transform - pos: -66.5,1.5 - parent: 89 - - uid: 6086 + pos: -61.5,-11.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 9229 components: - type: Transform - pos: -65.5,1.5 - parent: 89 - - uid: 6088 + pos: -59.5,-12.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 9230 components: - type: Transform - pos: -63.5,1.5 - parent: 89 - - uid: 6090 + pos: 10.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.3955739 + - 12.773826 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9233 + - 9231 + - 9232 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25741 components: - type: Transform - pos: -62.5,1.5 - parent: 89 - - uid: 6091 + pos: -19.5,-1.5 + parent: 24450 + - uid: 25742 components: - type: Transform - pos: -60.5,1.5 - parent: 89 - - uid: 6092 + pos: -18.5,-1.5 + parent: 24450 + - uid: 25743 components: - type: Transform - pos: -59.5,1.5 - parent: 89 - - uid: 6887 + pos: -5.5,-1.5 + parent: 24450 + - uid: 25744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,8.5 - parent: 89 - - uid: 6889 + pos: -4.5,-1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsTools + entities: + - uid: 9234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,8.5 - parent: 89 - - uid: 6962 + pos: -4.5,-9.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 591 components: - type: Transform - pos: -100.5,-1.5 - parent: 89 - - uid: 6963 + pos: 11.5,-0.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: + - 603 + - 596 + - 595 + - 605 + - 594 + - 600 + - 598 + - 604 + - 599 + - 597 + - 602 + - 593 + - 601 + - 592 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 9235 components: - type: Transform - pos: -101.5,-1.5 - parent: 89 - - uid: 6964 + pos: -9.5,19.5 + parent: 2 +- proto: CrateMedicalSupplies + entities: + - uid: 9236 components: - type: Transform - pos: -102.5,-1.5 - parent: 89 - - uid: 6965 + pos: 37.5,22.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 9237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-3.5 - parent: 89 - - uid: 6966 + pos: -22.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 3.2184362 + - 12.107451 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-3.5 - parent: 89 - - uid: 6967 + pos: -12.5,17.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 9239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-3.5 - parent: 89 - - uid: 6968 + pos: 57.5,2.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 23961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-3.5 - parent: 89 - - uid: 6969 + pos: 6.5,-1.5 + parent: 23919 + - 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: + - 23980 + - 23979 + - 23978 + - 23977 + - 23976 + - 23975 + - 23974 + - 23973 + - 23972 + - 23971 + - 23970 + - 23969 + - 23968 + - 23967 + - 23966 + - 23965 + - 23964 + - 23963 + - 23962 + - 23981 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePrivateSecure + entities: + - uid: 25745 components: - type: Transform - pos: -103.5,-1.5 - parent: 89 - - uid: 6996 + pos: -25.5,-9.5 + parent: 24450 + - 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: + - 25749 + - 25751 + - 25750 + - 25753 + - 25752 + - 25748 + - 25747 + - 25746 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSalvageEquipment + entities: + - uid: 9240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-2.5 - parent: 89 - - uid: 7106 + pos: -52.5,-11.5 + parent: 2 +- proto: CrateServiceBooks + entities: + - uid: 9241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,3.5 - parent: 89 - - uid: 7107 + pos: -61.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceBureaucracy + entities: + - uid: 9242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,2.5 - parent: 89 - - uid: 9911 + pos: -59.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 25754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,45.5 - parent: 89 - - uid: 9912 + pos: -25.5,8.5 + parent: 24450 +- proto: CrateServiceReplacementLights + entities: + - uid: 9243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,41.5 - parent: 89 - - uid: 9926 + pos: -59.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCartFilled + entities: + - uid: 9244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,35.5 - parent: 89 - - uid: 9927 + pos: -4.5,39.5 + parent: 2 + - uid: 9245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,34.5 - parent: 89 - - uid: 9928 + pos: -89.5,4.5 + parent: 2 + - uid: 9246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,33.5 - parent: 89 - - uid: 9931 + pos: -71.5,-3.5 + parent: 2 + - uid: 9247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,32.5 - parent: 89 - - uid: 9932 + pos: -100.5,25.5 + parent: 2 + - uid: 9248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,33.5 - parent: 89 - - uid: 9933 + pos: -100.5,27.5 + parent: 2 + - uid: 9249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,34.5 - parent: 89 - - uid: 9934 + pos: -33.5,7.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 9250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,35.5 - parent: 89 - - uid: 9935 + pos: -39.5,5.5 + parent: 2 + - uid: 9251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,36.5 - parent: 89 - - uid: 9938 + pos: -41.5,5.5 + parent: 2 +- proto: CrateVendingMachineRestockMedicalFilled + entities: + - uid: 9252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,28.5 - parent: 89 - - uid: 9939 + pos: 37.5,23.5 + parent: 2 +- proto: CrateWeaponSecure + entities: + - uid: 1115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,28.5 - parent: 89 - - uid: 9940 + pos: 44.5,-8.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: + - 1116 + - 1122 + - 1117 + - 1118 + - 1125 + - 1126 + - 1123 + - 1119 + - 1120 + - 1127 + - 1121 + - 1124 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,28.5 - parent: 89 - - uid: 9941 + pos: 43.5,-8.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: + - 1196 + - 1195 + - 1193 + - 1191 + - 1194 + - 1192 + - 1190 + - 1184 + - 1189 + - 1186 + - 1187 + - 1185 + - 1188 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,28.5 - parent: 89 - - uid: 9962 + pos: 40.5,-7.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: + - 9255 + - 9254 + - 9256 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,41.5 - parent: 89 - - uid: 9963 + pos: 5.5,-13.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27313 + - 27303 + - 27299 + - 27302 + - 27308 + - 27312 + - 27307 + - 27301 + - 27311 + - 27300 + - 27306 + - 27298 + - 27305 + - 27304 + - 27310 + - 27309 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 9257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,42.5 - parent: 89 - - uid: 9964 + pos: -35.41706,-9.445221 + parent: 2 + - uid: 9258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,43.5 - parent: 89 - - uid: 9965 + pos: 29.442505,31.825993 + parent: 2 +- proto: Crematorium + entities: + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,44.5 - parent: 89 - - uid: 9966 + pos: -52.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 9260 components: - type: Transform - pos: -62.5,45.5 - parent: 89 - - uid: 9967 + pos: 55.5,6.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 9261 components: - type: Transform - pos: -61.5,45.5 - parent: 89 - - uid: 9968 + rot: -1.5707963267948966 rad + pos: 43.74615,-4.234105 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 9262 components: - type: Transform - pos: -60.5,45.5 - parent: 89 - - uid: 10269 + pos: -12.082157,-30.87991 + parent: 2 + - uid: 9263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,7.5 - parent: 89 - - uid: 10300 + pos: -100.53644,24.543425 + parent: 2 + - uid: 9264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,8.5 - parent: 89 - - uid: 10848 + pos: -2.604181,-41.401688 + parent: 2 + - uid: 24535 components: - type: Transform - pos: -63.5,5.5 - parent: 89 - - uid: 10998 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,12.5 - parent: 89 - - uid: 10999 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CryogenicSleepUnit + entities: + - uid: 9265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,13.5 - parent: 89 - - uid: 11018 + pos: -22.5,18.5 + parent: 2 + - uid: 9266 components: - type: Transform - pos: -62.5,5.5 - parent: 89 - - uid: 11021 + pos: -22.5,17.5 + parent: 2 + - uid: 27589 components: - type: Transform - pos: -69.5,5.5 - parent: 89 - - uid: 11022 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 27260 + - uid: 27590 components: - type: Transform - pos: -68.5,5.5 - parent: 89 - - uid: 14630 + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 27260 + - uid: 27591 components: - type: Transform - pos: -98.5,18.5 - parent: 89 - - uid: 14631 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 27260 + - uid: 27592 components: - type: Transform - pos: -97.5,18.5 - parent: 89 - - uid: 14670 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 27260 + - uid: 27593 components: - type: Transform rot: 3.141592653589793 rad - pos: -122.5,21.5 - parent: 89 - - uid: 14671 + pos: 4.5,-6.5 + parent: 27260 + - uid: 27594 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,21.5 - parent: 89 - - uid: 14833 + pos: -5.5,-6.5 + parent: 27260 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 9267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 89 - - uid: 14868 + rot: 3.141592653589793 rad + pos: -27.5,18.5 + parent: 2 + - uid: 9268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 89 - - uid: 15452 + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9269 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,7.5 - parent: 89 - - uid: 15464 + pos: -25.5,18.5 + parent: 2 + - uid: 9270 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,7.5 - parent: 89 - - uid: 15486 + pos: -24.5,18.5 + parent: 2 + - uid: 9271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,9.5 - parent: 89 - - uid: 15509 + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - uid: 9272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,7.5 - parent: 89 - - uid: 15510 + pos: -25.5,17.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 9273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,7.5 - parent: 89 - - uid: 15745 + pos: 10.5,23.5 + parent: 2 + - uid: 9274 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - uid: 16557 + pos: 7.5,23.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 9275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 89 - - uid: 16558 + pos: 8.4537525,20.799503 + parent: 2 + - uid: 9276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,33.5 - parent: 89 - - uid: 16949 + pos: 8.6412525,20.643253 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 9277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-25.5 - parent: 89 - - uid: 16950 + pos: -80.5,-8.5 + parent: 2 + - uid: 9278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 89 - - uid: 16952 + pos: -81.5,0.5 + parent: 2 + - uid: 9279 components: - type: Transform - pos: -2.5,-27.5 - parent: 89 - - uid: 16953 + pos: -99.5,12.5 + parent: 2 + - uid: 9280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 89 - - uid: 16954 + pos: -112.5,18.5 + parent: 2 + - uid: 9281 components: - type: Transform - pos: -0.5,-27.5 - parent: 89 - - uid: 16955 + pos: -132.5,23.5 + parent: 2 + - uid: 9282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-29.5 - parent: 89 - - uid: 16963 + pos: -95.5,25.5 + parent: 2 + - uid: 9283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 89 - - uid: 16964 + pos: -93.5,23.5 + parent: 2 + - uid: 9284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 89 - - uid: 16984 + pos: -74.5,21.5 + parent: 2 + - uid: 9285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 89 - - uid: 16992 + pos: -52.5,22.5 + parent: 2 + - uid: 9286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-13.5 - parent: 89 - - uid: 16993 + pos: -39.5,21.5 + parent: 2 + - uid: 9287 components: - type: Transform - pos: 4.5,-10.5 - parent: 89 - - uid: 17267 + pos: -24.5,21.5 + parent: 2 + - uid: 9288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,41.5 - parent: 89 - - uid: 17268 + pos: -2.5,33.5 + parent: 2 + - uid: 9289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,42.5 - parent: 89 - - uid: 17277 + pos: -15.5,24.5 + parent: 2 + - uid: 9290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,43.5 - parent: 89 - - uid: 17283 + pos: 1.5,34.5 + parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 9291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,43.5 - parent: 89 - - uid: 17309 + pos: -19.5,17.5 + parent: 2 +- proto: CyberPen + entities: + - uid: 9292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 89 - - uid: 17310 + pos: 58.200428,-33.22432 + parent: 2 +- proto: d6Dice + entities: + - uid: 9293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-14.5 - parent: 89 - - uid: 17330 + pos: -7.3807964,41.28582 + parent: 2 + - uid: 9294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 89 - - uid: 17331 + pos: -6.9901714,40.75457 + parent: 2 + - uid: 9295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - uid: 19843 + pos: -98.24687,17.61973 + parent: 2 + - uid: 9296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 89 - - uid: 19886 + pos: -97.62187,17.55723 + parent: 2 + - uid: 9297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 89 - - uid: 21620 + pos: -4.4802694,40.231525 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 9298 components: - type: Transform - pos: 13.5,3.5 - parent: 89 - - uid: 21622 + pos: 55.5,4.5 + parent: 2 + - type: WarpPoint + location: Ядро ИИ +- proto: DefaultStationBeaconAME + entities: + - uid: 9299 components: - type: Transform - pos: 12.5,3.5 - parent: 89 - - uid: 21624 + pos: -130.5,14.5 + parent: 2 + - type: WarpPoint + location: ДАМ +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 9300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 89 - - uid: 21625 + pos: -7.5,-30.5 + parent: 2 + - type: WarpPoint + location: Генератор Аномалий +- proto: DefaultStationBeaconArrivals + entities: + - uid: 9301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 89 - - uid: 21807 + pos: -65.5,34.5 + parent: 2 + - type: WarpPoint + location: Прибытие 2 + - uid: 9302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 89 - - uid: 21830 + pos: -84.5,34.5 + parent: 2 + - type: WarpPoint + location: Прибытие 1 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 9303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 89 - - uid: 23717 + pos: -2.5,-40.5 + parent: 2 + - type: WarpPoint + location: Ксеноархеология +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 9304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 22565 - - uid: 23718 + pos: -92.5,-14.5 + parent: 2 + - type: WarpPoint + location: Атмос +- proto: DefaultStationBeaconBar + entities: + - uid: 9305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 22565 - - uid: 23719 + pos: -19.5,-3.5 + parent: 2 + - type: WarpPoint + location: Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 9306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 22565 - - uid: 23720 + pos: -5.5,-6.5 + parent: 2 + - type: WarpPoint + location: Гидропоника +- proto: DefaultStationBeaconBridge + entities: + - uid: 9307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 22565 - - uid: 23721 + pos: 38.5,4.5 + parent: 2 + - type: NavMapBeacon + text: Мостик - правительственный сектор + - type: WarpPoint + location: Мостик - Вход + - uid: 9308 components: - type: Transform - pos: -30.5,12.5 - parent: 22565 - - uid: 23722 + pos: 28.5,6.5 + parent: 2 + - type: WarpPoint + location: ЕВА + - uid: 9309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,10.5 - parent: 22565 - - uid: 23723 + pos: 34.5,14.5 + parent: 2 + - type: WarpPoint + location: Мостик - конференц зал + - uid: 9310 components: - type: Transform - pos: 6.5,12.5 - parent: 22565 - - uid: 23724 + pos: 57.5,3.5 + parent: 2 + - type: WarpPoint + location: Мостик +- proto: DefaultStationBeaconBrig + entities: + - uid: 9311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 22565 - - uid: 23725 + pos: 5.5,-6.5 + parent: 2 + - type: WarpPoint + location: Бриг 1 + - uid: 9312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 22565 - - uid: 23726 + pos: 5.5,-1.5 + parent: 2 + - type: WarpPoint + location: Бриг - Допросная + - uid: 9313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 22565 - - uid: 23727 + pos: 35.5,-10.5 + parent: 2 + - type: WarpPoint + location: Бриг 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 9314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 22565 - - uid: 23728 + pos: 48.5,13.5 + parent: 2 + - type: WarpPoint + location: Каюта Капитана +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 9315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 22565 - - uid: 23729 + pos: -61.5,-17.5 + parent: 2 + - type: WarpPoint + location: Снабжение Док +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 9316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 22565 - - uid: 23730 + pos: -62.5,-4.5 + parent: 2 + - type: WarpPoint + location: Снабжение Приемная +- proto: DefaultStationBeaconCERoom + entities: + - uid: 9317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 22565 - - uid: 23731 + pos: -103.5,9.5 + parent: 2 + - type: WarpPoint + location: Офис СИ +- proto: DefaultStationBeaconChapel + entities: + - uid: 9318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 22565 - - uid: 23732 + pos: -50.5,-2.5 + parent: 2 + - type: WarpPoint + location: Церковь +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 9319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 22565 - - uid: 23733 + pos: 24.5,36.5 + parent: 2 + - type: WarpPoint + location: Офис ГВ +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 9320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 22565 - - uid: 23734 + pos: -76.5,-2.5 + parent: 2 + - type: WarpPoint + location: Зал Суда +- proto: DefaultStationBeaconCryonics + entities: + - uid: 9321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 22565 - - uid: 23735 + pos: 9.5,23.5 + parent: 2 + - type: WarpPoint + location: Крионика +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 9322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 22565 - - uid: 23736 + pos: -25.5,16.5 + parent: 2 + - type: WarpPoint + location: Капсулы Криосна +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 9323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,6.5 - parent: 22565 - - uid: 23737 + pos: 18.5,7.5 + parent: 2 + - type: WarpPoint + location: Офис Детектива +- proto: DefaultStationBeaconDisposals + entities: + - uid: 9324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 22565 - - uid: 23738 + pos: -97.5,26.5 + parent: 2 + - type: WarpPoint + location: Мусоросброс +- proto: DefaultStationBeaconDorms + entities: + - uid: 9325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 22565 - - uid: 23739 + pos: -29.5,28.5 + parent: 2 + - type: WarpPoint + location: Жилые Помещения +- proto: DefaultStationBeaconEngineering + entities: + - uid: 9326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,6.5 - parent: 22565 - - uid: 23740 + pos: -108.5,4.5 + parent: 2 + - type: WarpPoint + location: Инженерный отдел + - uid: 9327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 22565 - - uid: 23741 + pos: -125.5,3.5 + parent: 2 + - type: WarpPoint + location: РИТЭГИ +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 9328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 22565 - - uid: 25386 + pos: -87.5,39.5 + parent: 2 + - type: WarpPoint + location: Спасательные капсулы +- proto: DefaultStationBeaconEvac + entities: + - uid: 9329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 89 - - uid: 25388 + pos: -61.5,44.5 + parent: 2 + - type: WarpPoint + location: Эвак +- proto: DefaultStationBeaconGravGen + entities: + - uid: 9330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 89 - - uid: 25389 + pos: -115.5,23.5 + parent: 2 + - type: WarpPoint + location: Генератор гравитации +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 9331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 89 - - uid: 25390 + pos: 43.5,7.5 + parent: 2 + - type: WarpPoint + location: Офис ГП +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 89 - - uid: 25391 + pos: 32.5,-2.5 + parent: 2 + - type: WarpPoint + location: Офис ГСБ +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 89 -- proto: ChairCarp + pos: -37.5,7.5 + parent: 2 + - type: WarpPoint + location: Комната Уборщика +- proto: DefaultStationBeaconKitchen entities: - - uid: 10167 + - uid: 9334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-3.5 - parent: 89 - - uid: 21116 + pos: -13.5,-4.5 + parent: 2 + - type: WarpPoint + location: Кухня +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 9335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,37.5 - parent: 89 -- proto: ChairFolding + pos: -75.5,-5.5 + parent: 2 + - type: WarpPoint + location: Офис АВД +- proto: DefaultStationBeaconLibrary entities: - - uid: 2928 + - uid: 9336 components: - type: Transform - pos: 33.5,-10.5 - parent: 89 - - uid: 4443 + pos: -49.5,9.5 + parent: 2 + - type: WarpPoint + location: Библиотека +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9337 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 6226 + pos: -5.5,13.5 + parent: 2 + - type: WarpPoint + location: Медбэй +- proto: DefaultStationBeaconMedical + entities: + - uid: 9338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 89 - - uid: 6976 + pos: 26.5,17.5 + parent: 2 + - type: WarpPoint + location: Медецинский отдел +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9339 components: - type: Transform - pos: 31.5,-10.5 - parent: 89 - - uid: 6977 + pos: 9.5,8.5 + parent: 2 + - type: WarpPoint + location: Морг +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9340 components: - type: Transform - pos: 30.5,-10.5 - parent: 89 - - uid: 7923 + pos: -122.5,16.5 + parent: 2 + - type: WarpPoint + location: Энергетический Резерв СМЭС +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 89 - - uid: 7927 + pos: -70.5,-16.5 + parent: 2 + - type: WarpPoint + location: Офис КМ +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 9342 components: - type: Transform - pos: -7.5,42.5 - parent: 89 - - uid: 7928 + pos: 2.5,-30.5 + parent: 2 + - type: WarpPoint + location: Офис НР +- proto: DefaultStationBeaconRND + entities: + - uid: 9343 components: - type: Transform - pos: -6.5,42.5 - parent: 89 - - uid: 8009 + pos: -11.5,-17.5 + parent: 2 + - type: WarpPoint + location: НИО +- proto: DefaultStationBeaconRobotics + entities: + - uid: 9344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,41.5 - parent: 89 - - uid: 10825 + pos: -20.5,-19.5 + parent: 2 + - type: WarpPoint + location: Робототехника +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9345 components: - type: Transform - pos: -13.5,9.5 - parent: 89 - - uid: 10964 + pos: -50.5,-12.5 + parent: 2 + - type: WarpPoint + location: Утилизаторы +- proto: DefaultStationBeaconScience + entities: + - uid: 9346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 89 - - uid: 11066 + pos: -5.5,-22.5 + parent: 2 + - type: WarpPoint + location: Холл НИО +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 9347 components: - type: Transform - pos: -12.5,9.5 - parent: 89 - - uid: 11068 + pos: -85.5,13.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Инженерный + - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 89 - - uid: 11086 + pos: -59.5,8.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Снабжение + - uid: 9349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 89 - - uid: 11140 + pos: -61.5,21.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Прибытие 2 + - uid: 9350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 89 - - uid: 11361 + pos: -44.5,0.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Сервис + - uid: 9351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 89 - - uid: 11919 + pos: -16.5,8.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Медбэй +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 9352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 89 - - uid: 12006 + pos: -7.5,-35.5 + parent: 2 + - type: WarpPoint + location: Сервер НИО +- proto: DefaultStationBeaconSingularity + entities: + - uid: 9353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 89 - - uid: 12676 + pos: -131.5,-8.5 + parent: 2 + - type: WarpPoint + location: Ускоритель частиц +- proto: DefaultStationBeaconSurgery + entities: + - uid: 9354 components: - type: Transform - pos: 6.5,14.5 - parent: 89 - - uid: 12677 + pos: -11.5,19.5 + parent: 2 + - type: WarpPoint + location: Медецинский отдел - операционная +- proto: DefaultStationBeaconTechVault + entities: + - uid: 9355 components: - type: Transform - pos: 10.5,14.5 - parent: 89 - - uid: 12679 + pos: -102.5,-9.5 + parent: 2 + - type: WarpPoint + location: Техническое Хранилище +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 89 - - uid: 12680 + pos: -92.5,15.5 + parent: 2 + - type: WarpPoint + location: Мастерская +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 89 - - uid: 14808 + pos: 8.5,-10.5 + parent: 2 + - type: WarpPoint + location: Офис Смотрителя +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9358 components: - type: Transform - pos: -0.5,13.5 - parent: 89 - - uid: 14865 + rot: 1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + - uid: 9359 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 89 - - uid: 14866 + pos: 1.5,18.5 + parent: 2 + - uid: 9360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 89 - - uid: 14867 + rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 2 + - uid: 9361 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 89 - - uid: 16269 + pos: 16.5,-1.5 + parent: 2 + - uid: 9362 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 16621 + rot: -1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 24104 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 89 - - uid: 17127 + pos: 3.5,-3.5 + parent: 23919 +- proto: DeployableBarrier + entities: + - uid: 9363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.52398,-2.1615353 - parent: 89 - - uid: 17919 + pos: 44.5,-2.5 + parent: 2 + - uid: 9364 components: - type: Transform - pos: 44.5,-37.5 - parent: 89 - - uid: 18828 + pos: 45.5,-2.5 + parent: 2 + - uid: 9365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 89 - - uid: 19222 + pos: 45.5,-3.5 + parent: 2 + - uid: 9366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 89 - - uid: 19234 + pos: 44.5,-3.5 + parent: 2 + - uid: 9367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 89 - - uid: 19892 + pos: -52.5,37.5 + parent: 2 + - uid: 9368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,35.5 - parent: 89 - - uid: 21149 + pos: -51.5,37.5 + parent: 2 + - uid: 9369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 89 - - uid: 21157 + pos: -51.5,34.5 + parent: 2 + - uid: 9370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,22.5 - parent: 89 - - uid: 21569 + pos: -51.5,35.5 + parent: 2 + - uid: 9371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 89 - - uid: 21570 + pos: -51.5,36.5 + parent: 2 + - uid: 9372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,16.5 - parent: 89 - - uid: 21764 + pos: 46.5,-3.5 + parent: 2 + - uid: 9373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 89 - - uid: 21808 + pos: 46.5,-2.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 9374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 89 - - uid: 22128 + pos: 2.737472,15.790997 + parent: 2 + - uid: 9375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-13.5 - parent: 89 - - uid: 22312 + pos: 2.706222,21.509747 + parent: 2 + - uid: 9376 components: - type: Transform - pos: 46.5,-37.5 - parent: 89 - - uid: 23742 + rot: 3.141592653589793 rad + pos: -8.533264,-15.511856 + parent: 2 + - uid: 9377 components: - type: Transform - pos: 1.5,10.5 - parent: 22565 - - uid: 23743 + pos: 6.4949274,-11.439506 + parent: 2 + - uid: 9378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 22565 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 4329 + pos: -10.467365,-2.4647331 + parent: 2 + - uid: 9379 components: - type: Transform - pos: 30.66906,-9.412315 - parent: 89 - - uid: 4342 + pos: -16.520947,-3.4491081 + parent: 2 + - uid: 9380 components: - type: Transform - pos: 33.51281,-9.33419 - parent: 89 - - uid: 6547 + pos: -4.561835,7.6157904 + parent: 2 + - uid: 9381 components: - type: Transform - pos: -95.61365,13.948328 - parent: 89 - - uid: 6555 + pos: 41.432976,9.61126 + parent: 2 + - uid: 9382 components: - type: Transform - pos: -95.22208,13.431689 - parent: 89 - - uid: 7929 + pos: -22.443995,-1.5451901 + parent: 2 + - uid: 9383 components: - type: Transform - pos: -5.5526714,40.87957 - parent: 89 - - uid: 15077 + pos: 2.721847,17.509747 + parent: 2 + - uid: 9384 components: - type: Transform - pos: 34.465935,-10.27169 - parent: 89 -- proto: ChairOfficeDark + pos: 2.706222,19.790997 + parent: 2 +- proto: DiseaseDiagnoser entities: - - uid: 32 + - uid: 9385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 89 - - uid: 46 + pos: 8.5,29.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 9386 components: - type: Transform - pos: -15.5,-19.5 - parent: 89 - - uid: 494 + rot: -1.5707963267948966 rad + pos: 52.5,11.5 + parent: 2 + - uid: 9387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,5.5 - parent: 89 - - uid: 929 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 9388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,20.5 - parent: 89 - - uid: 1931 + rot: 3.141592653589793 rad + pos: 45.5,7.5 + parent: 2 + - uid: 9389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,9.5 - parent: 89 - - uid: 2926 + pos: -97.5,25.5 + parent: 2 + - uid: 9390 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 89 - - uid: 3412 + pos: -5.5,15.5 + parent: 2 + - uid: 9391 components: - type: Transform - pos: 25.5,-4.5 - parent: 89 - - uid: 3540 + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 9392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 89 - - uid: 3541 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 9393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 89 - - uid: 3600 + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 9394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 89 - - uid: 3601 + pos: 14.5,32.5 + parent: 2 + - uid: 9395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 89 - - uid: 3821 + pos: -19.5,8.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + - uid: 9398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 89 - - uid: 5218 + pos: -6.5,7.5 + parent: 2 + - uid: 9399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-4.5 - parent: 89 - - uid: 5244 + rot: 1.5707963267948966 rad + pos: 51.5,11.5 + parent: 2 + - uid: 9400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 89 - - uid: 6093 + pos: -8.5,-20.5 + parent: 2 + - uid: 9401 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 6094 + rot: 1.5707963267948966 rad + pos: -102.5,7.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -78.5,9.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -88.5,10.5 + parent: 2 + - uid: 9404 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,7.5 - parent: 89 - - uid: 6095 + pos: -78.5,8.5 + parent: 2 + - uid: 9405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,8.5 - parent: 89 - - uid: 6170 + pos: -85.5,12.5 + parent: 2 + - uid: 9406 components: - type: Transform - pos: -19.5,6.5 - parent: 89 - - uid: 6171 + rot: 3.141592653589793 rad + pos: -125.5,9.5 + parent: 2 + - uid: 9407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 89 - - uid: 6800 + pos: -121.5,9.5 + parent: 2 + - uid: 9408 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,1.5 - parent: 89 - - uid: 6888 + pos: -51.5,-17.5 + parent: 2 + - uid: 9409 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - uid: 6970 + pos: -91.5,13.5 + parent: 2 + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-2.5 - parent: 89 - - uid: 8113 + pos: -71.5,8.5 + parent: 2 + - uid: 9411 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 8114 + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 9413 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,13.5 - parent: 89 - - uid: 8164 + pos: 40.5,0.5 + parent: 2 + - uid: 9414 components: - type: Transform - pos: -60.5,8.5 - parent: 89 - - uid: 8179 + rot: -1.5707963267948966 rad + pos: -70.5,-15.5 + parent: 2 + - uid: 9415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,8.5 - parent: 89 - - uid: 8292 + pos: 35.5,16.5 + parent: 2 + - uid: 9416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,21.5 - parent: 89 - - uid: 8295 + pos: -70.5,-10.5 + parent: 2 + - uid: 9417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,21.5 - parent: 89 - - uid: 8460 + rot: 1.5707963267948966 rad + pos: -125.5,-3.5 + parent: 2 + - uid: 9418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,5.5 - parent: 89 - - uid: 9028 + pos: -51.5,-10.5 + parent: 2 + - uid: 9419 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,20.5 - parent: 89 - - uid: 10249 - components: - - type: Transform - pos: -79.5,-0.5 - parent: 89 - - uid: 10251 + pos: -125.5,-10.5 + parent: 2 + - uid: 9420 components: - type: Transform - pos: -78.5,-0.5 - parent: 89 - - uid: 10254 + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-6.5 - parent: 89 - - uid: 10373 + pos: -56.5,-6.5 + parent: 2 + - uid: 9422 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,28.5 - parent: 89 - - uid: 10461 + pos: -6.5,12.5 + parent: 2 + - uid: 9423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,6.5 - parent: 89 - - uid: 10462 + pos: -98.5,4.5 + parent: 2 + - uid: 9424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 89 - - uid: 10463 + pos: -98.5,7.5 + parent: 2 + - uid: 9425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 89 - - uid: 10561 + pos: -64.5,-0.5 + parent: 2 + - uid: 9426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,16.5 - parent: 89 - - uid: 10675 + rot: -1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 9427 components: - type: Transform - pos: 13.5,6.5 - parent: 89 - - uid: 12194 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 9428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 - parent: 89 - - uid: 12842 + pos: 12.5,-5.5 + parent: 2 + - uid: 9429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 89 - - uid: 12843 + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 9430 components: - type: Transform - pos: 18.5,12.5 - parent: 89 - - uid: 14537 + pos: 28.5,-2.5 + parent: 2 + - uid: 9431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-6.5 - parent: 89 - - uid: 14987 + rot: -1.5707963267948966 rad + pos: -104.5,14.5 + parent: 2 + - uid: 9432 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 89 - - uid: 14988 + pos: -108.5,14.5 + parent: 2 + - uid: 9433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,23.5 - parent: 89 - - uid: 14989 + rot: 3.141592653589793 rad + pos: -65.5,4.5 + parent: 2 + - uid: 9434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 - parent: 89 - - uid: 14990 + pos: -65.5,9.5 + parent: 2 + - uid: 9435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 89 - - uid: 15284 + pos: -19.5,9.5 + parent: 2 + - uid: 9436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 89 - - uid: 15382 + rot: 1.5707963267948966 rad + pos: -68.5,13.5 + parent: 2 + - uid: 9437 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,8.5 - parent: 89 - - uid: 16441 + pos: 21.5,9.5 + parent: 2 + - uid: 9438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,-6.5 - parent: 89 - - uid: 17034 + pos: 21.5,8.5 + parent: 2 + - uid: 9439 components: - type: Transform - pos: -118.5,2.5 - parent: 89 - - uid: 19430 + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 9440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 89 - - uid: 20216 + rot: 1.5707963267948966 rad + pos: -73.5,17.5 + parent: 2 + - uid: 9441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,25.5 - parent: 89 - - uid: 23744 + pos: -65.5,24.5 + parent: 2 + - uid: 9442 components: - type: Transform - pos: -13.5,-26.5 - parent: 22565 - - uid: 23745 + pos: -57.5,24.5 + parent: 2 + - uid: 9443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 22565 - - uid: 23746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 22565 - - uid: 25394 + pos: -105.5,-3.5 + parent: 2 + - uid: 9444 components: - type: Transform - pos: 34.5,-26.5 - parent: 89 - - uid: 25700 + rot: 3.141592653589793 rad + pos: -93.5,-1.5 + parent: 2 + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 89 - - uid: 25701 + pos: -88.5,-1.5 + parent: 2 + - uid: 9446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 89 -- proto: ChairOfficeLight - entities: - - uid: 1207 + rot: 3.141592653589793 rad + pos: -48.5,14.5 + parent: 2 + - uid: 9447 components: - type: Transform - pos: -11.5,11.5 - parent: 89 - - uid: 6084 + pos: -41.5,-0.5 + parent: 2 + - uid: 9448 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 89 - - uid: 6087 - components: - - type: Transform - pos: -45.5,9.5 - parent: 89 - - uid: 6089 + pos: 3.5,-10.5 + parent: 2 + - uid: 9449 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,7.5 - parent: 89 - - uid: 10250 + pos: -48.5,1.5 + parent: 2 + - uid: 9450 components: - type: Transform - pos: -74.5,-0.5 - parent: 89 - - uid: 10252 + rot: 1.5707963267948966 rad + pos: -93.5,16.5 + parent: 2 + - uid: 9451 components: - type: Transform - pos: -73.5,-0.5 - parent: 89 - - uid: 10798 + rot: -1.5707963267948966 rad + pos: -87.5,16.5 + parent: 2 + - uid: 9452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 89 - - uid: 11909 + pos: -87.5,22.5 + parent: 2 + - uid: 9453 components: - type: Transform - pos: -1.5,20.5 - parent: 89 - - uid: 12863 + rot: 3.141592653589793 rad + pos: -99.5,22.5 + parent: 2 + - uid: 9454 components: - type: Transform - pos: 15.5,12.5 - parent: 89 - - uid: 15060 + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 89 - - uid: 16543 + pos: -32.5,17.5 + parent: 2 + - uid: 9456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 89 - - uid: 16906 + pos: -62.5,20.5 + parent: 2 + - uid: 9457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 89 - - uid: 17040 + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 9458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 89 - - uid: 18346 + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - uid: 9459 components: - type: Transform - pos: -8.5,21.5 - parent: 89 - - uid: 19891 + pos: -84.5,32.5 + parent: 2 + - uid: 9460 components: - type: Transform - pos: 25.5,37.5 - parent: 89 - - uid: 19972 + pos: -81.5,20.5 + parent: 2 + - uid: 9461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 89 - - uid: 20049 + rot: 3.141592653589793 rad + pos: -84.5,20.5 + parent: 2 + - uid: 9462 components: - type: Transform - pos: -0.5,6.5 - parent: 89 -- proto: ChairPilotSeat - entities: - - uid: 436 + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 2 + - uid: 9463 components: - type: Transform - pos: 55.5,-5.5 - parent: 89 - - uid: 707 + pos: 11.5,-3.5 + parent: 2 + - uid: 9464 components: - type: Transform - pos: 59.5,-5.5 - parent: 89 - - uid: 709 + pos: -21.5,-7.5 + parent: 2 + - uid: 9465 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 1512 + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - uid: 9466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 89 - - uid: 1526 + pos: 15.5,15.5 + parent: 2 + - uid: 9467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,3.5 - parent: 89 - - uid: 1528 + pos: -14.5,10.5 + parent: 2 + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,2.5 - parent: 89 - - uid: 1529 + rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 9469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 - parent: 89 - - uid: 1531 + pos: -20.5,-12.5 + parent: 2 + - uid: 9470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,4.5 - parent: 89 - - uid: 1533 + rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - uid: 9471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 - parent: 89 - - uid: 1534 + pos: -17.5,10.5 + parent: 2 + - uid: 9472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 89 - - uid: 1535 + pos: 0.5,13.5 + parent: 2 + - uid: 9473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,9.5 - parent: 89 - - uid: 1536 + pos: -54.5,13.5 + parent: 2 + - uid: 9474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,9.5 - parent: 89 - - uid: 1541 + pos: 0.5,-13.5 + parent: 2 + - uid: 9475 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 89 - - uid: 1542 + pos: -14.5,7.5 + parent: 2 + - uid: 9476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,14.5 - parent: 89 - - uid: 1543 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 9477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,14.5 - parent: 89 - - uid: 1544 + pos: 2.5,-15.5 + parent: 2 + - uid: 9478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,14.5 - parent: 89 - - uid: 1545 + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - uid: 9479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,12.5 - parent: 89 - - uid: 1546 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 9480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,11.5 - parent: 89 - - uid: 1548 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 89 - - uid: 1549 + pos: -1.5,-25.5 + parent: 2 + - uid: 9481 components: - type: Transform - pos: 54.5,-0.5 - parent: 89 - - uid: 1551 + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 9482 components: - type: Transform - pos: 57.5,-0.5 - parent: 89 - - uid: 4347 + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 9483 components: - type: Transform - pos: -44.5,-19.5 - parent: 89 - - uid: 4348 + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 2 + - uid: 9484 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4349 + pos: -8.5,-14.5 + parent: 2 + - uid: 9485 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4350 + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - uid: 9486 components: - type: Transform - pos: -42.5,-19.5 - parent: 89 - - uid: 5358 + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 9487 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-16.5 - parent: 89 - - uid: 17925 + pos: -41.5,-1.5 + parent: 2 + - uid: 9488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-3.5 - parent: 89 - - uid: 17926 + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-2.5 - parent: 89 - - uid: 21673 + pos: 26.5,-8.5 + parent: 2 + - uid: 9490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 21627 - - uid: 21674 + pos: 36.5,-1.5 + parent: 2 + - uid: 9491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 21627 - - uid: 21675 + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - uid: 9492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 21627 - - uid: 25490 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 9493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 18153 - - uid: 25491 + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 2 + - uid: 9494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 18153 - - uid: 25492 + pos: -22.5,4.5 + parent: 2 + - uid: 9495 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 18153 - - uid: 25493 + pos: 2.5,-2.5 + parent: 2 + - uid: 9496 components: - type: Transform - pos: 1.5,-4.5 - parent: 18153 - - uid: 25494 + pos: 3.5,-2.5 + parent: 2 + - uid: 9497 components: - type: Transform - pos: 2.5,-4.5 - parent: 18153 - - uid: 25495 + rot: 3.141592653589793 rad + pos: -108.5,-14.5 + parent: 2 + - uid: 9498 components: - type: Transform - pos: 1.5,-7.5 - parent: 18153 - - uid: 25496 + rot: -1.5707963267948966 rad + pos: -118.5,-12.5 + parent: 2 + - uid: 25755 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 18153 - - uid: 25497 + pos: -16.5,-0.5 + parent: 24450 + - uid: 25756 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 18153 - - uid: 25498 + pos: -7.5,-0.5 + parent: 24450 + - uid: 25757 components: - type: Transform - pos: 2.5,-7.5 - parent: 18153 - - uid: 25499 + pos: -13.5,1.5 + parent: 24450 + - uid: 25758 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 18153 - - uid: 25500 + pos: -9.5,1.5 + parent: 24450 + - uid: 25759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 18153 -- proto: ChairRitual - entities: - - uid: 14568 + pos: -7.5,10.5 + parent: 24450 + - uid: 25760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 89 -- proto: ChairWood - entities: - - uid: 306 + pos: -16.5,9.5 + parent: 24450 + - uid: 25761 components: - type: Transform - pos: -52.5,0.5 - parent: 89 - - uid: 3825 + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 24450 + - uid: 25762 components: - type: Transform - pos: -47.5,-1.5 - parent: 89 - - uid: 4492 + pos: -31.5,13.5 + parent: 24450 + - uid: 25763 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 89 - - uid: 4728 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 89 - - uid: 4731 + pos: -31.5,3.5 + parent: 24450 +- proto: DisposalJunction + entities: + - uid: 9499 components: - type: Transform - pos: -52.5,-1.5 - parent: 89 - - uid: 4896 + rot: -1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - uid: 9500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 89 - - uid: 4926 + pos: -99.5,25.5 + parent: 2 + - uid: 9501 components: - type: Transform - pos: -51.5,0.5 - parent: 89 - - uid: 4927 + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 9502 components: - type: Transform - pos: -51.5,-0.5 - parent: 89 - - uid: 4954 + pos: 19.5,7.5 + parent: 2 + - uid: 9503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 89 - - uid: 4958 + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 9504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 89 - - uid: 4959 + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + - uid: 9505 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 89 - - uid: 4961 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 4966 + pos: -70.5,-13.5 + parent: 2 + - uid: 9506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 89 - - uid: 4968 + pos: 35.5,2.5 + parent: 2 + - uid: 9507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 89 - - uid: 4976 + rot: 1.5707963267948966 rad + pos: -111.5,-1.5 + parent: 2 + - uid: 9508 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 89 - - uid: 4984 + pos: -64.5,-6.5 + parent: 2 + - uid: 9509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-7.5 - parent: 89 - - uid: 4995 + rot: -1.5707963267948966 rad + pos: -60.5,4.5 + parent: 2 + - uid: 9510 components: - type: Transform - pos: -47.5,-0.5 - parent: 89 - - uid: 5000 + rot: -1.5707963267948966 rad + pos: -68.5,9.5 + parent: 2 + - uid: 9511 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 5120 + rot: -1.5707963267948966 rad + pos: -73.5,8.5 + parent: 2 + - uid: 9512 components: - type: Transform - pos: -52.5,-0.5 - parent: 89 - - uid: 5121 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 9513 components: - type: Transform - pos: -48.5,0.5 - parent: 89 - - uid: 5124 + rot: 3.141592653589793 rad + pos: -108.5,-3.5 + parent: 2 + - uid: 9514 components: - type: Transform - pos: -47.5,0.5 - parent: 89 - - uid: 5147 + rot: -1.5707963267948966 rad + pos: -57.5,17.5 + parent: 2 + - uid: 9515 components: - type: Transform - pos: -48.5,-0.5 - parent: 89 - - uid: 5781 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 9516 components: - type: Transform - pos: -75.5,1.5 - parent: 89 - - uid: 10213 + rot: 3.141592653589793 rad + pos: -93.5,13.5 + parent: 2 + - uid: 9517 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 10215 + rot: -1.5707963267948966 rad + pos: -62.5,17.5 + parent: 2 + - uid: 9518 components: - type: Transform - pos: -78.5,1.5 - parent: 89 - - uid: 10218 + rot: -1.5707963267948966 rad + pos: -81.5,9.5 + parent: 2 + - uid: 9519 components: - type: Transform - pos: -77.5,1.5 - parent: 89 - - uid: 10226 + rot: -1.5707963267948966 rad + pos: -85.5,9.5 + parent: 2 + - uid: 9520 components: - type: Transform - pos: -74.5,1.5 - parent: 89 - - uid: 10227 + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 9521 components: - type: Transform - pos: -73.5,1.5 - parent: 89 - - uid: 14227 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 9522 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 89 - - uid: 14570 + pos: -11.5,2.5 + parent: 2 + - uid: 9523 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,18.5 - parent: 89 - - uid: 14571 + pos: 19.5,2.5 + parent: 2 + - uid: 9524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,18.5 - parent: 89 - - uid: 14572 + pos: 24.5,15.5 + parent: 2 + - uid: 9525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,18.5 - parent: 89 - - uid: 14573 + pos: 15.5,14.5 + parent: 2 + - uid: 9526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 89 - - uid: 14574 + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 9527 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 89 - - uid: 14575 + pos: 11.5,13.5 + parent: 2 + - uid: 9528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 89 - - uid: 14737 + pos: 27.5,-8.5 + parent: 2 + - uid: 9529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 89 - - uid: 14738 + pos: 51.5,7.5 + parent: 2 + - uid: 9530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 89 - - uid: 20002 + pos: 15.5,-9.5 + parent: 2 + - uid: 9531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,21.5 - parent: 89 - - uid: 21084 + pos: -118.5,-10.5 + parent: 2 + - uid: 25764 components: - type: Transform - pos: -26.5,-5.5 - parent: 89 - - uid: 21316 + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 24450 + - uid: 25765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 89 - - uid: 21829 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 24450 + - uid: 25766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 89 -- proto: CheapLighter - entities: - - uid: 14673 + pos: -17.5,9.5 + parent: 24450 + - uid: 25767 components: - type: Transform - pos: -120.64618,21.483479 - parent: 89 -- proto: CheapRollerBed + rot: 3.141592653589793 rad + pos: -31.5,9.5 + parent: 24450 +- proto: DisposalJunctionFlipped entities: - - uid: 15074 + - uid: 9532 components: - type: Transform - pos: -4.5048585,20.65735 - parent: 89 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 20008 + pos: 3.5,-5.5 + parent: 2 + - uid: 9533 components: - type: Transform - pos: -4.322945,19.72414 - parent: 89 -- proto: CheckerBoard - entities: - - uid: 16892 + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 9534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.522533,8.605168 - parent: 89 - - uid: 16960 + pos: -88.5,9.5 + parent: 2 + - uid: 9535 components: - type: Transform - pos: -2.4906597,-28.383318 - parent: 89 - - uid: 17311 + rot: -1.5707963267948966 rad + pos: -77.5,8.5 + parent: 2 + - uid: 9536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.51852,-14.432817 - parent: 89 -- proto: chem_master - entities: - - uid: 1723 + rot: -1.5707963267948966 rad + pos: -69.5,9.5 + parent: 2 + - uid: 9537 components: - type: Transform - pos: -2.5,9.5 - parent: 89 - - uid: 12852 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 9538 components: - type: Transform - pos: 0.5,5.5 - parent: 89 -- proto: ChemDispenser - entities: - - uid: 17007 + rot: 3.141592653589793 rad + pos: -111.5,-10.5 + parent: 2 + - uid: 9539 components: - type: Transform - pos: -3.5,9.5 - parent: 89 -- proto: ChemDispenserEmpty - entities: - - uid: 4977 + rot: 3.141592653589793 rad + pos: -64.5,-10.5 + parent: 2 + - uid: 9540 components: - type: Transform - pos: -0.5,5.5 - parent: 89 -- proto: ChemicalPayload - entities: - - uid: 16979 + rot: 3.141592653589793 rad + pos: -108.5,-1.5 + parent: 2 + - uid: 9541 components: - type: Transform - pos: -14.19345,-15.127384 - parent: 89 - - uid: 16980 + rot: 1.5707963267948966 rad + pos: -102.5,4.5 + parent: 2 + - uid: 9542 components: - type: Transform - pos: -13.9767065,-15.464462 - parent: 89 -- proto: ChemistryHotplate - entities: - - uid: 14105 + rot: 1.5707963267948966 rad + pos: -97.5,7.5 + parent: 2 + - uid: 9543 components: - type: Transform - pos: 4.5,-18.5 - parent: 89 - - type: ItemPlacer - placedEntities: - - 16935 - - type: PlaceableSurface - isPlaceable: False - - uid: 16886 + pos: -0.5,-10.5 + parent: 2 + - uid: 9544 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 - - uid: 21547 + rot: -1.5707963267948966 rad + pos: -56.5,4.5 + parent: 2 + - uid: 9545 components: - type: Transform - pos: -2.5,5.5 - parent: 89 -- proto: ChessBoard - entities: - - uid: 16893 + rot: -1.5707963267948966 rad + pos: -48.5,4.5 + parent: 2 + - uid: 9546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.56941,8.605168 - parent: 89 -- proto: ChurchOrganInstrument - entities: - - uid: 5025 + pos: -0.5,-4.5 + parent: 2 + - uid: 9547 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 89 -- proto: CigaretteSyndicate - entities: - - uid: 20947 + pos: -48.5,17.5 + parent: 2 + - uid: 9548 components: - type: Transform - pos: -87.7599,27.81324 - parent: 89 - - uid: 20948 + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 9549 components: - type: Transform - pos: -87.7599,27.90699 - parent: 89 - - uid: 20949 + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 9550 components: - type: Transform - pos: -87.7599,28.00074 - parent: 89 -- proto: CigarGold - entities: - - uid: 10429 + rot: -1.5707963267948966 rad + pos: -40.5,4.5 + parent: 2 + - uid: 9551 components: - type: Transform - pos: 20.468182,7.551762 - parent: 89 - - uid: 14634 + rot: 3.141592653589793 rad + pos: -93.5,7.5 + parent: 2 + - uid: 9552 components: - type: Transform - pos: -98.620224,17.58848 - parent: 89 -- proto: CigarGoldCase - entities: - - uid: 1871 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - uid: 9553 components: - type: Transform - pos: -19.524622,18.424397 - parent: 89 -- proto: CigarGoldSpent - entities: - - uid: 20882 + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - uid: 9554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.87538,22.994505 - parent: 89 -- proto: CigCartonBlack - entities: - - uid: 23747 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 9555 components: - type: Transform - pos: -14.517942,7.518115 - parent: 22565 -- proto: CigCartonRed - entities: - - uid: 14625 + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - uid: 9556 components: - type: Transform - pos: -97.5623,12.583653 - parent: 89 -- proto: CigPackBlack - entities: - - uid: 15629 + rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - uid: 25768 components: - type: Transform - pos: -117.54554,-14.493891 - parent: 89 -- proto: CigPackBlue + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 24450 +- proto: DisposalPipe entities: - - uid: 14672 + - uid: 9557 components: - type: Transform - pos: -120.92743,21.530354 - parent: 89 - - uid: 25693 + rot: -1.5707963267948966 rad + pos: -107.5,-14.5 + parent: 2 + - uid: 9558 components: - type: Transform - pos: 5.6514907,-1.2318032 - parent: 89 -- proto: CigPackSyndicate - entities: - - uid: 23749 + rot: 3.141592653589793 rad + pos: 52.5,12.5 + parent: 2 + - uid: 9559 components: - type: Transform - parent: 23748 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CircuitImprinter - entities: - - uid: 81 + pos: 24.5,24.5 + parent: 2 + - uid: 9560 components: - type: Transform - pos: -14.5,-18.5 - parent: 89 - - uid: 23751 + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 9561 components: - type: Transform - pos: -27.5,3.5 - parent: 22565 - - uid: 23752 + pos: -14.5,9.5 + parent: 2 + - uid: 9562 components: - type: Transform - pos: 3.5,3.5 - parent: 22565 -- proto: ClarinetInstrument - entities: - - uid: 7457 + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - uid: 9563 components: - type: Transform - pos: -35.620186,-5.4584527 - parent: 89 -- proto: Claymore - entities: - - uid: 5066 + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 9564 components: - - type: MetaData - desc: Это по-русски, но всё равно круто! - name: аннигиляторная пушка - type: Transform - pos: 45.44855,-1.5047936 - parent: 89 -- proto: CleanerDispenser - entities: - - uid: 10757 + pos: 19.5,3.5 + parent: 2 + - uid: 9565 components: - type: Transform - pos: -40.5,9.5 - parent: 89 -- proto: CloningPod - entities: - - uid: 17829 + rot: 3.141592653589793 rad + pos: 45.5,8.5 + parent: 2 + - uid: 9566 components: - type: Transform - pos: 9.5,18.5 - parent: 89 -- proto: CloningPodMachineCircuitboard - entities: - - uid: 15602 + rot: 1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 + - uid: 9567 components: - type: Transform - pos: 22.465963,36.302017 - parent: 89 -- proto: ClosetBombFilled - entities: - - uid: 3796 + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + - uid: 9568 components: - type: Transform - pos: -28.5,36.5 - parent: 89 - - uid: 3809 + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + - uid: 9569 components: - type: Transform - pos: -28.5,37.5 - parent: 89 -- proto: ClosetChefFilled - entities: - - uid: 4021 + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - uid: 9570 components: - type: Transform - pos: -15.5,-0.5 - parent: 89 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 4023 + pos: 19.5,6.5 + parent: 2 + - uid: 9571 components: - type: Transform - pos: -45.5,-13.5 - parent: 89 - - uid: 4216 + pos: 19.5,4.5 + parent: 2 + - uid: 9572 components: - type: Transform - pos: -25.5,-15.5 - parent: 89 - - uid: 4512 + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 9573 components: - type: Transform - pos: -1.5,-21.5 - parent: 89 - - uid: 4568 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 9574 components: - type: Transform - pos: 38.5,9.5 - parent: 89 - - uid: 4789 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 9575 components: - type: Transform - pos: 11.5,-7.5 - parent: 89 - - uid: 4942 + rot: 1.5707963267948966 rad + pos: 48.5,7.5 + parent: 2 + - uid: 9576 components: - type: Transform - pos: 38.5,0.5 - parent: 89 - - uid: 4943 + pos: -5.5,16.5 + parent: 2 + - uid: 9577 components: - type: Transform - pos: -91.5,0.5 - parent: 89 - - uid: 4944 + rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 9578 components: - type: Transform - pos: -91.5,1.5 - parent: 89 - - uid: 4945 + pos: -97.5,26.5 + parent: 2 + - uid: 9579 components: - type: Transform - pos: -67.5,33.5 - parent: 89 - - uid: 4946 + rot: -1.5707963267948966 rad + pos: -98.5,25.5 + parent: 2 + - uid: 9580 components: - type: Transform - pos: -64.5,42.5 - parent: 89 - - uid: 4947 + pos: -99.5,24.5 + parent: 2 + - uid: 9581 components: - type: Transform - pos: -63.5,45.5 - parent: 89 - - uid: 5280 + rot: -1.5707963267948966 rad + pos: -100.5,25.5 + parent: 2 + - uid: 9582 components: - type: Transform - pos: -66.5,23.5 - parent: 89 - - uid: 5281 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 9583 components: - type: Transform - pos: -55.5,28.5 - parent: 89 - - uid: 5286 + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 9584 components: - type: Transform - pos: -58.5,39.5 - parent: 89 - - uid: 5434 + rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 + - uid: 9585 components: - type: Transform - pos: -62.5,32.5 - parent: 89 - - uid: 5666 + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - uid: 9586 components: - type: Transform - pos: -89.5,23.5 - parent: 89 - - uid: 5921 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 9587 components: - type: Transform - pos: -85.5,47.5 - parent: 89 - - uid: 5923 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 9588 components: - type: Transform - pos: -94.5,23.5 - parent: 89 - - uid: 5956 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 9589 components: - type: Transform - pos: -69.5,14.5 - parent: 89 - - uid: 6929 + pos: 24.5,25.5 + parent: 2 + - uid: 9590 components: - type: Transform - pos: -74.5,5.5 - parent: 89 - - uid: 6930 + pos: 24.5,26.5 + parent: 2 + - uid: 9591 components: - type: Transform - pos: -78.5,15.5 - parent: 89 - - uid: 7080 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 9592 components: - type: Transform - pos: -78.5,13.5 - parent: 89 - - uid: 7081 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 2 + - uid: 9593 components: - type: Transform - pos: -52.5,25.5 - parent: 89 - - uid: 7264 + pos: 14.5,28.5 + parent: 2 + - uid: 9594 components: - type: Transform - pos: -112.5,-2.5 - parent: 89 - - uid: 7276 + pos: 14.5,29.5 + parent: 2 + - uid: 9595 components: - type: Transform - pos: -85.5,45.5 - parent: 89 - - uid: 7553 + pos: 14.5,30.5 + parent: 2 + - uid: 9596 components: - type: Transform - pos: -3.5,-9.5 - parent: 89 - - uid: 7555 + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - uid: 9597 components: - type: Transform - pos: -41.5,-5.5 - parent: 89 - - uid: 7999 + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - uid: 9598 components: - type: Transform - pos: 21.5,0.5 - parent: 89 - - uid: 8124 + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 9599 components: - type: Transform - pos: -33.5,10.5 - parent: 89 - - uid: 8211 + rot: 1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - uid: 9600 components: - type: Transform - pos: -58.5,5.5 - parent: 89 - - uid: 8356 + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - uid: 9601 components: - type: Transform - pos: 10.5,27.5 - parent: 89 - - uid: 8556 + rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 9602 components: - type: Transform - pos: -60.5,12.5 - parent: 89 - - uid: 14768 + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - uid: 9603 components: - type: Transform - pos: 19.5,25.5 - parent: 89 - - uid: 16461 + rot: 1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 + - uid: 9604 components: - type: Transform - pos: -112.5,10.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19809 + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 9605 components: - type: Transform - pos: -17.5,22.5 - parent: 89 - - uid: 21349 + pos: 11.5,-4.5 + parent: 2 + - uid: 9606 components: - type: Transform - pos: -33.5,5.5 - parent: 89 - - uid: 21485 + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 9607 components: - type: Transform - pos: -101.5,2.5 - parent: 89 -- proto: ClosetFireFilled - entities: - - uid: 56 + pos: -7.5,6.5 + parent: 2 + - uid: 9608 components: - type: Transform - pos: -45.5,-15.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6900 + rot: -1.5707963267948966 rad + pos: -79.5,9.5 + parent: 2 + - uid: 9609 components: - type: Transform - pos: -59.5,5.5 - parent: 89 - - uid: 6971 + rot: -1.5707963267948966 rad + pos: -80.5,9.5 + parent: 2 + - uid: 9610 components: - type: Transform - pos: -27.5,-15.5 - parent: 89 - - uid: 7110 + rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - uid: 9611 components: - type: Transform - pos: -67.5,40.5 - parent: 89 - - uid: 7323 + rot: -1.5707963267948966 rad + pos: -82.5,9.5 + parent: 2 + - uid: 9612 components: - type: Transform - pos: 23.5,0.5 - parent: 89 - - uid: 8085 + rot: -1.5707963267948966 rad + pos: -83.5,9.5 + parent: 2 + - uid: 9613 components: - type: Transform - pos: 39.5,0.5 - parent: 89 - - uid: 8123 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 9614 components: - type: Transform - pos: -8.5,26.5 - parent: 89 - - uid: 8210 + rot: -1.5707963267948966 rad + pos: -86.5,9.5 + parent: 2 + - uid: 9615 components: - type: Transform - pos: -96.5,-3.5 - parent: 89 - - uid: 8390 + rot: -1.5707963267948966 rad + pos: -87.5,9.5 + parent: 2 + - uid: 9616 components: - type: Transform - pos: -90.5,18.5 - parent: 89 - - uid: 8530 + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 9617 components: - type: Transform - pos: -96.5,-4.5 - parent: 89 - - uid: 8558 + pos: 51.5,6.5 + parent: 2 + - uid: 9618 components: - type: Transform - pos: -3.5,-8.5 - parent: 89 - - uid: 8575 + pos: 51.5,5.5 + parent: 2 + - uid: 9619 components: - type: Transform - pos: -112.5,0.5 - parent: 89 - - uid: 8576 + pos: 51.5,4.5 + parent: 2 + - uid: 9620 components: - type: Transform - pos: -112.5,7.5 - parent: 89 - - uid: 8781 + pos: 51.5,3.5 + parent: 2 + - uid: 9621 components: - type: Transform - pos: -111.5,7.5 - parent: 89 - - uid: 8823 + pos: 51.5,2.5 + parent: 2 + - uid: 9622 components: - type: Transform - pos: -67.5,34.5 - parent: 89 - - uid: 8931 + pos: 51.5,1.5 + parent: 2 + - uid: 9623 components: - type: Transform - pos: 23.5,23.5 - parent: 89 - - uid: 9936 + pos: -125.5,13.5 + parent: 2 + - uid: 9624 components: - type: Transform - pos: -61.5,28.5 - parent: 89 - - uid: 10846 + pos: -125.5,12.5 + parent: 2 + - uid: 9625 components: - type: Transform - pos: -62.5,11.5 - parent: 89 - - uid: 10879 + pos: -125.5,11.5 + parent: 2 + - uid: 9626 components: - type: Transform - pos: -69.5,11.5 - parent: 89 - - uid: 14703 + pos: -125.5,10.5 + parent: 2 + - uid: 9627 components: - type: Transform - pos: -83.5,45.5 - parent: 89 - - uid: 15766 + pos: -85.5,10.5 + parent: 2 + - uid: 9628 components: - type: Transform - pos: 9.5,27.5 - parent: 89 - - uid: 19797 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 9629 components: - type: Transform - pos: -17.5,23.5 - parent: 89 - - uid: 21333 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - uid: 9630 components: - type: Transform - pos: -33.5,11.5 - parent: 89 - - uid: 21338 + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - uid: 9631 components: - type: Transform - pos: -75.5,15.5 - parent: 89 - - uid: 21350 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - uid: 9632 components: - type: Transform - pos: -111.5,0.5 - parent: 89 - - uid: 21351 + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - uid: 9633 components: - type: Transform - pos: -96.5,-5.5 - parent: 89 - - uid: 21358 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - uid: 9634 components: - type: Transform - pos: -52.5,26.5 - parent: 89 - - uid: 21365 + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 9635 components: - type: Transform - pos: 11.5,-10.5 - parent: 89 - - uid: 21370 + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 9636 components: - type: Transform - pos: -73.5,5.5 - parent: 89 -- proto: ClosetJanitorFilled - entities: - - uid: 21502 + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - uid: 9637 components: - type: Transform - pos: -39.5,9.5 - parent: 89 -- proto: ClosetL3JanitorFilled - entities: - - uid: 14029 + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 9638 components: - type: Transform - pos: -38.5,9.5 - parent: 89 -- proto: ClosetL3ScienceFilled - entities: - - uid: 8565 + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - uid: 9639 components: - type: Transform - pos: -1.5,-20.5 - parent: 89 - - uid: 8567 + pos: 40.5,1.5 + parent: 2 + - uid: 9640 components: - type: Transform - pos: -2.5,-33.5 - parent: 89 - - uid: 8573 + rot: -1.5707963267948966 rad + pos: -124.5,9.5 + parent: 2 + - uid: 9641 components: - type: Transform - pos: -0.5,-33.5 - parent: 89 -- proto: ClosetL3SecurityFilled - entities: - - uid: 3287 + rot: -1.5707963267948966 rad + pos: -123.5,9.5 + parent: 2 + - uid: 9642 components: - type: Transform - pos: 14.5,-3.5 - parent: 89 - - uid: 8598 + rot: -1.5707963267948966 rad + pos: -122.5,9.5 + parent: 2 + - uid: 9643 components: - type: Transform - pos: 15.5,-3.5 - parent: 89 -- proto: ClosetL3VirologyFilled - entities: - - uid: 10897 + rot: 3.141592653589793 rad + pos: -69.5,8.5 + parent: 2 + - uid: 9644 components: - type: Transform - pos: 11.5,30.5 - parent: 89 - - uid: 15410 + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - uid: 9645 components: - type: Transform - pos: 10.5,30.5 - parent: 89 -- proto: ClosetLegalFilled - entities: - - uid: 8759 + rot: 3.141592653589793 rad + pos: -121.5,8.5 + parent: 2 + - uid: 9646 components: - type: Transform - pos: -73.5,-2.5 - parent: 89 - - uid: 9504 + rot: 3.141592653589793 rad + pos: -121.5,7.5 + parent: 2 + - uid: 9647 components: - type: Transform - pos: -73.5,-3.5 - parent: 89 -- proto: ClosetMaintenance - entities: - - uid: 23177 + rot: 3.141592653589793 rad + pos: -121.5,6.5 + parent: 2 + - uid: 9648 components: - type: Transform - pos: 9.5,12.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23178 - - 23182 - - 23184 - - 23179 - - 23183 - - 23180 - - 23181 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23185 + rot: 3.141592653589793 rad + pos: -121.5,5.5 + parent: 2 + - uid: 9649 components: - type: Transform - pos: 9.5,6.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23190 - - 23191 - - 23187 - - 23188 - - 23186 - - 23189 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23192 + rot: 3.141592653589793 rad + pos: -121.5,4.5 + parent: 2 + - uid: 9650 components: - type: Transform - pos: 9.5,9.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23197 - - 23198 - - 23195 - - 23194 - - 23193 - - 23196 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23199 + rot: 3.141592653589793 rad + pos: -121.5,3.5 + parent: 2 + - uid: 9651 components: - type: Transform - pos: -33.5,6.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23200 - - 23206 - - 23205 - - 23202 - - 23204 - - 23203 - - 23201 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23207 + rot: 3.141592653589793 rad + pos: -121.5,2.5 + parent: 2 + - uid: 9652 components: - type: Transform - pos: -33.5,8.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23210 - - 23208 - - 23213 - - 23212 - - 23209 - - 23211 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23214 + rot: 3.141592653589793 rad + pos: -121.5,1.5 + parent: 2 + - uid: 9653 components: - type: Transform - pos: -33.5,12.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - 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: - - 23217 - - 23218 - - 23221 - - 23220 - - 23216 - - 23215 - - 23219 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23753 + rot: 3.141592653589793 rad + pos: -121.5,0.5 + parent: 2 + - uid: 9654 components: - type: Transform - pos: 10.5,1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 99.138466 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23759 - - 23762 - - 23758 - - 23761 - - 23757 - - 23760 - - 23755 - - 23754 - - 23756 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23763 + rot: 3.141592653589793 rad + pos: -121.5,-0.5 + parent: 2 + - uid: 9655 components: - type: Transform - pos: -34.5,1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - 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: - - 23772 - - 23771 - - 23769 - - 23768 - - 23770 - - 23767 - - 23766 - - 23765 - - 23764 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 8555 + pos: 35.5,15.5 + parent: 2 + - uid: 9656 components: - type: Transform - pos: -97.5,11.5 - parent: 89 - - uid: 9937 + rot: 3.141592653589793 rad + pos: -121.5,-2.5 + parent: 2 + - uid: 9657 components: - type: Transform - pos: -26.5,-20.5 - parent: 89 - - uid: 9972 + rot: 1.5707963267948966 rad + pos: -120.5,-3.5 + parent: 2 + - uid: 9658 components: - type: Transform - pos: -45.5,-14.5 - parent: 89 - - uid: 10001 + rot: 3.141592653589793 rad + pos: -51.5,-16.5 + parent: 2 + - uid: 9659 components: - type: Transform - pos: -15.5,-27.5 - parent: 89 - - uid: 10002 + rot: 3.141592653589793 rad + pos: -51.5,-15.5 + parent: 2 + - uid: 9660 components: - type: Transform - pos: -16.5,-27.5 - parent: 89 - - uid: 10003 + rot: -1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - uid: 9661 components: - type: Transform - pos: -95.5,15.5 - parent: 89 - - uid: 10004 + rot: -1.5707963267948966 rad + pos: -72.5,8.5 + parent: 2 + - uid: 9662 components: - type: Transform - pos: -95.5,14.5 - parent: 89 - - uid: 10005 + rot: -1.5707963267948966 rad + pos: -74.5,8.5 + parent: 2 + - uid: 9663 components: - type: Transform - pos: -1.5,32.5 - parent: 89 - - uid: 10006 + rot: -1.5707963267948966 rad + pos: -75.5,8.5 + parent: 2 + - uid: 9664 components: - type: Transform - pos: -1.5,31.5 - parent: 89 - - uid: 10017 + rot: -1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 + - uid: 9665 components: - type: Transform - pos: -98.5,11.5 - parent: 89 - - uid: 10023 + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - uid: 9666 components: - type: Transform - pos: -112.5,12.5 - parent: 89 - - uid: 10106 + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - uid: 9667 components: - type: Transform - pos: -112.5,13.5 - parent: 89 - - uid: 10260 + rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 2 + - uid: 9668 components: - type: Transform - pos: -75.5,19.5 - parent: 89 - - uid: 10261 + rot: 1.5707963267948966 rad + pos: -120.5,-1.5 + parent: 2 + - uid: 9669 components: - type: Transform - pos: -75.5,17.5 - parent: 89 - - uid: 10272 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - uid: 9670 components: - type: Transform - pos: -52.5,24.5 - parent: 89 - - uid: 10302 + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 9671 components: - type: Transform - pos: -38.5,22.5 - parent: 89 - - uid: 10878 + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - uid: 9672 components: - type: Transform - pos: -26.5,-15.5 - parent: 89 - - uid: 11014 + rot: 3.141592653589793 rad + pos: -70.5,-14.5 + parent: 2 + - uid: 9673 components: - type: Transform - pos: -17.5,-27.5 - parent: 89 - - uid: 11016 + rot: 1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + - uid: 9674 components: - type: Transform - pos: -81.5,-0.5 - parent: 89 - - uid: 15539 + pos: 35.5,14.5 + parent: 2 + - uid: 9675 components: - type: Transform - pos: 18.5,25.5 - parent: 89 - - uid: 15566 + pos: 35.5,13.5 + parent: 2 + - uid: 9676 components: - type: Transform - pos: 5.5,27.5 - parent: 89 - - uid: 19796 + pos: 35.5,12.5 + parent: 2 + - uid: 9677 components: - type: Transform - pos: -17.5,24.5 - parent: 89 - - uid: 21376 + pos: 35.5,11.5 + parent: 2 + - uid: 9678 components: - type: Transform - pos: -87.5,23.5 - parent: 89 - - uid: 21383 + pos: 35.5,10.5 + parent: 2 + - uid: 9679 components: - type: Transform - pos: -116.5,21.5 - parent: 89 - - uid: 21384 + pos: 35.5,9.5 + parent: 2 + - uid: 9680 components: - type: Transform - pos: -117.5,21.5 - parent: 89 - - uid: 21386 + pos: 35.5,8.5 + parent: 2 + - uid: 9681 components: - type: Transform - pos: -99.5,11.5 - parent: 89 - - uid: 21768 + pos: 35.5,7.5 + parent: 2 + - uid: 9682 components: - type: Transform - pos: 56.5,-21.5 - parent: 89 - - uid: 23748 + pos: 35.5,6.5 + parent: 2 + - uid: 9683 components: - type: Transform - pos: -28.5,11.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - 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: - - 23749 - - 23750 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23773 + pos: 35.5,5.5 + parent: 2 + - uid: 9684 components: - type: Transform - pos: -28.5,10.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 11017 + pos: 35.5,4.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,-1.5 + parent: 2 + - uid: 9686 components: - type: Transform - pos: -115.5,10.5 - parent: 89 - - uid: 11020 + rot: 1.5707963267948966 rad + pos: -118.5,-1.5 + parent: 2 + - uid: 9687 components: - type: Transform - pos: -116.5,10.5 - parent: 89 - - uid: 11030 + rot: 1.5707963267948966 rad + pos: -117.5,-1.5 + parent: 2 + - uid: 9688 components: - type: Transform - pos: -116.5,-2.5 - parent: 89 - - uid: 11226 + rot: 1.5707963267948966 rad + pos: -116.5,-1.5 + parent: 2 + - uid: 9689 components: - type: Transform - pos: -115.5,-2.5 - parent: 89 - - uid: 11263 + rot: 1.5707963267948966 rad + pos: -115.5,-1.5 + parent: 2 + - uid: 9690 components: - type: Transform - pos: -115.5,-0.5 - parent: 89 - - uid: 11341 + rot: 1.5707963267948966 rad + pos: -114.5,-1.5 + parent: 2 + - uid: 9691 components: - type: Transform - pos: -116.5,-0.5 - parent: 89 - - uid: 11374 + rot: 1.5707963267948966 rad + pos: -113.5,-1.5 + parent: 2 + - uid: 9692 components: - type: Transform - pos: -2.5,-36.5 - parent: 89 - - uid: 11461 + rot: 1.5707963267948966 rad + pos: -112.5,-1.5 + parent: 2 + - uid: 9693 components: - type: Transform - pos: -0.5,-36.5 - parent: 89 - - uid: 11462 + rot: 3.141592653589793 rad + pos: -70.5,-12.5 + parent: 2 + - uid: 9694 components: - type: Transform - pos: -6.5,-27.5 - parent: 89 - - uid: 21415 + rot: 3.141592653589793 rad + pos: -70.5,-11.5 + parent: 2 + - uid: 9695 components: - type: Transform - pos: -116.5,8.5 - parent: 89 - - uid: 21416 + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 9696 components: - type: Transform - pos: -115.5,8.5 - parent: 89 - - uid: 21985 + rot: 1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 + - uid: 9697 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 21986 + rot: 1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - uid: 9698 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 21987 + rot: 1.5707963267948966 rad + pos: -67.5,-10.5 + parent: 2 + - uid: 9699 components: - type: Transform - pos: -122.5,-10.5 - parent: 89 -- proto: ClosetSteelBase - entities: - - uid: 3964 + rot: 3.141592653589793 rad + pos: -64.5,-13.5 + parent: 2 + - uid: 9700 components: - type: Transform - pos: 10.5,-1.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11050 + rot: 3.141592653589793 rad + pos: -64.5,-14.5 + parent: 2 + - uid: 9701 components: - type: Transform - pos: 11.5,42.5 - parent: 89 - - uid: 19837 + pos: -64.5,-12.5 + parent: 2 + - uid: 9702 components: - type: Transform - pos: 5.5,18.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetToolFilled - entities: - - uid: 11669 + pos: -64.5,-11.5 + parent: 2 + - uid: 9703 components: - type: Transform - pos: -40.5,-17.5 - parent: 89 - - uid: 12575 + rot: 3.141592653589793 rad + pos: -51.5,-14.5 + parent: 2 + - uid: 9704 components: - type: Transform - pos: -8.5,25.5 - parent: 89 - - uid: 12576 + rot: 3.141592653589793 rad + pos: -51.5,-13.5 + parent: 2 + - uid: 9705 components: - type: Transform - pos: -16.5,12.5 - parent: 89 - - uid: 21407 + rot: 3.141592653589793 rad + pos: -51.5,-12.5 + parent: 2 + - uid: 9706 components: - type: Transform - pos: 49.5,5.5 - parent: 89 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 15125 + rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 2 + - uid: 9707 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,33.5 - parent: 89 - - uid: 15379 + pos: 31.5,2.5 + parent: 2 + - uid: 9708 components: - type: Transform - pos: 9.5,43.5 - parent: 89 - - uid: 16555 + rot: 1.5707963267948966 rad + pos: -124.5,-3.5 + parent: 2 + - uid: 9709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,33.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16569 + pos: -123.5,-3.5 + parent: 2 + - uid: 9710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,20.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21634 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - uid: 9711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 21627 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21636 - - 21635 - - 21637 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 5383 + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 + - uid: 9712 components: - type: Transform - pos: -53.5,-4.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10652 + rot: -1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 2 + - uid: 9713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15908 + rot: -1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 2 + - uid: 9714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16570 + pos: -122.5,-3.5 + parent: 2 + - uid: 9715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,21.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBackpackMerc - entities: - - uid: 20401 + pos: -125.5,-4.5 + parent: 2 + - uid: 9716 components: - type: Transform - pos: -129.39104,-34.593376 - parent: 89 -- proto: ClothingBackpackSatchelLeather - entities: - - uid: 21536 + pos: -125.5,-5.5 + parent: 2 + - uid: 9717 components: - type: Transform - pos: 18.11255,19.774199 - parent: 89 -- proto: ClothingBeltChampion - entities: - - uid: 3115 + pos: -125.5,-6.5 + parent: 2 + - uid: 9718 components: - type: Transform - pos: 49.49962,-5.324962 - parent: 89 -- proto: ClothingBeltJanitorFilled - entities: - - uid: 20865 + pos: -125.5,-7.5 + parent: 2 + - uid: 9719 components: - type: Transform - pos: -36.594994,9.431238 - parent: 89 -- proto: ClothingBeltSuspenders - entities: - - uid: 21883 + pos: -125.5,-8.5 + parent: 2 + - uid: 9720 components: - type: Transform - pos: 6.5650086,27.578575 - parent: 89 -- proto: ClothingBeltUtility - entities: - - uid: 224 + pos: -125.5,-9.5 + parent: 2 + - uid: 9721 components: - type: Transform - pos: -12.5832405,-23.436749 - parent: 89 - - uid: 7089 + pos: -56.5,-9.5 + parent: 2 + - uid: 9722 components: - type: Transform - pos: -90.483246,13.521247 - parent: 89 - - uid: 14951 + pos: -56.5,-8.5 + parent: 2 + - uid: 9723 components: - type: Transform - pos: -11.502785,-31.531437 - parent: 89 - - uid: 23774 + pos: -56.5,-7.5 + parent: 2 + - uid: 9724 components: - type: Transform - pos: -25.504887,7.5219393 - parent: 22565 - - uid: 23775 + rot: 1.5707963267948966 rad + pos: -124.5,-10.5 + parent: 2 + - uid: 9725 components: - type: Transform - pos: -24.504887,7.5375643 - parent: 22565 - - uid: 23776 + rot: 1.5707963267948966 rad + pos: -123.5,-10.5 + parent: 2 + - uid: 9726 components: - type: Transform - pos: -23.567387,7.5375643 - parent: 22565 - - uid: 23777 + rot: 1.5707963267948966 rad + pos: -122.5,-10.5 + parent: 2 + - uid: 9727 components: - type: Transform - pos: -20.291004,7.4594393 - parent: 22565 - - uid: 23778 + rot: 1.5707963267948966 rad + pos: -121.5,-10.5 + parent: 2 + - uid: 9728 components: - type: Transform - pos: -19.474846,7.4933014 - parent: 22565 - - uid: 23779 + rot: 1.5707963267948966 rad + pos: -120.5,-10.5 + parent: 2 + - uid: 9729 components: - type: Transform - pos: -18.67797,7.5558014 - parent: 22565 - - uid: 23780 + rot: 1.5707963267948966 rad + pos: -119.5,-10.5 + parent: 2 + - uid: 9730 components: - type: Transform - pos: -5.2654724,7.5089264 - parent: 22565 - - uid: 23781 + rot: 1.5707963267948966 rad + pos: -117.5,-10.5 + parent: 2 + - uid: 9731 components: - type: Transform - pos: -4.4217224,7.4776764 - parent: 22565 - - uid: 23782 + rot: 1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 9732 components: - type: Transform - pos: -3.5467224,7.4933014 - parent: 22565 - - uid: 23783 + rot: 1.5707963267948966 rad + pos: -115.5,-10.5 + parent: 2 + - uid: 9733 components: - type: Transform - pos: -0.32033086,7.5089264 - parent: 22565 - - uid: 23784 + rot: 1.5707963267948966 rad + pos: -114.5,-10.5 + parent: 2 + - uid: 9734 components: - type: Transform - pos: 0.60154414,7.4620514 - parent: 22565 - - uid: 23785 + rot: 1.5707963267948966 rad + pos: -113.5,-10.5 + parent: 2 + - uid: 9735 components: - type: Transform - pos: 1.4609191,7.4308014 - parent: 22565 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 168 + rot: 1.5707963267948966 rad + pos: -112.5,-10.5 + parent: 2 + - uid: 9736 components: - type: Transform - pos: 1.4933057,-29.171928 - parent: 89 - - uid: 265 + rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - uid: 9737 components: - type: Transform - pos: -6.5,-38.5 - parent: 89 - - uid: 7074 + rot: -1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 2 + - uid: 9738 components: - type: Transform - pos: -95.44649,17.646513 - parent: 89 -- proto: ClothingEyesBinoclardLenses - entities: - - uid: 13984 + rot: -1.5707963267948966 rad + pos: -60.5,-6.5 + parent: 2 + - uid: 9739 components: - type: Transform - pos: -75.56238,-5.1952434 - parent: 89 -- proto: ClothingEyesGlasses - entities: - - uid: 865 + rot: -1.5707963267948966 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 9740 components: - type: Transform - pos: 19.43496,18.059008 - parent: 89 - - uid: 12580 + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - uid: 9741 components: - type: Transform - pos: 32.38131,20.658113 - parent: 89 - - uid: 12620 + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - uid: 9742 components: - type: Transform - pos: 32.334435,20.829988 - parent: 89 - - uid: 12626 + pos: -111.5,-9.5 + parent: 2 + - uid: 9743 components: - type: Transform - pos: 32.47506,20.486238 - parent: 89 - - uid: 14047 + pos: -111.5,-8.5 + parent: 2 + - uid: 9744 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 8393 + pos: -111.5,-7.5 + parent: 2 + - uid: 9745 components: - - type: MetaData - desc: Интересной формы очки, серии Kamelot, что-бы это не значило. - name: причудливые очки серии Kamelot - type: Transform - pos: -41.48185,10.589271 - parent: 89 - - uid: 10882 + pos: -111.5,-6.5 + parent: 2 + - uid: 9746 components: - type: Transform - pos: -27.495356,28.748674 - parent: 89 - - uid: 16773 + pos: -111.5,-5.5 + parent: 2 + - uid: 9747 components: - type: Transform - pos: -44.306797,14.376387 - parent: 89 - - uid: 16774 + pos: -111.5,-4.5 + parent: 2 + - uid: 9748 components: - type: Transform - pos: -6.482778,40.52599 - parent: 89 -- proto: ClothingEyesGlassesJamjar - entities: - - uid: 25802 + pos: -111.5,-3.5 + parent: 2 + - uid: 9749 components: - type: Transform - pos: -73.79168,-1.4282905 - parent: 89 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 25627 + pos: -111.5,-2.5 + parent: 2 + - uid: 9750 components: - type: Transform - parent: 21461 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25629 + rot: 1.5707963267948966 rad + pos: -110.5,-1.5 + parent: 2 + - uid: 9751 components: - type: Transform - parent: 21463 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25632 + rot: 1.5707963267948966 rad + pos: -109.5,-1.5 + parent: 2 + - uid: 9752 components: - type: Transform - parent: 21465 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesOutlawGlasses - entities: - - uid: 10214 + rot: -1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 2 + - uid: 9753 components: - type: Transform - pos: -79.18537,-1.440521 - parent: 89 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 9885 + rot: -1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 2 + - uid: 9754 components: - type: Transform - pos: 21.488688,-3.148366 - parent: 89 -- proto: ClothingEyesHudBeer - entities: - - uid: 14228 + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - uid: 9755 components: - type: Transform - pos: 21.488688,-3.413991 - parent: 89 - - uid: 17911 + rot: 3.141592653589793 rad + pos: -64.5,-9.5 + parent: 2 + - uid: 9756 components: - type: Transform - pos: 21.473063,-3.273366 - parent: 89 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 21285 + rot: 3.141592653589793 rad + pos: -64.5,-8.5 + parent: 2 + - uid: 9757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.756002,-21.47323 - parent: 89 - - uid: 21302 + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 9758 components: - type: Transform - pos: -104.4267,9.473066 - parent: 89 -- proto: ClothingEyesHudMedical - entities: - - uid: 21298 + rot: 3.141592653589793 rad + pos: -64.5,-5.5 + parent: 2 + - uid: 9759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.093824,11.569571 - parent: 89 - - uid: 21299 + rot: 3.141592653589793 rad + pos: -64.5,-4.5 + parent: 2 + - uid: 9760 components: - type: Transform - pos: 16.625074,12.069571 - parent: 89 - - uid: 21300 + rot: 3.141592653589793 rad + pos: -64.5,-3.5 + parent: 2 + - uid: 9761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.0782,11.475821 - parent: 89 - - uid: 21301 + rot: 3.141592653589793 rad + pos: -64.5,-2.5 + parent: 2 + - uid: 9762 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.468824,12.116446 - parent: 89 -- proto: ClothingEyesHudSecurity - entities: - - uid: 7096 + pos: -64.5,-1.5 + parent: 2 + - uid: 9763 components: - type: Transform - pos: 26.980837,-0.48639452 - parent: 89 - - uid: 7121 + pos: -108.5,-0.5 + parent: 2 + - uid: 9764 components: - type: Transform - pos: 26.996462,-0.31451952 - parent: 89 - - uid: 7328 + pos: -108.5,0.5 + parent: 2 + - uid: 9765 components: - type: Transform - pos: 28.012087,-0.5020195 - parent: 89 - - uid: 7329 + pos: -108.5,1.5 + parent: 2 + - uid: 9766 components: - type: Transform - pos: 28.012087,-0.31451952 - parent: 89 -- proto: ClothingHandsGlovesAerostatic - entities: - - uid: 10380 + pos: -108.5,2.5 + parent: 2 + - uid: 9767 components: - type: Transform - pos: -19.437286,27.58992 - parent: 89 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 7449 + pos: -108.5,3.5 + parent: 2 + - uid: 9768 components: - type: Transform - pos: -1.468462,46.55005 - parent: 89 - - uid: 14720 + rot: -1.5707963267948966 rad + pos: -107.5,4.5 + parent: 2 + - uid: 9769 components: - type: Transform - pos: 19.002268,29.716091 - parent: 89 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 13 + rot: -1.5707963267948966 rad + pos: -106.5,4.5 + parent: 2 + - uid: 9770 components: - type: Transform - pos: 17.674143,30.887966 - parent: 89 - - uid: 7749 + rot: -1.5707963267948966 rad + pos: -105.5,4.5 + parent: 2 + - uid: 9771 components: - type: Transform - pos: -5.452837,46.534424 - parent: 89 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 477 + rot: -1.5707963267948966 rad + pos: -104.5,4.5 + parent: 2 + - uid: 9772 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 14979 + rot: -1.5707963267948966 rad + pos: -103.5,4.5 + parent: 2 + - uid: 9773 components: - type: Transform - pos: -20.591122,23.817823 - parent: 89 -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 14960 + rot: -1.5707963267948966 rad + pos: -101.5,4.5 + parent: 2 + - uid: 9774 components: - type: Transform - pos: 20.510513,7.296205 - parent: 89 -- proto: ClothingHandsGlovesColorWhite - entities: - - uid: 15209 + rot: -1.5707963267948966 rad + pos: -100.5,4.5 + parent: 2 + - uid: 9775 components: - type: Transform - pos: 13.742942,5.514955 - parent: 89 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1129 + rot: -1.5707963267948966 rad + pos: -99.5,4.5 + parent: 2 + - uid: 9776 components: - type: Transform - pos: -98.397224,9.416823 - parent: 89 - - uid: 7180 + rot: 3.141592653589793 rad + pos: -98.5,5.5 + parent: 2 + - uid: 9777 components: - type: Transform - pos: -98.41285,9.729323 - parent: 89 - - uid: 14627 + rot: 3.141592653589793 rad + pos: -98.5,6.5 + parent: 2 + - uid: 9778 components: - type: Transform - pos: -107.46353,-19.559334 - parent: 89 - - uid: 16271 + pos: -97.5,8.5 + parent: 2 + - uid: 9779 components: - type: Transform - pos: -107.47916,-19.371834 - parent: 89 - - uid: 17150 + rot: -1.5707963267948966 rad + pos: -63.5,-0.5 + parent: 2 + - uid: 9780 components: - type: Transform - pos: -107.46353,-19.246834 - parent: 89 - - uid: 17429 + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 2 + - uid: 9781 components: - type: Transform - parent: 18178 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17658 + rot: -1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 2 + - uid: 9782 components: - type: Transform - pos: 3.3797808,36.4109 - parent: 89 - - uid: 23216 + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 2 + - uid: 9783 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25624 + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 9784 components: - type: Transform - parent: 18179 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25626 + rot: -1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 2 + - uid: 9785 components: - type: Transform - parent: 18180 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25628 + rot: -1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 2 + - uid: 9786 components: - type: Transform - parent: 21461 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25630 + rot: 3.141592653589793 rad + pos: -56.5,0.5 + parent: 2 + - uid: 9787 components: - type: Transform - parent: 21463 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25631 + rot: 3.141592653589793 rad + pos: -56.5,1.5 + parent: 2 + - uid: 9788 components: - type: Transform - parent: 21465 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 7088 + rot: 3.141592653589793 rad + pos: -56.5,2.5 + parent: 2 + - uid: 9789 components: - type: Transform - pos: -90.483246,12.677497 - parent: 89 - - uid: 14598 + rot: 3.141592653589793 rad + pos: -56.5,3.5 + parent: 2 + - uid: 9790 components: - type: Transform - pos: -91.46152,23.723183 - parent: 89 - - uid: 14747 + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 9791 components: - type: Transform - pos: 8.534033,-16.600626 - parent: 89 - - uid: 23786 + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 9792 components: - type: Transform - pos: 5.594854,1.5872421 - parent: 22565 - - uid: 23787 + pos: -11.5,6.5 + parent: 2 + - uid: 9793 components: - type: Transform - pos: 6.297979,1.5247421 - parent: 22565 - - uid: 23788 + pos: -11.5,5.5 + parent: 2 + - uid: 9794 components: - type: Transform - pos: 7.032354,1.5403671 - parent: 22565 - - uid: 23789 + pos: -11.5,4.5 + parent: 2 + - uid: 9795 components: - type: Transform - pos: -31.132912,1.5716171 - parent: 22565 - - uid: 23790 + pos: 19.5,5.5 + parent: 2 + - uid: 9796 components: - type: Transform - pos: -30.320412,1.5247421 - parent: 22565 - - uid: 23791 + pos: -11.5,3.5 + parent: 2 + - uid: 9797 components: - type: Transform - pos: -29.617287,1.5247421 - parent: 22565 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 14046 + pos: -108.5,-2.5 + parent: 2 + - uid: 9798 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17685 + pos: -57.5,23.5 + parent: 2 + - uid: 9799 components: - type: Transform - pos: 18.379253,23.490591 - parent: 89 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 12589 + pos: -108.5,-4.5 + parent: 2 + - uid: 9800 components: - type: Transform - pos: 9.748317,42.759 - parent: 89 - - uid: 15409 + pos: -108.5,-5.5 + parent: 2 + - uid: 9801 components: - type: Transform - pos: 9.576442,42.66525 - parent: 89 - - uid: 15775 + pos: -108.5,-6.5 + parent: 2 + - uid: 9802 components: - type: Transform - pos: 9.46803,9.090267 - parent: 89 - - uid: 21599 + pos: -108.5,-7.5 + parent: 2 + - uid: 9803 components: - type: Transform - pos: -9.527635,20.493486 - parent: 89 -- proto: ClothingHeadCapCentcomBlack - entities: - - uid: 3372 + pos: -108.5,-8.5 + parent: 2 + - uid: 9804 components: - - type: MetaData - name: старая фуражка - type: Transform - pos: 44.53827,-6.263979 - parent: 89 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 11159 + pos: -108.5,-9.5 + parent: 2 + - uid: 9805 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBunny - entities: - - uid: 17664 + pos: -108.5,-10.5 + parent: 2 + - uid: 9806 components: - type: Transform - pos: 13.368769,5.764955 - parent: 89 -- proto: ClothingHeadHatCargosoftFlipped - entities: - - uid: 5465 + pos: -108.5,-11.5 + parent: 2 + - uid: 9807 components: - type: Transform - pos: -61.638783,-4.495265 - parent: 89 -- proto: ClothingHeadHatChef - entities: - - uid: 20298 + pos: -108.5,-12.5 + parent: 2 + - uid: 9808 components: - type: Transform - pos: 47.398846,-24.403196 - parent: 89 - - uid: 20382 + pos: -108.5,-13.5 + parent: 2 + - uid: 9809 components: - type: Transform - pos: 47.72697,-24.637571 - parent: 89 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 11158 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 9810 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 21135 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 9811 components: - type: Transform - pos: 39.507122,37.768234 - parent: 89 -- proto: ClothingHeadHatHardhatArmored - entities: - - uid: 21154 + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 2 + - uid: 9812 components: - type: Transform - pos: -25.51856,29.62787 - parent: 89 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 23792 + rot: -1.5707963267948966 rad + pos: -63.5,17.5 + parent: 2 + - uid: 9813 components: - type: Transform - pos: -30.721146,1.5559921 - parent: 22565 - - uid: 23793 + rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - uid: 9814 components: - type: Transform - pos: -30.143023,1.5403671 - parent: 22565 - - uid: 23794 + rot: -1.5707963267948966 rad + pos: -58.5,4.5 + parent: 2 + - uid: 9815 components: - type: Transform - pos: -29.486773,1.5247421 - parent: 22565 - - uid: 23795 + rot: -1.5707963267948966 rad + pos: -59.5,4.5 + parent: 2 + - uid: 9816 components: - type: Transform - pos: 5.516729,1.5247421 - parent: 22565 - - uid: 23796 + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - uid: 9817 components: - type: Transform - pos: 6.141729,1.5247421 - parent: 22565 - - uid: 23797 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - uid: 9818 components: - type: Transform - pos: 6.735479,1.5091171 - parent: 22565 -- proto: ClothingHeadHatHoodBioGeneral - entities: - - uid: 15214 + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - uid: 9819 components: - type: Transform - pos: 27.533932,31.764072 - parent: 89 -- proto: ClothingHeadHatHoodGoliathCloak - entities: - - uid: 14890 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - uid: 9820 components: - type: Transform - pos: -68.53844,-19.214548 - parent: 89 -- proto: ClothingHeadHatPaper - entities: - - uid: 3252 + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - uid: 9821 components: - type: Transform - pos: -27.262207,24.532402 - parent: 89 - - uid: 3270 + rot: 3.141592653589793 rad + pos: -73.5,9.5 + parent: 2 + - uid: 9822 components: - type: Transform - pos: -27.652832,24.532402 - parent: 89 -- proto: ClothingHeadHatParamedicsoft - entities: - - uid: 14059 + rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - uid: 9823 components: - type: Transform - pos: 17.990076,23.53068 - parent: 89 -- proto: ClothingHeadHatPurplesoftFlipped - entities: - - uid: 18315 + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - uid: 9824 components: - type: Transform - pos: -66.46791,1.4331145 - parent: 89 -- proto: ClothingHeadHatQMsoft - entities: - - uid: 5841 + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 + - uid: 9825 components: - type: Transform - pos: -71.635056,-17.341076 - parent: 89 -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 21598 + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 9826 components: - type: Transform - pos: -9.563451,20.796513 - parent: 89 -- proto: ClothingHeadHatSyndie - entities: - - uid: 20923 + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 9827 components: - type: Transform - pos: -112.51237,-23.449892 - parent: 89 -- proto: ClothingHeadHatTophat - entities: - - uid: 5744 + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 9828 components: - type: Transform - pos: -26.41045,-3.4169827 - parent: 89 -- proto: ClothingHeadHatWelding - entities: - - uid: 4365 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 9829 components: - type: Transform - pos: -3.5417187,-2.3014355 - parent: 89 - - uid: 17413 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 9830 components: - type: Transform - pos: -41.526688,-11.524264 - parent: 89 -- proto: ClothingHeadHatWizard - entities: - - uid: 10241 + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 9831 components: - type: Transform - pos: -34.465157,24.600704 - parent: 89 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 22421 + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - uid: 9832 components: - type: Transform - pos: 54.324352,-13.24983 - parent: 89 - - uid: 23179 + rot: -1.5707963267948966 rad + pos: -62.5,4.5 + parent: 2 + - uid: 9833 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23187 + rot: -1.5707963267948966 rad + pos: -63.5,4.5 + parent: 2 + - uid: 9834 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23194 + rot: -1.5707963267948966 rad + pos: -64.5,4.5 + parent: 2 + - uid: 9835 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23201 + rot: 3.141592653589793 rad + pos: -108.5,5.5 + parent: 2 + - uid: 9836 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23209 + rot: 3.141592653589793 rad + pos: -108.5,6.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,7.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,8.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,9.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,10.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,11.5 + parent: 2 + - uid: 9842 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23217 + rot: 3.141592653589793 rad + pos: -108.5,12.5 + parent: 2 + - uid: 9843 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetRiot - entities: - - uid: 1478 + rot: 3.141592653589793 rad + pos: -108.5,13.5 + parent: 2 + - uid: 9844 components: - type: Transform - pos: 44.303894,-6.357729 - parent: 89 - - uid: 1487 + rot: 1.5707963267948966 rad + pos: -107.5,14.5 + parent: 2 + - uid: 9845 components: - type: Transform - pos: 44.772644,-6.342104 - parent: 89 - - uid: 1641 + rot: 1.5707963267948966 rad + pos: -106.5,14.5 + parent: 2 + - uid: 9846 components: - type: Transform - pos: 44.75702,-6.342104 - parent: 89 - - uid: 2255 + rot: 1.5707963267948966 rad + pos: -105.5,14.5 + parent: 2 + - uid: 9847 components: - type: Transform - pos: 40.68397,-2.3436618 - parent: 89 - - uid: 7590 + rot: 3.141592653589793 rad + pos: -65.5,5.5 + parent: 2 + - uid: 9848 components: - type: Transform - pos: 40.40272,-2.3436618 - parent: 89 - - uid: 22647 + rot: 3.141592653589793 rad + pos: -65.5,6.5 + parent: 2 + - uid: 9849 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 20950 + rot: 3.141592653589793 rad + pos: -65.5,7.5 + parent: 2 + - uid: 9850 components: - type: Transform - pos: -87.24428,27.581451 - parent: 89 -- proto: ClothingHeadRastaHat - entities: - - uid: 16895 + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - uid: 9851 components: - type: Transform - pos: -5.2798023,-9.619751 - parent: 89 -- proto: ClothingMaskBreath - entities: - - uid: 9597 + rot: -1.5707963267948966 rad + pos: -66.5,9.5 + parent: 2 + - uid: 9852 components: - type: Transform - pos: -93.74811,-9.168023 - parent: 89 -- proto: ClothingMaskBreathMedical - entities: - - uid: 16513 + rot: -1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - uid: 9853 components: - type: Transform - pos: -8.481108,17.56099 - parent: 89 - - uid: 19593 + rot: 1.5707963267948966 rad + pos: -96.5,7.5 + parent: 2 + - uid: 9854 components: - type: Transform - pos: -8.485481,17.643927 - parent: 89 -- proto: ClothingMaskClown - entities: - - uid: 7448 + rot: 1.5707963267948966 rad + pos: -95.5,7.5 + parent: 2 + - uid: 9855 components: - type: Transform - pos: -35.60017,-3.048325 - parent: 89 -- proto: ClothingMaskGas - entities: - - uid: 16468 + rot: 1.5707963267948966 rad + pos: -94.5,7.5 + parent: 2 + - uid: 9856 components: - type: Transform - pos: -99.463165,2.5775177 - parent: 89 - - uid: 16761 + rot: -1.5707963267948966 rad + pos: -55.5,13.5 + parent: 2 + - uid: 9857 components: - type: Transform - pos: -56.4669,12.53417 - parent: 89 -- proto: ClothingMaskGasAtmos - entities: - - uid: 2572 + rot: -1.5707963267948966 rad + pos: -56.5,13.5 + parent: 2 + - uid: 9858 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.941956,-13.155476 - parent: 89 - - uid: 2693 + rot: -1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - uid: 9859 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.93318,-13.484369 - parent: 89 - - uid: 3264 + rot: -1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 + - uid: 9860 components: - type: Transform - pos: -103.42277,9.610933 - parent: 89 - - uid: 3278 + rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 + - uid: 9861 components: - type: Transform - pos: -108.07291,-19.486652 - parent: 89 - - uid: 8206 + rot: -1.5707963267948966 rad + pos: -60.5,13.5 + parent: 2 + - uid: 9862 components: - type: Transform - pos: 0.5000324,27.651428 - parent: 89 -- proto: ClothingMaskGasCentcom - entities: - - uid: 20870 + rot: -1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 + - uid: 9863 components: - type: Transform - pos: -27.471012,33.45121 - parent: 89 -- proto: ClothingMaskGasMerc - entities: - - uid: 20395 + rot: -1.5707963267948966 rad + pos: -62.5,13.5 + parent: 2 + - uid: 9864 components: - type: Transform - pos: -139.43718,-24.46989 - parent: 89 -- proto: ClothingMaskSterile - entities: - - uid: 20899 + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 + - uid: 9865 components: - type: Transform - pos: -8.493736,13.698058 - parent: 89 - - uid: 21584 + rot: -1.5707963267948966 rad + pos: -64.5,13.5 + parent: 2 + - uid: 9866 components: - type: Transform - pos: -8.493736,13.619933 - parent: 89 - - uid: 21585 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + - uid: 9867 components: - type: Transform - pos: -8.509361,13.541808 - parent: 89 - - uid: 21586 + rot: -1.5707963267948966 rad + pos: -66.5,13.5 + parent: 2 + - uid: 9868 components: - type: Transform - pos: -8.458017,13.747701 - parent: 89 - - uid: 21587 + rot: -1.5707963267948966 rad + pos: -67.5,13.5 + parent: 2 + - uid: 9869 components: - type: Transform - pos: -8.504817,13.653951 - parent: 89 - - uid: 21588 + pos: -68.5,12.5 + parent: 2 + - uid: 9870 components: - type: Transform - pos: -8.504817,13.575826 - parent: 89 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 19822 + pos: -68.5,11.5 + parent: 2 + - uid: 9871 components: - type: Transform - pos: -68.51435,-19.383087 - parent: 89 -- proto: ClothingNeckCloakMiner - entities: - - uid: 22433 + pos: -68.5,10.5 + parent: 2 + - uid: 9872 components: - type: Transform - pos: 19.533554,-18.54226 - parent: 89 -- proto: ClothingNeckHeadphones - entities: - - uid: 5646 + rot: 3.141592653589793 rad + pos: -48.5,2.5 + parent: 2 + - uid: 9873 components: - type: Transform - pos: 37.443554,-12.360011 - parent: 89 - - uid: 5647 + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 + - uid: 9874 components: - type: Transform - pos: 37.506054,-12.610011 - parent: 89 -- proto: ClothingNeckHorrific - entities: - - uid: 10312 + pos: 9.5,-11.5 + parent: 2 + - uid: 9875 components: - type: Transform - pos: -39.61603,28.938139 - parent: 89 - - uid: 11404 + rot: 3.141592653589793 rad + pos: -73.5,10.5 + parent: 2 + - uid: 9876 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingNeckMantleCap - entities: - - uid: 862 + rot: 3.141592653589793 rad + pos: -73.5,11.5 + parent: 2 + - uid: 9877 components: - type: Transform - pos: 47.81577,10.405572 - parent: 89 -- proto: ClothingNeckMantleQM - entities: - - uid: 5840 + rot: 3.141592653589793 rad + pos: -73.5,12.5 + parent: 2 + - uid: 9878 components: - type: Transform - pos: -72.47551,-17.448103 - parent: 89 -- proto: ClothingNeckMantleRD - entities: - - uid: 167 + rot: 3.141592653589793 rad + pos: -73.5,13.5 + parent: 2 + - uid: 9879 components: - type: Transform - pos: 4.5,-27.5 - parent: 89 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 7456 + rot: 3.141592653589793 rad + pos: -73.5,14.5 + parent: 2 + - uid: 9880 components: - type: Transform - pos: -35.64279,-9.370201 - parent: 89 -- proto: ClothingNeckStethoscope - entities: - - uid: 12579 + rot: 3.141592653589793 rad + pos: -73.5,15.5 + parent: 2 + - uid: 9881 components: - type: Transform - pos: 32.963474,20.751863 - parent: 89 - - uid: 12618 + rot: 3.141592653589793 rad + pos: -73.5,16.5 + parent: 2 + - uid: 9882 components: - type: Transform - pos: 33.025974,20.611238 - parent: 89 -- proto: ClothingNeckSyndicakePin - entities: - - uid: 9339 + rot: -1.5707963267948966 rad + pos: -92.5,13.5 + parent: 2 + - uid: 9883 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.77427,27.411627 - parent: 89 -- proto: ClothingNeckTieDet - entities: - - uid: 11087 + pos: -72.5,17.5 + parent: 2 + - uid: 9884 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False - - uid: 15553 + rot: 1.5707963267948966 rad + pos: -71.5,17.5 + parent: 2 + - uid: 9885 components: - type: Transform - pos: 8.465353,27.48247 - parent: 89 -- proto: ClothingNeckTieRed - entities: - - uid: 11090 + rot: 1.5707963267948966 rad + pos: -70.5,17.5 + parent: 2 + - uid: 9886 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingNeckTieSci - entities: - - uid: 11378 + rot: 1.5707963267948966 rad + pos: -69.5,17.5 + parent: 2 + - uid: 9887 components: - - type: MetaData - name: фиолетовый галстук - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingOuterAerostaticBomberJacket - entities: - - uid: 10382 + rot: 1.5707963267948966 rad + pos: -68.5,17.5 + parent: 2 + - uid: 9888 components: - type: Transform - pos: -19.437286,28.49617 - parent: 89 -- proto: ClothingOuterApron - entities: - - uid: 21596 + rot: 1.5707963267948966 rad + pos: -67.5,17.5 + parent: 2 + - uid: 9889 components: - type: Transform - pos: -6.622481,35.579773 - parent: 89 -- proto: ClothingOuterApronChef - entities: - - uid: 20358 + rot: 1.5707963267948966 rad + pos: -66.5,17.5 + parent: 2 + - uid: 9890 components: - type: Transform - pos: 48.38322,-24.418821 - parent: 89 - - uid: 20385 + rot: 1.5707963267948966 rad + pos: -65.5,17.5 + parent: 2 + - uid: 9891 components: - type: Transform - pos: 48.680096,-24.606321 - parent: 89 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 1486 + rot: 1.5707963267948966 rad + pos: -64.5,17.5 + parent: 2 + - uid: 9892 components: - type: Transform - pos: 44.78827,-6.592104 - parent: 89 - - uid: 1638 + rot: 3.141592653589793 rad + pos: -93.5,12.5 + parent: 2 + - uid: 9893 components: - type: Transform - pos: 44.53827,-6.607729 - parent: 89 - - uid: 2769 + rot: 3.141592653589793 rad + pos: -93.5,11.5 + parent: 2 + - uid: 9894 components: - type: Transform - pos: 44.210144,-6.638979 - parent: 89 -- proto: ClothingOuterArmorReflective - entities: - - uid: 7670 + rot: 3.141592653589793 rad + pos: -93.5,10.5 + parent: 2 + - uid: 9895 components: - type: Transform - pos: 40.526085,-2.5274131 - parent: 89 -- proto: ClothingOuterArmorRiot - entities: - - uid: 1131 + rot: 3.141592653589793 rad + pos: -93.5,9.5 + parent: 2 + - uid: 9896 components: - type: Transform - pos: 40.34022,-2.5467868 - parent: 89 - - uid: 1914 + rot: 3.141592653589793 rad + pos: -93.5,8.5 + parent: 2 + - uid: 9897 components: - type: Transform - pos: 40.730846,-2.5624118 - parent: 89 - - uid: 22648 + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 9898 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterBioGeneral - entities: - - uid: 15206 + rot: 3.141592653589793 rad + pos: -93.5,6.5 + parent: 2 + - uid: 9899 components: - type: Transform - pos: 27.533932,31.373447 - parent: 89 -- proto: ClothingOuterCoatHoSGreatcoat - entities: - - uid: 2768 + rot: 3.141592653589793 rad + pos: -93.5,5.5 + parent: 2 + - uid: 9900 components: - type: Transform - pos: 44.540276,-6.513979 - parent: 89 -- proto: ClothingOuterCoatLab - entities: - - uid: 14043 + rot: 3.141592653589793 rad + pos: -93.5,4.5 + parent: 2 + - uid: 9901 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatParamedicWB - entities: - - uid: 14072 + rot: 3.141592653589793 rad + pos: -93.5,3.5 + parent: 2 + - uid: 9902 components: - type: Transform - pos: 17.990076,23.68693 - parent: 89 -- proto: ClothingOuterDiscoAssBlazer - entities: - - uid: 10313 + rot: 3.141592653589793 rad + pos: -93.5,2.5 + parent: 2 + - uid: 9903 components: - type: Transform - pos: -39.54277,32.313835 - parent: 89 -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 23180 + rot: 3.141592653589793 rad + pos: -93.5,1.5 + parent: 2 + - uid: 9904 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23188 + rot: 3.141592653589793 rad + pos: -93.5,0.5 + parent: 2 + - uid: 9905 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23195 + rot: 3.141592653589793 rad + pos: -93.5,-0.5 + parent: 2 + - uid: 9906 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23202 + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 9907 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23210 + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 9908 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23218 + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + - uid: 9909 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 22649 + rot: 1.5707963267948966 rad + pos: -64.5,24.5 + parent: 2 + - uid: 9910 components: - type: Transform - parent: 22641 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSyndicate - entities: - - uid: 22014 + rot: 1.5707963267948966 rad + pos: -63.5,24.5 + parent: 2 + - uid: 9911 components: - type: Transform - pos: 54.511852,-13.46858 - parent: 89 -- proto: ClothingOuterHardsuitVoidParamed - entities: - - uid: 15052 + rot: 1.5707963267948966 rad + pos: -62.5,24.5 + parent: 2 + - uid: 9912 components: - type: Transform - pos: 22.417797,35.661964 - parent: 89 -- proto: ClothingOuterStraightjacket - entities: - - uid: 11101 + rot: 1.5707963267948966 rad + pos: -61.5,24.5 + parent: 2 + - uid: 9913 components: - type: Transform - pos: 21.501547,31.709066 - parent: 89 - - uid: 11224 + rot: 1.5707963267948966 rad + pos: -60.5,24.5 + parent: 2 + - uid: 9914 components: - type: Transform - parent: 11201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11302 + rot: 1.5707963267948966 rad + pos: -59.5,24.5 + parent: 2 + - uid: 9915 components: - type: Transform - parent: 11201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11308 + rot: 1.5707963267948966 rad + pos: -58.5,24.5 + parent: 2 + - uid: 9916 components: - type: Transform - parent: 11304 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11310 + pos: -57.5,22.5 + parent: 2 + - uid: 9917 components: - type: Transform - parent: 11304 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15238 + pos: -57.5,21.5 + parent: 2 + - uid: 9918 components: - type: Transform - pos: 27.752682,31.732822 - parent: 89 -- proto: ClothingOuterWinterSyndieCapArmored - entities: - - uid: 9237 + pos: -57.5,20.5 + parent: 2 + - uid: 9919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.45478,27.080427 - parent: 89 -- proto: ClothingOuterWizard - entities: - - uid: 10240 + pos: -57.5,19.5 + parent: 2 + - uid: 9920 components: - type: Transform - pos: -34.433907,24.100704 - parent: 89 -- proto: ClothingShoesAerostatic - entities: - - uid: 10381 + pos: -57.5,18.5 + parent: 2 + - uid: 9921 components: - type: Transform - pos: -19.421661,27.93367 - parent: 89 -- proto: ClothingShoesBling - entities: - - uid: 2143 + rot: -1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - uid: 9922 components: - type: Transform - pos: 49.539215,-5.536044 - parent: 89 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 23798 + rot: -1.5707963267948966 rad + pos: -107.5,-3.5 + parent: 2 + - uid: 9923 components: - type: Transform - pos: -15.45606,-2.582761 - parent: 22565 - - uid: 25636 + rot: -1.5707963267948966 rad + pos: -58.5,17.5 + parent: 2 + - uid: 9924 components: - type: Transform - pos: -114.540245,20.574074 - parent: 89 -- proto: ClothingShoesBootsMag - entities: - - uid: 2265 + rot: -1.5707963267948966 rad + pos: -59.5,17.5 + parent: 2 + - uid: 9925 components: - type: Transform - pos: -109.55728,-19.434334 - parent: 89 - - uid: 2342 + rot: -1.5707963267948966 rad + pos: -60.5,17.5 + parent: 2 + - uid: 9926 components: - type: Transform - pos: -109.43228,-19.262459 - parent: 89 - - uid: 2346 + rot: -1.5707963267948966 rad + pos: -61.5,17.5 + parent: 2 + - uid: 9927 components: - type: Transform - parent: 7132 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2352 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 9928 components: - type: Transform - parent: 7133 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2357 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 9929 components: - type: Transform - parent: 2332 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2359 + rot: -1.5707963267948966 rad + pos: -47.5,14.5 + parent: 2 + - uid: 9930 components: - type: Transform - parent: 7131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2519 + pos: -48.5,15.5 + parent: 2 + - uid: 9931 components: - type: Transform - pos: -109.24478,-19.559334 - parent: 89 - - uid: 7130 + pos: -48.5,16.5 + parent: 2 + - uid: 9932 components: - type: Transform - parent: 7129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17969 + pos: -14.5,8.5 + parent: 2 + - uid: 9933 components: - type: Transform - pos: 24.469347,-18.35476 - parent: 89 - - type: Magboots - toggleActionEntity: 21553 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 21553 - - uid: 25622 + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - uid: 9934 components: - type: Transform - parent: 18178 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25623 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - uid: 9935 components: - type: Transform - parent: 18179 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25625 + rot: 1.5707963267948966 rad + pos: -92.5,-1.5 + parent: 2 + - uid: 9936 components: - type: Transform - parent: 18180 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesChameleonNoSlips - entities: - - uid: 21137 + rot: 1.5707963267948966 rad + pos: -91.5,-1.5 + parent: 2 + - uid: 9937 components: - type: Transform - pos: -102.50028,27.336597 - parent: 89 -- proto: ClothingShoesChef - entities: - - uid: 4006 + rot: 1.5707963267948966 rad + pos: -90.5,-1.5 + parent: 2 + - uid: 9938 components: - type: Transform - pos: -14.475378,-5.505477 - parent: 89 -- proto: ClothingShoesClown - entities: - - uid: 4254 + rot: 1.5707963267948966 rad + pos: -89.5,-1.5 + parent: 2 + - uid: 9939 components: - type: Transform - pos: -35.56892,-3.4077 - parent: 89 -- proto: ClothingShoesGreenLizardskin - entities: - - uid: 10311 + pos: -0.5,-3.5 + parent: 2 + - uid: 9940 components: - type: Transform - pos: -42.542587,28.46403 - parent: 89 -- proto: ClothingShoesLeather - entities: - - uid: 10259 + pos: -88.5,-0.5 + parent: 2 + - uid: 9941 components: - type: Transform - pos: -72.94503,-6.821913 - parent: 89 - - uid: 14045 + pos: -88.5,0.5 + parent: 2 + - uid: 9942 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21103 + pos: -88.5,1.5 + parent: 2 + - uid: 9943 components: - type: Transform - pos: 47.008595,14.970873 - parent: 89 -- proto: ClothingShoesSlippers - entities: - - uid: 20860 + pos: -88.5,2.5 + parent: 2 + - uid: 9944 components: - type: Transform - pos: 41.338043,14.397523 - parent: 89 -- proto: ClothingShoesWizard - entities: - - uid: 10239 + pos: -88.5,3.5 + parent: 2 + - uid: 9945 components: - type: Transform - pos: -34.48078,23.52258 - parent: 89 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 14042 + pos: -88.5,4.5 + parent: 2 + - uid: 9946 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtDetectiveGrey - entities: - - uid: 14041 + pos: -88.5,5.5 + parent: 2 + - uid: 9947 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitAerostatic - entities: - - uid: 10383 + pos: -88.5,6.5 + parent: 2 + - uid: 9948 components: - type: Transform - pos: -19.499786,29.230545 - parent: 89 -- proto: ClothingUniformJumpsuitClown - entities: - - uid: 7447 + pos: -88.5,7.5 + parent: 2 + - uid: 9949 components: - type: Transform - pos: -35.553295,-3.360825 - parent: 89 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 14040 + pos: -88.5,8.5 + parent: 2 + - uid: 9950 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 14044 + rot: -1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 + - uid: 9951 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitLawyerBlue - entities: - - uid: 7990 + rot: -1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 + - uid: 9952 components: - type: Transform - pos: -0.7239857,46.668728 - parent: 89 -- proto: ClothingUniformJumpsuitLawyerRed - entities: - - uid: 7989 + rot: -1.5707963267948966 rad + pos: -54.5,17.5 + parent: 2 + - uid: 9953 components: - type: Transform - pos: -6.2239857,46.590603 - parent: 89 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 23181 + rot: -1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 + - uid: 9954 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23189 + rot: -1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 + - uid: 9955 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23196 + rot: -1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 + - uid: 9956 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23203 + rot: -1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 + - uid: 9957 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23211 + rot: -1.5707963267948966 rad + pos: -49.5,17.5 + parent: 2 + - uid: 9958 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23219 + rot: -1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 + - uid: 9959 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSuperstarCop - entities: - - uid: 10314 + rot: -1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + - uid: 9960 components: - type: Transform - pos: -39.995895,29.48571 - parent: 89 -- proto: Cobweb1 - entities: - - uid: 4195 + rot: -1.5707963267948966 rad + pos: -45.5,17.5 + parent: 2 + - uid: 9961 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - uid: 4274 + rot: -1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 + - uid: 9962 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 - - uid: 6012 + pos: -43.5,17.5 + parent: 2 + - uid: 9963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 89 - - uid: 6013 + pos: -42.5,17.5 + parent: 2 + - uid: 9964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 89 - - uid: 6022 + rot: -1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + - uid: 9965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 89 - - uid: 23799 + rot: -1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - uid: 9966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 22565 - - uid: 23800 + rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - uid: 9967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 22565 -- proto: Cobweb2 - entities: - - uid: 4276 + rot: -1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - uid: 9968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,27.5 - parent: 89 - - uid: 6021 + rot: -1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 9969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 89 - - uid: 23801 + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 9970 components: - type: Transform - pos: 4.5,11.5 - parent: 22565 -- proto: CockroachTimedSpawner - entities: - - uid: 5212 + rot: -1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - uid: 9971 components: - type: Transform - pos: 20.5,-5.5 - parent: 89 - - uid: 10575 + rot: -1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - uid: 9972 components: - type: Transform - pos: -21.5,-23.5 - parent: 89 - - uid: 16771 + rot: -1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - uid: 9973 components: - type: Transform - pos: 34.5,14.5 - parent: 89 - - uid: 17306 + pos: -0.5,-2.5 + parent: 2 + - uid: 9974 components: - type: Transform - pos: 22.5,-13.5 - parent: 89 - - uid: 17530 + pos: -0.5,-1.5 + parent: 2 + - uid: 9975 components: - type: Transform - pos: 43.5,13.5 - parent: 89 -- proto: CombatKnife - entities: - - uid: 25696 + pos: -0.5,-0.5 + parent: 2 + - uid: 9976 components: - type: Transform - pos: 5.2764907,-1.3724282 - parent: 89 -- proto: CombatMedipen - entities: - - uid: 4049 + pos: -0.5,0.5 + parent: 2 + - uid: 9977 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6953 + pos: -0.5,1.5 + parent: 2 + - uid: 9978 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11595 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 9979 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ComfyChair - entities: - - uid: 212 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 9980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 89 - - uid: 1941 + pos: 2.5,2.5 + parent: 2 + - uid: 9981 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 1965 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 9982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 89 - - uid: 1999 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 9983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 89 - - uid: 2118 + pos: 5.5,2.5 + parent: 2 + - uid: 9984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 89 - - uid: 2120 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 9985 components: - type: Transform - pos: 33.5,15.5 - parent: 89 - - uid: 2121 + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 9986 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,14.5 - parent: 89 - - uid: 2123 + pos: 8.5,2.5 + parent: 2 + - uid: 9987 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 89 - - uid: 2133 + pos: 10.5,2.5 + parent: 2 + - uid: 9988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 89 - - uid: 3593 + pos: 27.5,-3.5 + parent: 2 + - uid: 9989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 89 - - uid: 4038 + pos: 14.5,8.5 + parent: 2 + - uid: 9990 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,14.5 - parent: 89 - - uid: 4046 + pos: -40.5,-7.5 + parent: 2 + - uid: 9991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 89 - - uid: 5815 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 9992 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 6494 + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 9993 components: - type: Transform - pos: 34.5,15.5 - parent: 89 - - uid: 6499 + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 9994 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 89 - - uid: 7789 + pos: -40.5,-3.5 + parent: 2 + - uid: 9995 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 89 - - uid: 8391 + pos: -40.5,-2.5 + parent: 2 + - uid: 9996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 89 - - uid: 14926 + rot: 3.141592653589793 rad + pos: -40.5,-0.5 + parent: 2 + - uid: 9997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 89 - - uid: 14927 + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 + - uid: 9998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 89 - - uid: 15307 + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 + - uid: 9999 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 16420 + rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 2 + - uid: 10000 components: - type: Transform - pos: -122.5,-13.5 - parent: 89 - - uid: 16421 + rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 2 + - uid: 10001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-12.5 - parent: 89 - - uid: 16995 + rot: 1.5707963267948966 rad + pos: -41.5,4.5 + parent: 2 + - uid: 10002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 89 - - uid: 17269 + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 10003 components: - type: Transform - pos: -52.5,48.5 - parent: 89 - - uid: 17273 + rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - uid: 10004 components: - type: Transform - pos: -53.5,48.5 - parent: 89 - - uid: 17288 + rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 2 + - uid: 10005 components: - type: Transform - pos: -54.5,48.5 - parent: 89 - - uid: 17297 + rot: 1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - uid: 10007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 89 - - uid: 17593 + rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 2 + - uid: 10008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,18.5 - parent: 89 - - uid: 18159 + pos: -49.5,4.5 + parent: 2 + - uid: 10009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-26.5 - parent: 89 - - uid: 21115 + rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 10010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,37.5 - parent: 89 - - uid: 21395 + rot: 1.5707963267948966 rad + pos: -51.5,4.5 + parent: 2 + - uid: 10011 components: - type: Transform - pos: 55.5,-32.5 - parent: 89 - - uid: 21396 + rot: 1.5707963267948966 rad + pos: -52.5,4.5 + parent: 2 + - uid: 10012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-31.5 - parent: 89 - - uid: 21455 + pos: -53.5,4.5 + parent: 2 + - uid: 10013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 89 - - uid: 25392 + rot: 1.5707963267948966 rad + pos: -54.5,4.5 + parent: 2 + - uid: 10014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-24.5 - parent: 89 -- proto: CommsComputerCircuitboard - entities: - - uid: 3359 + pos: -55.5,4.5 + parent: 2 + - uid: 10015 components: - type: Transform - pos: 54.446102,2.4674153 - parent: 89 -- proto: ComplexXenoArtifact - entities: - - uid: 6846 + rot: 3.141592653589793 rad + pos: -48.5,3.5 + parent: 2 + - uid: 10016 components: - - type: MetaData - name: обелиск - type: Transform - pos: -55.5,-13.5 - parent: 89 -- proto: ComputerAlert - entities: - - uid: 377 + pos: -99.5,23.5 + parent: 2 + - uid: 10017 components: - type: Transform - pos: 57.5,10.5 - parent: 89 - - uid: 387 + pos: -99.5,24.5 + parent: 2 + - uid: 10018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 - parent: 89 - - uid: 415 + pos: -98.5,22.5 + parent: 2 + - uid: 10019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,11.5 - parent: 89 - - uid: 9341 + pos: -97.5,22.5 + parent: 2 + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,35.5 - parent: 89 - - uid: 17029 + pos: -96.5,22.5 + parent: 2 + - uid: 10021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,1.5 - parent: 89 - - uid: 17904 + rot: -1.5707963267948966 rad + pos: -95.5,22.5 + parent: 2 + - uid: 10022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-2.5 - parent: 89 -- proto: ComputerAnalysisConsole - entities: - - uid: 245 + pos: -94.5,22.5 + parent: 2 + - uid: 10023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 89 - - uid: 1909 + rot: -1.5707963267948966 rad + pos: -93.5,22.5 + parent: 2 + - uid: 10024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 89 -- proto: ComputerBroken - entities: - - uid: 14652 + rot: -1.5707963267948966 rad + pos: -92.5,22.5 + parent: 2 + - uid: 10025 components: - type: Transform - pos: -129.5,23.5 - parent: 89 - - uid: 17044 + rot: -1.5707963267948966 rad + pos: -91.5,22.5 + parent: 2 + - uid: 10026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 -- proto: ComputerCargoBounty - entities: - - uid: 7101 + pos: -90.5,22.5 + parent: 2 + - uid: 10027 components: - type: Transform - pos: -69.5,-9.5 - parent: 89 - - uid: 15335 + rot: -1.5707963267948966 rad + pos: -89.5,22.5 + parent: 2 + - uid: 10028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,35.5 - parent: 89 -- proto: ComputerCargoOrders - entities: - - uid: 5128 + rot: -1.5707963267948966 rad + pos: -88.5,22.5 + parent: 2 + - uid: 10029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-6.5 - parent: 89 - - uid: 5380 + rot: 3.141592653589793 rad + pos: -87.5,21.5 + parent: 2 + - uid: 10030 components: - type: Transform - pos: -65.5,-15.5 - parent: 89 -- proto: ComputerCargoShuttle - entities: - - uid: 5131 + rot: 3.141592653589793 rad + pos: -87.5,20.5 + parent: 2 + - uid: 10031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-5.5 - parent: 89 - - uid: 5376 + rot: 3.141592653589793 rad + pos: -87.5,19.5 + parent: 2 + - uid: 10032 components: - type: Transform - pos: -67.5,-15.5 - parent: 89 -- proto: ComputerComms - entities: - - uid: 380 + rot: 3.141592653589793 rad + pos: -87.5,18.5 + parent: 2 + - uid: 10033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 89 - - uid: 382 + rot: 3.141592653589793 rad + pos: -87.5,17.5 + parent: 2 + - uid: 10034 components: - type: Transform - pos: 59.5,15.5 - parent: 89 - - uid: 6459 + pos: -32.5,15.5 + parent: 2 + - uid: 10035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,3.5 - parent: 89 - - uid: 17242 + rot: 1.5707963267948966 rad + pos: -88.5,16.5 + parent: 2 + - uid: 10036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-1.5 - parent: 89 - - uid: 23802 + rot: 1.5707963267948966 rad + pos: -89.5,16.5 + parent: 2 + - uid: 10037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 22565 -- proto: ComputerCrewMonitoring - entities: - - uid: 371 + pos: -90.5,16.5 + parent: 2 + - uid: 10038 components: - type: Transform - pos: 52.5,15.5 - parent: 89 - - uid: 3833 + rot: 1.5707963267948966 rad + pos: -91.5,16.5 + parent: 2 + - uid: 10039 components: - type: Transform - pos: 13.5,-0.5 - parent: 89 - - uid: 4355 + rot: 1.5707963267948966 rad + pos: -92.5,16.5 + parent: 2 + - uid: 10040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 89 - - uid: 8590 + pos: -32.5,16.5 + parent: 2 + - uid: 10041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 89 - - uid: 10466 + pos: -93.5,15.5 + parent: 2 + - uid: 10042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 89 - - uid: 10885 + pos: -93.5,14.5 + parent: 2 + - uid: 10043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 89 - - uid: 15556 + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + - uid: 10044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 89 -- proto: ComputerCriminalRecords - entities: - - uid: 4017 + rot: -1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - uid: 10045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-3.5 - parent: 89 - - uid: 6167 + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - uid: 10046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,6.5 - parent: 89 - - uid: 6806 + rot: -1.5707963267948966 rad + pos: -36.5,4.5 + parent: 2 + - uid: 10047 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,1.5 - parent: 89 - - uid: 8087 + pos: -35.5,4.5 + parent: 2 + - uid: 10048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,12.5 - parent: 89 - - uid: 8150 + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - uid: 10049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,15.5 - parent: 89 - - uid: 8162 + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 10050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,7.5 - parent: 89 - - uid: 8254 + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 10051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,20.5 - parent: 89 - - uid: 14543 + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 10052 components: - type: Transform - pos: -73.5,-5.5 - parent: 89 - - uid: 17246 + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - uid: 10053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-6.5 - parent: 89 - - uid: 23803 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 10054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 22565 - - uid: 23804 + pos: -28.5,4.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 10056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,6.5 - parent: 22565 - - uid: 25501 + pos: 1.5,-15.5 + parent: 2 + - uid: 10057 components: - type: Transform - pos: 4.5,-1.5 - parent: 18153 -- proto: ComputerFrame - entities: - - uid: 1286 + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + - uid: 10058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,2.5 - parent: 89 - - uid: 4340 + pos: -62.5,18.5 + parent: 2 + - uid: 10059 components: - type: Transform - pos: 10.5,18.5 - parent: 89 -- proto: ComputerId - entities: - - uid: 3337 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 89 - - uid: 17243 + pos: 3.5,-6.5 + parent: 2 + - uid: 10061 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 89 - - uid: 17901 + pos: 3.5,-7.5 + parent: 2 + - uid: 10062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-3.5 - parent: 89 -- proto: ComputerIFF - entities: - - uid: 21676 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 10063 components: - type: Transform - pos: -0.5,-1.5 - parent: 21627 -- proto: ComputerIFFSyndicateCircuitboard - entities: - - uid: 23805 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 10064 components: - - type: MetaData - name: консоль системы опознования - type: Transform - pos: 3.543898,11.66512 - parent: 22565 -- proto: ComputerMassMedia - entities: - - uid: 7173 + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 10065 components: - type: Transform - pos: -26.5,9.5 - parent: 89 -- proto: ComputerMedicalRecords - entities: - - uid: 3827 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - uid: 10066 components: - type: Transform - pos: 14.5,-0.5 - parent: 89 - - uid: 17247 + rot: -1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - uid: 10067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-1.5 - parent: 89 - - uid: 19138 + pos: -0.5,-5.5 + parent: 2 + - uid: 10068 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,11.5 - parent: 89 -- proto: ComputerPowerMonitoring - entities: - - uid: 6890 + pos: -85.5,32.5 + parent: 2 + - uid: 10069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,10.5 - parent: 89 - - uid: 7267 + rot: 3.141592653589793 rad + pos: -84.5,31.5 + parent: 2 + - uid: 10070 components: - type: Transform - pos: -118.5,6.5 - parent: 89 - - uid: 12836 + rot: 3.141592653589793 rad + pos: -84.5,30.5 + parent: 2 + - uid: 10071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-13.5 - parent: 89 - - uid: 17244 + rot: 3.141592653589793 rad + pos: -84.5,29.5 + parent: 2 + - uid: 10072 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-6.5 - parent: 89 - - uid: 25868 + pos: -84.5,28.5 + parent: 2 + - uid: 10073 components: - type: Transform rot: 3.141592653589793 rad - pos: -128.5,-2.5 - parent: 89 - - uid: 25871 + pos: -84.5,27.5 + parent: 2 + - uid: 10074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,14.5 - parent: 89 -- proto: ComputerRadar - entities: - - uid: 378 + rot: 3.141592653589793 rad + pos: -84.5,26.5 + parent: 2 + - uid: 10075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 89 - - uid: 3206 + rot: 3.141592653589793 rad + pos: -84.5,25.5 + parent: 2 + - uid: 10076 components: - type: Transform - pos: 55.5,15.5 - parent: 89 - - uid: 5526 + rot: 3.141592653589793 rad + pos: -84.5,24.5 + parent: 2 + - uid: 10077 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 12129 + rot: 3.141592653589793 rad + pos: -84.5,23.5 + parent: 2 + - uid: 10078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-6.5 - parent: 89 - - uid: 18314 + rot: 3.141592653589793 rad + pos: -84.5,22.5 + parent: 2 + - uid: 10079 components: - type: Transform rot: 3.141592653589793 rad - pos: -117.5,1.5 - parent: 89 - - uid: 21677 + pos: -84.5,21.5 + parent: 2 + - uid: 10080 components: - type: Transform - pos: 1.5,-1.5 - parent: 21627 - - uid: 23806 + rot: 1.5707963267948966 rad + pos: -83.5,20.5 + parent: 2 + - uid: 10081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 22565 - - uid: 23807 + pos: -82.5,20.5 + parent: 2 + - uid: 10082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 22565 - - uid: 25502 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 18153 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 78 + pos: -27.5,4.5 + parent: 2 + - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 89 - - uid: 3356 + pos: -81.5,19.5 + parent: 2 + - uid: 10084 components: - type: Transform - pos: -7.5,-34.5 - parent: 89 - - uid: 9009 + pos: -81.5,18.5 + parent: 2 + - uid: 10085 components: - type: Transform - pos: 1.5,-27.5 - parent: 89 - - uid: 16905 + pos: -81.5,17.5 + parent: 2 + - uid: 10086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 89 -- proto: ComputerSalvageExpedition - entities: - - uid: 7334 + pos: -81.5,16.5 + parent: 2 + - uid: 10087 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 -- proto: ComputerShuttle - entities: - - uid: 6486 + pos: -81.5,15.5 + parent: 2 + - uid: 10088 components: - - type: MetaData - name: консоль управления корабля - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,4.5 - parent: 89 - - uid: 21678 + pos: -81.5,14.5 + parent: 2 + - uid: 10089 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 25503 + pos: -81.5,13.5 + parent: 2 + - uid: 10090 components: - type: Transform - pos: 3.5,-1.5 - parent: 18153 -- proto: ComputerShuttleCargo - entities: - - uid: 5324 + pos: -81.5,12.5 + parent: 2 + - uid: 10091 components: - type: Transform - pos: -66.5,-15.5 - parent: 89 -- proto: ComputerShuttleSalvage - entities: - - uid: 7335 + pos: -81.5,11.5 + parent: 2 + - uid: 10092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 89 -- proto: ComputerSolarControl - entities: - - uid: 6891 + pos: -81.5,10.5 + parent: 2 + - uid: 10093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,11.5 - parent: 89 - - uid: 8602 + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - uid: 10094 components: - type: Transform - pos: -117.5,6.5 - parent: 89 - - uid: 17245 + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 10095 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 89 - - uid: 18869 + pos: -23.5,3.5 + parent: 2 + - uid: 10096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 89 - - uid: 20361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-12.5 - parent: 89 - - uid: 23808 + pos: -84.5,9.5 + parent: 2 + - uid: 10097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 22565 -- proto: ComputerStationRecords - entities: - - uid: 370 + pos: -85.5,11.5 + parent: 2 + - uid: 10098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,7.5 - parent: 89 - - uid: 381 - components: - - type: Transform - pos: 54.5,10.5 - parent: 89 - - uid: 414 + pos: -25.5,-7.5 + parent: 2 + - uid: 10099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,12.5 - parent: 89 - - uid: 5562 + pos: -23.5,-7.5 + parent: 2 + - uid: 10100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 89 - - uid: 6169 + pos: -22.5,-7.5 + parent: 2 + - uid: 10101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 89 - - uid: 23809 + pos: -102.5,5.5 + parent: 2 + - uid: 10102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 22565 - - uid: 23810 + pos: -102.5,6.5 + parent: 2 + - uid: 10103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,5.5 - parent: 22565 - - uid: 25387 + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 10104 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-27.5 - parent: 89 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 379 + pos: -21.5,-9.5 + parent: 2 + - uid: 10105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,6.5 - parent: 89 - - uid: 3627 + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 10106 components: - type: Transform - pos: 7.5,-10.5 - parent: 89 - - uid: 6168 + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 10107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 89 - - uid: 8066 + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 10108 components: - type: Transform - pos: -88.5,14.5 - parent: 89 - - uid: 8178 + rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 10109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,8.5 - parent: 89 - - uid: 8293 + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 + - uid: 10110 components: - type: Transform - pos: -61.5,22.5 - parent: 89 - - uid: 9046 + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 10111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,20.5 - parent: 89 - - uid: 10467 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 10112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,6.5 - parent: 89 - - uid: 17285 + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 10113 components: - type: Transform - pos: 56.5,15.5 - parent: 89 - - uid: 23811 + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 10114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 22565 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 10468 + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 10115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 89 - - uid: 10822 + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 10116 components: - type: Transform - pos: -27.5,9.5 - parent: 89 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 16897 + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 10117 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 -- proto: ComputerTelevision - entities: - - uid: 4296 + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 10118 components: - type: Transform - pos: -22.5,-3.5 - parent: 89 - - uid: 10374 + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 10119 components: - type: Transform - pos: -22.5,29.5 - parent: 89 - - uid: 14545 + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 10120 components: - type: Transform - pos: -37.5,29.5 - parent: 89 - - uid: 20969 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 10121 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 21138 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 10122 components: - type: Transform - pos: 48.5,15.5 - parent: 89 -- proto: ContainmentFieldGenerator - entities: - - uid: 8793 + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - uid: 10123 components: - type: Transform - pos: -115.5,-5.5 - parent: 89 - - uid: 8794 + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - uid: 10124 components: - type: Transform - pos: -115.5,-6.5 - parent: 89 - - uid: 8795 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 10125 components: - type: Transform - pos: -115.5,-7.5 - parent: 89 - - uid: 8796 + pos: -0.5,-6.5 + parent: 2 + - uid: 10126 components: - type: Transform - pos: -115.5,-8.5 - parent: 89 -- proto: ConveyorBelt - entities: - - uid: 100 + pos: -0.5,-7.5 + parent: 2 + - uid: 10127 components: - type: Transform - pos: -66.5,-5.5 - parent: 89 - - uid: 3618 + pos: -0.5,-8.5 + parent: 2 + - uid: 10128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 4822 + pos: -0.5,-9.5 + parent: 2 + - uid: 10129 components: - type: Transform - pos: -63.5,-17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4823 + rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 10130 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4824 + pos: -0.5,-11.5 + parent: 2 + - uid: 10131 components: - type: Transform - pos: -63.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4825 + pos: -0.5,-12.5 + parent: 2 + - uid: 10132 components: - type: Transform - pos: -63.5,-20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4826 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 10133 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4827 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 10134 components: - type: Transform - pos: -59.5,-17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4828 + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 10135 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4829 + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 10136 components: - type: Transform - pos: -59.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4830 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 10137 components: - type: Transform - pos: -59.5,-20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4831 + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 10138 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 5103 + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 10139 components: - type: Transform - pos: -66.5,-4.5 - parent: 89 - - uid: 5104 + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 10140 components: - type: Transform - pos: -66.5,-3.5 - parent: 89 - - uid: 5105 + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 10141 components: - type: Transform - pos: -66.5,-2.5 - parent: 89 - - uid: 5109 + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 10142 components: - type: Transform - pos: -59.5,-2.5 - parent: 89 - - uid: 5110 + rot: -1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 10143 components: - type: Transform - pos: -59.5,-3.5 - parent: 89 - - uid: 5111 + rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 10144 components: - type: Transform - pos: -59.5,-4.5 - parent: 89 - - uid: 5112 + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 10145 components: - type: Transform - pos: -59.5,-5.5 - parent: 89 - - uid: 7661 + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 10146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7662 + rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 10147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7663 + pos: -17.5,-13.5 + parent: 2 + - uid: 10148 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7664 + pos: -18.5,-13.5 + parent: 2 + - uid: 10149 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7665 + pos: -19.5,-13.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 10153 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7666 + pos: -18.5,9.5 + parent: 2 + - uid: 10154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,28.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7671 + rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 10155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7672 + pos: -19.5,2.5 + parent: 2 + - uid: 10156 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7673 + pos: -18.5,2.5 + parent: 2 + - uid: 10157 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7675 + pos: -16.5,2.5 + parent: 2 + - uid: 10158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,27.5 - parent: 89 - - uid: 7676 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - uid: 10159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 23812 + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 10160 components: - type: Transform - pos: -18.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23813 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 10161 components: - type: Transform - pos: -20.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23814 + pos: 0.5,-14.5 + parent: 2 + - uid: 10162 components: - type: Transform - pos: -20.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23815 + pos: 2.5,-16.5 + parent: 2 + - uid: 10163 components: - type: Transform - pos: -20.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23816 + pos: 2.5,-17.5 + parent: 2 + - uid: 10164 components: - type: Transform - pos: -18.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23817 + pos: 2.5,-18.5 + parent: 2 + - uid: 10165 components: - type: Transform - pos: -18.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23818 + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 10166 components: - type: Transform - pos: -18.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23819 + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 10167 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23820 + pos: 9.5,-10.5 + parent: 2 + - uid: 10168 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23821 + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 10169 components: - type: Transform - pos: -23.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23822 + pos: 24.5,23.5 + parent: 2 + - uid: 10170 components: - type: Transform - pos: -23.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23823 + pos: 24.5,22.5 + parent: 2 + - uid: 10171 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23824 + pos: 24.5,21.5 + parent: 2 + - uid: 10172 components: - type: Transform - pos: -25.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23825 + pos: 24.5,20.5 + parent: 2 + - uid: 10173 components: - type: Transform - pos: -25.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23826 + pos: 24.5,19.5 + parent: 2 + - uid: 10174 components: - type: Transform - pos: -25.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23827 + pos: 24.5,18.5 + parent: 2 + - uid: 10175 components: - type: Transform - pos: -23.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23828 + pos: 24.5,17.5 + parent: 2 + - uid: 10176 components: - type: Transform - pos: -5.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23829 + pos: 24.5,16.5 + parent: 2 + - uid: 10177 components: - type: Transform - pos: -5.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23830 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 10178 components: - type: Transform - pos: -5.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23831 + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - uid: 10179 components: - type: Transform - pos: -5.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23832 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 10180 components: - type: Transform - pos: -3.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23833 + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 10181 components: - type: Transform - pos: -3.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23834 + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - uid: 10182 components: - type: Transform - pos: -3.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23835 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 10183 components: - type: Transform - pos: -3.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23836 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - uid: 10184 components: - type: Transform - pos: -0.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23837 + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 10185 components: - type: Transform - pos: -0.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23838 + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 10186 components: - type: Transform - pos: -0.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23839 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 10187 components: - type: Transform - pos: -0.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23840 + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 2 + - uid: 10188 components: - type: Transform - pos: 1.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23841 + rot: 3.141592653589793 rad + pos: 14.5,26.5 + parent: 2 + - uid: 10189 components: - type: Transform - pos: 1.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23842 + rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 2 + - uid: 10190 components: - type: Transform - pos: 1.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23843 + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 2 + - uid: 10191 components: - type: Transform - pos: 1.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 -- proto: CowToolboxFilled - entities: - - uid: 25684 + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - uid: 10192 components: - type: Transform - pos: 10.596526,-19.552021 - parent: 89 -- proto: CrateArtifactContainer - entities: - - uid: 5215 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 + - uid: 10193 components: - type: Transform - pos: 2.5,-38.5 - parent: 89 - - uid: 21098 + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 2 + - uid: 10194 components: - type: Transform - pos: 1.5,-38.5 - parent: 89 -- proto: CrateEmptySpawner - entities: - - uid: 509 + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - uid: 10195 components: - type: Transform - pos: 49.5,3.5 - parent: 89 -- proto: CrateEngineeringCableBulk - entities: - - uid: 9042 + rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 2 + - uid: 10196 components: - type: Transform - pos: 16.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringJetpack - entities: - - uid: 5506 + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 10197 components: - type: Transform - pos: -60.5,-12.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringParticleAccelerator - entities: - - uid: 6940 + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 2 + - uid: 10198 components: - type: Transform - pos: -129.5,-9.5 - parent: 89 -- proto: CrateEngineeringSecure - entities: - - uid: 4892 + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 + - uid: 10199 components: - type: Transform - pos: -101.5,-10.5 - parent: 89 - - uid: 4902 + rot: 3.141592653589793 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 10200 components: - type: Transform - pos: -99.5,-10.5 - parent: 89 - - uid: 5392 + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 10201 components: - type: Transform - pos: -100.5,-10.5 - parent: 89 - - 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: - - 5458 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSolar - entities: - - uid: 8780 + rot: 1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 10202 components: - type: Transform - pos: -118.5,-5.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFreezer - entities: - - uid: 19254 + rot: 3.141592653589793 rad + pos: -1.5,-36.5 + parent: 2 + - uid: 10203 components: - type: Transform - pos: -11.5,17.5 - parent: 89 - - uid: 21120 + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 10204 components: - type: Transform - pos: 40.5,38.5 - parent: 89 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21134 - - 21133 - - 21132 - - 21131 - - 21130 - - 21129 - - 21128 - - 21127 - - 21126 - - 21125 - - 21124 - - 21123 - - 21122 - - 21121 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateGenericSteel - entities: - - uid: 5838 + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 10205 components: - type: Transform - pos: -50.5,-14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 20068 + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 2 + - uid: 10206 components: - type: Transform - pos: 10.5,16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 20069 - - 20070 - - 20071 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23844 + rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 10207 components: - type: Transform - pos: -19.5,-1.5 - parent: 22565 - - uid: 23845 + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 10208 components: - type: Transform - pos: -18.5,-1.5 - parent: 22565 - - uid: 23846 + rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 10209 components: - type: Transform - pos: -5.5,-1.5 - parent: 22565 - - uid: 23847 + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - uid: 10210 components: - type: Transform - pos: -4.5,-1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedicalScrubs - entities: - - uid: 19250 + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 10211 components: - type: Transform - pos: -9.5,19.5 - parent: 89 -- proto: CrateMedicalSupplies - entities: - - uid: 21380 + rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 10212 components: - type: Transform - pos: 37.5,22.5 - parent: 89 -- proto: CrateMedicalSurgery - entities: - - uid: 158 + rot: 3.141592653589793 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 10213 components: - type: Transform - pos: -22.5,-23.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 18653 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 10214 components: - type: Transform - pos: -12.5,17.5 - parent: 89 -- proto: CrateNPCHamlet - entities: - - uid: 17328 + rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 2 + - uid: 10215 components: - type: Transform - pos: 57.5,2.5 - parent: 89 -- proto: CratePrivateSecure - entities: - - uid: 17122 + rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 10216 components: - type: Transform - pos: -31.5,50.5 - parent: 89 - - uid: 17123 + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 10217 components: - type: Transform - pos: -31.5,49.5 - parent: 89 - - uid: 17129 + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 10218 components: - type: Transform - pos: -31.5,48.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10609 - - 10172 - - 10116 - - 9190 - - 7113 - - 6953 - - 5474 - - 4049 - - 11593 - - 11594 - - 11595 - - 11596 - - 11597 - - 11598 - - 11599 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateServiceBooks - entities: - - uid: 5505 + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 10219 components: - type: Transform - pos: -61.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceBureaucracy - entities: - - uid: 19845 + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 10220 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 23848 + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 10221 components: - type: Transform - pos: -25.5,8.5 - parent: 22565 -- proto: CrateServicePersonnel - entities: - - uid: 4005 + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 10222 components: - type: Transform - pos: 45.5,9.5 - parent: 89 -- proto: CrateServiceReplacementLights - entities: - - uid: 5507 + pos: 14.5,12.5 + parent: 2 + - uid: 10223 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateStoneGrave - entities: - - uid: 9776 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 10224 components: - type: Transform - pos: 8.5,-0.5 - parent: 89 -- proto: CrateTrashCartFilled - entities: - - uid: 3039 + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 10225 components: - type: Transform - pos: -4.5,39.5 - parent: 89 - - uid: 3280 + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 10226 components: - type: Transform - pos: -89.5,4.5 - parent: 89 - - uid: 10497 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 10227 components: - type: Transform - pos: -71.5,-3.5 - parent: 89 - - uid: 18310 + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 10228 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 20780 + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 10229 components: - type: Transform - pos: -100.5,27.5 - parent: 89 - - uid: 20867 + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 10230 components: - type: Transform - pos: -33.5,7.5 - parent: 89 -- proto: CrateTrashCartJani - entities: - - uid: 17895 + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 2 + - uid: 10231 components: - type: Transform - pos: -39.5,5.5 - parent: 89 - - uid: 20858 + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 10232 components: - type: Transform - pos: -41.5,5.5 - parent: 89 -- proto: CrateVendingMachineRestockMedicalFilled - entities: - - uid: 12653 + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + - uid: 10233 components: - type: Transform - pos: 37.5,23.5 - parent: 89 -- proto: CrayonBox - entities: - - uid: 7471 + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - uid: 10234 components: - type: Transform - pos: -35.41706,-9.445221 - parent: 89 - - uid: 11387 + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 10235 components: - type: Transform - pos: 29.442505,31.825993 - parent: 89 -- proto: Crematorium - entities: - - uid: 5378 + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 10236 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 3363 + pos: -7.5,-16.5 + parent: 2 + - uid: 10237 components: - type: Transform - pos: 55.5,6.5 - parent: 89 -- proto: CrowbarRed - entities: - - uid: 14948 + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 10238 components: - type: Transform - pos: -12.082157,-30.87991 - parent: 89 - - uid: 15292 + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 10239 components: - type: Transform - pos: -100.53644,24.543425 - parent: 89 - - uid: 16947 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 10240 components: - type: Transform - pos: -2.604181,-41.401688 - parent: 89 - - uid: 22650 + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 10241 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22651 + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 10242 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CryogenicSleepUnit - entities: - - uid: 10179 + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 2 + - uid: 10243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 89 - - uid: 14538 + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 2 + - uid: 10244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 89 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 14532 + pos: -1.5,12.5 + parent: 2 + - uid: 10245 components: - type: Transform - pos: -25.5,18.5 - parent: 89 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 14536 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 10246 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,18.5 - parent: 89 -- proto: CryoPod - entities: - - uid: 14071 - components: - - type: Transform - pos: 10.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16297 - components: - - type: Transform - pos: 7.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 17604 + pos: 52.5,0.5 + parent: 2 + - uid: 10247 components: - type: Transform - pos: 8.4537525,20.799503 - parent: 89 - - uid: 17605 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 10248 components: - type: Transform - pos: 8.6412525,20.643253 - parent: 89 -- proto: CultAltarSpawner - entities: - - uid: 14567 + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 2 + - uid: 10249 components: - type: Transform - pos: -22.5,17.5 - parent: 89 -- proto: Cutlass - entities: - - uid: 11044 + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 2 + - uid: 10250 components: - type: Transform - pos: -24.492065,53.460243 - parent: 89 -- proto: CyberPen - entities: - - uid: 21856 + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 2 + - uid: 10251 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.20179,-32.421978 - parent: 89 -- proto: d6Dice - entities: - - uid: 7944 + pos: -6.5,8.5 + parent: 2 + - uid: 10252 components: - type: Transform - pos: -7.3807964,41.28582 - parent: 89 - - uid: 7945 + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - uid: 10253 components: - type: Transform - pos: -6.9901714,40.75457 - parent: 89 - - uid: 14632 + pos: 27.5,-4.5 + parent: 2 + - uid: 10254 components: - type: Transform - pos: -98.24687,17.61973 - parent: 89 - - uid: 14633 + pos: 27.5,-5.5 + parent: 2 + - uid: 10255 components: - type: Transform - pos: -97.62187,17.55723 - parent: 89 -- proto: DefaultStationBeaconBridge - entities: - - uid: 9519 + pos: 27.5,-6.5 + parent: 2 + - uid: 10256 components: - type: Transform - pos: 38.5,4.5 - parent: 89 - - type: NavMapBeacon - text: Мостик - правительственный сектор -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 729 + pos: 27.5,-7.5 + parent: 2 + - uid: 10257 components: - type: Transform - pos: 43.5,7.5 - parent: 89 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4332 + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 + - uid: 10258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,39.5 - parent: 89 - - uid: 10778 + pos: 9.5,2.5 + parent: 2 + - uid: 10259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,18.5 - parent: 89 - - uid: 13206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 89 -- proto: DefibrillatorEmpty - entities: - - uid: 16904 + pos: -42.5,-0.5 + parent: 2 + - uid: 10260 components: - type: Transform - pos: 4.5889907,-0.46617818 - parent: 89 -- proto: DeployableBarrier - entities: - - uid: 1127 + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - uid: 10261 components: - type: Transform - pos: 43.5,-2.5 - parent: 89 - - uid: 1128 + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 10262 components: - type: Transform - pos: 41.5,-2.5 - parent: 89 - - uid: 1597 + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 10263 components: - type: Transform - pos: 42.5,-2.5 - parent: 89 - - uid: 9867 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 10264 components: - type: Transform - pos: -52.5,37.5 - parent: 89 - - uid: 9868 + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 10265 components: - type: Transform - pos: -51.5,37.5 - parent: 89 - - uid: 9869 + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 10266 components: - type: Transform - pos: -51.5,34.5 - parent: 89 - - uid: 9870 + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 10267 components: - type: Transform - pos: -51.5,35.5 - parent: 89 - - uid: 9871 + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 10268 components: - type: Transform - pos: -51.5,36.5 - parent: 89 -- proto: DeskBell - entities: - - uid: 864 + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 10269 components: - type: Transform - pos: 2.737472,15.790997 - parent: 89 - - uid: 1243 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 10270 components: - type: Transform - pos: 2.706222,21.509747 - parent: 89 - - uid: 7148 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 10271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.533264,-15.511856 - parent: 89 - - uid: 7150 + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 10272 components: - type: Transform - pos: 6.4949274,-11.439506 - parent: 89 - - uid: 7151 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 10273 components: - type: Transform - pos: -10.467365,-2.4647331 - parent: 89 - - uid: 7152 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 10274 components: - type: Transform - pos: -16.520947,-3.4491081 - parent: 89 - - uid: 7153 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 10275 components: - type: Transform - pos: -4.561835,7.6157904 - parent: 89 - - uid: 7154 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 10276 components: - type: Transform - pos: 41.432976,9.61126 - parent: 89 - - uid: 7162 + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 10277 components: - type: Transform - pos: -22.443995,-1.5451901 - parent: 89 - - uid: 12672 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - uid: 10278 components: - type: Transform - pos: 2.721847,17.509747 - parent: 89 - - uid: 14976 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 10279 components: - type: Transform - pos: 2.706222,19.790997 - parent: 89 -- proto: DiseaseDiagnoser - entities: - - uid: 15406 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 10280 components: - type: Transform - pos: 8.5,29.5 - parent: 89 -- proto: DisposalBend - entities: - - uid: 1188 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 10281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 89 - - uid: 7700 + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 10282 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,25.5 - parent: 89 - - uid: 9329 + pos: -10.5,2.5 + parent: 2 + - uid: 10283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 89 - - uid: 9506 + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 10284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 89 - - uid: 11088 + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 10285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 89 - - uid: 15275 + pos: 33.5,-1.5 + parent: 2 + - uid: 10286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 89 - - uid: 15570 + pos: 34.5,-1.5 + parent: 2 + - uid: 10287 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 15805 + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 10288 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,8.5 - parent: 89 - - uid: 16521 + pos: 29.5,-8.5 + parent: 2 + - uid: 10289 components: - type: Transform - pos: -4.5,15.5 - parent: 89 - - uid: 16535 + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 10290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 89 - - uid: 16903 + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - uid: 10291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 89 - - uid: 16924 + pos: 32.5,-8.5 + parent: 2 + - uid: 10292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,11.5 - parent: 89 - - uid: 16925 + pos: 33.5,-8.5 + parent: 2 + - uid: 10293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,11.5 - parent: 89 - - uid: 16927 + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 10294 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-20.5 - parent: 89 - - uid: 18337 + pos: 35.5,-8.5 + parent: 2 + - uid: 10295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,7.5 - parent: 89 - - uid: 18452 + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 + - uid: 10296 components: - type: Transform - pos: -78.5,9.5 - parent: 89 - - uid: 18458 + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 10297 components: - type: Transform - pos: -88.5,10.5 - parent: 89 - - uid: 18459 + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 10298 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,8.5 - parent: 89 - - uid: 18463 + pos: 36.5,-5.5 + parent: 2 + - uid: 10299 components: - type: Transform - pos: -125.5,15.5 - parent: 89 - - uid: 18470 + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 10300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,12.5 - parent: 89 - - uid: 18474 + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 2 + - uid: 10301 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,7.5 - parent: 89 - - uid: 18489 + pos: -8.5,-17.5 + parent: 2 + - uid: 10302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,9.5 - parent: 89 - - uid: 18500 + pos: 51.5,8.5 + parent: 2 + - uid: 10303 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 18522 + pos: 51.5,9.5 + parent: 2 + - uid: 10304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-17.5 - parent: 89 - - uid: 18528 + pos: 51.5,10.5 + parent: 2 + - uid: 10305 components: - type: Transform - pos: -91.5,13.5 - parent: 89 - - uid: 18540 + pos: 61.5,3.5 + parent: 2 + - uid: 10306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,8.5 - parent: 89 - - uid: 18541 + pos: 61.5,2.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 10308 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,9.5 - parent: 89 - - uid: 18542 + pos: 53.5,0.5 + parent: 2 + - uid: 10309 components: - type: Transform - pos: 40.5,2.5 - parent: 89 - - uid: 18543 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 89 - - uid: 18549 + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 10313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-15.5 - parent: 89 - - uid: 18550 + rot: 1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 + - uid: 10314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,16.5 - parent: 89 - - uid: 18578 + pos: 59.5,0.5 + parent: 2 + - uid: 10315 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 89 - - uid: 18595 + pos: 60.5,0.5 + parent: 2 + - uid: 10316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-3.5 - parent: 89 - - uid: 18596 + pos: 15.5,-8.5 + parent: 2 + - uid: 10317 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 18610 + pos: 2.5,-1.5 + parent: 2 + - uid: 10318 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,-10.5 - parent: 89 - - uid: 18611 + pos: 3.5,-3.5 + parent: 2 + - uid: 10319 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-10.5 - parent: 89 - - uid: 18612 + pos: 3.5,-4.5 + parent: 2 + - uid: 10320 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 18651 + rot: 3.141592653589793 rad + pos: -64.5,-15.5 + parent: 2 + - uid: 10321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 89 - - uid: 18685 + rot: 3.141592653589793 rad + pos: -64.5,-16.5 + parent: 2 + - uid: 10322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,4.5 - parent: 89 - - uid: 18686 + pos: -118.5,-11.5 + parent: 2 + - uid: 25769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,7.5 - parent: 89 - - uid: 18689 + pos: -32.5,13.5 + parent: 24450 + - uid: 25770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-0.5 - parent: 89 - - uid: 18690 + pos: -37.5,13.5 + parent: 24450 + - uid: 25771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-0.5 - parent: 89 - - uid: 18692 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 25772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 89 - - uid: 18706 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 25773 components: - type: Transform - pos: 12.5,-5.5 - parent: 89 - - uid: 18743 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 24450 + - uid: 25774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-18.5 - parent: 89 - - uid: 18778 + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 25775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 89 - - uid: 18779 + pos: -36.5,13.5 + parent: 24450 + - uid: 25776 components: - type: Transform - pos: 28.5,-2.5 - parent: 89 - - uid: 18784 + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 24450 + - uid: 25777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,14.5 - parent: 89 - - uid: 18785 + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 24450 + - uid: 25778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,14.5 - parent: 89 - - uid: 18786 + pos: -15.5,1.5 + parent: 24450 + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,4.5 - parent: 89 - - uid: 18792 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 24450 + - uid: 25780 components: - type: Transform - pos: -65.5,9.5 - parent: 89 - - uid: 18799 + pos: -13.5,-1.5 + parent: 24450 + - uid: 25781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 89 - - uid: 18813 + pos: -13.5,-0.5 + parent: 24450 + - uid: 25782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,13.5 - parent: 89 - - uid: 18820 + pos: -13.5,0.5 + parent: 24450 + - uid: 25783 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 89 - - uid: 18822 + pos: -8.5,1.5 + parent: 24450 + - uid: 25784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,8.5 - parent: 89 - - uid: 18824 + pos: -7.5,2.5 + parent: 24450 + - uid: 25785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 89 - - uid: 18866 + pos: -7.5,4.5 + parent: 24450 + - uid: 25786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,17.5 - parent: 89 - - uid: 18875 + pos: -7.5,5.5 + parent: 24450 + - uid: 25787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,24.5 - parent: 89 - - uid: 18889 + pos: -7.5,6.5 + parent: 24450 + - uid: 25788 components: - type: Transform - pos: -57.5,24.5 - parent: 89 - - uid: 18890 + pos: -7.5,7.5 + parent: 24450 + - uid: 25789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-3.5 - parent: 89 - - uid: 18901 + pos: -7.5,8.5 + parent: 24450 + - uid: 25790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-1.5 - parent: 89 - - uid: 18903 + pos: -7.5,9.5 + parent: 24450 + - uid: 25791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-1.5 - parent: 89 - - uid: 18905 + pos: -16.5,2.5 + parent: 24450 + - uid: 25792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 - parent: 89 - - uid: 18952 + pos: -16.5,3.5 + parent: 24450 + - uid: 25793 components: - type: Transform - pos: -41.5,-0.5 - parent: 89 - - uid: 18972 + pos: -16.5,4.5 + parent: 24450 + - uid: 25794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 89 - - uid: 18973 + pos: -16.5,5.5 + parent: 24450 + - uid: 25795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 89 - - uid: 19008 + pos: -16.5,6.5 + parent: 24450 + - uid: 25796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,1.5 - parent: 89 - - uid: 19011 + pos: -16.5,7.5 + parent: 24450 + - uid: 25797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,16.5 - parent: 89 - - uid: 19012 + pos: -16.5,8.5 + parent: 24450 + - uid: 25798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,16.5 - parent: 89 - - uid: 19013 + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 24450 + - uid: 25799 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 19014 + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 24450 + - uid: 25800 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,22.5 - parent: 89 - - uid: 19018 + pos: -9.5,3.5 + parent: 24450 + - uid: 25801 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 89 - - uid: 19030 + pos: -8.5,10.5 + parent: 24450 + - uid: 25802 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - uid: 19067 + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 24450 + - uid: 25803 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 19074 + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 24450 + - uid: 25804 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 89 - - uid: 19075 + pos: -11.5,10.5 + parent: 24450 + - uid: 25805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-7.5 - parent: 89 - - uid: 19081 + rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 24450 + - uid: 25806 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 19113 + rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 24450 + - uid: 25807 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 19114 + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 24450 + - uid: 25808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,20.5 - parent: 89 - - uid: 19118 + rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 24450 + - uid: 25809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,2.5 - parent: 89 - - uid: 19124 + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 24450 + - uid: 25810 components: - type: Transform - pos: 11.5,-3.5 - parent: 89 - - uid: 19139 + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 24450 + - uid: 25811 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 - - uid: 19156 + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 24450 + - uid: 25812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-12.5 - parent: 89 - - uid: 19175 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 24450 + - uid: 25813 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 89 - - uid: 19193 + pos: -21.5,9.5 + parent: 24450 + - uid: 25814 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 19194 + rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 24450 + - uid: 25815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-13.5 - parent: 89 - - uid: 19195 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 24450 + - uid: 25816 components: - type: Transform - pos: -20.5,-12.5 - parent: 89 - - uid: 19196 + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 24450 + - uid: 25817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 89 - - uid: 19197 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 24450 + - uid: 25818 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 89 - - uid: 19201 + pos: -26.5,9.5 + parent: 24450 + - uid: 25819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 89 - - uid: 19206 + pos: -27.5,9.5 + parent: 24450 + - uid: 25820 components: - type: Transform - pos: -54.5,13.5 - parent: 89 - - uid: 19207 + rot: 1.5707963267948966 rad + pos: -28.5,9.5 + parent: 24450 + - uid: 25821 components: - type: Transform - pos: 0.5,-13.5 - parent: 89 - - uid: 19212 + rot: 1.5707963267948966 rad + pos: -29.5,9.5 + parent: 24450 + - uid: 25822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 89 - - uid: 19213 + rot: 1.5707963267948966 rad + pos: -30.5,9.5 + parent: 24450 + - uid: 25823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 89 - - uid: 19214 + rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 24450 + - uid: 25824 components: - type: Transform - pos: 2.5,-15.5 - parent: 89 - - uid: 19272 + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 24450 + - uid: 25825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 89 - - uid: 19273 + pos: -31.5,12.5 + parent: 24450 + - uid: 25826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 89 - - uid: 19286 + rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 24450 + - uid: 25827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 89 - - uid: 19287 + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 24450 + - uid: 25828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 89 - - uid: 19289 + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 24450 + - uid: 25829 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,14.5 - parent: 89 - - uid: 19300 + pos: -31.5,5.5 + parent: 24450 + - uid: 25830 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 89 - - uid: 19303 + pos: -31.5,6.5 + parent: 24450 + - uid: 25831 components: - type: Transform - pos: -8.5,-14.5 - parent: 89 - - uid: 19329 + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 24450 + - uid: 25832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 89 - - uid: 19350 + pos: 7.5,3.5 + parent: 24450 + - uid: 25833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 89 - - uid: 19351 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 24450 + - uid: 25834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 89 - - uid: 19367 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 24450 + - uid: 25835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 89 - - uid: 19368 + pos: 4.5,3.5 + parent: 24450 + - uid: 25836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 89 - - uid: 19385 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 24450 + - uid: 25837 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - uid: 19400 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 24450 + - uid: 25838 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 89 - - uid: 19412 + pos: 1.5,3.5 + parent: 24450 + - uid: 25839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 89 - - uid: 19416 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 24450 + - uid: 25840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 89 - - uid: 19527 + pos: -0.5,3.5 + parent: 24450 + - uid: 25841 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 89 - - uid: 23849 + pos: -1.5,3.5 + parent: 24450 + - uid: 25842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-0.5 - parent: 22565 - - uid: 23850 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 24450 + - uid: 25843 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 22565 - - uid: 23851 + pos: -3.5,3.5 + parent: 24450 + - uid: 25844 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 - - uid: 23852 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 24450 + - uid: 25845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 22565 - - uid: 23853 + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 24450 + - uid: 25846 components: - type: Transform - pos: -7.5,10.5 - parent: 22565 - - uid: 23854 + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 24450 + - uid: 27595 components: - type: Transform - pos: -16.5,9.5 - parent: 22565 - - uid: 23855 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 22565 - - uid: 23856 + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27597 components: - type: Transform - pos: -31.5,13.5 - parent: 22565 - - uid: 23857 + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 27260 + - uid: 27598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 22565 -- proto: DisposalJunction - entities: - - uid: 7702 + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 27260 + - uid: 27599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,25.5 - parent: 89 - - uid: 8929 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 27260 + - uid: 27600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 89 - - uid: 12663 + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 27260 + - uid: 27601 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 18435 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 27260 + - uid: 27602 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 89 - - uid: 18545 + pos: 0.5,-7.5 + parent: 27260 + - uid: 27603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 89 - - uid: 18553 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 27260 + - uid: 27604 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-13.5 - parent: 89 - - uid: 18577 + pos: 0.5,-5.5 + parent: 27260 +- proto: DisposalRouterFlipped + entities: + - uid: 10323 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 89 - - uid: 18644 + pos: -0.5,2.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 10324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,-1.5 - parent: 89 - - uid: 18656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 89 - - uid: 18741 + pos: -119.5,-12.5 + parent: 2 + - uid: 10325 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 89 - - uid: 18791 + pos: -106.5,-14.5 + parent: 2 + - uid: 10326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,9.5 - parent: 89 - - uid: 18823 + pos: -125.5,14.5 + parent: 2 + - uid: 10327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,8.5 - parent: 89 - - uid: 18861 + rot: 3.141592653589793 rad + pos: -64.5,-17.5 + parent: 2 + - uid: 10328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 89 - - uid: 18888 + pos: -58.5,-5.5 + parent: 2 + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-3.5 - parent: 89 - - uid: 18893 + pos: 52.5,13.5 + parent: 2 + - uid: 10330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,17.5 - parent: 89 - - uid: 18908 + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 10331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 89 - - uid: 19009 + pos: 45.5,9.5 + parent: 2 + - uid: 10332 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,13.5 - parent: 89 - - uid: 19068 + pos: -17.5,-6.5 + parent: 2 + - uid: 10333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,17.5 - parent: 89 - - uid: 19111 + pos: -33.5,-7.5 + parent: 2 + - uid: 10334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,9.5 - parent: 89 - - uid: 19121 + pos: 14.5,9.5 + parent: 2 + - uid: 10335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,9.5 - parent: 89 - - uid: 19128 + pos: -97.5,27.5 + parent: 2 + - uid: 10336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 89 - - uid: 19186 + pos: -41.5,-8.5 + parent: 2 + - uid: 10337 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 89 - - uid: 19216 + pos: 25.5,27.5 + parent: 2 + - uid: 10338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 89 - - uid: 19223 + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,2.5 - parent: 89 - - uid: 19236 + rot: 3.141592653589793 rad + pos: -69.5,7.5 + parent: 2 + - uid: 10340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 - parent: 89 - - uid: 19301 + rot: 3.141592653589793 rad + pos: -77.5,7.5 + parent: 2 + - uid: 10341 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 19304 + rot: 1.5707963267948966 rad + pos: -89.5,10.5 + parent: 2 + - uid: 10342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 89 - - uid: 19307 + rot: -1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 10343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 89 - - uid: 19349 + pos: -119.5,-3.5 + parent: 2 + - uid: 10344 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 89 - - uid: 19403 + pos: 37.5,16.5 + parent: 2 + - uid: 10345 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 23858 + rot: 1.5707963267948966 rad + pos: -71.5,-15.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - uid: 10347 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 22565 - - uid: 23859 + pos: -111.5,-11.5 + parent: 2 + - uid: 10348 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 22565 - - uid: 23860 + pos: 28.5,-3.5 + parent: 2 + - uid: 10349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 22565 - - uid: 23861 + pos: -97.5,9.5 + parent: 2 + - uid: 10350 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,9.5 - parent: 22565 -- proto: DisposalJunctionFlipped - entities: - - uid: 17703 + pos: 9.5,-12.5 + parent: 2 + - uid: 10351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 89 - - uid: 18462 + pos: -15.5,-5.5 + parent: 2 + - uid: 10352 components: - type: Transform - pos: -88.5,9.5 - parent: 89 - - uid: 18464 + pos: -60.5,5.5 + parent: 2 + - uid: 10353 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,8.5 - parent: 89 - - uid: 18505 + pos: 28.5,15.5 + parent: 2 + - uid: 10354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,9.5 - parent: 89 - - uid: 18546 + pos: -104.5,15.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - uid: 10356 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 89 - - uid: 18584 + pos: 22.5,9.5 + parent: 2 + - uid: 10357 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,-10.5 - parent: 89 - - uid: 18589 + pos: -91.5,12.5 + parent: 2 + - uid: 10358 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-10.5 - parent: 89 - - uid: 18662 + pos: -65.5,23.5 + parent: 2 + - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-1.5 - parent: 89 - - uid: 18679 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 10360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,4.5 - parent: 89 - - uid: 18700 + pos: -105.5,-2.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,14.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - uid: 10363 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,7.5 - parent: 89 - - uid: 18714 + pos: -33.5,14.5 + parent: 2 + - uid: 10364 components: - type: Transform - pos: -0.5,-10.5 - parent: 89 - - uid: 18719 + rot: 1.5707963267948966 rad + pos: -63.5,20.5 + parent: 2 + - uid: 10365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,4.5 - parent: 89 - - uid: 18829 + rot: 1.5707963267948966 rad + pos: -86.5,32.5 + parent: 2 + - uid: 10366 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,4.5 - parent: 89 - - uid: 18910 + pos: -84.5,12.5 + parent: 2 + - uid: 10367 components: - type: Transform - pos: -0.5,-4.5 - parent: 89 - - uid: 18936 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 10368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,17.5 - parent: 89 - - uid: 18969 + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 10369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-8.5 - parent: 89 - - uid: 18985 + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 10370 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-1.5 - parent: 89 - - uid: 18986 + pos: 14.5,11.5 + parent: 2 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,4.5 - parent: 89 - - uid: 19007 + pos: -6.5,-15.5 + parent: 2 + - uid: 10372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,7.5 - parent: 89 - - uid: 19274 + rot: 1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 89 - - uid: 19288 + pos: 11.5,14.5 + parent: 2 + - uid: 10374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 89 - - uid: 19299 + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - uid: 10375 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 89 - - uid: 19328 + pos: -43.5,-1.5 + parent: 2 + - uid: 10376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 89 - - uid: 19528 + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 10377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,4.5 - parent: 89 - - uid: 23862 + pos: 62.5,4.5 + parent: 2 + - uid: 10378 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 22565 -- proto: DisposalPipe - entities: - - uid: 112 + pos: -24.5,-8.5 + parent: 2 + - uid: 10379 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 148 + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - uid: 10380 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 89 - - uid: 1648 + pos: -4.5,17.5 + parent: 2 + - uid: 10381 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 2521 + rot: -1.5707963267948966 rad + pos: -101.5,7.5 + parent: 2 + - uid: 10382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,2.5 - parent: 89 - - uid: 2700 + pos: 15.5,-7.5 + parent: 2 + - uid: 10383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 89 - - uid: 2723 + pos: 2.5,-0.5 + parent: 2 + - uid: 10384 components: - type: Transform - pos: 19.5,3.5 - parent: 89 - - uid: 2801 + pos: -22.5,5.5 + parent: 2 + - uid: 25847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 89 - - uid: 2830 + pos: -9.5,4.5 + parent: 24450 + - uid: 25848 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 89 - - uid: 2831 + pos: -15.5,-0.5 + parent: 24450 + - uid: 25849 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 89 - - uid: 2834 - components: - - type: Transform - pos: 19.5,6.5 - parent: 89 - - uid: 3459 + pos: -8.5,-0.5 + parent: 24450 + - uid: 25850 components: - type: Transform - pos: 19.5,4.5 - parent: 89 - - uid: 3488 + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 24450 + - uid: 25851 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 89 - - uid: 3791 + pos: -32.5,3.5 + parent: 24450 + - uid: 25852 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 - - uid: 3942 + pos: 8.5,3.5 + parent: 24450 + - uid: 27605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 89 - - uid: 5395 + pos: 0.5,-4.5 + parent: 27260 + - uid: 27606 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 6331 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 27260 +- proto: DisposalUnit + entities: + - uid: 10385 components: - type: Transform - pos: -5.5,16.5 - parent: 89 - - uid: 7374 + pos: -22.5,5.5 + parent: 2 + - uid: 10386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 89 - - uid: 7698 + pos: -119.5,-12.5 + parent: 2 + - uid: 10387 components: - type: Transform - pos: -97.5,26.5 - parent: 89 - - uid: 7701 + pos: -125.5,14.5 + parent: 2 + - uid: 10388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,25.5 - parent: 89 - - uid: 7703 + pos: -64.5,-17.5 + parent: 2 + - uid: 10389 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 7704 + pos: -58.5,-5.5 + parent: 2 + - uid: 10390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,25.5 - parent: 89 - - uid: 8922 + pos: 52.5,13.5 + parent: 2 + - uid: 10391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 89 - - uid: 8925 + pos: -15.5,-5.5 + parent: 2 + - uid: 10392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 89 - - uid: 11375 + pos: -9.5,-20.5 + parent: 2 + - uid: 10393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 89 - - uid: 11821 + pos: 62.5,4.5 + parent: 2 + - uid: 10394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 89 - - uid: 11826 + pos: 37.5,16.5 + parent: 2 + - uid: 10395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 89 - - uid: 12616 + pos: 45.5,9.5 + parent: 2 + - uid: 10396 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 12678 + pos: -7.5,5.5 + parent: 2 + - uid: 10397 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 14906 + pos: 22.5,0.5 + parent: 2 + - uid: 10398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 89 - - uid: 14953 + pos: 28.5,-3.5 + parent: 2 + - uid: 10399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 89 - - uid: 15361 + pos: 30.5,-1.5 + parent: 2 + - uid: 10400 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 15365 + pos: 10.5,-3.5 + parent: 2 + - uid: 10401 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 15446 + pos: 9.5,-12.5 + parent: 2 + - uid: 10402 components: - type: Transform - pos: 14.5,30.5 - parent: 89 - - uid: 15457 + pos: -41.5,-8.5 + parent: 2 + - uid: 10403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 89 - - uid: 15484 + pos: -50.5,-17.5 + parent: 2 + - uid: 10404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 89 - - uid: 15573 + pos: -20.5,8.5 + parent: 2 + - uid: 10405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 89 - - uid: 15688 + pos: -43.5,-1.5 + parent: 2 + - uid: 10406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 89 - - uid: 16527 + pos: -71.5,-15.5 + parent: 2 + - uid: 10407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 89 - - uid: 16951 + pos: -47.5,1.5 + parent: 2 + - uid: 10408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 89 - - uid: 17696 + pos: -33.5,-7.5 + parent: 2 + - uid: 10409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 89 - - uid: 17958 + pos: -84.5,12.5 + parent: 2 + - uid: 10410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 89 - - uid: 18309 + pos: -58.5,10.5 + parent: 2 + - uid: 10411 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 18438 + pos: -63.5,20.5 + parent: 2 + - uid: 10412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 - - uid: 18440 + pos: -4.5,17.5 + parent: 2 + - uid: 10413 components: - type: Transform - pos: -7.5,6.5 - parent: 89 - - uid: 18460 + pos: -65.5,23.5 + parent: 2 + - uid: 10414 components: - type: Transform - pos: 50.5,8.5 - parent: 89 - - uid: 18465 + pos: -89.5,10.5 + parent: 2 + - uid: 10415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 89 - - uid: 18466 + pos: 22.5,9.5 + parent: 2 + - uid: 10416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,9.5 - parent: 89 - - uid: 18467 + pos: 14.5,9.5 + parent: 2 + - uid: 10417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,4.5 - parent: 89 - - uid: 18468 + pos: -33.5,14.5 + parent: 2 + - uid: 10418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,9.5 - parent: 89 - - uid: 18469 + pos: 1.5,-4.5 + parent: 2 + - uid: 10419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,9.5 - parent: 89 - - uid: 18471 + pos: -4.5,-38.5 + parent: 2 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 89 - - uid: 18472 + pos: -69.5,-13.5 + parent: 2 + - uid: 10421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,9.5 - parent: 89 - - uid: 18473 + pos: -77.5,7.5 + parent: 2 + - uid: 10422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,9.5 - parent: 89 - - uid: 18475 + pos: -69.5,7.5 + parent: 2 + - uid: 10423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 89 - - uid: 18476 + pos: -54.5,12.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 10426 components: - type: Transform - pos: 51.5,6.5 - parent: 89 - - uid: 18477 + pos: 25.5,27.5 + parent: 2 + - uid: 10427 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 18478 + pos: 10.5,32.5 + parent: 2 + - uid: 10428 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 18479 + pos: -46.5,14.5 + parent: 2 + - uid: 10429 components: - type: Transform - pos: 51.5,3.5 - parent: 89 - - uid: 18480 + pos: -86.5,32.5 + parent: 2 + - uid: 10430 components: - type: Transform - pos: 51.5,2.5 - parent: 89 - - uid: 18481 + pos: -101.5,7.5 + parent: 2 + - uid: 10431 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 18482 + pos: -97.5,9.5 + parent: 2 + - uid: 10432 components: - type: Transform - pos: -125.5,14.5 - parent: 89 - - uid: 18483 + pos: -105.5,-2.5 + parent: 2 + - uid: 10433 components: - type: Transform - pos: -125.5,13.5 - parent: 89 - - uid: 18484 + pos: -111.5,-11.5 + parent: 2 + - uid: 10434 components: - type: Transform - pos: -125.5,12.5 - parent: 89 - - uid: 18485 + pos: -119.5,-3.5 + parent: 2 + - uid: 10435 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 18486 + pos: -104.5,15.5 + parent: 2 + - uid: 10436 components: - type: Transform - pos: -125.5,10.5 - parent: 89 - - uid: 18487 + pos: 11.5,14.5 + parent: 2 + - uid: 10437 components: - type: Transform - pos: -85.5,10.5 - parent: 89 - - uid: 18488 + pos: 28.5,15.5 + parent: 2 + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 89 - - uid: 18490 + pos: -91.5,12.5 + parent: 2 + - uid: 10439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 89 - - uid: 18491 + pos: 14.5,11.5 + parent: 2 + - uid: 10440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 89 - - uid: 18492 + pos: -6.5,-15.5 + parent: 2 + - uid: 10441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 - parent: 89 - - uid: 18493 + pos: -17.5,-6.5 + parent: 2 + - uid: 10442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 89 - - uid: 18494 + pos: -24.5,-8.5 + parent: 2 + - uid: 10443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 89 - - uid: 18495 + pos: 15.5,-7.5 + parent: 2 + - uid: 10444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 89 - - uid: 18496 + pos: 2.5,-0.5 + parent: 2 + - uid: 10445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,0.5 - parent: 89 - - uid: 18497 + pos: -106.5,-14.5 + parent: 2 + - uid: 25853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,0.5 - parent: 89 - - uid: 18498 + pos: -9.5,4.5 + parent: 24450 + - uid: 25854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 89 - - uid: 18499 + pos: -15.5,-0.5 + parent: 24450 + - uid: 25855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 - parent: 89 - - uid: 18501 + pos: -8.5,-0.5 + parent: 24450 + - uid: 25856 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 18502 + pos: -13.5,-3.5 + parent: 24450 + - uid: 25857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,9.5 - parent: 89 - - uid: 18503 + pos: -32.5,3.5 + parent: 24450 + - uid: 25858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,9.5 - parent: 89 - - uid: 18504 + pos: 8.5,3.5 + parent: 24450 + - uid: 27607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,9.5 - parent: 89 - - uid: 18506 + pos: 0.5,-4.5 + parent: 27260 +- proto: DisposalYJunction + entities: + - uid: 10446 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,8.5 - parent: 89 - - uid: 18507 + pos: -121.5,-3.5 + parent: 2 + - uid: 10447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 89 - - uid: 18508 + pos: -121.5,-1.5 + parent: 2 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,8.5 - parent: 89 - - uid: 18509 + rot: 1.5707963267948966 rad + pos: -108.5,4.5 + parent: 2 + - uid: 10449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,7.5 - parent: 89 - - uid: 18510 + pos: -11.5,7.5 + parent: 2 + - uid: 10450 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,6.5 - parent: 89 - - uid: 18511 + pos: 12.5,-9.5 + parent: 2 +- proto: DogBed + entities: + - uid: 10451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,5.5 - parent: 89 - - uid: 18512 + pos: 40.5,12.5 + parent: 2 + - uid: 10452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,4.5 - parent: 89 - - uid: 18513 + pos: 7.5,-9.5 + parent: 2 + - uid: 10453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,3.5 - parent: 89 - - uid: 18514 + pos: -74.5,-15.5 + parent: 2 + - uid: 10454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,2.5 - parent: 89 - - uid: 18515 + pos: -93.5,-9.5 + parent: 2 + - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,1.5 - parent: 89 - - uid: 18516 + pos: -33.5,27.5 + parent: 2 + - uid: 10456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,0.5 - parent: 89 - - uid: 18517 + pos: 48.5,12.5 + parent: 2 + - uid: 10457 components: + - type: MetaData + name: лежанка - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-0.5 - parent: 89 - - uid: 18518 + pos: 26.5,35.5 + parent: 2 + - uid: 10458 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 18519 + pos: 3.5,6.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 10459 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,-2.5 - parent: 89 - - uid: 18520 + pos: -118.5,-15.5 + parent: 2 + - uid: 10460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-3.5 - parent: 89 - - uid: 18524 + pos: -118.5,-15.5 + parent: 2 + - uid: 10461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 - parent: 89 - - uid: 18525 + pos: -80.5,-9.5 + parent: 2 + - uid: 10462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-15.5 - parent: 89 - - uid: 18526 + pos: -79.5,-9.5 + parent: 2 + - uid: 10463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,9.5 - parent: 89 - - uid: 18527 + pos: -115.5,1.5 + parent: 2 + - uid: 10464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,8.5 - parent: 89 - - uid: 18529 + pos: 22.5,-17.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 10465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,8.5 - parent: 89 - - uid: 18530 + pos: -104.67677,-7.256445 + parent: 2 + - uid: 10466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,8.5 - parent: 89 - - uid: 18531 + pos: -104.67677,-7.475195 + parent: 2 + - uid: 10467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,8.5 - parent: 89 - - uid: 18532 + pos: -104.36427,-7.475195 + parent: 2 + - uid: 10468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 89 - - uid: 18533 + pos: -104.36427,-7.256445 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 10469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 89 - - uid: 18534 + pos: -113.682556,-12.400606 + parent: 2 + - uid: 10470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 89 - - uid: 18535 + pos: -113.79263,-12.290531 + parent: 2 + - uid: 10471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-1.5 - parent: 89 - - uid: 18536 + pos: -93.798645,-5.6203394 + parent: 2 + - uid: 25859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 89 - - uid: 18537 + pos: -2.5354614,-17.255661 + parent: 24450 + - uid: 25860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 89 - - uid: 18538 + pos: -2.1604614,-17.349411 + parent: 24450 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 10472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 89 - - uid: 18551 + pos: -113.51744,-12.547374 + parent: 2 + - uid: 10473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-14.5 - parent: 89 - - uid: 18552 + pos: 52.441284,-8.61906 + parent: 2 + - uid: 10474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,16.5 - parent: 89 - - uid: 18554 + pos: -113.333984,-12.639103 + parent: 2 + - uid: 10475 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 18555 + pos: -93.111145,-6.1284304 + parent: 2 + - uid: 10476 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 18556 + pos: -93.392395,-6.0190554 + parent: 2 + - uid: 10477 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 18557 + pos: -93.704895,-5.9409304 + parent: 2 + - uid: 25861 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 18558 + pos: -4.6604614,-17.130661 + parent: 24450 + - uid: 25862 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 18559 + pos: -4.3323364,-17.302536 + parent: 24450 +- proto: Dresser + entities: + - uid: 10478 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 18560 + pos: 40.5,14.5 + parent: 2 + - uid: 10484 components: - type: Transform - pos: 35.5,8.5 - parent: 89 - - uid: 18561 + pos: -20.5,26.5 + parent: 2 + - uid: 10485 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 18562 + pos: -36.5,27.5 + parent: 2 + - uid: 10486 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 18563 + pos: 22.5,12.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 10488 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 18564 + pos: 46.5,15.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 23706 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 18567 + pos: -103.5,7.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 10489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-1.5 - parent: 89 - - uid: 18568 + pos: 25.5,39.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 8837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-1.5 - parent: 89 - - uid: 18569 + pos: 16.5,18.5 + parent: 2 + - uid: 10479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-1.5 - parent: 89 - - uid: 18570 + pos: -34.5,29.5 + parent: 2 + - uid: 10480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-1.5 - parent: 89 - - uid: 18571 + pos: -25.5,29.5 + parent: 2 + - uid: 10481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-1.5 - parent: 89 - - uid: 18572 + pos: -34.5,25.5 + parent: 2 + - uid: 10482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-1.5 - parent: 89 - - uid: 18573 + pos: -25.5,33.5 + parent: 2 + - uid: 10483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-1.5 - parent: 89 - - uid: 18574 + pos: -34.5,33.5 + parent: 2 + - uid: 10487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-1.5 - parent: 89 - - uid: 18575 + pos: -25.5,25.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 10490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 89 - - uid: 18576 + pos: 43.5,14.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 10491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-11.5 - parent: 89 - - uid: 18579 + pos: 34.5,-0.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 10492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 89 - - uid: 18580 + pos: -69.5,-17.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 17376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 89 - - uid: 18581 + pos: 4.5,-27.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 10493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 89 - - uid: 18582 + pos: 8.5,-8.5 + parent: 2 +- proto: DrinkAbsintheGlass + entities: + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 89 - - uid: 18585 + pos: -51.421,47.763172 + parent: 2 +- proto: DrinkBahamaMama + entities: + - uid: 10495 components: - type: Transform - pos: -64.5,-14.5 - parent: 89 - - uid: 18586 + pos: -51.61521,48.200672 + parent: 2 +- proto: DrinkBeepskySmashGlass + entities: + - uid: 10496 components: - type: Transform - pos: -64.5,-13.5 - parent: 89 - - uid: 18587 + pos: -51.686626,48.310047 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 10497 components: - type: Transform - pos: -64.5,-12.5 - parent: 89 - - uid: 18588 + pos: 33.648262,29.424652 + parent: 2 + - uid: 10498 components: - type: Transform - pos: -64.5,-11.5 - parent: 89 - - uid: 18590 + pos: 62.468678,-9.397333 + parent: 2 + - uid: 10499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-14.5 - parent: 89 - - uid: 18591 + pos: 45.40097,-37.246986 + parent: 2 + - uid: 10500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 89 - - uid: 18592 + pos: 45.166595,-37.246986 + parent: 2 + - uid: 10501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-12.5 - parent: 89 - - uid: 18593 + pos: 45.604095,-37.246986 + parent: 2 + - uid: 25864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 89 - - uid: 18594 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 89 - - uid: 18597 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkBeerCan + entities: + - uid: 10502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-3.5 - parent: 89 - - uid: 18598 + pos: 3.5264907,-1.3255532 + parent: 2 +- proto: DrinkBlueCuracaoGlass + entities: + - uid: 10503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-3.5 - parent: 89 - - uid: 18599 + pos: -123.16864,-13.288413 + parent: 2 +- proto: DrinkBottleCognac + entities: + - uid: 10504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 - - uid: 18600 + pos: -36.558395,29.720085 + parent: 2 +- proto: DrinkBottleGildlager + entities: + - uid: 10505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 89 - - uid: 18601 + pos: -53.445843,48.137283 + parent: 2 + - uid: 10506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 89 - - uid: 18602 + pos: -54.477093,48.137283 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 10507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 89 - - uid: 18603 + pos: -33.752167,-9.276451 + parent: 2 + - uid: 10508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-3.5 - parent: 89 - - uid: 18604 + pos: -33.51779,-9.276451 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 10509 components: - type: Transform - pos: -125.5,-4.5 - parent: 89 - - uid: 18605 + pos: -38.620895,29.751335 + parent: 2 + - uid: 10510 components: - type: Transform - pos: -125.5,-5.5 - parent: 89 - - uid: 18606 + pos: -38.07402,29.563835 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 10511 components: - type: Transform - pos: -125.5,-6.5 - parent: 89 - - uid: 18607 + pos: -9.703323,-16.228903 + parent: 2 + - uid: 10512 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 18608 + pos: -10.093948,-16.166403 + parent: 2 +- proto: DrinkCampariBottleFull + entities: + - uid: 10513 components: - type: Transform - pos: -125.5,-8.5 - parent: 89 - - uid: 18609 + pos: 48.505688,-1.9135504 + parent: 2 +- proto: DrinkChampagneBottleFull + entities: + - uid: 10514 components: - type: Transform - pos: -125.5,-9.5 - parent: 89 - - uid: 18613 + pos: 48.286938,-1.2260504 + parent: 2 +- proto: DrinkCoffee + entities: + - uid: 10515 components: - type: Transform - pos: -56.5,-9.5 - parent: 89 - - uid: 18614 + pos: 7.2665434,-12.514693 + parent: 2 + - uid: 10516 components: - type: Transform - pos: -56.5,-8.5 - parent: 89 - - uid: 18615 + pos: 33.49264,14.72666 + parent: 2 + - uid: 10517 components: - type: Transform - pos: -56.5,-7.5 - parent: 89 - - uid: 18616 + pos: 35.539516,13.617285 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 10518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-10.5 - parent: 89 - - uid: 18617 + pos: -27.49241,32.79545 + parent: 2 + - uid: 10520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-10.5 - parent: 89 - - uid: 18618 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-10.5 - parent: 89 - - uid: 18619 + pos: 32.26729,-0.23292685 + parent: 2 + - uid: 10529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-10.5 - parent: 89 - - uid: 18620 + pos: 32.579594,-0.024593592 + parent: 2 +- proto: DrinkColaBottleFull + entities: + - uid: 10530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-10.5 - parent: 89 - - uid: 18621 + pos: -23.521883,28.72285 + parent: 2 + - uid: 10531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-10.5 - parent: 89 - - uid: 18622 + pos: -10.639323,-36.20387 + parent: 2 + - uid: 10532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-10.5 - parent: 89 - - uid: 18623 + pos: -10.311198,-36.188244 + parent: 2 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 10533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-10.5 - parent: 89 - - uid: 18624 + pos: 4.3478365,-19.622332 + parent: 2 + - uid: 10534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-10.5 - parent: 89 - - uid: 18625 + pos: 4.4923315,-20.44095 + parent: 2 +- proto: DrinkFlask + entities: + - uid: 10535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-10.5 - parent: 89 - - uid: 18626 + pos: 47.55086,10.622266 + parent: 2 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 10536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-10.5 - parent: 89 - - uid: 18627 + pos: 48.349438,-1.6948004 + parent: 2 + - uid: 10537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-10.5 - parent: 89 - - uid: 18628 + pos: -98.478195,31.59029 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 10538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-10.5 - parent: 89 - - uid: 18629 + pos: 4.5901623,-21.062885 + parent: 2 + - uid: 10539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 89 - - uid: 18630 + pos: 4.3714123,-21.437885 + parent: 2 + - uid: 10540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 89 - - uid: 18631 + pos: -1.492651,45.647552 + parent: 2 + - uid: 10541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-6.5 - parent: 89 - - uid: 18632 + pos: -5.508276,45.585052 + parent: 2 + - uid: 10542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 89 - - uid: 18633 + pos: -23.553133,28.0041 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 10543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-6.5 - parent: 89 - - uid: 18634 + pos: 48.599438,-1.4604254 + parent: 2 +- proto: DrinkHosFlask + entities: + - uid: 10544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 89 - - uid: 18635 + pos: 33.00601,-0.4120643 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 10545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-6.5 - parent: 89 - - uid: 18636 + pos: 15.505661,11.6435375 + parent: 2 + - uid: 10546 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 18637 + pos: 34.508266,14.742285 + parent: 2 +- proto: DrinkJarWhat + entities: + - uid: 10547 components: + - type: MetaData + name: Кротовуха - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 18638 + pos: 4.5164137,-22.102266 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: DrGibb + Quantity: 10 + - data: null + ReagentId: JuiceTomato + Quantity: 10 + - data: null + ReagentId: GinFizz + Quantity: 10 + - data: null + ReagentId: Frezon + Quantity: 5 + - data: null + ReagentId: JuiceBerry + Quantity: 5 + - data: null + ReagentId: Milk + Quantity: 5 + - data: null + ReagentId: Antifreeze + Quantity: 5 +- proto: DrinkMug + entities: + - uid: 10548 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 18639 + pos: 16.404638,18.863092 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 10549 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 18640 + pos: 44.80428,5.9828796 + parent: 2 + - uid: 10550 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 18641 + pos: 25.620392,13.633 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: Coffee + Quantity: 10 + - data: null + ReagentId: IrishCoffee + Quantity: 10 + - uid: 10551 components: - type: Transform - pos: -111.5,-4.5 - parent: 89 - - uid: 18642 + pos: 2.27967,21.466866 + parent: 2 + - uid: 10552 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 18643 + pos: 2.264045,19.471586 + parent: 2 + - uid: 10553 components: - type: Transform - pos: -111.5,-2.5 - parent: 89 - - uid: 18646 + pos: 2.264045,17.443998 + parent: 2 + - uid: 10554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-1.5 - parent: 89 - - uid: 18647 + pos: 2.24842,15.443485 + parent: 2 + - uid: 10555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-1.5 - parent: 89 - - uid: 18648 + pos: 19.277308,18.697405 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 10556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 89 - - uid: 18652 + pos: -34.203346,28.793152 + parent: 2 + - uid: 10557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 89 - - uid: 18657 + pos: 25.80995,29.817919 + parent: 2 + - uid: 10558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 89 - - uid: 18658 + pos: 33.5593,-6.414768 + parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 10559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-9.5 - parent: 89 - - uid: 18659 + pos: 33.63515,-5.922344 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 10560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-8.5 - parent: 89 - - uid: 18660 + pos: 25.267576,36.804634 + parent: 2 + - uid: 10561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-7.5 - parent: 89 - - uid: 18664 + pos: 33.23693,-6.547344 + parent: 2 +- proto: DrinkMugRainbow + entities: + - uid: 10562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-5.5 - parent: 89 - - uid: 18665 + pos: 34.3472,-2.8853703 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 10563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-4.5 - parent: 89 - - uid: 18666 + pos: -96.62699,-6.528559 + parent: 2 + - uid: 10564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-3.5 - parent: 89 - - uid: 18667 + pos: -96.20512,-6.591059 + parent: 2 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 10565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-2.5 - parent: 89 - - uid: 18668 + pos: 48.708813,-1.7260504 + parent: 2 +- proto: DrinkRootBeerCan + entities: + - uid: 10566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-1.5 - parent: 89 - - uid: 18669 + pos: 4.47943,-18.812798 + parent: 2 + - type: CollisionWake + enabled: False + - type: Physics + sleepingAllowed: False +- proto: DrinkRumBottleFull + entities: + - uid: 10567 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 18670 + pos: 48.765263,10.867164 + parent: 2 +- proto: DrinkSbitenGlass + entities: + - uid: 10568 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 18671 + pos: -51.59029,48.700672 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 10569 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 18672 + pos: -30.46853,0.627223 + parent: 2 + - uid: 10570 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 18673 + pos: -1.5121098,44.69217 + parent: 2 + - uid: 10571 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 18674 + pos: -5.5589848,44.62967 + parent: 2 +- proto: DrinkShakeWhite + entities: + - uid: 10572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,4.5 - parent: 89 - - uid: 18675 + pos: -123.653015,-12.913413 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 10573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,4.5 - parent: 89 - - uid: 18676 + rot: 50.265482457436725 rad + pos: -77.30986,-24.162506 + parent: 2 + - uid: 10574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,4.5 - parent: 89 - - uid: 18677 + rot: 50.265482457436725 rad + pos: -77.18486,-24.600006 + parent: 2 + - uid: 10575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,4.5 - parent: 89 - - uid: 18678 + pos: -34.314835,31.617702 + parent: 2 + - uid: 10576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,4.5 - parent: 89 - - uid: 18680 + pos: -34.689835,31.617702 + parent: 2 + - uid: 10577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,4.5 - parent: 89 - - uid: 18681 + pos: 17.683292,5.579408 + parent: 2 + - uid: 10578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,4.5 - parent: 89 - - uid: 18682 + pos: 17.322052,5.7720246 + parent: 2 + - uid: 10579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,4.5 - parent: 89 - - uid: 18683 + pos: -11.289598,24.446281 + parent: 2 + - uid: 10580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,5.5 - parent: 89 - - uid: 18684 + pos: -11.711473,24.602531 + parent: 2 +- proto: DrinkSingulo + entities: + - uid: 10581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,6.5 - parent: 89 - - uid: 18688 + pos: -131.50919,23.442694 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 10582 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 18693 + pos: 18.787956,-14.249105 + parent: 2 + - uid: 10583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-0.5 - parent: 89 - - uid: 18694 + pos: 18.751822,-14.499105 + parent: 2 + - uid: 10584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-0.5 - parent: 89 - - uid: 18695 + pos: 21.783072,-14.249105 + parent: 2 + - uid: 10585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-0.5 - parent: 89 - - uid: 18696 + pos: 21.767447,-14.561605 + parent: 2 + - uid: 10586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-0.5 - parent: 89 - - uid: 18697 + pos: 24.652481,-14.284261 + parent: 2 + - uid: 10587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-0.5 - parent: 89 - - uid: 18698 + pos: 24.795654,-14.561605 + parent: 2 + - uid: 10588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-0.5 - parent: 89 - - uid: 18699 + pos: 27.704758,-14.230448 + parent: 2 + - uid: 10589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-0.5 - parent: 89 - - uid: 18701 + pos: 27.780474,-14.54598 + parent: 2 +- proto: DrinkSpaceLube + entities: + - uid: 10590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,0.5 - parent: 89 - - uid: 18702 + pos: -35.73411,-5.180784 + parent: 2 +- proto: DrinkToxinsSpecialGlass + entities: + - uid: 10591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,1.5 - parent: 89 - - uid: 18703 + pos: -51.418415,47.950672 + parent: 2 +- proto: DrinkVodkaGlass + entities: + - uid: 10592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,2.5 - parent: 89 - - uid: 18704 + pos: -48.540546,-7.4118657 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 25866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 - parent: 89 - - uid: 18708 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 89 - - uid: 18709 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 89 - - uid: 18712 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25873 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 18713 + pos: -14.740829,4.583781 + parent: 24450 + - uid: 25874 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 18715 + pos: -14.17833,4.568156 + parent: 24450 + - uid: 25875 components: - type: Transform - pos: -11.5,4.5 - parent: 89 - - uid: 18716 + rot: -1.5707963267948966 rad + pos: -14.39708,4.7843614 + parent: 24450 +- proto: DrinkWaterCup + entities: + - uid: 10593 components: - type: Transform - pos: 19.5,5.5 - parent: 89 - - uid: 18717 + pos: -45.484257,11.485884 + parent: 2 + - uid: 10594 components: - type: Transform - pos: -11.5,3.5 - parent: 89 - - uid: 18720 + pos: -45.78113,11.704634 + parent: 2 + - uid: 10595 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 18721 + pos: -27.287731,21.773132 + parent: 2 + - uid: 10596 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - uid: 18722 + pos: -27.662731,21.741882 + parent: 2 + - uid: 10597 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 18723 + pos: -27.443981,21.538757 + parent: 2 + - uid: 10598 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 18724 + pos: -45.24988,11.689009 + parent: 2 + - uid: 10599 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 18725 + pos: -41.77214,-12.345528 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: -41.694016,-12.486153 + parent: 2 + - uid: 10601 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 18726 + pos: -41.45964,-12.392403 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 10602 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 18727 + rot: 50.265482457436725 rad + pos: -77.731735,-24.303131 + parent: 2 + - uid: 10603 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 18728 + pos: -34.471085,32.352077 + parent: 2 + - uid: 10604 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 18729 + pos: -89.282906,29.581888 + parent: 2 + - uid: 10605 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 18730 + pos: 18.62251,5.627563 + parent: 2 + - uid: 10606 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 18731 + pos: 18.189026,5.6997943 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 10607 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 18732 + pos: -123.1743,21.519472 + parent: 2 + - uid: 10608 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 18733 + pos: -11.164598,25.024406 + parent: 2 +- proto: Dropper + entities: + - uid: 10609 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 18735 + pos: -5.395029,-7.168356 + parent: 2 + - uid: 10610 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 18736 + pos: -3.481449,6.2247124 + parent: 2 + - uid: 10611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 89 - - uid: 18737 + pos: 24.52668,12.685545 + parent: 2 + - uid: 10612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 89 - - uid: 18739 + pos: -5.363779,-7.293356 + parent: 2 + - uid: 10613 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 89 - - uid: 18740 + pos: -2.4912267,5.6659956 + parent: 2 +- proto: EggSpider + entities: + - uid: 10614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,17.5 - parent: 89 - - uid: 18745 + pos: 39.347435,21.359114 + parent: 2 + - uid: 10615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 89 - - uid: 18746 + pos: 49.625988,-9.519293 + parent: 2 + - uid: 10616 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 89 - - uid: 18747 + pos: 49.261406,-9.696376 + parent: 2 + - uid: 10617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 89 - - uid: 18748 + pos: 49.250988,-9.269293 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 10618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 89 - - uid: 18749 + pos: -35.432793,-7.4938426 + parent: 2 + - uid: 10619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 89 - - uid: 18750 + pos: -3.4961429,46.508736 + parent: 2 + - type: Instrument + program: 28 +- proto: EmergencyLight + entities: + - uid: 10620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 89 - - uid: 18751 + pos: -80.5,-11.5 + parent: 2 + - uid: 10621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 89 - - uid: 18752 + pos: -123.5,17.5 + parent: 2 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 89 - - uid: 18754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,9.5 - parent: 89 - - uid: 18755 + pos: -109.5,-3.5 + parent: 2 + - uid: 10623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 89 - - uid: 18757 + pos: 48.5,-2.5 + parent: 2 + - uid: 10624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 89 - - uid: 18758 + pos: 19.5,-4.5 + parent: 2 + - uid: 10625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 89 - - uid: 18759 + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - uid: 10626 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 89 - - uid: 18760 + pos: -12.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 89 - - uid: 18761 + rot: -1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 10628 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 89 - - uid: 18762 + pos: -95.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 89 - - uid: 18763 + pos: 30.5,31.5 + parent: 2 + - uid: 10630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 89 - - uid: 18764 + rot: 3.141592653589793 rad + pos: -62.5,43.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 89 - - uid: 18765 + pos: -62.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 89 - - uid: 18766 + rot: 1.5707963267948966 rad + pos: -62.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10633 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,4.5 - parent: 89 - - uid: 18767 + pos: -64.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,4.5 - parent: 89 - - uid: 18768 + pos: -64.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,4.5 - parent: 89 - - uid: 18769 + rot: 1.5707963267948966 rad + pos: -63.5,22.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10636 components: - type: Transform rot: 3.141592653589793 rad - pos: -108.5,5.5 - parent: 89 - - uid: 18770 + pos: -55.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,6.5 - parent: 89 - - uid: 18771 + rot: 1.5707963267948966 rad + pos: -56.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,7.5 - parent: 89 - - uid: 18772 + rot: -1.5707963267948966 rad + pos: -50.5,44.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,8.5 - parent: 89 - - uid: 18773 + rot: -1.5707963267948966 rad + pos: -50.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,9.5 - parent: 89 - - uid: 18774 + rot: -1.5707963267948966 rad + pos: -51.5,35.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,10.5 - parent: 89 - - uid: 18775 + rot: -1.5707963267948966 rad + pos: -55.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,11.5 - parent: 89 - - uid: 18776 + pos: -54.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,12.5 - parent: 89 - - uid: 18777 + pos: -65.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,13.5 - parent: 89 - - uid: 18780 + pos: -58.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,14.5 - parent: 89 - - uid: 18781 + pos: -49.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,14.5 - parent: 89 - - uid: 18782 + pos: -68.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,14.5 - parent: 89 - - uid: 18787 + pos: -69.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,5.5 - parent: 89 - - uid: 18788 + rot: -1.5707963267948966 rad + pos: -71.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10649 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,6.5 - parent: 89 - - uid: 18789 + rot: -1.5707963267948966 rad + pos: -80.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,7.5 - parent: 89 - - uid: 18790 + rot: -1.5707963267948966 rad + pos: -80.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,8.5 - parent: 89 - - uid: 18793 + rot: 1.5707963267948966 rad + pos: -85.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,9.5 - parent: 89 - - uid: 18794 + pos: -84.5,3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,9.5 - parent: 89 - - uid: 18795 + pos: -83.5,26.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,7.5 - parent: 89 - - uid: 18796 + rot: -1.5707963267948966 rad + pos: -83.5,41.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,7.5 - parent: 89 - - uid: 18797 + rot: 3.141592653589793 rad + pos: -88.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,7.5 - parent: 89 - - uid: 18800 + pos: -96.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,13.5 - parent: 89 - - uid: 18801 + rot: 1.5707963267948966 rad + pos: -95.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10659 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,13.5 - parent: 89 - - uid: 18802 + pos: -91.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,13.5 - parent: 89 - - uid: 18803 + rot: 3.141592653589793 rad + pos: -101.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,13.5 - parent: 89 - - uid: 18804 + rot: 1.5707963267948966 rad + pos: -105.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 89 - - uid: 18805 + rot: 1.5707963267948966 rad + pos: -99.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,13.5 - parent: 89 - - uid: 18806 + pos: -101.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,13.5 - parent: 89 - - uid: 18807 + rot: 3.141592653589793 rad + pos: -103.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10665 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 89 - - uid: 18808 + pos: -107.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,13.5 - parent: 89 - - uid: 18809 + pos: -107.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,13.5 - parent: 89 - - uid: 18810 + rot: 3.141592653589793 rad + pos: -112.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10668 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,13.5 - parent: 89 - - uid: 18811 + pos: -107.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,13.5 - parent: 89 - - uid: 18812 + pos: -104.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10670 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,13.5 - parent: 89 - - uid: 18814 - components: - - type: Transform - pos: -68.5,12.5 - parent: 89 - - uid: 18815 + pos: -115.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10671 components: - type: Transform - pos: -68.5,11.5 - parent: 89 - - uid: 18816 + rot: 1.5707963267948966 rad + pos: -109.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10672 components: - type: Transform - pos: -68.5,10.5 - parent: 89 - - uid: 18821 + rot: 3.141592653589793 rad + pos: -110.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10673 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,2.5 - parent: 89 - - uid: 18825 + pos: -104.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 89 - - uid: 18827 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 89 - - uid: 18830 + pos: -112.5,25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,10.5 - parent: 89 - - uid: 18831 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,11.5 - parent: 89 - - uid: 18832 + pos: -116.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10677 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,12.5 - parent: 89 - - uid: 18833 + pos: -116.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,13.5 - parent: 89 - - uid: 18834 + rot: -1.5707963267948966 rad + pos: -119.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,14.5 - parent: 89 - - uid: 18835 + pos: 9.5,-5.5 + parent: 2 + - uid: 10680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,15.5 - parent: 89 - - uid: 18836 + pos: 4.5,-4.5 + parent: 2 + - uid: 10681 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,16.5 - parent: 89 - - uid: 18837 + pos: -116.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,13.5 - parent: 89 - - uid: 18838 + pos: -129.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 89 - - uid: 18839 + pos: -126.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,17.5 - parent: 89 - - uid: 18840 + pos: -118.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,17.5 - parent: 89 - - uid: 18841 + rot: -1.5707963267948966 rad + pos: -120.5,0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 89 - - uid: 18842 + rot: -1.5707963267948966 rad + pos: -120.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,17.5 - parent: 89 - - uid: 18843 + pos: -117.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,17.5 - parent: 89 - - uid: 18844 + rot: -1.5707963267948966 rad + pos: -128.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,17.5 - parent: 89 - - uid: 18845 + pos: -125.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,17.5 - parent: 89 - - uid: 18846 + rot: -1.5707963267948966 rad + pos: -58.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10691 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,17.5 - parent: 89 - - uid: 18847 + pos: -71.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,12.5 - parent: 89 - - uid: 18848 + rot: 1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,11.5 - parent: 89 - - uid: 18849 + rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,10.5 - parent: 89 - - uid: 18850 + rot: -1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10696 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,9.5 - parent: 89 - - uid: 18851 + pos: -65.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10697 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,8.5 - parent: 89 - - uid: 18852 + pos: -71.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10698 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 89 - - uid: 18853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,6.5 - parent: 89 - - uid: 18854 + pos: -79.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,5.5 - parent: 89 - - uid: 18855 + pos: -76.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,4.5 - parent: 89 - - uid: 18856 + pos: -75.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,3.5 - parent: 89 - - uid: 18857 + pos: -62.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,2.5 - parent: 89 - - uid: 18858 + pos: -47.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,1.5 - parent: 89 - - uid: 18859 + rot: -1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10704 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,0.5 - parent: 89 - - uid: 18860 + pos: -49.5,-4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10705 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-0.5 - parent: 89 - - uid: 18862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 89 - - uid: 18863 + pos: -44.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 89 - - uid: 18864 + pos: -48.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 89 - - uid: 18874 + pos: -35.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,24.5 - parent: 89 - - uid: 18876 + pos: -33.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,24.5 - parent: 89 - - uid: 18877 + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,24.5 - parent: 89 - - uid: 18878 + rot: 3.141592653589793 rad + pos: -27.5,16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 89 - - uid: 18879 + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,24.5 - parent: 89 - - uid: 18880 + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,24.5 - parent: 89 - - uid: 18881 + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 89 - - uid: 18882 - components: - - type: Transform - pos: -57.5,22.5 - parent: 89 - - uid: 18883 + pos: -20.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10715 components: - type: Transform - pos: -57.5,21.5 - parent: 89 - - uid: 18884 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10716 components: - type: Transform - pos: -57.5,20.5 - parent: 89 - - uid: 18885 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10717 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 18886 + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10718 components: - type: Transform - pos: -57.5,18.5 - parent: 89 - - uid: 18891 + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 - - uid: 18892 + rot: 3.141592653589793 rad + pos: -30.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-3.5 - parent: 89 - - uid: 18895 + pos: -24.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,17.5 - parent: 89 - - uid: 18896 + pos: -7.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,17.5 - parent: 89 - - uid: 18897 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,17.5 - parent: 89 - - uid: 18898 + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,17.5 - parent: 89 - - uid: 18899 + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10725 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 89 - - uid: 18900 + pos: -14.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10726 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 89 - - uid: 18904 + pos: -17.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10727 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,14.5 - parent: 89 - - uid: 18906 - components: - - type: Transform - pos: -48.5,15.5 - parent: 89 - - uid: 18907 - components: - - type: Transform - pos: -48.5,16.5 - parent: 89 - - uid: 18909 + pos: -33.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10728 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 18911 + pos: -31.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 89 - - uid: 18912 + pos: -29.5,26.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 89 - - uid: 18913 + rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10731 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-1.5 - parent: 89 - - uid: 18914 + pos: -34.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,-1.5 - parent: 89 - - uid: 18915 + pos: -34.5,24.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-1.5 - parent: 89 - - uid: 18916 + rot: -1.5707963267948966 rad + pos: -25.5,24.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-1.5 - parent: 89 - - uid: 18917 + rot: -1.5707963267948966 rad + pos: -25.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10735 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 18918 + rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10736 components: - type: Transform - pos: -88.5,-0.5 - parent: 89 - - uid: 18919 + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10737 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 18920 + rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10738 components: - type: Transform - pos: -88.5,1.5 - parent: 89 - - uid: 18921 + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10739 components: - type: Transform - pos: -88.5,2.5 - parent: 89 - - uid: 18922 + rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10740 components: - type: Transform - pos: -88.5,3.5 - parent: 89 - - uid: 18923 + rot: 3.141592653589793 rad + pos: 42.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10741 components: - type: Transform - pos: -88.5,4.5 - parent: 89 - - uid: 18924 + rot: 1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10742 components: - type: Transform - pos: -88.5,5.5 - parent: 89 - - uid: 18925 + rot: 3.141592653589793 rad + pos: 48.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10743 components: - type: Transform - pos: -88.5,6.5 - parent: 89 - - uid: 18926 + rot: 1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10744 components: - type: Transform - pos: -88.5,7.5 - parent: 89 - - uid: 18927 + rot: 1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10745 components: - type: Transform - pos: -88.5,8.5 - parent: 89 - - uid: 18928 + pos: 48.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,17.5 - parent: 89 - - uid: 18929 + rot: 3.141592653589793 rad + pos: 63.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,17.5 - parent: 89 - - uid: 18930 + rot: 3.141592653589793 rad + pos: 63.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,17.5 - parent: 89 - - uid: 18931 + pos: 63.5,3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,17.5 - parent: 89 - - uid: 18932 + pos: 55.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,17.5 - parent: 89 - - uid: 18933 + rot: 1.5707963267948966 rad + pos: 52.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,17.5 - parent: 89 - - uid: 18934 + rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10752 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,17.5 - parent: 89 - - uid: 18935 + pos: 32.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,17.5 - parent: 89 - - uid: 18937 + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,17.5 - parent: 89 - - uid: 18938 + rot: 1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,17.5 - parent: 89 - - uid: 18939 + rot: 1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 89 - - uid: 18940 + rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,17.5 - parent: 89 - - uid: 18941 + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,17.5 - parent: 89 - - uid: 18942 + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,17.5 - parent: 89 - - uid: 18943 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,17.5 - parent: 89 - - uid: 18944 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,17.5 - parent: 89 - - uid: 18945 + pos: 8.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 89 - - uid: 18946 + pos: 13.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,17.5 - parent: 89 - - uid: 18947 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,17.5 - parent: 89 - - uid: 18948 + pos: 23.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,17.5 - parent: 89 - - uid: 18949 + pos: 29.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,17.5 - parent: 89 - - uid: 18950 + pos: 37.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,17.5 - parent: 89 - - uid: 18951 + pos: 34.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10768 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,17.5 - parent: 89 - - uid: 18953 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 89 - - uid: 18954 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 89 - - uid: 18955 + pos: 28.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10769 components: - type: Transform - pos: -0.5,-0.5 - parent: 89 - - uid: 18956 + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10770 components: - type: Transform - pos: -0.5,0.5 - parent: 89 - - uid: 18957 + pos: -7.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10771 components: - type: Transform - pos: -0.5,1.5 - parent: 89 - - uid: 18958 + rot: 1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 89 - - uid: 18959 + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 89 - - uid: 18960 + rot: 3.141592653589793 rad + pos: -32.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 89 - - uid: 18961 + pos: 0.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 89 - - uid: 18962 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 89 - - uid: 18963 + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 89 - - uid: 18964 + pos: -13.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10778 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 89 - - uid: 18965 + pos: -4.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 89 - - uid: 18966 + pos: -0.5,-28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10780 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 89 - - uid: 18967 + pos: -0.5,-20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10781 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 89 - - uid: 18968 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 89 - - uid: 18970 + pos: 1.5,-20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10782 components: - type: Transform - pos: 14.5,8.5 - parent: 89 - - uid: 18978 + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 89 - - uid: 18979 + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 89 - - uid: 18980 + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10785 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-5.5 - parent: 89 - - uid: 18981 + pos: -5.5,-36.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 89 - - uid: 18982 + pos: -2.5,-38.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-3.5 - parent: 89 - - uid: 18983 + rot: -1.5707963267948966 rad + pos: -55.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 89 - - uid: 18987 + pos: -49.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-0.5 - parent: 89 - - uid: 18988 + pos: -43.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,0.5 - parent: 89 - - uid: 18989 + rot: 1.5707963267948966 rad + pos: -105.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,1.5 - parent: 89 - - uid: 18990 + rot: -1.5707963267948966 rad + pos: -78.5,-17.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10792 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,2.5 - parent: 89 - - uid: 18991 + pos: 8.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10793 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 89 - - uid: 18992 + pos: 19.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 89 - - uid: 18993 + pos: 9.5,42.5 + parent: 2 + - uid: 10795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 89 - - uid: 18994 + pos: 18.5,31.5 + parent: 2 + - uid: 10796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 89 - - uid: 18995 + rot: 3.141592653589793 rad + pos: 9.5,32.5 + parent: 2 + - uid: 10797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 89 - - uid: 18996 + pos: 19.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 89 - - uid: 18997 + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 89 - - uid: 18998 + pos: -113.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 89 - - uid: 19000 + pos: -1.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 89 - - uid: 19001 + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 89 - - uid: 19002 + pos: 9.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 89 - - uid: 19003 + pos: 13.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 89 - - uid: 19004 + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10805 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 89 - - uid: 19005 + pos: 24.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,4.5 - parent: 89 - - uid: 19006 + pos: 13.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,4.5 - parent: 89 - - uid: 19010 + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10808 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,3.5 - parent: 89 - - uid: 19016 + pos: 32.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10809 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 19017 + pos: -28.5,37.5 + parent: 2 + - uid: 10810 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 19019 + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 10811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,22.5 - parent: 89 - - uid: 19020 + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,22.5 - parent: 89 - - uid: 19021 + pos: 63.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10813 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,22.5 - parent: 89 - - uid: 19022 + pos: 14.5,20.5 + parent: 2 + - uid: 10814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,22.5 - parent: 89 - - uid: 19023 + pos: -27.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,22.5 - parent: 89 - - uid: 19024 + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,22.5 - parent: 89 - - uid: 19025 + pos: 23.5,37.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,22.5 - parent: 89 - - uid: 19026 + rot: 1.5707963267948966 rad + pos: 23.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,22.5 - parent: 89 - - uid: 19027 + pos: -14.5,-0.5 + parent: 2 + - uid: 10819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,22.5 - parent: 89 - - uid: 19028 + pos: 45.5,9.5 + parent: 2 + - uid: 10820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,22.5 - parent: 89 - - uid: 19029 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 + parent: 2 + - uid: 10821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,22.5 - parent: 89 - - uid: 19031 + pos: 9.5,-12.5 + parent: 2 + - uid: 10822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,21.5 - parent: 89 - - uid: 19032 + pos: 17.5,-8.5 + parent: 2 + - uid: 10823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,20.5 - parent: 89 - - uid: 19033 + pos: 47.5,-5.5 + parent: 2 + - uid: 10824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,19.5 - parent: 89 - - uid: 19034 + pos: 46.5,-8.5 + parent: 2 + - uid: 10825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,18.5 - parent: 89 - - uid: 19035 + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 10826 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,17.5 - parent: 89 - - uid: 19036 + pos: 48.5,-16.5 + parent: 2 + - uid: 10827 components: - type: Transform - pos: -32.5,15.5 - parent: 89 - - uid: 19037 + pos: 47.5,-11.5 + parent: 2 + - uid: 10828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,16.5 - parent: 89 - - uid: 19038 + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 10829 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,16.5 - parent: 89 - - uid: 19039 + pos: 44.5,-21.5 + parent: 2 + - uid: 10830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,16.5 - parent: 89 - - uid: 19040 + pos: 42.5,-25.5 + parent: 2 + - uid: 10831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,16.5 - parent: 89 - - uid: 19041 + rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 10832 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,16.5 - parent: 89 - - uid: 19042 - components: - - type: Transform - pos: -32.5,16.5 - parent: 89 - - uid: 19043 - components: - - type: Transform - pos: -93.5,15.5 - parent: 89 - - uid: 19044 - components: - - type: Transform - pos: -93.5,14.5 - parent: 89 - - uid: 19045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,4.5 - parent: 89 - - uid: 19046 + pos: 55.5,-29.5 + parent: 2 + - uid: 10833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,4.5 - parent: 89 - - uid: 19047 + pos: 51.5,-24.5 + parent: 2 + - uid: 10834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 89 - - uid: 19048 + pos: 49.5,-18.5 + parent: 2 + - uid: 10835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,4.5 - parent: 89 - - uid: 19049 + pos: -3.5,-9.5 + parent: 2 + - uid: 10836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,4.5 - parent: 89 - - uid: 19050 + pos: -93.5,-12.5 + parent: 2 + - uid: 10837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 89 - - uid: 19051 + pos: -87.5,-4.5 + parent: 2 + - uid: 10838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 89 - - uid: 19052 + rot: 1.5707963267948966 rad + pos: -96.5,-7.5 + parent: 2 + - uid: 10839 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 89 - - uid: 19053 + pos: -90.5,-5.5 + parent: 2 + - uid: 10840 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 89 - - uid: 19054 + pos: -131.5,-4.5 + parent: 2 + - uid: 25876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 89 - - uid: 19055 + pos: -14.5,2.5 + parent: 24450 + - uid: 25877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 - parent: 89 - - uid: 19056 + pos: -26.5,6.5 + parent: 24450 + - uid: 25878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 89 - - uid: 19058 - components: - - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 19063 + pos: -0.5,24.5 + parent: 24450 + - uid: 25879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 89 - - uid: 19064 + pos: 5.5,6.5 + parent: 24450 + - uid: 25880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 89 - - uid: 19065 + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 24450 + - uid: 25881 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 19069 + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 24450 + - uid: 25882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 89 - - uid: 19071 + pos: -20.5,16.5 + parent: 24450 + - uid: 25883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-6.5 - parent: 89 - - uid: 19072 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 24450 + - uid: 25884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 89 - - uid: 19073 + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 24450 + - uid: 25885 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 89 - - uid: 19077 + pos: 2.5,-0.5 + parent: 24450 + - uid: 25886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 89 - - uid: 19078 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 24450 +- proto: EmergencyMedipen + entities: + - uid: 24349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 89 - - uid: 19079 + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 89 - - uid: 19083 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 89 - - uid: 19084 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24539 components: - type: Transform - pos: -0.5,-5.5 - parent: 89 - - uid: 19085 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyRollerBed + entities: + - uid: 10841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,32.5 - parent: 89 - - uid: 19086 + pos: 28.46604,20.857737 + parent: 2 + - uid: 10842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,31.5 - parent: 89 - - uid: 19087 + pos: 28.481665,20.342112 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 10843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,30.5 - parent: 89 - - uid: 19088 + pos: 16.47677,23.62731 + parent: 2 + - uid: 10844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,29.5 - parent: 89 - - uid: 19089 + pos: 2.6214988,11.504413 + parent: 2 +- proto: Emitter + entities: + - uid: 10845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 89 - - uid: 19090 + pos: -139.5,-0.5 + parent: 2 + - uid: 10846 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 89 - - uid: 19091 + pos: -147.5,-14.5 + parent: 2 + - uid: 10847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,26.5 - parent: 89 - - uid: 19092 + rot: 1.5707963267948966 rad + pos: -150.5,-3.5 + parent: 2 + - uid: 10848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,25.5 - parent: 89 - - uid: 19093 + pos: -120.5,-6.5 + parent: 2 + - uid: 10849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,24.5 - parent: 89 - - uid: 19094 + pos: -119.5,-5.5 + parent: 2 + - uid: 10850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,23.5 - parent: 89 - - uid: 19095 + pos: -119.5,-6.5 + parent: 2 + - uid: 10851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 89 - - uid: 19096 + pos: -120.5,-5.5 + parent: 2 + - uid: 10852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,21.5 - parent: 89 - - uid: 19097 + rot: -1.5707963267948966 rad + pos: -136.5,-11.5 + parent: 2 + - uid: 10853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,20.5 - parent: 89 - - uid: 19098 + rot: -1.5707963267948966 rad + pos: -136.5,-3.5 + parent: 2 +- proto: EmpGrenade + entities: + - uid: 27300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,20.5 - parent: 89 - - uid: 19099 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EncryptionKeyCargo + entities: + - uid: 10855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 89 - - uid: 19100 + parent: 10854 + - type: Physics + canCollide: False +- proto: EncryptionKeyCentCom + entities: + - uid: 10857 components: - type: Transform - pos: -81.5,19.5 - parent: 89 - - uid: 19101 + parent: 10856 + - type: Physics + canCollide: False + - uid: 24106 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 19102 + parent: 24105 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 10859 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 19103 + parent: 10858 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 10861 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 19104 + parent: 10860 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 10863 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 19105 + parent: 10862 + - type: Physics + canCollide: False +- proto: EncryptionKeyFreelance + entities: + - uid: 9188 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 19106 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9189 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 19107 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9190 components: - type: Transform - pos: -81.5,12.5 - parent: 89 - - uid: 19108 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9191 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 19109 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9192 components: - type: Transform - pos: -81.5,10.5 - parent: 89 - - uid: 19110 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 89 - - uid: 19115 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,4.5 - parent: 89 - - uid: 19119 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 89 - - uid: 19122 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,9.5 - parent: 89 - - uid: 19126 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9197 components: - type: Transform - pos: -85.5,11.5 - parent: 89 - - uid: 19127 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 89 - - uid: 19129 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 89 - - uid: 19130 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 89 - - uid: 19131 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9201 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 19132 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9202 components: - type: Transform - pos: -102.5,6.5 - parent: 89 - - uid: 19134 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 89 - - uid: 19135 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 89 - - uid: 19136 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 89 - - uid: 19140 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 89 - - uid: 19141 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 89 - - uid: 19142 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 89 - - uid: 19143 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 89 - - uid: 19144 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 89 - - uid: 19145 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 89 - - uid: 19146 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 89 - - uid: 19147 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 89 - - uid: 19148 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 89 - - uid: 19149 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 89 - - uid: 19150 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 89 - - uid: 19151 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 89 - - uid: 19152 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 89 - - uid: 19153 + parent: 10864 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 10867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 89 - - uid: 19154 + parent: 10866 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 10869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 89 - - uid: 19155 + parent: 10868 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 10871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 89 - - uid: 19157 + parent: 10870 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 10873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-11.5 - parent: 89 - - uid: 19158 + parent: 10872 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 10874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 - parent: 89 - - uid: 19159 + pos: 26.012112,13.75499 + parent: 2 + - uid: 10875 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 89 - - uid: 19160 + pos: 26.11628,13.629903 + parent: 2 + - uid: 10876 components: - type: Transform - pos: -0.5,-6.5 - parent: 89 - - uid: 19161 + pos: -10.723903,17.760052 + parent: 2 +- proto: ERTSpawnerEngineering + entities: + - uid: 27608 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 - - uid: 19162 + pos: 4.5,-4.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ERTSpawnerLeader + entities: + - uid: 27609 components: - type: Transform - pos: -0.5,-8.5 - parent: 89 - - uid: 19163 + pos: -5.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27284 +- proto: ERTSpawnerMedical + entities: + - uid: 27610 components: - type: Transform - pos: -0.5,-9.5 - parent: 89 - - uid: 19164 + pos: 4.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ERTSpawnerSrcurity + entities: + - uid: 27611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 89 - - uid: 19165 + pos: 6.5,-4.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27612 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 - - uid: 19166 + pos: 6.5,-5.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27613 components: - type: Transform - pos: -0.5,-12.5 - parent: 89 - - uid: 19167 + pos: 6.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ExGrenade + entities: + - uid: 1119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 89 - - uid: 19168 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 89 - - uid: 19169 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 89 - - uid: 19170 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExosuitFabricator + entities: + - uid: 10877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 89 - - uid: 19171 + pos: -22.5,-20.5 + parent: 2 + - uid: 25887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 89 - - uid: 19172 + pos: -27.5,4.5 + parent: 24450 + - uid: 25888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 89 - - uid: 19173 + pos: 3.5,4.5 + parent: 24450 +- proto: ExplosivePayload + entities: + - uid: 25889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 - - uid: 19174 + pos: 4.7115273,11.752999 + parent: 24450 + - uid: 25890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 89 - - uid: 19176 + pos: 4.3209023,11.674874 + parent: 24450 +- proto: ExplosivesSignMed + entities: + - uid: 10878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 89 - - uid: 19177 + pos: 36.5,-35.5 + parent: 2 + - uid: 10879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 89 - - uid: 19178 + pos: 57.5,-16.5 + parent: 2 + - uid: 10880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 89 - - uid: 19179 + pos: 59.5,-38.5 + parent: 2 + - uid: 10881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 89 - - uid: 19180 + pos: 50.5,-34.5 + parent: 2 + - uid: 10882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 89 - - uid: 19181 + pos: 38.5,-27.5 + parent: 2 + - uid: 10883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 89 - - uid: 19182 + pos: 62.5,-18.5 + parent: 2 + - uid: 10884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 89 - - uid: 19183 + pos: 59.5,-32.5 + parent: 2 + - uid: 10885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 89 - - uid: 19184 + rot: 1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 10886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 89 - - uid: 19185 + pos: -11.5,16.5 + parent: 2 + - uid: 10887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 89 - - uid: 19187 + pos: -84.5,5.5 + parent: 2 + - uid: 10888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 89 - - uid: 19188 + pos: 33.5,10.5 + parent: 2 + - uid: 10889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 89 - - uid: 19189 + pos: 33.5,5.5 + parent: 2 + - uid: 10890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 89 - - uid: 19190 + pos: 54.5,1.5 + parent: 2 + - uid: 10891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 89 - - uid: 19191 + pos: 54.5,7.5 + parent: 2 + - uid: 10892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 89 - - uid: 19199 + pos: 63.5,9.5 + parent: 2 + - uid: 10893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 89 - - uid: 19200 + pos: -42.5,1.5 + parent: 2 + - uid: 10894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,2.5 - parent: 89 - - uid: 19202 + pos: -61.5,2.5 + parent: 2 + - uid: 10895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 89 - - uid: 19203 + pos: -68.5,-14.5 + parent: 2 + - uid: 10896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 89 - - uid: 19204 + pos: -34.5,6.5 + parent: 2 + - uid: 10897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 89 - - uid: 19205 + pos: -76.5,6.5 + parent: 2 + - uid: 10898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 89 - - uid: 19208 + pos: -96.5,1.5 + parent: 2 + - uid: 10899 components: - type: Transform - pos: 0.5,-14.5 - parent: 89 - - uid: 19209 + pos: -97.5,-10.5 + parent: 2 + - uid: 10900 components: - type: Transform - pos: 2.5,-16.5 - parent: 89 - - uid: 19210 + pos: -7.5,4.5 + parent: 2 + - uid: 10901 components: - type: Transform - pos: 2.5,-17.5 - parent: 89 - - uid: 19211 + pos: 19.5,13.5 + parent: 2 + - uid: 10902 components: - type: Transform - pos: 2.5,-18.5 - parent: 89 - - uid: 19219 + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 10903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 89 - - uid: 19220 + pos: 12.5,19.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 10904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 89 - - uid: 19221 + pos: 33.5,-0.5 + parent: 2 + - type: FaxMachine + name: Кабинет ГСБ + - uid: 10905 components: - type: Transform - pos: 9.5,-10.5 - parent: 89 - - uid: 19224 + pos: -48.5,11.5 + parent: 2 + - type: FaxMachine + name: Библиотека + - uid: 10906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,2.5 - parent: 89 - - uid: 19225 + pos: -76.5,-5.5 + parent: 2 + - type: FaxMachine + name: Офис АВД + - uid: 10907 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 19226 + pos: 23.5,29.5 + parent: 2 + - type: FaxMachine + name: Псих. Диспансер + - uid: 10908 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 19227 + pos: 26.5,37.5 + parent: 2 + - type: FaxMachine + name: Офис ГВ + destinationAddress: Офис ГВ + - uid: 10909 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 19228 + pos: 37.5,-3.5 + parent: 2 + - type: FaxMachine + name: Офис ГСБ + destinationAddress: Офис ГСБ + - uid: 10910 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 19229 + pos: 7.5,-12.5 + parent: 2 + - type: FaxMachine + name: Офис Смотрителя + destinationAddress: Офис Смотрителя + - uid: 10911 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 19230 + pos: -71.5,-17.5 + parent: 2 + - type: FaxMachine + name: Офис КМ + destinationAddress: Офис КМ + - uid: 10912 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 19231 + pos: 1.5,-29.5 + parent: 2 + - type: FaxMachine + name: Офис НР + destinationAddress: Офис НР + - uid: 10913 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 19232 + pos: -104.5,7.5 + parent: 2 + - type: FaxMachine + name: Офис СИ + destinationAddress: Офис СИ + - uid: 10914 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 19237 + pos: -105.5,21.5 + parent: 2 + - type: FaxMachine + name: Телекоммуникации + destinationAddress: Телекоммуникации + - uid: 10915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 89 - - uid: 19238 + pos: -54.5,43.5 + parent: 2 + - type: FaxMachine + name: КПП СБ Отбытия + destinationAddress: КПП СБ Отбытия + - uid: 10916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 89 - - uid: 19239 + pos: 57.5,6.5 + parent: 2 + - type: FaxMachine + name: Мостик + destinationAddress: Мостик + - uid: 10917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 - - uid: 19240 + pos: 44.5,4.5 + parent: 2 + - type: FaxMachine + name: Офис ГП + destinationAddress: Офис ГП + - uid: 24107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 89 - - uid: 19241 + pos: 5.5,3.5 + parent: 23919 +- proto: FaxMachineCaptain + entities: + - uid: 10918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 89 - - uid: 19242 + pos: 48.5,10.5 + parent: 2 + - type: FaxMachine + name: Офис Капитана + destinationAddress: Офис Капитана +- proto: FaxMachineSyndie + entities: + - uid: 10919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 89 - - uid: 19243 + pos: -88.5,30.5 + parent: 2 +- proto: FenceMetalCorner + entities: + - uid: 10920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,15.5 - parent: 89 - - uid: 19244 + rot: 1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 10921 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,15.5 - parent: 89 - - uid: 19245 + pos: 56.5,-13.5 + parent: 2 + - uid: 10922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 89 - - uid: 19246 + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 10923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 89 - - uid: 19255 + pos: -92.5,26.5 + parent: 2 + - uid: 10924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 89 - - uid: 19256 + rot: 1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - uid: 10925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,26.5 - parent: 89 - - uid: 19257 + rot: 1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 2 + - uid: 10926 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 89 - - uid: 19258 + pos: 58.5,-14.5 + parent: 2 + - uid: 10927 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,24.5 - parent: 89 - - uid: 19259 + pos: 58.5,-15.5 + parent: 2 + - uid: 10928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 89 - - uid: 19260 + rot: -1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 +- proto: FigureSpawner + entities: + - uid: 10929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 89 - - uid: 19261 + pos: -44.5,8.5 + parent: 2 + - uid: 10930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,21.5 - parent: 89 - - uid: 19262 + pos: -49.5,9.5 + parent: 2 + - uid: 10931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,20.5 - parent: 89 - - uid: 19263 + pos: 6.5,27.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 10932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 89 - - uid: 19264 + pos: -61.5,-6.5 + parent: 2 + - uid: 10933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 - parent: 89 - - uid: 19265 + pos: -20.5,9.5 + parent: 2 + - uid: 10934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 89 - - uid: 19266 + pos: -43.5,0.5 + parent: 2 + - uid: 10935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 89 - - uid: 19269 + pos: -87.5,12.5 + parent: 2 + - uid: 10936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-37.5 - parent: 89 - - uid: 19270 + pos: -58.5,9.5 + parent: 2 + - uid: 10937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 89 - - uid: 19271 + pos: -62.5,22.5 + parent: 2 + - uid: 10938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-38.5 - parent: 89 - - uid: 19275 + pos: 7.5,9.5 + parent: 2 + - uid: 10939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-36.5 - parent: 89 - - uid: 19276 + pos: 16.5,6.5 + parent: 2 + - uid: 10940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 89 - - uid: 19277 + pos: -2.5,20.5 + parent: 2 + - uid: 10941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 89 - - uid: 19278 + pos: 42.5,6.5 + parent: 2 + - uid: 10942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 89 - - uid: 19279 + pos: -25.5,7.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 10943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 89 - - uid: 19280 + pos: 28.5,12.5 + parent: 2 + - uid: 10944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 89 - - uid: 19281 + pos: -21.5,-15.5 + parent: 2 + - uid: 10945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-30.5 - parent: 89 - - uid: 19282 + pos: -2.5,-38.5 + parent: 2 + - uid: 10946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 89 - - uid: 19283 + pos: 28.5,11.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 10947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 89 - - uid: 19284 + pos: 20.5,21.5 + parent: 2 + - uid: 10948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 89 - - uid: 19285 + pos: 16.5,19.5 + parent: 2 + - uid: 10949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-26.5 - parent: 89 - - uid: 19290 + pos: 19.5,21.5 + parent: 2 +- proto: filingCabinetTall + entities: + - uid: 10950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 89 - - uid: 19291 + pos: -53.5,7.5 + parent: 2 + - uid: 10951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,15.5 - parent: 89 - - uid: 19292 + pos: -12.5,12.5 + parent: 2 + - uid: 10952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 89 - - uid: 19293 + pos: 25.5,31.5 + parent: 2 + - uid: 10953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 89 - - uid: 19294 + pos: 23.5,31.5 + parent: 2 + - uid: 10954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 89 - - uid: 19295 + pos: -86.5,1.5 + parent: 2 + - uid: 10955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-23.5 - parent: 89 - - uid: 19296 + pos: -24.5,9.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 10956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-22.5 - parent: 89 - - uid: 19297 + rot: 1.5707963267948966 rad + pos: -97.5,-8.5 + parent: 2 + - uid: 10957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 89 - - uid: 19298 + rot: 1.5707963267948966 rad + pos: -106.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 11228 + - 11226 + - 11061 + - 11230 + - 11229 + - 11231 + - 494 + - uid: 10958 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-20.5 - parent: 89 - - uid: 19302 + pos: -103.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 11003 + - 497 + - uid: 10959 components: - type: Transform - pos: 14.5,12.5 - parent: 89 - - uid: 19305 + pos: -52.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 499 + - 11047 + - 11053 + - uid: 10960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 89 - - uid: 19306 + pos: -57.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 500 + - 11072 + - 11073 + - 11074 + - 11075 + - uid: 10961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 89 - - uid: 19308 + pos: -52.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 501 + - 11077 + - 11076 + - 11048 + - uid: 10962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 89 - - uid: 19309 + pos: -90.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 502 + - 11082 + - 11081 + - 11080 + - 11078 + - 11079 + - uid: 10963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 89 - - uid: 19310 + pos: -97.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 503 + - 11084 + - 11083 + - 11003 + - uid: 10964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 89 - - uid: 19311 + pos: -98.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 11080 + - 11081 + - 504 + - 11084 + - 11083 + - uid: 10965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 89 - - uid: 19312 + rot: 3.141592653589793 rad + pos: -91.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 505 + - 11082 + - uid: 10966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 89 - - uid: 19313 + pos: 21.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11006 + - 11005 + - 11004 + - 506 + - 11007 + - 11009 + - 11008 + - uid: 10967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,13.5 - parent: 89 - - uid: 19314 + pos: -2.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11010 + - 11011 + - 11012 + - 11008 + - 11009 + - 11007 + - 507 + - 11013 + - 11014 + - 11015 + - 11016 + - 11017 + - 11018 + - 11019 + - uid: 10968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 - - uid: 19315 + pos: -13.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 508 + - 11020 + - 11021 + - 11022 + - 11023 + - 11024 + - 11012 + - 11011 + - 11010 + - 11025 + - 11026 + - uid: 10969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 89 - - uid: 19316 + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 11028 + - 11027 + - 11022 + - 11021 + - 11020 + - 509 + - uid: 10970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,13.5 - parent: 89 - - uid: 19317 + rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 11028 + - 11027 + - 11033 + - 11032 + - 11031 + - 11030 + - 11029 + - 510 + - uid: 10971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 89 - - uid: 19318 + pos: -39.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11029 + - 11030 + - 11037 + - 11040 + - 11039 + - 11038 + - 11036 + - 11035 + - 11034 + - 511 + - uid: 10972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 89 - - uid: 19319 + pos: -54.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11038 + - 11039 + - 11040 + - 512 + - 11091 + - 11090 + - 11089 + - 11092 + - 14445 + - 14607 + - 14611 + - 14449 + - 14446 + - uid: 10973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 89 - - uid: 19321 + pos: -65.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11090 + - 11089 + - 11111 + - 11112 + - 11103 + - 11104 + - 513 + - uid: 10974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 89 - - uid: 19322 + pos: -31.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11033 + - 11032 + - 11031 + - 11093 + - 518 + - 11094 + - 11095 + - 11096 + - uid: 10975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-3.5 - parent: 89 - - uid: 19323 + pos: -40.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11094 + - 11095 + - 11096 + - 519 + - 11097 + - 11098 + - 11099 + - uid: 10976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 89 - - uid: 19324 + pos: -47.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11097 + - 11098 + - 11099 + - 11102 + - 11101 + - 11100 + - 517 + - uid: 10977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 89 - - uid: 19325 + pos: -57.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 515 + - 11103 + - 11104 + - uid: 10978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 89 - - uid: 19326 + pos: -59.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11100 + - 11101 + - 11102 + - 11105 + - 11106 + - 11107 + - 516 + - 11108 + - 11109 + - 11110 + - uid: 10979 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11113 + - 11114 + - 11111 + - 11112 + - 514 + - 11108 + - 11109 + - 11110 + - uid: 10980 + components: + - type: Transform + pos: -84.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11079 + - 11078 + - 11113 + - 11114 + - 520 + - 11136 + - 11137 + - 11138 + - uid: 10981 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 11036 + - 11035 + - 11034 + - 11116 + - 11118 + - 11119 + - 11120 + - 11015 + - 11014 + - 11013 + - 521 + - 11117 + - 11115 + - uid: 10982 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 89 - - uid: 19327 + pos: 2.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 11018 + - 11019 + - uid: 10983 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 89 - - uid: 19330 + pos: 37.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 11004 + - 11005 + - 11006 + - 11042 + - 11041 + - 11049 + - 11050 + - 523 + - 11043 + - uid: 10984 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 89 - - uid: 19331 + pos: -16.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 11115 + - 11117 + - 11026 + - 11025 + - 524 + - uid: 10985 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 - - uid: 19333 + pos: -54.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11105 + - 11106 + - 11107 + - uid: 10986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,0.5 - parent: 89 - - uid: 19335 + pos: 56.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 525 + - 11052 + - 11051 + - uid: 10987 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 89 - - uid: 19336 + pos: -28.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 14630 + - 14463 + - 526 + - 11122 + - 11121 + - uid: 10988 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 89 - - uid: 19337 + pos: -9.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 11129 + - 11130 + - 529 + - 11128 + - 11127 + - 11024 + - 11023 + - uid: 10989 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 89 - - uid: 19338 + pos: -28.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 11055 + - 11054 + - 536 + - uid: 10990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 89 - - uid: 19339 + pos: -124.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 11086 + - 11088 + - 11065 + - 11087 + - 11064 + - 11126 + - 542 + - 541 + - 11085 + - 11124 + - uid: 10991 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 89 - - uid: 19341 + pos: -127.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14616 + - 14483 + - 538 + - 11124 + - 11085 + - uid: 10992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 - parent: 89 - - uid: 19342 + rot: 3.141592653589793 rad + pos: 36.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11219 + - 565 + - uid: 10993 components: - type: Transform - pos: 27.5,-4.5 - parent: 89 - - uid: 19343 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11219 + - 566 + - uid: 10994 components: - type: Transform - pos: 27.5,-5.5 - parent: 89 - - uid: 19344 + pos: -35.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 569 + - 568 + - 567 + - 11046 + - 11002 + - 11044 + - 11045 + - uid: 10995 components: - type: Transform - pos: 27.5,-6.5 - parent: 89 - - uid: 19345 + rot: -1.5707963267948966 rad + pos: -110.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11231 + - 11234 + - 11232 + - 11233 + - 573 + - uid: 23800 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 19346 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 23711 + - type: DeviceList + devices: + - 23801 + - 23803 + - 23804 + - 23802 + - 23720 + - 23721 + - 23722 + - uid: 24392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 89 - - uid: 19347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 89 - - uid: 19352 + pos: 1.5,-5.5 + parent: 24340 + - type: DeviceList + devices: + - 24396 + - 24395 + - 24394 + - 24393 + - 24344 + - uid: 25891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 89 - - uid: 19353 + rot: 3.141592653589793 rad + pos: -16.5,-20.5 + parent: 24450 + - type: DeviceList + devices: + - 25917 + - 25918 + - 24524 + - 25920 + - 25919 + - 25922 + - 25921 + - uid: 27614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 89 - - uid: 19354 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 27260 + - type: DeviceList + devices: + - 27274 + - 27616 + - 27617 + - 27618 + - 27619 + - 27620 + - 27621 + - 27615 +- proto: FireAlarmElectronics + entities: + - uid: 10996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 89 - - uid: 19355 + pos: -98.713394,-8.672226 + parent: 2 + - uid: 10997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 89 - - uid: 19356 + pos: -98.307144,-8.750351 + parent: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 10998 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 89 - - uid: 19357 + pos: 53.5,4.5 + parent: 2 + - uid: 10999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 89 - - uid: 19358 + pos: -99.5,-11.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 11000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 89 - - uid: 19359 + pos: -2.512826,-41.501106 + parent: 2 +- proto: Firelock + entities: + - uid: 11001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 89 - - uid: 19360 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 89 - - uid: 19361 + pos: -42.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 11003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 89 - - uid: 19362 + rot: 3.141592653589793 rad + pos: -99.5,-6.5 + parent: 2 + - uid: 11004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 - - uid: 19363 + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 11005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 89 - - uid: 19364 + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 2 + - uid: 11006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 89 - - uid: 19365 + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - uid: 11007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 89 - - uid: 19369 + pos: 1.5,1.5 + parent: 2 + - uid: 11008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 89 - - uid: 19370 + pos: 1.5,3.5 + parent: 2 + - uid: 11009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 89 - - uid: 19371 + pos: 1.5,2.5 + parent: 2 + - uid: 11010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 89 - - uid: 19372 + pos: -4.5,1.5 + parent: 2 + - uid: 11011 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,2.5 - parent: 89 - - uid: 19373 + parent: 2 + - uid: 11012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 89 - - uid: 19374 + pos: -4.5,3.5 + parent: 2 + - uid: 11013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 89 - - uid: 19375 + pos: -4.5,-11.5 + parent: 2 + - uid: 11014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 89 - - uid: 19376 + pos: -4.5,-12.5 + parent: 2 + - uid: 11015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 89 - - uid: 19377 + pos: -4.5,-13.5 + parent: 2 + - uid: 11016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 - parent: 89 - - uid: 19378 + pos: -2.5,-18.5 + parent: 2 + - uid: 11017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 89 - - uid: 19380 + pos: -0.5,-18.5 + parent: 2 + - uid: 11018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 89 - - uid: 19381 + pos: 1.5,-12.5 + parent: 2 + - uid: 11019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 89 - - uid: 19382 + pos: 1.5,-10.5 + parent: 2 + - uid: 11020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 89 - - uid: 19383 + pos: -21.5,1.5 + parent: 2 + - uid: 11021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 89 - - uid: 19384 + pos: -21.5,2.5 + parent: 2 + - uid: 11022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 89 - - uid: 19386 + pos: -21.5,3.5 + parent: 2 + - uid: 11023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 89 - - uid: 19387 + pos: -12.5,5.5 + parent: 2 + - uid: 11024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 89 - - uid: 19388 + pos: -11.5,5.5 + parent: 2 + - uid: 11025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 89 - - uid: 19389 + pos: -17.5,0.5 + parent: 2 + - uid: 11026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 89 - - uid: 19390 + pos: -19.5,0.5 + parent: 2 + - uid: 11027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 89 - - uid: 19391 + pos: -28.5,4.5 + parent: 2 + - uid: 11028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 89 - - uid: 19392 + pos: -28.5,3.5 + parent: 2 + - uid: 11029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 89 - - uid: 19393 + rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 2 + - uid: 11030 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-2.5 - parent: 89 - - uid: 19394 + pos: -38.5,4.5 + parent: 2 + - uid: 11031 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-3.5 - parent: 89 - - uid: 19395 + pos: -32.5,6.5 + parent: 2 + - uid: 11032 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 89 - - uid: 19396 + pos: -31.5,6.5 + parent: 2 + - uid: 11033 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 89 - - uid: 19397 + pos: -30.5,6.5 + parent: 2 + - uid: 11034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-6.5 - parent: 89 - - uid: 19398 + pos: -38.5,-13.5 + parent: 2 + - uid: 11035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 89 - - uid: 19402 + pos: -38.5,-12.5 + parent: 2 + - uid: 11036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 - parent: 89 - - uid: 19404 + pos: -38.5,-11.5 + parent: 2 + - uid: 11037 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 19405 + pos: -40.5,6.5 + parent: 2 + - uid: 11038 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - uid: 19406 + pos: -42.5,3.5 + parent: 2 + - uid: 11039 components: - type: Transform - pos: 51.5,10.5 - parent: 89 - - uid: 19407 + pos: -42.5,4.5 + parent: 2 + - uid: 11040 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 19413 + pos: -42.5,5.5 + parent: 2 + - uid: 11041 components: - type: Transform - pos: 61.5,3.5 - parent: 89 - - uid: 19414 + pos: 42.5,1.5 + parent: 2 + - uid: 11042 components: - type: Transform - pos: 61.5,2.5 - parent: 89 - - uid: 19415 + pos: 42.5,0.5 + parent: 2 + - uid: 11043 components: - type: Transform - pos: 61.5,1.5 - parent: 89 - - uid: 19417 + pos: 35.5,9.5 + parent: 2 + - uid: 11044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,0.5 - parent: 89 - - uid: 19418 + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 11045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 89 - - uid: 19419 + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10994 + - 83 + - uid: 11046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,0.5 - parent: 89 - - uid: 19420 + rot: -1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - 22 + - uid: 23801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 - parent: 89 - - uid: 19421 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23711 + - uid: 23802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 89 - - uid: 19422 + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 23711 + - uid: 23803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,0.5 - parent: 89 - - uid: 19423 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 23711 + - uid: 23804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,0.5 - parent: 89 - - uid: 19424 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 23711 + - uid: 25892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 89 - - uid: 19529 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 + parent: 24450 + - uid: 25893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 89 - - uid: 23863 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 24450 + - uid: 25894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 22565 - - uid: 23864 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 24450 + - uid: 25895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 22565 - - uid: 23865 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 24450 + - uid: 25896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 23866 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 24450 + - uid: 25897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 23867 + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 24450 + - uid: 25898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 22565 - - uid: 23868 + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 24450 + - uid: 25899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 23869 + rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 24450 + - uid: 25900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 22565 - - uid: 23870 + rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 24450 + - uid: 25901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 22565 - - uid: 23871 + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 24450 + - uid: 25902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 22565 - - uid: 23872 + rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 24450 + - uid: 25903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 - - uid: 23873 + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 24450 + - uid: 25904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 22565 - - uid: 23874 + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 24450 + - uid: 25905 components: - type: Transform - pos: -13.5,-1.5 - parent: 22565 - - uid: 23875 + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 24450 + - uid: 25906 components: - type: Transform - pos: -13.5,-0.5 - parent: 22565 - - uid: 23876 + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 24450 + - uid: 25907 components: - type: Transform - pos: -13.5,0.5 - parent: 22565 - - uid: 23877 + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 24450 + - uid: 25908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - uid: 23878 + rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 24450 + - uid: 25909 components: - type: Transform - pos: -7.5,2.5 - parent: 22565 - - uid: 23879 + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 24450 + - uid: 25910 components: - type: Transform - pos: -7.5,4.5 - parent: 22565 - - uid: 23880 + rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 24450 + - uid: 25911 components: - type: Transform - pos: -7.5,5.5 - parent: 22565 - - uid: 23881 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 24450 + - uid: 25912 components: - type: Transform - pos: -7.5,6.5 - parent: 22565 - - uid: 23882 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 24450 + - uid: 25913 components: - type: Transform - pos: -7.5,7.5 - parent: 22565 - - uid: 23883 + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 24450 + - uid: 25914 components: - type: Transform - pos: -7.5,8.5 - parent: 22565 - - uid: 23884 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 24450 + - uid: 25915 components: - type: Transform - pos: -7.5,9.5 - parent: 22565 - - uid: 23885 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 24450 +- proto: FirelockEdge + entities: + - uid: 11047 components: - type: Transform - pos: -16.5,2.5 - parent: 22565 - - uid: 23886 + rot: -1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 11048 components: - type: Transform - pos: -16.5,3.5 - parent: 22565 - - uid: 23887 + pos: -51.5,-4.5 + parent: 2 + - uid: 11049 components: - type: Transform - pos: -16.5,4.5 - parent: 22565 - - uid: 23888 + rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 11050 components: - type: Transform - pos: -16.5,5.5 - parent: 22565 - - uid: 23889 + rot: 1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - uid: 11051 components: - type: Transform - pos: -16.5,6.5 - parent: 22565 - - uid: 23890 + pos: 58.5,1.5 + parent: 2 + - uid: 11052 components: - type: Transform - pos: -16.5,7.5 - parent: 22565 - - uid: 23891 + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - uid: 11053 components: - type: Transform - pos: -16.5,8.5 - parent: 22565 - - uid: 23892 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - uid: 11054 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 22565 - - uid: 23893 + pos: -30.5,37.5 + parent: 2 + - uid: 11055 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,2.5 - parent: 22565 - - uid: 23894 + pos: -29.5,37.5 + parent: 2 + - uid: 11056 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,3.5 - parent: 22565 - - uid: 23895 + pos: -4.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 22565 - - uid: 23896 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 24393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 22565 - - uid: 23897 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 24340 + - uid: 24394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 22565 - - uid: 23898 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 24340 + - uid: 24395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 22565 - - uid: 23899 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 24340 + - uid: 25916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,10.5 - parent: 22565 - - uid: 23900 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 + parent: 24450 + - uid: 25917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 22565 - - uid: 23901 + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 24450 + - uid: 25918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 22565 - - uid: 23902 + rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 24450 + - uid: 25919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 22565 - - uid: 23903 + pos: -17.5,-26.5 + parent: 24450 + - uid: 25920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 22565 - - uid: 23904 + pos: -15.5,-26.5 + parent: 24450 + - uid: 25921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 22565 - - uid: 23905 + pos: -11.5,-26.5 + parent: 24450 + - uid: 25922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 22565 - - uid: 23906 + pos: -9.5,-26.5 + parent: 24450 +- proto: FirelockElectronics + entities: + - uid: 11058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 22565 - - uid: 23907 + pos: -98.66652,-9.219101 + parent: 2 + - uid: 11059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 22565 - - uid: 23908 + pos: -98.338394,-9.359726 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 11060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 22565 - - uid: 23909 + pos: -34.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 22565 - - uid: 23910 + pos: -78.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 22565 - - uid: 23911 + pos: 16.5,-11.5 + parent: 2 + - uid: 11063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 22565 - - uid: 23912 + rot: 3.141592653589793 rad + pos: -99.5,23.5 + parent: 2 + - uid: 11064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,9.5 - parent: 22565 - - uid: 23913 + rot: 3.141592653589793 rad + pos: -118.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,9.5 - parent: 22565 - - uid: 23914 + rot: 3.141592653589793 rad + pos: -118.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,9.5 - parent: 22565 - - uid: 23915 + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 11067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,9.5 - parent: 22565 - - uid: 23916 + pos: 41.5,9.5 + parent: 2 + - uid: 11068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 22565 - - uid: 23917 + pos: 46.5,1.5 + parent: 2 + - uid: 11069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 22565 - - uid: 23918 + pos: 46.5,0.5 + parent: 2 + - uid: 11070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,11.5 - parent: 22565 - - uid: 23919 + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 11071 components: - type: Transform - pos: -31.5,12.5 - parent: 22565 - - uid: 23920 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 11072 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,8.5 - parent: 22565 - - uid: 23921 + pos: -59.5,-3.5 + parent: 2 + - uid: 11073 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 22565 - - uid: 23922 + pos: -62.5,-3.5 + parent: 2 + - uid: 11074 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 22565 - - uid: 23923 + pos: -63.5,-3.5 + parent: 2 + - uid: 11075 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 22565 - - uid: 23924 + pos: -66.5,-3.5 + parent: 2 + - uid: 11076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 22565 - - uid: 23925 + pos: -50.5,2.5 + parent: 2 + - uid: 11077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 22565 - - uid: 23926 + pos: -49.5,2.5 + parent: 2 + - uid: 11078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 22565 - - uid: 23927 + pos: -89.5,0.5 + parent: 2 + - uid: 11079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 22565 - - uid: 23928 + pos: -88.5,0.5 + parent: 2 + - uid: 11080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 22565 - - uid: 23929 + pos: -96.5,7.5 + parent: 2 + - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 23930 + pos: -96.5,8.5 + parent: 2 + - uid: 11082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 22565 - - uid: 23931 + pos: -93.5,11.5 + parent: 2 + - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 22565 - - uid: 23932 + pos: -106.5,-4.5 + parent: 2 + - uid: 11084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 22565 - - uid: 23933 + pos: -106.5,-3.5 + parent: 2 + - uid: 11085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 22565 - - uid: 23934 + rot: 3.141592653589793 rad + pos: -126.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 22565 - - uid: 23935 + rot: 3.141592653589793 rad + pos: -127.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 22565 - - uid: 23936 + rot: 3.141592653589793 rad + pos: -127.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 22565 - - uid: 23937 + rot: 3.141592653589793 rad + pos: -118.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 22565 - - uid: 23938 + pos: -66.5,6.5 + parent: 2 + - uid: 11090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 22565 - - uid: 23939 + pos: -65.5,6.5 + parent: 2 + - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 22565 - - uid: 23940 + pos: -55.5,-4.5 + parent: 2 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 22565 -- proto: DisposalRouterFlipped - entities: - - uid: 19366 + pos: -70.5,-4.5 + parent: 2 + - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 89 -- proto: DisposalTrunk - entities: - - uid: 211 + pos: -28.5,13.5 + parent: 2 + - uid: 11094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 89 - - uid: 4285 + pos: -34.5,16.5 + parent: 2 + - uid: 11095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 89 - - uid: 7376 + pos: -34.5,17.5 + parent: 2 + - uid: 11096 components: - type: Transform - pos: -33.5,-7.5 - parent: 89 - - uid: 7687 + pos: -34.5,18.5 + parent: 2 + - uid: 11097 components: - type: Transform - pos: 14.5,9.5 - parent: 89 - - uid: 7697 + pos: -46.5,16.5 + parent: 2 + - uid: 11098 components: - type: Transform - pos: -97.5,27.5 - parent: 89 - - uid: 8711 + pos: -46.5,17.5 + parent: 2 + - uid: 11099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 89 - - uid: 10965 + pos: -46.5,18.5 + parent: 2 + - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 89 - - uid: 15495 + pos: -50.5,16.5 + parent: 2 + - uid: 11101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 89 - - uid: 16926 + pos: -50.5,17.5 + parent: 2 + - uid: 11102 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 18431 + pos: -50.5,18.5 + parent: 2 + - uid: 11103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 89 - - uid: 18433 + pos: -65.5,13.5 + parent: 2 + - uid: 11104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,7.5 - parent: 89 - - uid: 18437 + pos: -65.5,14.5 + parent: 2 + - uid: 11105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,10.5 - parent: 89 - - uid: 18447 + pos: -55.5,19.5 + parent: 2 + - uid: 11106 components: - type: Transform - pos: 50.5,9.5 - parent: 89 - - uid: 18461 + pos: -56.5,19.5 + parent: 2 + - uid: 11107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,15.5 - parent: 89 - - uid: 18521 + pos: -57.5,19.5 + parent: 2 + - uid: 11108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-17.5 - parent: 89 - - uid: 18539 + pos: -70.5,16.5 + parent: 2 + - uid: 11109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 - - uid: 18544 + pos: -70.5,17.5 + parent: 2 + - uid: 11110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,16.5 - parent: 89 - - uid: 18547 + pos: -70.5,18.5 + parent: 2 + - uid: 11111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-15.5 - parent: 89 - - uid: 18548 + pos: -70.5,9.5 + parent: 2 + - uid: 11112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-13.5 - parent: 89 - - uid: 18565 + pos: -70.5,10.5 + parent: 2 + - uid: 11113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-15.5 - parent: 89 - - uid: 18583 + pos: -76.5,8.5 + parent: 2 + - uid: 11114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-11.5 - parent: 89 - - uid: 18645 + pos: -76.5,9.5 + parent: 2 + - uid: 11115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 89 - - uid: 18687 + pos: -20.5,-9.5 + parent: 2 + - uid: 11116 components: - type: Transform - pos: -97.5,9.5 - parent: 89 - - uid: 18691 + pos: -22.5,-14.5 + parent: 2 + - uid: 11117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 89 - - uid: 18738 + pos: -22.5,-9.5 + parent: 2 + - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 89 - - uid: 18742 + pos: -20.5,-14.5 + parent: 2 + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-18.5 - parent: 89 - - uid: 18744 + pos: -19.5,-14.5 + parent: 2 + - uid: 11120 components: - type: Transform - pos: -60.5,5.5 - parent: 89 - - uid: 18756 + pos: -18.5,-14.5 + parent: 2 + - uid: 11121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 89 - - uid: 18783 + pos: -29.5,19.5 + parent: 2 + - uid: 11122 components: - type: Transform - pos: -104.5,15.5 - parent: 89 - - uid: 18798 + pos: -30.5,19.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 11124 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,12.5 - parent: 89 - - uid: 18818 + pos: -126.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 89 - - uid: 18819 + pos: 26.5,30.5 + parent: 2 + - uid: 11126 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,12.5 - parent: 89 - - uid: 18873 + pos: -119.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,23.5 - parent: 89 - - uid: 18887 + pos: -8.5,7.5 + parent: 2 + - uid: 11128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 89 - - uid: 18894 + pos: -8.5,8.5 + parent: 2 + - uid: 11129 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 18902 + pos: -11.5,10.5 + parent: 2 + - uid: 11130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,14.5 - parent: 89 - - uid: 18999 + pos: -10.5,10.5 + parent: 2 + - uid: 11131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 89 - - uid: 19015 + pos: 22.5,30.5 + parent: 2 + - uid: 11132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 89 - - uid: 19070 + pos: -1.5,24.5 + parent: 2 + - uid: 11133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,20.5 - parent: 89 - - uid: 19080 + pos: -2.5,24.5 + parent: 2 + - uid: 11134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,32.5 - parent: 89 - - uid: 19120 + pos: -3.5,24.5 + parent: 2 + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,12.5 - parent: 89 - - uid: 19125 + pos: -127.5,20.5 + parent: 2 + - uid: 11136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 89 - - uid: 19192 + pos: -82.5,11.5 + parent: 2 + - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 89 - - uid: 19198 + pos: -81.5,11.5 + parent: 2 + - uid: 11138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,8.5 - parent: 89 - - uid: 19247 + pos: -80.5,11.5 + parent: 2 + - uid: 11139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 89 - - uid: 19267 + pos: 35.5,23.5 + parent: 2 + - uid: 11140 components: - type: Transform - pos: -6.5,-15.5 - parent: 89 - - uid: 19268 + pos: 35.5,22.5 + parent: 2 + - uid: 11141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 89 - - uid: 19320 + pos: -18.5,21.5 + parent: 2 + - uid: 11142 components: - type: Transform - pos: 11.5,14.5 - parent: 89 - - uid: 19332 + pos: -18.5,20.5 + parent: 2 + - uid: 11143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,5.5 - parent: 89 - - uid: 19348 + pos: -37.5,26.5 + parent: 2 + - uid: 11144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 89 - - uid: 19379 + pos: -22.5,26.5 + parent: 2 + - uid: 11145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 89 - - uid: 19411 + pos: -115.5,18.5 + parent: 2 + - uid: 11146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 - - uid: 19526 + pos: -115.5,17.5 + parent: 2 + - uid: 11147 components: - type: Transform - pos: -22.5,6.5 - parent: 89 - - uid: 19762 + pos: -16.5,15.5 + parent: 2 + - uid: 11148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 89 - - uid: 19808 + pos: -15.5,15.5 + parent: 2 + - uid: 11149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 89 - - uid: 20051 + pos: -14.5,15.5 + parent: 2 + - uid: 11150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 89 - - uid: 20092 + pos: -76.5,18.5 + parent: 2 + - uid: 11151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,7.5 - parent: 89 - - uid: 23941 + pos: -57.5,44.5 + parent: 2 + - uid: 11152 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23942 + pos: -57.5,45.5 + parent: 2 + - uid: 11153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 22565 - - uid: 23943 + pos: -56.5,46.5 + parent: 2 + - uid: 11154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 22565 - - uid: 23944 + pos: -55.5,46.5 + parent: 2 + - uid: 11155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 22565 - - uid: 23945 + pos: -53.5,44.5 + parent: 2 + - uid: 11156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 22565 - - uid: 23946 + pos: -53.5,40.5 + parent: 2 + - uid: 11157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 22565 -- proto: DisposalUnit - entities: - - uid: 334 + pos: -55.5,37.5 + parent: 2 + - uid: 11158 components: - type: Transform - pos: -15.5,-5.5 - parent: 89 - - uid: 1187 + pos: -56.5,37.5 + parent: 2 + - uid: 11159 components: - type: Transform - pos: -9.5,-20.5 - parent: 89 - - uid: 1558 + pos: -54.5,35.5 + parent: 2 + - uid: 11160 components: - type: Transform - pos: 62.5,4.5 - parent: 89 - - uid: 1563 + pos: -58.5,35.5 + parent: 2 + - uid: 11161 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 2170 + pos: -58.5,33.5 + parent: 2 + - uid: 11162 components: - type: Transform - pos: 37.5,16.5 - parent: 89 - - uid: 2832 + pos: -52.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11163 components: - type: Transform - pos: -7.5,5.5 - parent: 89 - - uid: 2957 + pos: 14.5,31.5 + parent: 2 + - uid: 11164 components: - type: Transform - pos: 22.5,0.5 - parent: 89 - - uid: 3125 + pos: 13.5,31.5 + parent: 2 + - uid: 11165 components: - type: Transform - pos: 28.5,-3.5 - parent: 89 - - uid: 3564 + pos: 14.5,28.5 + parent: 2 + - uid: 11166 components: - type: Transform - pos: 30.5,-1.5 - parent: 89 - - uid: 3969 + pos: 13.5,28.5 + parent: 2 + - uid: 11167 components: - type: Transform - pos: 10.5,-3.5 - parent: 89 - - uid: 4378 + pos: 14.5,24.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 11169 components: - type: Transform - pos: 9.5,-12.5 - parent: 89 - - uid: 4877 + pos: 14.5,16.5 + parent: 2 + - uid: 11170 components: - type: Transform - pos: -41.5,-8.5 - parent: 89 - - uid: 5839 + pos: 13.5,16.5 + parent: 2 + - uid: 11171 components: - type: Transform - pos: -50.5,-17.5 - parent: 89 - - uid: 6365 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - uid: 11172 components: - type: Transform - pos: -20.5,8.5 - parent: 89 - - uid: 6801 + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 11173 components: - type: Transform - pos: -43.5,-1.5 - parent: 89 - - uid: 7408 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 11174 components: - type: Transform - pos: -64.5,-15.5 - parent: 89 - - uid: 7409 + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 11175 components: - type: Transform - pos: -71.5,-15.5 - parent: 89 - - uid: 7419 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 + - uid: 11176 components: - type: Transform - pos: -47.5,1.5 - parent: 89 - - uid: 7422 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - uid: 11177 components: - type: Transform - pos: -33.5,-7.5 - parent: 89 - - uid: 8098 + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + - uid: 11178 components: - type: Transform - pos: -84.5,12.5 - parent: 89 - - uid: 8168 + rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - uid: 11179 components: - type: Transform - pos: -58.5,10.5 - parent: 89 - - uid: 8320 + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - uid: 11180 components: - type: Transform - pos: -63.5,20.5 - parent: 89 - - uid: 9331 + rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 11181 components: - type: Transform - pos: -4.5,17.5 - parent: 89 - - uid: 9961 + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 11182 components: - type: Transform - pos: -65.5,23.5 - parent: 89 - - uid: 10400 + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 11183 components: - type: Transform - pos: -89.5,10.5 - parent: 89 - - uid: 10471 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 11184 components: - type: Transform - pos: 22.5,9.5 - parent: 89 - - uid: 10501 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 11185 components: - type: Transform - pos: 14.5,9.5 - parent: 89 - - uid: 10830 + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - uid: 11186 components: - type: Transform - pos: -33.5,14.5 - parent: 89 - - uid: 10840 + rot: -1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - uid: 11187 components: - type: Transform - pos: 1.5,-4.5 - parent: 89 - - uid: 10941 + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 11188 components: - type: Transform - pos: -4.5,-38.5 - parent: 89 - - uid: 10993 + rot: 1.5707963267948966 rad + pos: 1.5,-42.5 + parent: 2 + - uid: 11189 components: - type: Transform - pos: -69.5,-13.5 - parent: 89 - - uid: 10996 + rot: 1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - uid: 11190 components: - type: Transform - pos: -77.5,7.5 - parent: 89 - - uid: 11002 + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 11191 components: - type: Transform - pos: -69.5,7.5 - parent: 89 - - uid: 11009 + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 11192 components: - type: Transform - pos: -54.5,12.5 - parent: 89 - - uid: 11011 + rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - uid: 11193 components: - type: Transform - pos: -60.5,5.5 - parent: 89 - - uid: 11012 + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - uid: 11194 components: - type: Transform - pos: 1.5,-19.5 - parent: 89 - - uid: 15015 + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 11195 components: - type: Transform - pos: 25.5,27.5 - parent: 89 - - uid: 15404 + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 11196 components: - type: Transform - pos: 10.5,32.5 - parent: 89 - - uid: 15513 + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11197 components: - type: Transform - pos: -46.5,14.5 - parent: 89 - - uid: 16556 + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 11198 components: - type: Transform - pos: -86.5,32.5 - parent: 89 - - uid: 18342 + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 11199 components: - type: Transform - pos: -101.5,7.5 - parent: 89 - - uid: 18436 + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 11200 components: - type: Transform - pos: -97.5,9.5 - parent: 89 - - uid: 18441 + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 11201 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 18443 + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 11202 components: - type: Transform - pos: -107.5,-18.5 - parent: 89 - - uid: 18445 + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11203 components: - type: Transform - pos: -111.5,-11.5 - parent: 89 - - uid: 18446 + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 11204 components: - type: Transform - pos: -119.5,-3.5 - parent: 89 - - uid: 18448 + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 11205 components: - type: Transform - pos: -126.5,15.5 - parent: 89 - - uid: 18457 + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 11206 components: - type: Transform - pos: 50.5,9.5 - parent: 89 - - uid: 18655 + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 11207 components: - type: Transform - pos: -104.5,15.5 - parent: 89 - - uid: 18705 + rot: 1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 2 + - uid: 11208 components: - type: Transform - pos: 11.5,14.5 - parent: 89 - - uid: 18707 + rot: 1.5707963267948966 rad + pos: 52.5,-22.5 + parent: 2 + - uid: 11209 components: - type: Transform - pos: 28.5,15.5 - parent: 89 - - uid: 18817 + rot: 1.5707963267948966 rad + pos: 52.5,-25.5 + parent: 2 + - uid: 11210 components: - type: Transform - pos: -91.5,12.5 - parent: 89 - - uid: 18974 + rot: 1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 11211 components: - type: Transform - pos: 14.5,11.5 - parent: 89 - - uid: 19235 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 11212 components: - type: Transform - pos: -6.5,-15.5 - parent: 89 - - uid: 19530 + rot: 1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 11213 components: - type: Transform - pos: -22.5,6.5 - parent: 89 - - uid: 19761 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 + - uid: 11214 components: - type: Transform - pos: -17.5,-6.5 - parent: 89 - - uid: 19763 + rot: 1.5707963267948966 rad + pos: 57.5,-23.5 + parent: 2 + - uid: 11215 components: - type: Transform - pos: -24.5,-8.5 - parent: 89 - - uid: 23947 + rot: 1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 + - uid: 11216 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23948 + pos: 43.5,-26.5 + parent: 2 + - uid: 11217 components: - type: Transform - pos: -15.5,-0.5 - parent: 22565 - - uid: 23949 + pos: 42.5,-26.5 + parent: 2 + - uid: 11218 components: - type: Transform - pos: -8.5,-0.5 - parent: 22565 - - uid: 23950 + pos: 45.5,-26.5 + parent: 2 + - uid: 11219 components: - type: Transform - pos: -13.5,-3.5 - parent: 22565 - - uid: 23951 + rot: 3.141592653589793 rad + pos: 37.5,-22.5 + parent: 2 + - uid: 11220 components: - type: Transform - pos: -32.5,3.5 - parent: 22565 - - uid: 23952 + rot: -1.5707963267948966 rad + pos: 37.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11221 components: - type: Transform - pos: 8.5,3.5 - parent: 22565 -- proto: DisposalYJunction - entities: - - uid: 18523 + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-3.5 - parent: 89 - - uid: 18566 + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-1.5 - parent: 89 - - uid: 18663 + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,4.5 - parent: 89 - - uid: 19062 + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11225 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 19425 + pos: -94.5,-3.5 + parent: 2 + - uid: 11226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 89 -- proto: DogBed - entities: - - uid: 1927 + pos: -92.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11227 components: - type: Transform - pos: 40.5,12.5 - parent: 89 - - uid: 4579 + pos: -95.5,-3.5 + parent: 2 + - uid: 11228 components: - type: Transform - pos: 7.5,-9.5 - parent: 89 - - uid: 5816 + pos: -94.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11229 components: - type: Transform - pos: -74.5,-15.5 - parent: 89 - - uid: 8382 + rot: -1.5707963267948966 rad + pos: -109.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11230 components: - type: Transform - pos: -93.5,-9.5 - parent: 89 - - uid: 10262 + rot: -1.5707963267948966 rad + pos: -107.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11231 components: - type: Transform - pos: -33.5,27.5 - parent: 89 - - uid: 15308 + rot: -1.5707963267948966 rad + pos: -110.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - 86 + - 10995 + - uid: 11232 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 19995 + rot: -1.5707963267948966 rad + pos: -115.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11233 components: - - type: MetaData - name: лежанка - type: Transform - pos: 26.5,35.5 - parent: 89 -- proto: DonkpocketBoxSpawner - entities: - - uid: 7157 + rot: -1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-15.5 - parent: 89 - - uid: 10937 + rot: -1.5707963267948966 rad + pos: -111.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11235 components: - type: Transform - pos: -118.5,-15.5 - parent: 89 - - uid: 14701 + pos: -54.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11236 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 14702 + pos: -48.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11237 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 20089 + rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 11238 components: - type: Transform - pos: -115.5,1.5 - parent: 89 - - uid: 25680 + rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 11239 components: - type: Transform - pos: 22.5,-17.5 - parent: 89 -- proto: DoorElectronics - entities: - - uid: 7062 + rot: -1.5707963267948966 rad + pos: -31.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 11240 components: - type: Transform - pos: -104.67677,-7.256445 - parent: 89 - - uid: 7063 + rot: -1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 11241 components: - type: Transform - pos: -104.67677,-7.475195 - parent: 89 - - uid: 7066 + rot: -1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - uid: 11242 components: - type: Transform - pos: -104.36427,-7.475195 - parent: 89 - - uid: 7069 + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - uid: 24108 components: - type: Transform - pos: -104.36427,-7.256445 - parent: 89 -- proto: DoorRemoteArmory - entities: - - uid: 4921 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24109 components: - type: Transform - pos: 8.483128,-12.300071 - parent: 89 -- proto: Dresser - entities: - - uid: 435 + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24110 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 10143 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24111 components: - type: Transform - pos: -25.5,33.5 - parent: 89 - - uid: 10144 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 23919 + - uid: 24112 components: - type: Transform - pos: -25.5,29.5 - parent: 89 - - uid: 10145 + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 + - uid: 24113 components: - type: Transform - pos: -25.5,25.5 - parent: 89 - - uid: 10147 + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24396 components: - type: Transform - pos: -34.5,29.5 - parent: 89 - - uid: 10148 + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 24340 + - uid: 27615 components: - type: Transform - pos: -34.5,33.5 - parent: 89 - - uid: 10378 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27616 components: - type: Transform - pos: -20.5,26.5 - parent: 89 - - uid: 10379 + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27617 components: - type: Transform - pos: -36.5,27.5 - parent: 89 - - uid: 10459 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27618 components: - type: Transform - pos: 22.5,12.5 - parent: 89 - - uid: 10511 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27619 components: - type: Transform - pos: -34.5,25.5 - parent: 89 - - uid: 11076 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27620 components: - type: Transform - pos: 16.5,18.5 - parent: 89 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 11087 - - 11090 - - 11378 - - 11404 - - 11158 - - 11159 -- proto: DresserCaptainFilled - entities: - - uid: 7149 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27621 components: - type: Transform - pos: 46.5,15.5 - parent: 89 -- proto: DresserHeadOfPersonnelFilled + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 +- proto: Fireplace entities: - - uid: 13682 + - uid: 11243 components: - type: Transform - pos: 43.5,14.5 - parent: 89 -- proto: DresserHeadOfSecurityFilled + pos: 56.5,-24.5 + parent: 2 +- proto: FlashlightLantern entities: - - uid: 6121 + - uid: 11244 components: - type: Transform - pos: 34.5,-0.5 - parent: 89 -- proto: DresserQuarterMasterFilled - entities: - - uid: 5461 + pos: -25.593971,25.761902 + parent: 2 + - uid: 11245 components: - type: Transform - pos: -69.5,-17.5 - parent: 89 -- proto: DrinkAbsintheGlass - entities: - - uid: 17272 + rot: 3.141592653589793 rad + pos: 22.783228,-16.650192 + parent: 2 + - uid: 11246 components: - type: Transform - pos: -51.421,47.763172 - parent: 89 -- proto: DrinkBahamaMama - entities: - - uid: 17271 + pos: -113.51567,-5.446479 + parent: 2 + - uid: 11247 components: - type: Transform - pos: -51.61521,48.200672 - parent: 89 -- proto: DrinkBananaHonkGlass - entities: - - uid: 5333 + pos: -99.97467,2.4873905 + parent: 2 + - uid: 11248 components: - type: Transform - pos: 30.46677,-5.2915163 - parent: 89 -- proto: DrinkBeepskySmashGlass - entities: - - uid: 17292 + pos: -91.41225,5.4460807 + parent: 2 + - uid: 11249 components: - type: Transform - pos: -51.686626,48.310047 - parent: 89 -- proto: DrinkBeerBottleFull - entities: - - uid: 3055 + pos: -89.445175,6.290927 + parent: 2 + - uid: 11250 components: - type: Transform - pos: 33.648262,29.424652 - parent: 89 - - uid: 17874 + pos: -57.67143,12.341514 + parent: 2 + - uid: 11251 components: - type: Transform - pos: 62.468678,-9.397333 - parent: 89 - - uid: 21121 + pos: -34.97496,5.4803944 + parent: 2 + - uid: 25650 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21122 + - uid: 25651 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21123 + - uid: 25652 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21124 + - uid: 25660 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21125 + - uid: 25661 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21126 + - uid: 25662 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21127 +- proto: FlashlightSeclite + entities: + - uid: 11252 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21128 + pos: 25.487007,-6.1841216 + parent: 2 + - uid: 11253 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21129 + pos: 25.502632,-6.4341216 + parent: 2 + - uid: 11254 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21130 + pos: 25.518257,-6.7153716 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 11255 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21131 + pos: -132.48235,20.537903 + parent: 2 +- proto: FloorDrain + entities: + - uid: 11256 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21132 + pos: 50.5,14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11257 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21133 + pos: -13.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11258 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21134 + pos: -21.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11259 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22309 + pos: -73.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11260 components: - type: Transform - pos: 45.40097,-37.246986 - parent: 89 - - uid: 22310 + pos: 6.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11261 components: - type: Transform - pos: 45.166595,-37.246986 - parent: 89 - - uid: 22315 + rot: 3.141592653589793 rad + pos: -45.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11262 components: - type: Transform - pos: 45.604095,-37.246986 - parent: 89 - - uid: 23954 + pos: 7.5,-28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11263 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23955 + pos: -37.5,8.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11264 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkBeerCan - entities: - - uid: 25698 + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11265 components: - type: Transform - pos: 3.5264907,-1.3255532 - parent: 89 -- proto: DrinkBlueCuracaoGlass - entities: - - uid: 16424 + pos: 10.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11266 components: - type: Transform - pos: -123.16864,-13.288413 - parent: 89 -- proto: DrinkBottleCognac + pos: 8.5,7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold entities: - - uid: 10317 + - uid: 11273 components: - type: Transform - pos: -36.558395,29.720085 - parent: 89 -- proto: DrinkBottleGoldschlager + pos: 48.53125,-3.1239183 + parent: 2 + - type: Item + size: 150 + - type: Stack + count: 30 +- proto: FloorWaterEntity entities: - - uid: 5393 + - uid: 11274 components: - type: Transform - pos: -53.445843,48.137283 - parent: 89 - - uid: 7108 + rot: 3.141592653589793 rad + pos: -80.5,-12.5 + parent: 2 + - uid: 11275 components: - type: Transform - pos: -54.477093,48.137283 - parent: 89 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 7454 + rot: 3.141592653589793 rad + pos: -80.5,-11.5 + parent: 2 + - uid: 11276 components: - type: Transform - pos: -33.752167,-9.276451 - parent: 89 - - uid: 7455 + rot: 3.141592653589793 rad + pos: -79.5,-11.5 + parent: 2 +- proto: FloraTree06 + entities: + - uid: 11277 components: - type: Transform - pos: -33.51779,-9.276451 - parent: 89 -- proto: DrinkBottleVodka + rot: 3.141592653589793 rad + pos: -92.38655,-14.519233 + parent: 2 +- proto: FoamCrossbow entities: - - uid: 10315 + - uid: 11278 components: - type: Transform - pos: -38.620895,29.751335 - parent: 89 - - uid: 10316 + pos: 4.5889907,-1.4036782 + parent: 2 + - uid: 11279 components: - type: Transform - pos: -38.07402,29.563835 - parent: 89 -- proto: DrinkCafeLatte - entities: - - uid: 16943 + pos: 50.491665,-18.456736 + parent: 2 + - uid: 11280 components: - type: Transform - pos: -9.703323,-16.228903 - parent: 89 - - uid: 16981 + pos: 48.559834,-21.37915 + parent: 2 + - uid: 11281 components: - type: Transform - pos: -10.093948,-16.166403 - parent: 89 -- proto: DrinkChampagneBottleFull + pos: 49.47713,-21.360804 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: 50.741665,-18.62861 + parent: 2 +- proto: FoodBadRecipe entities: - - uid: 7481 + - uid: 11283 components: - type: Transform - pos: 50.736675,-4.4515657 - parent: 89 -- proto: DrinkCoffee + pos: -50.536972,43.736313 + parent: 2 +- proto: FoodBakedBunHoney entities: - - uid: 4923 + - uid: 11284 components: - type: Transform - pos: 8.123753,-12.362571 - parent: 89 - - uid: 17220 + pos: 2.7143266,17.792904 + parent: 2 + - uid: 11285 components: - type: Transform - pos: 33.49264,14.72666 - parent: 89 - - uid: 17221 + pos: 2.6987016,19.480404 + parent: 2 + - uid: 11286 components: - type: Transform - pos: 35.539516,13.617285 - parent: 89 -- proto: DrinkCognacBottleFull + pos: 2.6674516,15.464779 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 2.6987016,21.792904 + parent: 2 +- proto: FoodBakedNugget entities: - - uid: 3790 + - uid: 11288 components: - type: Transform - pos: -27.49241,32.79545 - parent: 89 - - uid: 12800 + pos: 33.613174,13.64916 + parent: 2 + - type: RandomSprite + selected: + enum.DamageStateVisualLayers.Base: + lizard: null + - uid: 11289 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkColaBottleFull + pos: 33.394424,13.508535 + parent: 2 + - type: RandomSprite + selected: + enum.DamageStateVisualLayers.Base: + corgi: null +- proto: FoodBakedWaffleRoffle entities: - - uid: 10375 + - uid: 11290 components: - type: Transform - pos: -23.521883,28.72285 - parent: 89 - - uid: 14898 + pos: 65.51178,-1.3788319 + parent: 2 +- proto: FoodBanana + entities: + - uid: 11291 components: - type: Transform - pos: -10.639323,-36.20387 - parent: 89 - - uid: 14934 + pos: -33.28767,-3.4614453 + parent: 2 + - uid: 11292 components: - type: Transform - pos: -10.311198,-36.188244 - parent: 89 -- proto: DrinkEnergyDrinkCan + pos: -33.428295,-3.4458203 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: -33.56892,-3.4077 + parent: 2 +- proto: FoodBoxDonkpocket entities: - - uid: 16933 + - uid: 11294 components: - type: Transform - pos: 4.3478365,-19.622332 - parent: 89 - - uid: 16934 + pos: 31.32444,-5.3839784 + parent: 2 + - uid: 11295 components: - type: Transform - pos: 4.4923315,-20.44095 - parent: 89 -- proto: DrinkFlask + pos: -71.492424,-11.436115 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -96.61137,-5.059809 + parent: 2 +- proto: FoodBoxDonkpocketBerry entities: - - uid: 861 + - uid: 11297 components: - type: Transform - pos: 47.55086,10.622266 - parent: 89 -- proto: DrinkGildlagerBottleFull + pos: 32.557034,-5.374509 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: -96.58012,-6.059809 + parent: 2 +- proto: FoodBoxDonkpocketDink entities: - - uid: 18244 + - uid: 25869 components: - type: Transform - pos: -98.478195,31.59029 - parent: 89 -- proto: DrinkGlass + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketHonk entities: - - uid: 199 + - uid: 11299 components: - type: Transform - pos: 4.5901623,-21.062885 - parent: 89 - - uid: 200 + pos: 31.57096,-5.3839784 + parent: 2 + - uid: 11300 components: - type: Transform - pos: 4.3714123,-21.437885 - parent: 89 - - uid: 7748 + pos: -71.429924,-12.029865 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 11301 components: - type: Transform - pos: -1.492651,45.647552 - parent: 89 - - uid: 8003 + pos: 31.845922,-5.3839784 + parent: 2 + - uid: 11302 components: - type: Transform - pos: -5.508276,45.585052 - parent: 89 - - uid: 10376 + pos: -96.43949,-5.575434 + parent: 2 + - uid: 25870 components: - type: Transform - pos: -23.553133,28.0041 - parent: 89 -- proto: DrinkGoldenCup - entities: - - uid: 2578 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25871 components: - type: Transform - pos: 50.492214,-4.3728843 - parent: 89 - - uid: 20384 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 11303 components: - - type: MetaData - desc: Если вы видите это на своей станции... Жаль вас. - name: Кубок "Самый несчастный Капитан 3024" - type: Transform - pos: 46.47793,12.463007 - parent: 89 -- proto: DrinkHosFlask + pos: 32.80355,-5.374509 + parent: 2 +- proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 6064 + - uid: 11304 components: - type: Transform - pos: 33.00601,-0.4120643 - parent: 89 -- proto: DrinkHotCoffee + pos: 32.07348,-5.374509 + parent: 2 +- proto: FoodBoxDonut entities: - - uid: 15760 + - uid: 11305 components: - type: Transform - pos: 15.505661,11.6435375 - parent: 89 - - uid: 17222 + pos: 7.6550026,-12.300071 + parent: 2 + - uid: 11306 components: - type: Transform - pos: 34.508266,14.742285 - parent: 89 -- proto: DrinkJarWhat + pos: -16.490608,8.670728 + parent: 2 +- proto: FoodBoxNugget entities: - - uid: 16932 + - uid: 11307 components: - - type: MetaData - name: Кротовуха - type: Transform - pos: 4.5164137,-22.102266 - parent: 89 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: DrGibb - Quantity: 10 - - data: null - ReagentId: JuiceTomato - Quantity: 10 - - data: null - ReagentId: GinFizz - Quantity: 10 - - data: null - ReagentId: Frezon - Quantity: 5 - - data: null - ReagentId: JuiceBerry - Quantity: 5 - - data: null - ReagentId: Milk - Quantity: 5 - - data: null - ReagentId: Antifreeze - Quantity: 5 -- proto: DrinkMug + pos: 34.788673,13.833639 + parent: 2 +- proto: FoodBoxPizzaFilled entities: - - uid: 16016 + - uid: 11308 components: - type: Transform - pos: 16.404638,18.863092 - parent: 89 -- proto: DrinkMugBlue + pos: -12.436198,-36.45387 + parent: 2 +- proto: FoodBreadPlain entities: - - uid: 2014 + - uid: 11309 components: - type: Transform - pos: 44.80428,5.9828796 - parent: 89 - - uid: 7397 + pos: -132.48235,23.069153 + parent: 2 +- proto: FoodBreadVolcanic + entities: + - uid: 11310 components: + - type: MetaData + desc: как всегда.... с пивом. + name: syxapik - type: Transform - pos: 25.620392,13.633 - parent: 89 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: Coffee - Quantity: 10 - - data: null - ReagentId: IrishCoffee - Quantity: 10 - - uid: 16775 + pos: 33.445137,29.596706 + parent: 2 +- proto: FoodBurgerBacon + entities: + - uid: 11311 components: - type: Transform - pos: 2.27967,21.466866 - parent: 89 - - uid: 16776 + pos: 4.495135,-18.356115 + parent: 2 +- proto: FoodBurgerEmpowered + entities: + - uid: 11312 components: - type: Transform - pos: 2.264045,19.471586 - parent: 89 - - uid: 16777 + pos: -2.5179825,-48.507328 + parent: 2 +- proto: FoodBurgerMime + entities: + - uid: 11313 components: - type: Transform - pos: 2.264045,17.443998 - parent: 89 - - uid: 16785 + pos: -33.513412,-9.430157 + parent: 2 +- proto: FoodBurgerRobot + entities: + - uid: 11314 components: - type: Transform - pos: 2.24842,15.443485 - parent: 89 - - uid: 21557 + pos: 17.72694,-1.3729725 + parent: 2 +- proto: FoodBurgerSpell + entities: + - uid: 11315 components: - type: Transform - pos: 19.277308,18.697405 - parent: 89 -- proto: DrinkMugDog + pos: -6.535371,-48.554203 + parent: 2 +- proto: FoodCarrot entities: - - uid: 5786 + - uid: 11316 components: - type: Transform - pos: -34.203346,28.793152 - parent: 89 - - uid: 15008 + pos: -10.123768,-9.461199 + parent: 2 + - uid: 11317 components: - type: Transform - pos: 25.80995,29.817919 - parent: 89 -- proto: DrinkMugOne - entities: - - uid: 9177 + pos: -8.248768,-9.554949 + parent: 2 + - uid: 11318 components: - type: Transform - pos: -111.5746,21.603405 - parent: 89 - - uid: 15762 + pos: -7.510698,-7.948451 + parent: 2 + - uid: 11319 components: - type: Transform - pos: 25.267576,36.804634 - parent: 89 -- proto: DrinkMugRainbow + pos: -10.326893,-7.211199 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: -9.123768,-6.742449 + parent: 2 +- proto: FoodCartCold entities: - - uid: 4957 + - uid: 11321 components: - type: Transform - pos: 34.3472,-2.8853703 - parent: 89 -- proto: DrinkRootBeerCan + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 +- proto: FoodCartHot entities: - - uid: 16935 + - uid: 11322 components: - type: Transform - pos: 4.47943,-18.812798 - parent: 89 - - type: CollisionWake - enabled: False - - type: Physics - sleepingAllowed: False -- proto: DrinkRumBottleFull + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 +- proto: FoodCheeseSlice entities: - - uid: 1471 + - uid: 11323 components: - type: Transform - pos: 48.765263,10.867164 - parent: 89 -- proto: DrinkSbitenGlass + pos: -13.634424,-2.4830256 + parent: 2 +- proto: FoodCondimentBottleEnzyme entities: - - uid: 17291 + - uid: 11324 components: - type: Transform - pos: -51.59029,48.700672 - parent: 89 -- proto: DrinkShaker + pos: -13.176779,-2.1402254 + parent: 2 +- proto: FoodCondimentPacketFrostoil entities: - - uid: 4230 + - uid: 11325 components: - type: Transform - pos: -30.46853,0.627223 - parent: 89 - - uid: 8001 + pos: -13.0428295,-0.38803613 + parent: 2 +- proto: FoodDonkpocketHonkWarm + entities: + - uid: 11326 components: - type: Transform - pos: -1.5121098,44.69217 - parent: 89 - - uid: 8002 + pos: 51.573746,-33.424797 + parent: 2 +- proto: FoodDonutChaos + entities: + - uid: 11327 components: - type: Transform - pos: -5.5589848,44.62967 - parent: 89 -- proto: DrinkShakeWhite + pos: 3.514162,28.464619 + parent: 2 +- proto: FoodDonutJellySweetpea entities: - - uid: 16423 + - uid: 11328 components: - type: Transform - pos: -123.653015,-12.913413 - parent: 89 -- proto: DrinkShotGlass + pos: -105.04697,21.522427 + parent: 2 +- proto: FoodFrozenPopsicleTrash entities: - - uid: 2570 + - uid: 11329 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.30986,-24.162506 - parent: 89 - - uid: 2573 + pos: -34.15423,24.30383 + parent: 2 +- proto: FoodMeatFiestaKebab + entities: + - uid: 11330 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.18486,-24.600006 - parent: 89 - - uid: 4681 + pos: -0.5881367,-28.311087 + parent: 2 +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 11331 components: - type: Transform - pos: -34.314835,31.617702 - parent: 89 - - uid: 10190 + pos: 48.413338,-28.104477 + parent: 2 + - uid: 11332 components: - type: Transform - pos: -34.689835,31.617702 - parent: 89 - - uid: 12573 + pos: 48.569588,-28.245102 + parent: 2 + - uid: 11333 components: - type: Transform - pos: 17.683292,5.579408 - parent: 89 - - uid: 12574 + pos: -93.517395,-4.3078394 + parent: 2 +- proto: FoodMeatRotten + entities: + - uid: 11334 components: - type: Transform - pos: 17.322052,5.7720246 - parent: 89 - - uid: 20001 + pos: 40.47344,22.541035 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 11335 components: - type: Transform - pos: -11.289598,24.446281 - parent: 89 - - uid: 20003 + rot: -1.5707963267948966 rad + pos: 46.80032,-9.570213 + parent: 2 +- proto: FoodMeatXeno + entities: + - uid: 11336 components: - type: Transform - pos: -11.711473,24.602531 - parent: 89 -- proto: DrinkSingulo - entities: - - uid: 14658 + pos: -129.90422,22.600403 + parent: 2 + - uid: 11337 components: - type: Transform - pos: -131.50919,23.442694 - parent: 89 -- proto: DrinkSodaWaterCan + pos: -129.31047,21.819153 + parent: 2 +- proto: FoodNoodlesBoiled entities: - - uid: 18428 + - uid: 11338 components: - type: Transform - pos: 18.787956,-14.249105 - parent: 89 - - uid: 21029 + pos: -96.61855,-17.472294 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 11339 components: - type: Transform - pos: 18.751822,-14.499105 - parent: 89 - - uid: 21031 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11340 components: - type: Transform - pos: 21.783072,-14.249105 - parent: 89 - - uid: 21032 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11341 components: - type: Transform - pos: 21.767447,-14.561605 - parent: 89 - - uid: 21033 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11342 components: - type: Transform - pos: 24.652481,-14.284261 - parent: 89 - - uid: 21034 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11343 components: - type: Transform - pos: 24.795654,-14.561605 - parent: 89 - - uid: 21035 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11344 components: - type: Transform - pos: 27.704758,-14.230448 - parent: 89 - - uid: 21036 + pos: -33.522045,-3.360825 + parent: 2 +- proto: FoodPizzaDank + entities: + - uid: 25872 components: - type: Transform - pos: 27.780474,-14.54598 - parent: 89 -- proto: DrinkSpaceLube + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPizzaSassysageSlice entities: - - uid: 1619 + - uid: 11345 components: - type: Transform - pos: -35.73411,-5.180784 - parent: 89 -- proto: DrinkToxinsSpecialGlass - entities: - - uid: 17293 + pos: 4.4923315,-19.911255 + parent: 2 + - uid: 11346 components: - type: Transform - pos: -51.418415,47.950672 - parent: 89 -- proto: DrinkVodkaGlass + pos: 4.3237543,-20.826183 + parent: 2 +- proto: FoodPlate entities: - - uid: 4787 + - uid: 11347 components: - type: Transform - pos: -48.540546,-7.4118657 - parent: 89 -- proto: DrinkWaterBottleFull + pos: -96.62795,-17.441044 + parent: 2 +- proto: FoodPoppy entities: - - uid: 23956 + - uid: 11348 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23957 + rot: 3.141592653589793 rad + pos: 50.63735,-2.4820957 + parent: 2 +- proto: FoodPotato + entities: + - uid: 11349 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23958 + pos: -7.414382,-6.7354665 + parent: 2 + - uid: 11350 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23963 + pos: -9.701893,-7.554949 + parent: 2 + - uid: 11351 components: - type: Transform - pos: -14.740829,4.583781 - parent: 22565 - - uid: 23964 + pos: -10.795643,-7.758074 + parent: 2 + - uid: 11352 components: - type: Transform - pos: -14.17833,4.568156 - parent: 22565 - - uid: 23965 + pos: -9.436268,-6.429949 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 11353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.39708,4.7843614 - parent: 22565 - - uid: 25850 + pos: -19.430532,-2.9313784 + parent: 2 + - uid: 11354 components: - type: Transform - pos: -25.28652,16.888733 - parent: 89 - - uid: 25851 + pos: -13.379187,-2.4313784 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 11355 components: - type: Transform - pos: -25.145895,16.716858 - parent: 89 - - uid: 25852 + pos: -22.993032,-6.4157534 + parent: 2 + - uid: 11356 components: - type: Transform - pos: -25.28652,16.560608 - parent: 89 -- proto: DrinkWaterCup + pos: -13.332312,-2.7907534 + parent: 2 +- proto: FoodSnackChocolate entities: - - uid: 5976 + - uid: 11357 components: - type: Transform - pos: -45.484257,11.485884 - parent: 89 - - uid: 5979 + pos: 21.70988,31.555183 + parent: 2 + - uid: 11358 components: - type: Transform - pos: -45.78113,11.704634 - parent: 89 - - uid: 10149 + pos: 27.33488,31.555183 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 11359 components: - type: Transform - pos: -27.287731,21.773132 - parent: 89 - - uid: 10150 + pos: -9.953323,-16.541403 + parent: 2 +- proto: FoodSoupClown + entities: + - uid: 11360 components: - type: Transform - pos: -27.662731,21.741882 - parent: 89 - - uid: 10154 + pos: -29.498123,-17.317171 + parent: 2 +- proto: FoodSoupSlime + entities: + - uid: 11361 components: - type: Transform - pos: -27.443981,21.538757 - parent: 89 - - uid: 14122 + pos: 63.43366,0.63679314 + parent: 2 +- proto: FoodSpaceshroom + entities: + - uid: 11362 components: - type: Transform - pos: -45.24988,11.689009 - parent: 89 - - uid: 17388 + pos: -14.440111,21.490667 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 11363 components: - type: Transform - pos: -41.77214,-12.345528 - parent: 89 - - uid: 17390 + rot: 3.141592653589793 rad + pos: -22.222778,36.44787 + parent: 2 +- proto: Football + entities: + - uid: 11364 components: - type: Transform - pos: -41.694016,-12.486153 - parent: 89 - - uid: 17391 + pos: -10.490348,-38.553753 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 11365 components: - type: Transform - pos: -41.45964,-12.392403 - parent: 89 -- proto: DrinkWhiskeyBottleFull + rot: -1.5707963267948966 rad + pos: 18.511847,21.85918 + parent: 2 +- proto: GasCanisterBrokenBase entities: - - uid: 2564 + - uid: 11366 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.731735,-24.303131 - parent: 89 - - uid: 4682 + pos: -28.5,-20.5 + parent: 2 +- proto: GasDualPortVentPump + entities: + - uid: 11367 components: - type: Transform - pos: -34.471085,32.352077 - parent: 89 - - uid: 6954 + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasFilter + entities: + - uid: 11368 components: + - type: MetaData + name: фильтр О2 - type: Transform - pos: -89.282906,29.581888 - parent: 89 - - uid: 12567 + rot: 1.5707963267948966 rad + pos: -100.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11369 components: + - type: MetaData + name: фильтр N2 - type: Transform - pos: 18.62251,5.627563 - parent: 89 - - uid: 12568 + rot: 1.5707963267948966 rad + pos: -98.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11370 components: + - type: MetaData + name: фильтр CO2 - type: Transform - pos: 18.189026,5.6997943 - parent: 89 -- proto: DrinkWineBottleFull - entities: - - uid: 14655 + rot: 1.5707963267948966 rad + pos: -96.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11371 components: + - type: MetaData + name: фильтр водяного пара - type: Transform - pos: -123.1743,21.519472 - parent: 89 - - uid: 19950 + rot: 1.5707963267948966 rad + pos: -94.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11372 components: + - type: MetaData + name: фильтр плазмы - type: Transform - pos: -11.164598,25.024406 - parent: 89 -- proto: Dropper - entities: - - uid: 3212 + rot: 1.5707963267948966 rad + pos: -92.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11373 components: + - type: MetaData + name: фильтр N2O - type: Transform - rot: 3.141592653589793 rad - pos: -8.443167,-8.148901 - parent: 89 - - uid: 4496 + rot: 1.5707963267948966 rad + pos: -90.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11374 components: + - type: MetaData + name: фильтр трития - type: Transform - pos: -3.481449,6.2247124 - parent: 89 - - uid: 10132 + rot: 1.5707963267948966 rad + pos: -88.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11375 components: + - type: MetaData + name: фильтр газа - type: Transform - pos: 24.52668,12.685545 - parent: 89 - - uid: 21444 + rot: 1.5707963267948966 rad + pos: -86.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11376 components: - type: Transform - pos: -8.527368,-8.311418 - parent: 89 - - uid: 21445 + pos: -121.5,0.5 + parent: 2 + - uid: 11377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.261743,-4.3624306 - parent: 89 - - uid: 21550 + pos: -130.5,8.5 + parent: 2 + - uid: 11378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.4912267,5.6659956 - parent: 89 -- proto: EggSpider + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 +- proto: GasMinerCarbonDioxide entities: - - uid: 21063 + - uid: 11380 components: - type: Transform - pos: 39.347435,21.359114 - parent: 89 -- proto: ElectricGuitarInstrument + pos: -96.5,-24.5 + parent: 2 +- proto: GasMinerNitrogen entities: - - uid: 23 + - uid: 25923 components: - type: Transform - pos: -35.432793,-7.4938426 - parent: 89 - - uid: 7794 + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 24450 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 11381 components: - type: Transform - pos: -3.4961429,46.508736 - parent: 89 - - type: Instrument - program: 28 -- proto: EmergencyLight + pos: -98.5,-24.5 + parent: 2 +- proto: GasMinerOxygen entities: - - uid: 482 + - uid: 25924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,-3.5 - parent: 89 - - uid: 5319 + pos: -20.5,-12.5 + parent: 24450 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 11382 components: - type: Transform - pos: 19.5,-4.5 - parent: 89 - - uid: 7446 + pos: -100.5,-24.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 11383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 89 - - uid: 9235 + pos: -94.5,-24.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 11384 components: + - type: MetaData + name: микс O2, N2 - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 89 - - uid: 9798 + rot: 1.5707963267948966 rad + pos: -99.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11385 components: + - type: MetaData + name: микс CO2 - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 10264 + pos: -97.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11386 components: + - type: MetaData + name: микс водяного пара - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-15.5 - parent: 89 - - uid: 12148 + rot: 1.5707963267948966 rad + pos: -95.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11387 components: + - type: MetaData + name: микс плазмы - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12572 + pos: -93.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11388 components: + - type: MetaData + name: микс N2O - type: Transform - pos: 30.5,31.5 - parent: 89 - - uid: 13612 + rot: 1.5707963267948966 rad + pos: -91.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11389 components: + - type: MetaData + name: микс трития - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13613 + rot: 1.5707963267948966 rad + pos: -89.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11390 components: + - type: MetaData + name: микс газа - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13614 + pos: -87.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13615 + rot: 3.141592653589793 rad + pos: -101.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasMixerFlipped + entities: + - uid: 25925 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13616 + pos: -17.5,-12.5 + parent: 24450 + - type: GasMixer + targetPressure: 200 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 11392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13618 + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - uid: 11393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,22.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13619 + rot: 3.141592653589793 rad + pos: -86.5,-23.5 + parent: 2 + - uid: 11394 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13620 + pos: -100.5,-23.5 + parent: 2 + - uid: 11395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13621 + rot: 3.141592653589793 rad + pos: -98.5,-23.5 + parent: 2 + - uid: 11396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,44.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13622 + rot: 3.141592653589793 rad + pos: -96.5,-23.5 + parent: 2 + - uid: 11397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13623 + rot: 3.141592653589793 rad + pos: -94.5,-23.5 + parent: 2 + - uid: 11398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13624 + rot: 3.141592653589793 rad + pos: -92.5,-23.5 + parent: 2 + - uid: 11399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13625 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 11400 components: - type: Transform - pos: -54.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13626 + rot: 3.141592653589793 rad + pos: -90.5,-23.5 + parent: 2 + - uid: 11401 components: - type: Transform - pos: -65.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13627 + rot: 3.141592653589793 rad + pos: -88.5,-23.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 11402 components: - type: Transform - pos: -58.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13628 + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - uid: 11403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13629 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 11404 components: - type: Transform - pos: -68.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13630 + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 11405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13681 + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - uid: 11406 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13684 + pos: -100.5,-25.5 + parent: 2 + - uid: 11407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13685 + pos: -86.5,-25.5 + parent: 2 + - uid: 11408 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13686 + pos: -94.5,-25.5 + parent: 2 + - uid: 11409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13687 + rot: -1.5707963267948966 rad + pos: -98.5,-25.5 + parent: 2 + - uid: 11410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13688 + rot: -1.5707963267948966 rad + pos: -96.5,-25.5 + parent: 2 + - uid: 11411 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13689 + pos: -92.5,-25.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-21.5 + parent: 2 + - uid: 11413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,26.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13690 + pos: -90.5,-25.5 + parent: 2 + - uid: 11414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,41.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13691 + pos: -88.5,-25.5 + parent: 2 + - uid: 11415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13692 + rot: -1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 11416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13694 + pos: -132.5,8.5 + parent: 2 + - uid: 11417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13695 + rot: 3.141592653589793 rad + pos: -84.5,-21.5 + parent: 2 + - uid: 24114 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13696 + pos: 8.5,-7.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 24397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13697 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 24340 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13698 + pos: -19.5,-12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25927 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13699 + pos: -19.5,-10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13700 + pos: -7.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25929 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13701 + pos: -11.5,-10.5 + parent: 24450 + - uid: 27622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13702 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 27260 +- proto: GasPipeBend + entities: + - uid: 11418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13703 + pos: -94.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13704 + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13705 + pos: -131.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13706 + rot: 3.141592653589793 rad + pos: -104.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13707 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13708 + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13709 + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11425 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13710 + pos: -40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11426 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,25.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13712 + pos: -97.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11427 components: - type: Transform - pos: -116.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13713 + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 11428 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13714 + pos: -15.5,-9.5 + parent: 2 + - uid: 11429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13724 + rot: 3.141592653589793 rad + pos: -87.5,-25.5 + parent: 2 + - uid: 11430 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13725 + rot: 3.141592653589793 rad + pos: -93.5,-25.5 + parent: 2 + - uid: 11431 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13728 + rot: 3.141592653589793 rad + pos: -95.5,-25.5 + parent: 2 + - uid: 11432 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13729 + pos: -97.5,-25.5 + parent: 2 + - uid: 11433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13730 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13731 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11435 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13733 + rot: 3.141592653589793 rad + pos: -100.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13734 + rot: 1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13735 + rot: 3.141592653589793 rad + pos: -123.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11438 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13736 + rot: 3.141592653589793 rad + pos: -91.5,-25.5 + parent: 2 + - uid: 11439 components: - type: Transform - pos: -117.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13737 + rot: 3.141592653589793 rad + pos: -89.5,-25.5 + parent: 2 + - uid: 11440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13738 + pos: -79.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13739 + rot: 3.141592653589793 rad + pos: -81.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13740 + pos: -78.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11443 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13741 + pos: -103.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13742 + pos: -96.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,-14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13743 + pos: -95.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13744 + rot: -1.5707963267948966 rad + pos: -89.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11447 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13745 + pos: -88.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13746 + rot: -1.5707963267948966 rad + pos: -99.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11449 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13747 + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13750 + pos: -89.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11454 components: - type: Transform - pos: -76.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13751 + rot: -1.5707963267948966 rad + pos: -88.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11455 components: - type: Transform - pos: -75.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13752 + rot: -1.5707963267948966 rad + pos: -87.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11456 components: - type: Transform - pos: -62.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13753 + pos: -78.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11457 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13754 + pos: -77.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11458 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13896 + pos: -74.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11459 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13897 + pos: -77.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11460 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13898 + pos: -78.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13899 + pos: -75.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11462 components: - type: Transform - pos: -35.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13900 + rot: -1.5707963267948966 rad + pos: -75.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11463 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13901 + pos: -74.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13926 + pos: -66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,16.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13927 + pos: -65.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11466 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13928 + pos: -30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13929 + pos: -40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13930 + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13931 + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13932 + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13937 + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11472 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13938 + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13956 + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13957 + pos: -31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11475 components: - type: Transform - pos: -24.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13959 + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11476 components: - type: Transform - pos: -7.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13960 + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11477 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13961 + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13962 + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13963 + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11480 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11481 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13964 + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13965 + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13966 + rot: 3.141592653589793 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11484 components: - type: Transform - pos: -31.5,21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13967 + pos: 41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,26.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13968 + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13969 + pos: 40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13970 + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13971 + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13972 + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13973 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13991 + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11492 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13992 + pos: -66.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13993 + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13994 + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13996 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13997 + rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13999 + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14000 + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14001 + pos: 3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11500 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14006 + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11501 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14007 + pos: -5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11502 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14008 + pos: -4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11503 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14009 + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14010 + rot: 3.141592653589793 rad + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14011 + pos: -5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14012 + rot: 3.141592653589793 rad + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14013 + pos: -9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14014 + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14027 + pos: -66.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11510 components: - type: Transform - pos: -90.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14074 + rot: 3.141592653589793 rad + pos: -56.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11511 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14075 + pos: -71.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11512 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14077 + pos: -69.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14262 + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14263 + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14264 + pos: -48.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14265 + rot: 3.141592653589793 rad + pos: -54.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14266 + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11518 components: - type: Transform - pos: 8.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14267 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11519 components: - type: Transform - pos: 13.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14270 + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14272 + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11521 components: - type: Transform - pos: 23.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14273 + rot: 1.5707963267948966 rad + pos: -72.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11522 components: - type: Transform - pos: 29.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14274 + rot: 1.5707963267948966 rad + pos: -73.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11523 components: - type: Transform - pos: 37.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14275 + rot: -1.5707963267948966 rad + pos: -29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11524 components: - type: Transform - pos: 34.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14277 + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14278 + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14365 + rot: 3.141592653589793 rad + pos: -39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11527 components: - type: Transform - pos: -7.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14368 + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14369 + rot: 3.141592653589793 rad + pos: -98.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14370 + pos: -99.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11530 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14372 + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14373 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11532 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14374 + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11533 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14375 + pos: -66.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11534 components: - type: Transform - pos: -13.5,-21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14376 + rot: 3.141592653589793 rad + pos: -67.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14377 + pos: -55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14378 + pos: -57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14379 + rot: 1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14380 + pos: -67.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11539 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14381 + pos: -68.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11540 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11541 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14382 + pos: -71.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14383 + rot: 1.5707963267948966 rad + pos: -69.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11543 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14384 + pos: -71.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11544 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14386 + rot: -1.5707963267948966 rad + pos: -69.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14387 + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11546 components: - type: Transform - pos: -49.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14389 + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11547 components: - type: Transform - pos: -43.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14428 + rot: 3.141592653589793 rad + pos: -127.5,1.5 + parent: 2 + - uid: 11548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14429 + pos: -75.5,-11.5 + parent: 2 + - uid: 11549 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-17.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14430 + pos: -75.5,-13.5 + parent: 2 + - uid: 11550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14516 + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14517 + pos: -129.5,8.5 + parent: 2 + - uid: 11552 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15067 + pos: -116.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11553 components: - type: Transform - pos: 9.5,42.5 - parent: 89 - - uid: 15246 + rot: -1.5707963267948966 rad + pos: -121.5,5.5 + parent: 2 + - uid: 11554 components: - type: Transform - pos: 18.5,31.5 - parent: 89 - - uid: 15405 + pos: -121.5,2.5 + parent: 2 + - uid: 11555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,32.5 - parent: 89 - - uid: 15735 + rot: -1.5707963267948966 rad + pos: -122.5,-0.5 + parent: 2 + - uid: 11556 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15748 + rot: -1.5707963267948966 rad + pos: -121.5,-1.5 + parent: 2 + - uid: 11557 components: - type: Transform - pos: -114.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16396 + rot: 1.5707963267948966 rad + pos: -124.5,-1.5 + parent: 2 + - uid: 11558 components: - type: Transform - pos: 19.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16397 + rot: -1.5707963267948966 rad + pos: -124.5,-3.5 + parent: 2 + - uid: 11559 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16438 + pos: -129.5,-3.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -124.5,6.5 + parent: 2 + - uid: 11561 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16536 + pos: -130.5,9.5 + parent: 2 + - uid: 11562 components: - type: Transform - pos: -1.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16538 + pos: -121.5,9.5 + parent: 2 + - uid: 11563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16539 + rot: -1.5707963267948966 rad + pos: -124.5,1.5 + parent: 2 + - uid: 11564 components: - type: Transform - pos: 9.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16540 + rot: 1.5707963267948966 rad + pos: -124.5,2.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,5.5 + parent: 2 + - uid: 11566 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16541 + pos: -127.5,6.5 + parent: 2 + - uid: 11567 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16544 + pos: -120.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11569 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16547 + pos: -119.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11571 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16553 + pos: -120.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16658 + pos: -120.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11574 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 17098 + pos: -14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11575 components: - type: Transform - pos: -28.5,37.5 - parent: 89 - - uid: 17099 + pos: -92.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11576 components: - type: Transform - pos: -29.5,50.5 - parent: 89 - - uid: 17590 + pos: -93.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11578 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 89 - - uid: 18316 + pos: -56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18317 + pos: -56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18319 + rot: -1.5707963267948966 rad + pos: -55.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11581 components: - type: Transform - pos: 63.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18335 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19410 + pos: -14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 89 - - uid: 19531 + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11584 components: - type: Transform - pos: -27.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19532 + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11585 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19975 + pos: 2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11586 components: - type: Transform - pos: 23.5,37.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19976 + pos: 2.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21039 + pos: 6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11589 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 22449 + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11590 components: - type: Transform - pos: 45.5,9.5 - parent: 89 - - uid: 23966 + rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11591 components: - type: Transform - pos: -14.5,2.5 - parent: 22565 - - uid: 23967 + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11592 components: - type: Transform - pos: -26.5,6.5 - parent: 22565 - - uid: 23968 + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 22565 - - uid: 23969 + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 22565 - - uid: 23970 + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11595 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11596 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11597 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 22565 - - uid: 23971 + pos: 8.5,21.5 + parent: 2 + - uid: 11598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 22565 - - uid: 23972 + pos: -1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 22565 - - uid: 23973 + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 - parent: 22565 - - uid: 23974 + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 22565 - - uid: 23975 + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 22565 - - uid: 23976 + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11604 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 22565 -- proto: EmergencyMedipen - entities: - - uid: 21636 + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11605 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22652 + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11606 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22653 + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11607 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22654 + rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11608 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EmergencyOxygenTankFilled - entities: - - uid: 22210 + pos: -81.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11609 components: - type: Transform - pos: 51.87392,-8.591503 - parent: 89 -- proto: EmergencyRollerBed - entities: - - uid: 12665 + rot: 3.141592653589793 rad + pos: -84.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11610 components: - type: Transform - pos: 28.46604,20.857737 - parent: 89 - - uid: 14788 + rot: 3.141592653589793 rad + pos: -85.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11611 components: - type: Transform - pos: 28.481665,20.342112 - parent: 89 -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 15915 + pos: -82.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11612 components: - type: Transform - pos: 16.47677,23.62731 - parent: 89 - - uid: 20106 + pos: 11.5,24.5 + parent: 2 + - uid: 11613 components: - type: Transform - pos: 2.6214988,11.504413 - parent: 89 -- proto: Emitter - entities: - - uid: 8783 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 2 + - uid: 11614 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-8.5 - parent: 89 - - uid: 8784 + pos: 6.5,21.5 + parent: 2 + - uid: 11615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-7.5 - parent: 89 - - uid: 8785 + pos: 11.5,22.5 + parent: 2 + - uid: 11616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-6.5 - parent: 89 - - uid: 8786 + pos: 18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-5.5 - parent: 89 - - uid: 8788 + rot: 1.5707963267948966 rad + pos: -116.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-5.5 - parent: 89 - - uid: 8790 + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-6.5 - parent: 89 - - uid: 8791 + pos: 43.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-7.5 - parent: 89 - - uid: 8792 + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11622 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-8.5 - parent: 89 -- proto: EpinephrineChemistryBottle - entities: - - uid: 1665 + pos: 26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11623 components: - type: Transform - pos: 26.012112,13.75499 - parent: 89 - - uid: 6318 + pos: 26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11624 components: - type: Transform - pos: 26.11628,13.629903 - parent: 89 - - uid: 17699 + rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11625 components: - type: Transform - pos: -10.723903,17.760052 - parent: 89 -- proto: ExosuitFabricator - entities: - - uid: 185 + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11626 components: - type: Transform - pos: -22.5,-20.5 - parent: 89 - - uid: 23977 + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11627 components: - type: Transform - pos: -27.5,4.5 - parent: 22565 - - uid: 23978 + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11628 components: - type: Transform - pos: 3.5,4.5 - parent: 22565 -- proto: ExplosivePayload - entities: - - uid: 23979 + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11629 components: - type: Transform - pos: 4.7115273,11.752999 - parent: 22565 - - uid: 23980 + pos: -28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11630 components: - type: Transform - pos: 4.3209023,11.674874 - parent: 22565 -- proto: ExplosivesSignMed - entities: - - uid: 7474 + pos: -29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11631 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 9654 + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11632 components: - type: Transform - pos: 57.5,-16.5 - parent: 89 - - uid: 21331 + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11633 components: - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 21450 + pos: 47.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11634 components: - type: Transform - pos: 50.5,-34.5 - parent: 89 - - uid: 21778 + pos: 44.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11635 components: - type: Transform - pos: 38.5,-27.5 - parent: 89 - - uid: 21933 + rot: 1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11636 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 21954 + pos: 45.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11637 components: - type: Transform - pos: 39.5,-34.5 - parent: 89 - - uid: 25353 + pos: 48.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11638 components: - type: Transform - pos: 59.5,-32.5 - parent: 89 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 23981 + rot: 1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.050642,-17.142916 - parent: 22565 - - uid: 23982 + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.8145213,-16.995424 - parent: 22565 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 1855 + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11641 components: - type: Transform - pos: -11.5,16.5 - parent: 89 - - uid: 2227 + pos: 44.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11642 components: - type: Transform - pos: -84.5,5.5 - parent: 89 - - uid: 2934 + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11643 components: - type: Transform - pos: 33.5,10.5 - parent: 89 - - uid: 2937 + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11644 components: - type: Transform - pos: 33.5,5.5 - parent: 89 - - uid: 2938 + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11645 components: - type: Transform - pos: 54.5,1.5 - parent: 89 - - uid: 2939 + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11646 components: - type: Transform - pos: 54.5,7.5 - parent: 89 - - uid: 2941 + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11647 components: - type: Transform - pos: 63.5,9.5 - parent: 89 - - uid: 3713 + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11648 components: - type: Transform - pos: -42.5,1.5 - parent: 89 - - uid: 5349 + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 11649 components: - type: Transform - pos: -61.5,2.5 - parent: 89 - - uid: 5350 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 11650 components: - type: Transform - pos: -68.5,-14.5 - parent: 89 - - uid: 5351 + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11651 components: - type: Transform - pos: -34.5,6.5 - parent: 89 - - uid: 5352 + rot: 3.141592653589793 rad + pos: -92.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11652 components: - type: Transform - pos: -76.5,6.5 - parent: 89 - - uid: 7513 + rot: 1.5707963267948966 rad + pos: -92.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11653 components: - type: Transform - pos: -96.5,1.5 - parent: 89 - - uid: 7708 + pos: -100.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11654 components: - type: Transform - pos: -97.5,-10.5 - parent: 89 - - uid: 15475 + rot: 1.5707963267948966 rad + pos: -101.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11655 components: - type: Transform - pos: -7.5,4.5 - parent: 89 - - uid: 19803 + pos: -123.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11656 components: - type: Transform - pos: 19.5,13.5 - parent: 89 - - uid: 21542 + rot: 3.141592653589793 rad + pos: -100.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 89 - - uid: 21543 + rot: 3.141592653589793 rad + pos: -125.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 89 -- proto: FaxMachineBase - entities: - - uid: 4356 + rot: -1.5707963267948966 rad + pos: -124.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11659 components: - type: Transform - pos: 33.5,-0.5 - parent: 89 - - type: FaxMachine - name: Кабинет ГСБ - - uid: 6099 + rot: 3.141592653589793 rad + pos: -122.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11660 components: - type: Transform - pos: -48.5,11.5 - parent: 89 - - type: FaxMachine - name: Библиотека - - uid: 14525 + rot: -1.5707963267948966 rad + pos: -136.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11661 components: - type: Transform - pos: -76.5,-5.5 - parent: 89 - - type: FaxMachine - name: Офис АВД - - uid: 15851 + rot: -1.5707963267948966 rad + pos: -130.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11662 components: - type: Transform - pos: 23.5,29.5 - parent: 89 - - type: FaxMachine - name: Псих. Диспансер - - uid: 19894 + rot: 1.5707963267948966 rad + pos: -130.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11663 components: - type: Transform - pos: 26.5,37.5 - parent: 89 -- proto: FaxMachineCaptain - entities: - - uid: 16863 + rot: -1.5707963267948966 rad + pos: -99.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11664 components: - type: Transform - pos: 57.5,6.5 - parent: 89 - - type: FaxMachine - name: Офис капитана -- proto: FenceMetalCorner - entities: - - uid: 22227 + rot: -1.5707963267948966 rad + pos: -103.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-13.5 - parent: 89 - - uid: 22235 + rot: -1.5707963267948966 rad + pos: -128.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-13.5 - parent: 89 - - uid: 22236 + pos: -103.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 89 -- proto: FenceMetalStraight - entities: - - uid: 4179 + rot: 3.141592653589793 rad + pos: -128.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11668 + components: + - type: Transform + pos: -120.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 7174 + pos: -123.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 89 - - uid: 9817 + pos: -125.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11671 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 89 - - uid: 21291 + pos: -124.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-14.5 - parent: 89 - - uid: 22131 + pos: -128.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11673 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-15.5 - parent: 89 - - uid: 22259 + pos: -131.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 89 -- proto: FigureSpawner - entities: - - uid: 6143 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11675 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 6144 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11676 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 16283 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11677 components: - type: Transform - pos: 6.5,27.5 - parent: 89 -- proto: filingCabinet - entities: - - uid: 3948 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11678 components: - type: Transform - pos: 10.5,-2.5 - parent: 89 - - uid: 5325 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11679 components: - type: Transform - pos: 8.5,-8.5 - parent: 89 - - uid: 5360 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11680 components: - type: Transform - pos: -61.5,-6.5 - parent: 89 - - uid: 6173 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11681 components: - type: Transform - pos: -20.5,9.5 - parent: 89 - - uid: 6826 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11682 components: - type: Transform - pos: -43.5,0.5 - parent: 89 - - uid: 8107 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11683 components: - type: Transform - pos: -87.5,12.5 - parent: 89 - - uid: 8163 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11684 components: - type: Transform - pos: -58.5,9.5 - parent: 89 - - uid: 8335 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11685 components: - type: Transform - pos: -62.5,22.5 - parent: 89 - - uid: 12809 + rot: 1.5707963267948966 rad + pos: -94.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 23805 components: - type: Transform - pos: 7.5,9.5 - parent: 89 - - uid: 12839 + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 23711 + - uid: 23806 components: - type: Transform - pos: 16.5,6.5 - parent: 89 - - uid: 15082 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 23711 + - uid: 23807 components: - type: Transform - pos: -2.5,20.5 - parent: 89 - - uid: 15310 + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23808 components: - type: Transform - pos: 42.5,6.5 - parent: 89 - - uid: 15381 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23809 components: - type: Transform - pos: -25.5,7.5 - parent: 89 -- proto: filingCabinetDrawer - entities: - - uid: 12815 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23810 components: - type: Transform - pos: 28.5,12.5 - parent: 89 - - uid: 16938 + pos: 5.5,-4.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 24115 components: - type: Transform - pos: -21.5,-15.5 - parent: 89 - - uid: 16939 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 24116 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 16985 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24117 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 - - uid: 17010 + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24118 components: - type: Transform - pos: 28.5,11.5 - parent: 89 -- proto: filingCabinetRandom - entities: - - uid: 16525 + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24119 components: - type: Transform - pos: 20.5,21.5 - parent: 89 - - uid: 17594 + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25930 components: - type: Transform - pos: 16.5,19.5 - parent: 89 - - uid: 19954 + rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25931 components: - type: Transform - pos: 19.5,21.5 - parent: 89 -- proto: filingCabinetTall - entities: - - uid: 6032 + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25932 components: - type: Transform - pos: -53.5,7.5 - parent: 89 - - uid: 12121 + pos: -17.5,-10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25933 components: - type: Transform - pos: -12.5,12.5 - parent: 89 - - uid: 15083 + pos: -26.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25934 components: - type: Transform - pos: 25.5,31.5 - parent: 89 - - uid: 15084 + pos: -10.5,-12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25935 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15491 + rot: -1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25936 components: - type: Transform - pos: -86.5,1.5 - parent: 89 - - uid: 15601 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25937 components: - type: Transform - pos: -24.5,9.5 - parent: 89 - - uid: 17303 + pos: -12.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25938 components: - type: Transform - pos: -3.5,-0.5 - parent: 89 -- proto: FireAlarm - entities: - - uid: 2011 + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25939 components: - type: Transform - pos: -100.5,-11.5 - parent: 89 - - type: DeviceList - devices: - - 2013 - - 2004 - - 2005 - - 2007 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2930 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-8.5 - parent: 89 - - type: DeviceList - devices: - - 2912 - - 2932 - - 2907 - - 2007 - - 2933 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3072 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-12.5 - parent: 89 - - type: DeviceList - devices: - - 2004 - - 2005 - - 2003 - - 2002 - - 3085 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3101 + pos: -7.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25942 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-11.5 - parent: 89 - - type: DeviceList - devices: - - 3099 - - 3097 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6698 + pos: -7.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25943 components: - type: Transform - pos: -64.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6624 - - 6614 - - 6615 - - 6616 - - 6617 - - 6618 - - 6619 - - 6620 - - 6613 - - 6612 - - 6611 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6703 + rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25944 components: - type: Transform - pos: -52.5,-8.5 - parent: 89 - - type: DeviceList - devices: - - 6701 - - 6724 - - 16298 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6751 + pos: -11.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 89 - - type: DeviceList - devices: - - 6750 - - 6617 - - 6618 - - 6619 - - 6620 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6784 + pos: -31.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25946 components: - type: Transform - pos: -52.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6772 - - 6771 - - 6769 - - 6789 - - 6788 - - 6787 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7396 + rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25947 components: - type: Transform - pos: -90.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 7395 - - 7393 - - 7392 - - 7391 - - 2933 - - 2932 - - 2912 - - 7388 - - 7389 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7420 + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-2.5 - parent: 89 - - type: DeviceList - devices: - - 7412 - - 7411 - - 7410 - - 3099 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7424 + pos: 2.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25949 components: - type: Transform - pos: -98.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 7391 - - 7392 - - 7430 - - 7411 - - 7410 - - 2003 - - 2002 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7464 + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 7459 - - 7393 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7885 + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25951 components: - type: Transform - pos: -85.5,-12.5 - parent: 89 - - type: DeviceList - devices: - - 7478 - - 7383 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9441 + rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25952 components: - type: Transform - pos: 21.5,4.5 - parent: 89 - - type: DeviceList - devices: - - 9437 - - 9436 - - 9435 - - 9443 - - 9438 - - 9440 - - 9439 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9454 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25953 components: - type: Transform - pos: -2.5,4.5 - parent: 89 - - type: DeviceList - devices: - - 9444 - - 9445 - - 9446 - - 9439 - - 9440 - - 9438 - - 9456 - - 9447 - - 9448 - - 9449 - - 9450 - - 9451 - - 9452 - - 9453 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9463 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25954 components: - type: Transform - pos: -13.5,5.5 - parent: 89 - - type: DeviceList - devices: - - 9457 - - 9458 - - 9459 - - 9460 - - 9461 - - 9462 - - 9446 - - 9445 - - 9444 - - 9465 - - 9466 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9470 + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25955 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 9468 - - 9467 - - 9460 - - 9459 - - 9458 - - 9469 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9481 + pos: -17.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 89 - - type: DeviceList - devices: - - 9468 - - 9467 - - 9477 - - 9476 - - 9475 - - 9474 - - 9473 - - 9472 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9491 + pos: -17.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25957 components: - type: Transform - pos: -39.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 9473 - - 9474 - - 9486 - - 9489 - - 9488 - - 9487 - - 9485 - - 9484 - - 9483 - - 9490 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9500 + pos: -30.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25958 components: - type: Transform - pos: -54.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 9487 - - 9488 - - 9489 - - 9502 - - 9498 - - 6616 - - 6615 - - 6614 - - 9496 - - 9419 - - 6611 - - 6612 - - 6613 - - 9499 - - 6802 - - 6799 - - 6863 - - 6862 - - 6824 - - 6803 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9527 + pos: -29.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25959 components: - type: Transform - pos: -65.5,12.5 - parent: 89 - - type: DeviceList - devices: - - 9496 - - 9419 - - 9560 - - 9561 - - 9544 - - 9545 - - 9514 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9528 + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25960 components: - type: Transform - pos: -31.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9477 - - 9476 - - 9475 - - 9523 - - 9521 - - 9524 - - 9525 - - 9526 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9530 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25961 components: - type: Transform - pos: -40.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9524 - - 9525 - - 9526 - - 9522 - - 9531 - - 9532 - - 9533 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9540 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25962 components: - type: Transform - pos: -47.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9531 - - 9532 - - 9533 - - 9536 - - 9535 - - 9534 - - 9520 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9543 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25963 components: - type: Transform - pos: -57.5,15.5 - parent: 89 - - type: DeviceList - devices: - - 9547 - - 9546 - - 9516 - - 9544 - - 9545 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9553 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27623 components: - type: Transform - pos: -59.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9534 - - 9535 - - 9536 - - 9549 - - 9550 - - 9552 - - 9517 - - 9554 - - 9555 - - 9556 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9559 + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27624 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27625 components: - type: Transform - pos: -75.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 9562 - - 9563 - - 9560 - - 9561 - - 9515 - - 9554 - - 9555 - - 9556 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9568 + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27626 components: - type: Transform - pos: -84.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 7389 - - 7388 - - 9562 - - 9563 - - 9569 - - 15772 - - 15853 - - 15854 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9578 + pos: 4.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27627 components: - type: Transform - pos: -27.5,-9.5 - parent: 89 - - type: DeviceList - devices: - - 9485 - - 9484 - - 9483 - - 9573 - - 9575 - - 9576 - - 9577 - - 9449 - - 9448 - - 9447 - - 9571 - - 9579 - - 9574 - - 9572 - - 9581 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9583 + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 89 - - type: DeviceList - devices: - - 9452 - - 9453 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9586 + pos: 1.5,-1.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeFourway + entities: + - uid: 11686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 9435 - - 9436 - - 9437 - - 9590 - - 9589 - - 9587 - - 9588 - - 9585 - - 9591 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9592 + pos: -109.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 89 - - type: DeviceList - devices: - - 9572 - - 9574 - - 9466 - - 9465 - - 9595 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9969 + pos: -12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,20.5 - parent: 89 - - type: DeviceList - devices: - - 9549 - - 9550 - - 9552 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10056 + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 10051 - - 10057 - - 10055 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10177 + pos: -103.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,22.5 - parent: 89 - - type: DeviceList - devices: - - 10118 - - 10129 - - 10174 - - 10176 - - 10175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14276 + pos: -95.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 89 - - type: DeviceList - devices: - - 14284 - - 14285 - - 12847 - - 12851 - - 12850 - - 9462 - - 9461 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17139 + pos: -94.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 89 - - type: DeviceList - devices: - - 17138 - - 17137 - - 17017 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17140 + pos: -107.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11693 components: - type: Transform - pos: -28.5,46.5 - parent: 89 - - type: DeviceList - devices: - - 17136 - - 17135 - - 17088 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20102 + pos: -49.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11694 components: - type: Transform - pos: -124.5,-0.5 - parent: 89 - - type: DeviceList - devices: - - 9011 - - 9010 - - 8972 - - 8973 - - 8580 - - 117 - - 8579 - - 115 - - 12128 - - 20107 - - 20103 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20105 + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 8758 - - 15725 - - 19409 - - 10758 - - 8531 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21679 + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 21627 - - type: DeviceList - devices: - - 21683 - - 21682 - - 21681 - - 21680 - - 21631 - - type: AtmosDevice - joinedGrid: 21627 - - uid: 23983 + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 22565 - - type: DeviceList - devices: - - 24009 - - 24010 - - 22639 - - 24012 - - 24011 - - 24014 - - 24013 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25419 + pos: 52.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-21.5 - parent: 89 - - type: DeviceList - devices: - - 25418 - - 25416 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25420 + pos: -2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-21.5 - parent: 89 - - type: DeviceList - devices: - - 25418 - - 25417 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25504 + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 18153 - - type: DeviceList - devices: - - 25505 - - 25507 - - 25508 - - 25506 - - 25424 - - 25425 - - 25426 - - type: AtmosDevice - joinedGrid: 18153 -- proto: FireAlarmElectronics - entities: - - uid: 7047 + pos: -0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11701 components: - type: Transform - pos: -98.713394,-8.672226 - parent: 89 - - uid: 7048 + pos: -2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11702 components: - type: Transform - pos: -98.307144,-8.750351 - parent: 89 -- proto: FireAxeCabinetFilled - entities: - - uid: 1522 + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,4.5 - parent: 89 - - uid: 2638 + pos: 3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11704 components: - type: Transform - pos: -99.5,-11.5 - parent: 89 -- proto: FireExtinguisher - entities: - - uid: 5334 + pos: -54.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11705 components: - type: Transform - pos: -46.266693,-10.403386 - parent: 89 - - uid: 5335 + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11706 components: - type: Transform - pos: -46.50107,-10.403386 - parent: 89 - - uid: 5344 + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11707 components: - type: Transform - pos: -46.399864,-10.379426 - parent: 89 - - uid: 14707 + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11708 components: - type: Transform - pos: -78.550995,-9.487332 - parent: 89 - - uid: 19585 + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11709 components: - type: Transform - pos: -2.512826,-41.501106 - parent: 89 -- proto: Firelock - entities: - - uid: 3099 + pos: 51.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-6.5 - parent: 89 - - uid: 9435 + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 89 - - uid: 9436 + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 89 - - uid: 9437 + pos: -73.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 - parent: 89 - - uid: 9438 + pos: -72.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11714 components: - type: Transform - pos: 1.5,1.5 - parent: 89 - - uid: 9439 + pos: 25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11715 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 9440 + pos: 23.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11716 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 9444 + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11717 components: - type: Transform - pos: -4.5,1.5 - parent: 89 - - uid: 9445 + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11718 components: - type: Transform - pos: -4.5,2.5 - parent: 89 - - uid: 9446 + pos: 7.5,22.5 + parent: 2 + - uid: 11719 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 9447 + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11720 components: - type: Transform - pos: -4.5,-11.5 - parent: 89 - - uid: 9448 + pos: -30.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11721 components: - type: Transform - pos: -4.5,-12.5 - parent: 89 - - uid: 9449 + pos: -30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11722 components: - type: Transform - pos: -4.5,-13.5 - parent: 89 - - uid: 9450 + pos: -29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11723 components: - type: Transform - pos: -2.5,-18.5 - parent: 89 - - uid: 9451 + pos: -29.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11724 components: - type: Transform - pos: -0.5,-18.5 - parent: 89 - - uid: 9452 + pos: -30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11725 components: - type: Transform - pos: 1.5,-12.5 - parent: 89 - - uid: 9453 + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11726 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 - - uid: 9458 + pos: 40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11727 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - uid: 9459 + pos: -92.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11728 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 9460 + pos: -102.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11729 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 9461 + pos: -103.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25964 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - uid: 9462 + pos: -13.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25965 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 9465 + pos: -31.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25966 components: - type: Transform - pos: -17.5,0.5 - parent: 89 - - uid: 9466 + pos: -10.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25967 components: - type: Transform - pos: -19.5,0.5 - parent: 89 - - uid: 9467 + pos: 7.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25968 components: - type: Transform - pos: -28.5,4.5 - parent: 89 - - uid: 9468 + pos: -29.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25969 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 9473 + pos: -20.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 - parent: 89 - - uid: 9474 + pos: 1.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,4.5 - parent: 89 - - uid: 9475 + pos: 0.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 89 - - uid: 9476 + pos: 1.5,-6.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 11730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 89 - - uid: 9477 + pos: -136.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11731 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,6.5 - parent: 89 - - uid: 9483 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 89 - - uid: 9484 + pos: -96.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11732 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 9485 + rot: -1.5707963267948966 rad + pos: -82.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11733 components: - type: Transform - pos: -38.5,-11.5 - parent: 89 - - uid: 9486 + rot: 1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11734 components: - type: Transform - pos: -40.5,6.5 - parent: 89 - - uid: 9487 + rot: 3.141592653589793 rad + pos: -96.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11735 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - uid: 9488 + rot: 1.5707963267948966 rad + pos: -135.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11736 components: - type: Transform - pos: -42.5,4.5 - parent: 89 - - uid: 9489 + pos: -101.5,-24.5 + parent: 2 + - uid: 11737 components: - type: Transform - pos: -42.5,5.5 - parent: 89 - - uid: 9589 + rot: 3.141592653589793 rad + pos: -128.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11738 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 9590 + rot: 1.5707963267948966 rad + pos: -132.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11739 components: - type: Transform - pos: 42.5,0.5 - parent: 89 - - uid: 9591 + rot: -1.5707963267948966 rad + pos: -99.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11740 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 23984 + pos: -101.5,-23.5 + parent: 2 + - uid: 11741 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,8.5 - parent: 22565 - - uid: 23985 + pos: -107.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 22565 - - uid: 23986 + rot: 3.141592653589793 rad + pos: -120.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 - - uid: 23987 + pos: -109.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - uid: 23988 + pos: -122.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 22565 - - uid: 23989 + rot: 1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 22565 - - uid: 23990 + pos: -136.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11747 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 22565 - - uid: 23991 + pos: -110.5,-18.5 + parent: 2 + - uid: 11748 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 22565 - - uid: 23992 + pos: -110.5,-16.5 + parent: 2 + - uid: 11749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 22565 - - uid: 23993 + pos: -109.5,-16.5 + parent: 2 + - uid: 11750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 22565 - - uid: 23994 + pos: -108.5,-16.5 + parent: 2 + - uid: 11751 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 22565 - - uid: 23995 + pos: -110.5,-17.5 + parent: 2 + - uid: 11752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 22565 - - uid: 23996 + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 22565 - - uid: 23997 + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 22565 - - uid: 23998 + rot: 1.5707963267948966 rad + pos: -123.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 22565 - - uid: 23999 + rot: 1.5707963267948966 rad + pos: -108.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 22565 - - uid: 24000 + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,12.5 - parent: 22565 - - uid: 24001 + pos: 10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,12.5 - parent: 22565 - - uid: 24002 + rot: 1.5707963267948966 rad + pos: -98.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 22565 - - uid: 24003 + pos: -122.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,12.5 - parent: 22565 - - uid: 24004 + rot: 3.141592653589793 rad + pos: -101.5,-24.5 + parent: 2 + - uid: 11761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 22565 - - uid: 24005 + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 22565 - - uid: 24006 + rot: 1.5707963267948966 rad + pos: -107.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 22565 - - uid: 24007 + pos: -107.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 - - uid: 25505 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11765 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 18153 - - uid: 25506 + pos: 11.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 18153 - - uid: 25507 + pos: 11.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 18153 - - uid: 25508 + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 18153 -- proto: FirelockEdge - entities: - - uid: 6724 + pos: -66.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 89 - - uid: 6787 + rot: 3.141592653589793 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 11770 components: - type: Transform - pos: -52.5,-4.5 - parent: 89 - - uid: 6788 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 11771 components: - type: Transform - pos: -51.5,-4.5 - parent: 89 - - uid: 6789 + rot: 3.141592653589793 rad + pos: -86.5,-21.5 + parent: 2 + - uid: 11772 components: - type: Transform - pos: -50.5,-4.5 - parent: 89 - - uid: 7478 + rot: 3.141592653589793 rad + pos: -86.5,-20.5 + parent: 2 + - uid: 11773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-11.5 - parent: 89 - - uid: 9581 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 11774 components: - type: Transform - pos: -11.5,-13.5 - parent: 89 - - uid: 9587 + rot: 3.141592653589793 rad + pos: -88.5,-21.5 + parent: 2 + - uid: 11775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 89 - - uid: 9588 + rot: 3.141592653589793 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 11776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,9.5 - parent: 89 - - uid: 10055 + rot: 3.141592653589793 rad + pos: -87.5,-24.5 + parent: 2 + - uid: 11777 components: - type: Transform - pos: 58.5,1.5 - parent: 89 - - uid: 10057 + rot: 3.141592653589793 rad + pos: -87.5,-23.5 + parent: 2 + - uid: 11778 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 89 - - uid: 16298 + pos: -87.5,-22.5 + parent: 2 + - uid: 11779 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 - - uid: 17135 + pos: -93.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 89 - - uid: 17136 + rot: 1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,45.5 - parent: 89 - - uid: 17137 + rot: 1.5707963267948966 rad + pos: -131.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11782 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,37.5 - parent: 89 - - uid: 17138 + pos: -100.5,-22.5 + parent: 2 + - uid: 11783 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,37.5 - parent: 89 - - uid: 21680 + pos: -96.5,-21.5 + parent: 2 + - uid: 11784 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 21627 - - uid: 21681 + pos: -94.5,-21.5 + parent: 2 + - uid: 11785 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 21627 - - uid: 21682 + pos: -94.5,-22.5 + parent: 2 + - uid: 11786 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 21627 - - uid: 24008 + pos: -94.5,-20.5 + parent: 2 + - uid: 11787 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-24.5 - parent: 22565 - - uid: 24009 + pos: -96.5,-22.5 + parent: 2 + - uid: 11788 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 22565 - - uid: 24010 + pos: -96.5,-20.5 + parent: 2 + - uid: 11789 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 22565 - - uid: 24011 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 22565 - - uid: 24012 + pos: -92.5,-22.5 + parent: 2 + - uid: 11790 components: - type: Transform - pos: -15.5,-26.5 - parent: 22565 - - uid: 24013 + rot: 3.141592653589793 rad + pos: -92.5,-21.5 + parent: 2 + - uid: 11791 components: - type: Transform - pos: -11.5,-26.5 - parent: 22565 - - uid: 24014 + rot: 3.141592653589793 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 11792 components: - type: Transform - pos: -9.5,-26.5 - parent: 22565 -- proto: FirelockElectronics - entities: - - uid: 7045 + rot: 3.141592653589793 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 11793 components: - type: Transform - pos: -98.66652,-9.219101 - parent: 89 - - uid: 7046 + rot: 3.141592653589793 rad + pos: -98.5,-21.5 + parent: 2 + - uid: 11794 components: - type: Transform - pos: -98.338394,-9.359726 - parent: 89 -- proto: FirelockGlass - entities: - - uid: 114 + rot: 3.141592653589793 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 11795 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,23.5 - parent: 89 - - uid: 115 + pos: -100.5,-21.5 + parent: 2 + - uid: 11796 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,9.5 - parent: 89 - - uid: 117 + pos: -100.5,-20.5 + parent: 2 + - uid: 11797 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,-1.5 - parent: 89 - - uid: 121 + pos: -101.5,-22.5 + parent: 2 + - uid: 11798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 89 - - uid: 2002 + rot: 3.141592653589793 rad + pos: -101.5,-23.5 + parent: 2 + - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-17.5 - parent: 89 - - uid: 2003 + pos: -101.5,-21.5 + parent: 2 + - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-16.5 - parent: 89 - - uid: 2004 + pos: -101.5,-20.5 + parent: 2 + - uid: 11801 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-13.5 - parent: 89 - - uid: 2005 + pos: -99.5,-24.5 + parent: 2 + - uid: 11802 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-12.5 - parent: 89 - - uid: 2007 + pos: -99.5,-23.5 + parent: 2 + - uid: 11803 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-12.5 - parent: 89 - - uid: 2912 + pos: -99.5,-22.5 + parent: 2 + - uid: 11804 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-6.5 - parent: 89 - - uid: 2932 + pos: -99.5,-21.5 + parent: 2 + - uid: 11805 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 2933 + pos: -99.5,-20.5 + parent: 2 + - uid: 11806 components: - type: Transform - pos: -95.5,-6.5 - parent: 89 - - uid: 3026 + rot: 3.141592653589793 rad + pos: -97.5,-24.5 + parent: 2 + - uid: 11807 components: - type: Transform - pos: 41.5,9.5 - parent: 89 - - uid: 3417 + rot: 3.141592653589793 rad + pos: -97.5,-23.5 + parent: 2 + - uid: 11808 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 3419 + rot: 3.141592653589793 rad + pos: -97.5,-22.5 + parent: 2 + - uid: 11809 components: - type: Transform - pos: 46.5,0.5 - parent: 89 - - uid: 5414 + rot: 3.141592653589793 rad + pos: -97.5,-21.5 + parent: 2 + - uid: 11810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 89 - - uid: 5426 + rot: 3.141592653589793 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 11811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 89 - - uid: 6611 + rot: 3.141592653589793 rad + pos: -95.5,-21.5 + parent: 2 + - uid: 11812 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,0.5 - parent: 89 - - uid: 6612 + pos: -95.5,-20.5 + parent: 2 + - uid: 11813 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-0.5 - parent: 89 - - uid: 6613 + pos: -95.5,-22.5 + parent: 2 + - uid: 11814 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-1.5 - parent: 89 - - uid: 6614 + pos: -95.5,-23.5 + parent: 2 + - uid: 11815 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 89 - - uid: 6615 + pos: -95.5,-24.5 + parent: 2 + - uid: 11816 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 89 - - uid: 6616 + pos: -95.5,-20.5 + parent: 2 + - uid: 11817 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-1.5 - parent: 89 - - uid: 6617 + pos: -93.5,-24.5 + parent: 2 + - uid: 11818 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-3.5 - parent: 89 - - uid: 6618 + pos: -93.5,-23.5 + parent: 2 + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-3.5 - parent: 89 - - uid: 6619 + pos: -93.5,-22.5 + parent: 2 + - uid: 11820 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-3.5 - parent: 89 - - uid: 6620 + pos: -93.5,-21.5 + parent: 2 + - uid: 11821 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-3.5 - parent: 89 - - uid: 6769 + pos: -93.5,-20.5 + parent: 2 + - uid: 11822 components: - type: Transform - pos: -50.5,2.5 - parent: 89 - - uid: 6771 + rot: 1.5707963267948966 rad + pos: -97.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11823 components: - type: Transform - pos: -49.5,2.5 - parent: 89 - - uid: 7388 + rot: 3.141592653589793 rad + pos: -100.5,-19.5 + parent: 2 + - uid: 11824 components: - type: Transform - pos: -89.5,0.5 - parent: 89 - - uid: 7389 + rot: 3.141592653589793 rad + pos: -98.5,-19.5 + parent: 2 + - uid: 11825 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 7391 + rot: 3.141592653589793 rad + pos: -96.5,-19.5 + parent: 2 + - uid: 11826 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 7392 + rot: 3.141592653589793 rad + pos: -94.5,-19.5 + parent: 2 + - uid: 11827 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 7393 + rot: 3.141592653589793 rad + pos: -92.5,-19.5 + parent: 2 + - uid: 11828 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 7410 + rot: -1.5707963267948966 rad + pos: -101.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11829 components: - type: Transform - pos: -106.5,-4.5 - parent: 89 - - uid: 7411 + rot: -1.5707963267948966 rad + pos: -99.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11830 components: - type: Transform - pos: -106.5,-3.5 - parent: 89 - - uid: 8531 + rot: -1.5707963267948966 rad + pos: -97.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,11.5 - parent: 89 - - uid: 8532 + rot: -1.5707963267948966 rad + pos: -95.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-7.5 - parent: 89 - - uid: 8579 + pos: -102.5,-20.5 + parent: 2 + - uid: 11833 components: - type: Transform rot: 3.141592653589793 rad - pos: -127.5,-6.5 - parent: 89 - - uid: 8580 + pos: -101.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11834 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,17.5 - parent: 89 - - uid: 9419 - components: - - type: Transform - pos: -66.5,6.5 - parent: 89 - - uid: 9496 + pos: -87.5,-21.5 + parent: 2 + - uid: 11835 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - uid: 9498 + rot: 3.141592653589793 rad + pos: -99.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11836 components: - type: Transform - pos: -55.5,-4.5 - parent: 89 - - uid: 9499 + rot: 3.141592653589793 rad + pos: -100.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11837 components: - type: Transform - pos: -70.5,-4.5 - parent: 89 - - uid: 9523 + rot: 1.5707963267948966 rad + pos: -100.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11838 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 9524 + rot: 1.5707963267948966 rad + pos: -98.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11839 components: - type: Transform - pos: -34.5,16.5 - parent: 89 - - uid: 9525 + rot: 1.5707963267948966 rad + pos: -96.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11840 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 9526 + rot: 1.5707963267948966 rad + pos: -94.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11841 components: - type: Transform - pos: -34.5,18.5 - parent: 89 - - uid: 9531 + pos: -97.5,-17.5 + parent: 2 + - uid: 11842 components: - type: Transform - pos: -46.5,16.5 - parent: 89 - - uid: 9532 + pos: -97.5,-18.5 + parent: 2 + - uid: 11843 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 9533 + pos: -95.5,-17.5 + parent: 2 + - uid: 11844 components: - type: Transform - pos: -46.5,18.5 - parent: 89 - - uid: 9534 + pos: -95.5,-18.5 + parent: 2 + - uid: 11845 components: - type: Transform - pos: -50.5,16.5 - parent: 89 - - uid: 9535 + pos: -93.5,-17.5 + parent: 2 + - uid: 11846 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 9536 + pos: -93.5,-18.5 + parent: 2 + - uid: 11847 components: - type: Transform - pos: -50.5,18.5 - parent: 89 - - uid: 9544 + pos: -102.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11848 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 9545 + pos: -102.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11849 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - uid: 9546 + rot: 1.5707963267948966 rad + pos: -92.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11850 components: - type: Transform - pos: -54.5,15.5 - parent: 89 - - uid: 9547 + rot: 1.5707963267948966 rad + pos: -90.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11851 components: - type: Transform - pos: -52.5,15.5 - parent: 89 - - uid: 9549 + rot: 1.5707963267948966 rad + pos: -122.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11852 components: - type: Transform - pos: -55.5,19.5 - parent: 89 - - uid: 9550 + rot: -1.5707963267948966 rad + pos: -108.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11853 components: - type: Transform - pos: -56.5,19.5 - parent: 89 - - uid: 9552 + rot: 1.5707963267948966 rad + pos: -98.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11854 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 9554 + pos: -95.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11855 components: - type: Transform - pos: -70.5,16.5 - parent: 89 - - uid: 9555 + pos: -95.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11856 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 9556 + rot: 1.5707963267948966 rad + pos: -120.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11857 components: - type: Transform - pos: -70.5,18.5 - parent: 89 - - uid: 9560 + rot: 3.141592653589793 rad + pos: -120.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11858 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 9561 + rot: 3.141592653589793 rad + pos: -91.5,-24.5 + parent: 2 + - uid: 11859 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - uid: 9562 + rot: 3.141592653589793 rad + pos: -91.5,-23.5 + parent: 2 + - uid: 11860 components: - type: Transform - pos: -76.5,8.5 - parent: 89 - - uid: 9563 + rot: 3.141592653589793 rad + pos: -91.5,-22.5 + parent: 2 + - uid: 11861 components: - type: Transform - pos: -76.5,9.5 - parent: 89 - - uid: 9571 + rot: 3.141592653589793 rad + pos: -91.5,-21.5 + parent: 2 + - uid: 11862 components: - type: Transform - pos: -9.5,-10.5 - parent: 89 - - uid: 9572 + rot: 3.141592653589793 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 11863 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 9573 + rot: 3.141592653589793 rad + pos: -89.5,-24.5 + parent: 2 + - uid: 11864 components: - type: Transform - pos: -22.5,-14.5 - parent: 89 - - uid: 9574 + rot: 3.141592653589793 rad + pos: -89.5,-23.5 + parent: 2 + - uid: 11865 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 9575 + rot: 3.141592653589793 rad + pos: -89.5,-22.5 + parent: 2 + - uid: 11866 components: - type: Transform - pos: -20.5,-14.5 - parent: 89 - - uid: 9576 + rot: 3.141592653589793 rad + pos: -89.5,-21.5 + parent: 2 + - uid: 11867 components: - type: Transform - pos: -19.5,-14.5 - parent: 89 - - uid: 9577 + rot: 3.141592653589793 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 11868 components: - type: Transform - pos: -18.5,-14.5 - parent: 89 - - uid: 10175 + rot: 1.5707963267948966 rad + pos: -91.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11869 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 10176 + rot: 3.141592653589793 rad + pos: -90.5,-22.5 + parent: 2 + - uid: 11870 components: - type: Transform - pos: -30.5,19.5 - parent: 89 - - uid: 10668 + rot: 1.5707963267948966 rad + pos: -88.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11871 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 10758 + rot: 3.141592653589793 rad + pos: -90.5,-21.5 + parent: 2 + - uid: 11872 components: - type: Transform rot: 3.141592653589793 rad - pos: -126.5,13.5 - parent: 89 - - uid: 11064 + pos: -90.5,-20.5 + parent: 2 + - uid: 11873 components: - type: Transform - pos: 26.5,30.5 - parent: 89 - - uid: 12128 + rot: -1.5707963267948966 rad + pos: -89.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-10.5 - parent: 89 - - uid: 12850 + pos: -91.5,-18.5 + parent: 2 + - uid: 11875 components: - type: Transform - pos: -8.5,7.5 - parent: 89 - - uid: 12851 + pos: -91.5,-17.5 + parent: 2 + - uid: 11876 components: - type: Transform - pos: -8.5,8.5 - parent: 89 - - uid: 14284 + pos: -89.5,-18.5 + parent: 2 + - uid: 11877 components: - type: Transform - pos: -11.5,10.5 - parent: 89 - - uid: 14285 + pos: -89.5,-17.5 + parent: 2 + - uid: 11878 components: - type: Transform - pos: -10.5,10.5 - parent: 89 - - uid: 14330 + pos: -87.5,-18.5 + parent: 2 + - uid: 11879 components: - type: Transform - pos: 22.5,30.5 - parent: 89 - - uid: 15047 + pos: -87.5,-17.5 + parent: 2 + - uid: 11880 components: - type: Transform - pos: -1.5,24.5 - parent: 89 - - uid: 15049 + pos: -88.5,-19.5 + parent: 2 + - uid: 11881 components: - type: Transform - pos: -2.5,24.5 - parent: 89 - - uid: 15050 + pos: -90.5,-19.5 + parent: 2 + - uid: 11882 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 15289 + pos: -86.5,-19.5 + parent: 2 + - uid: 11883 components: - type: Transform - pos: -127.5,20.5 - parent: 89 - - uid: 15772 + rot: -1.5707963267948966 rad + pos: -91.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11884 components: - type: Transform - pos: -82.5,11.5 - parent: 89 - - uid: 15853 + rot: -1.5707963267948966 rad + pos: -87.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11885 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 15854 + rot: 3.141592653589793 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 11886 components: - type: Transform - pos: -80.5,11.5 - parent: 89 - - uid: 16783 + rot: 3.141592653589793 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 11887 components: - type: Transform - pos: 35.5,23.5 - parent: 89 - - uid: 16784 + rot: 3.141592653589793 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 11888 components: - type: Transform - pos: 35.5,22.5 - parent: 89 - - uid: 16787 + rot: 3.141592653589793 rad + pos: -81.5,-21.5 + parent: 2 + - uid: 11889 components: - type: Transform - pos: -18.5,21.5 - parent: 89 - - uid: 16788 + rot: 3.141592653589793 rad + pos: -80.5,-21.5 + parent: 2 + - uid: 11890 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 16789 + rot: 3.141592653589793 rad + pos: -79.5,-21.5 + parent: 2 + - uid: 11891 components: - type: Transform - pos: -37.5,26.5 - parent: 89 - - uid: 16790 + rot: 3.141592653589793 rad + pos: -81.5,-20.5 + parent: 2 + - uid: 11892 components: - type: Transform - pos: -22.5,26.5 - parent: 89 - - uid: 16791 + rot: 3.141592653589793 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 11893 components: - type: Transform - pos: -51.5,21.5 - parent: 89 - - uid: 16792 + rot: 3.141592653589793 rad + pos: -79.5,-20.5 + parent: 2 + - uid: 11894 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 16793 + pos: -79.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11895 components: - type: Transform - pos: -41.5,21.5 - parent: 89 - - uid: 16794 + rot: -1.5707963267948966 rad + pos: -85.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11896 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 16795 + pos: -136.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11897 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 16802 + rot: -1.5707963267948966 rad + pos: -82.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11898 components: - type: Transform - pos: -115.5,18.5 - parent: 89 - - uid: 16803 + rot: -1.5707963267948966 rad + pos: -81.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11899 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 16806 + rot: 3.141592653589793 rad + pos: -80.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11900 components: - type: Transform - pos: -77.5,-8.5 - parent: 89 - - uid: 16807 + rot: 3.141592653589793 rad + pos: -80.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11901 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 16808 + pos: -78.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11902 components: - type: Transform - pos: -44.5,-11.5 - parent: 89 - - uid: 16809 + rot: -1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 11903 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 16810 + rot: 3.141592653589793 rad + pos: -96.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11904 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 16811 + rot: -1.5707963267948966 rad + pos: -80.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11905 components: - type: Transform - pos: -42.5,-16.5 - parent: 89 - - uid: 16812 + rot: 3.141592653589793 rad + pos: -82.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11906 components: - type: Transform - pos: -42.5,-17.5 - parent: 89 - - uid: 16813 + rot: 3.141592653589793 rad + pos: -82.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11907 components: - type: Transform - pos: -31.5,-15.5 - parent: 89 - - uid: 16814 + rot: -1.5707963267948966 rad + pos: -100.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11908 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 16815 + rot: 3.141592653589793 rad + pos: -88.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11909 components: - type: Transform - pos: -31.5,-17.5 - parent: 89 - - uid: 16816 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11910 components: - type: Transform - pos: -26.5,-18.5 - parent: 89 - - uid: 16817 + rot: 3.141592653589793 rad + pos: -95.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11911 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 16818 + rot: 1.5707963267948966 rad + pos: -102.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11912 components: - type: Transform - pos: -24.5,-18.5 - parent: 89 - - uid: 16819 + rot: 1.5707963267948966 rad + pos: -101.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11913 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 16820 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11914 components: - type: Transform - pos: -13.5,-27.5 - parent: 89 - - uid: 16821 + rot: 3.141592653589793 rad + pos: -95.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11915 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 16822 + rot: 3.141592653589793 rad + pos: -96.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11916 components: - type: Transform - pos: -13.5,-25.5 - parent: 89 - - uid: 16823 + rot: 3.141592653589793 rad + pos: -96.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11917 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 16824 + rot: 3.141592653589793 rad + pos: -95.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11918 components: - type: Transform - pos: -11.5,-29.5 - parent: 89 - - uid: 16825 + rot: 1.5707963267948966 rad + pos: -97.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11919 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 16826 + rot: 3.141592653589793 rad + pos: -95.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11920 components: - type: Transform - pos: 7.5,-17.5 - parent: 89 - - uid: 16827 + rot: 1.5707963267948966 rad + pos: -96.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11921 components: - type: Transform - pos: 5.5,-16.5 - parent: 89 - - uid: 16828 + rot: 1.5707963267948966 rad + pos: -97.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11922 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 16829 + rot: 3.141592653589793 rad + pos: -103.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11923 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 16830 + rot: 1.5707963267948966 rad + pos: -98.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11924 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 16831 + rot: 1.5707963267948966 rad + pos: -98.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11925 components: - type: Transform - pos: -15.5,15.5 - parent: 89 - - uid: 16832 + rot: 1.5707963267948966 rad + pos: -99.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11926 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 16833 + rot: 1.5707963267948966 rad + pos: -105.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11927 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 16860 + rot: 1.5707963267948966 rad + pos: -106.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11928 components: - type: Transform - pos: -82.5,1.5 - parent: 89 - - uid: 16861 + rot: 1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11929 components: - type: Transform - pos: -81.5,1.5 - parent: 89 - - uid: 19749 + rot: 1.5707963267948966 rad + pos: -102.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11930 components: - type: Transform - pos: -57.5,44.5 - parent: 89 - - uid: 19750 + rot: 1.5707963267948966 rad + pos: -104.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11931 components: - type: Transform - pos: -57.5,45.5 - parent: 89 - - uid: 19751 + rot: 1.5707963267948966 rad + pos: -105.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11932 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 19752 + rot: 3.141592653589793 rad + pos: -103.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11933 components: - type: Transform - pos: -55.5,46.5 - parent: 89 - - uid: 19753 + rot: 3.141592653589793 rad + pos: -103.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11934 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 19754 + rot: 3.141592653589793 rad + pos: -103.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11935 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 19755 + rot: 3.141592653589793 rad + pos: -103.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11936 components: - type: Transform - pos: -55.5,37.5 - parent: 89 - - uid: 19756 + rot: 1.5707963267948966 rad + pos: -103.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11937 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 19757 + rot: 3.141592653589793 rad + pos: -103.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11938 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 19758 + rot: 1.5707963267948966 rad + pos: -104.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11939 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 19759 + rot: 1.5707963267948966 rad + pos: -101.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11940 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 19760 + rot: 1.5707963267948966 rad + pos: -100.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11941 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 20010 + rot: -1.5707963267948966 rad + pos: -103.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11942 components: - type: Transform - pos: 14.5,31.5 - parent: 89 - - uid: 20011 + rot: 3.141592653589793 rad + pos: -99.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11943 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 20012 + rot: 3.141592653589793 rad + pos: -99.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11944 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 20013 + rot: 3.141592653589793 rad + pos: -99.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11945 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 20018 + rot: 3.141592653589793 rad + pos: -95.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11946 components: - type: Transform - pos: 14.5,24.5 - parent: 89 - - uid: 20019 + rot: 3.141592653589793 rad + pos: -96.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11947 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 20020 + rot: 3.141592653589793 rad + pos: -96.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11948 components: - type: Transform - pos: 14.5,16.5 - parent: 89 - - uid: 20021 + rot: 3.141592653589793 rad + pos: -96.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11949 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 20111 + rot: 3.141592653589793 rad + pos: -95.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 89 - - uid: 20112 + rot: 3.141592653589793 rad + pos: -95.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 89 - - uid: 20122 + rot: 3.141592653589793 rad + pos: -95.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 - - uid: 20123 + rot: 3.141592653589793 rad + pos: -95.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 - - uid: 20124 + rot: 3.141592653589793 rad + pos: -95.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 89 - - uid: 20127 + rot: 3.141592653589793 rad + pos: -95.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 - parent: 89 - - uid: 20128 + rot: 1.5707963267948966 rad + pos: -94.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 89 - - uid: 20129 + rot: 3.141592653589793 rad + pos: -95.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 - parent: 89 - - uid: 20130 + rot: 3.141592653589793 rad + pos: -95.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 89 - - uid: 20131 + rot: 3.141592653589793 rad + pos: -94.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 89 - - uid: 20132 + rot: 3.141592653589793 rad + pos: -94.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 - - uid: 20134 + rot: 3.141592653589793 rad + pos: -94.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 89 - - uid: 20136 + rot: 3.141592653589793 rad + pos: -94.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 - - uid: 20137 + rot: 3.141592653589793 rad + pos: -94.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,21.5 - parent: 89 - - uid: 20138 + rot: 3.141592653589793 rad + pos: -94.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - uid: 20145 + rot: 3.141592653589793 rad + pos: -94.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,38.5 - parent: 89 - - uid: 20161 + rot: 3.141592653589793 rad + pos: -94.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 89 - - uid: 20162 + rot: 3.141592653589793 rad + pos: -94.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 89 - - uid: 20163 + rot: 3.141592653589793 rad + pos: -94.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11968 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 89 - - uid: 20164 + pos: -94.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11969 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 89 - - uid: 20165 + pos: -94.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11970 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 89 - - uid: 20166 + pos: -95.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11971 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 89 - - uid: 20167 + pos: -95.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 89 - - uid: 20168 + pos: -94.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 89 - - uid: 20169 + pos: -92.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 89 - - uid: 20170 + pos: -93.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 89 - - uid: 20171 + pos: -97.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11976 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 89 - - uid: 20172 + pos: -94.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11977 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 89 - - uid: 20173 + pos: -93.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11978 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 89 - - uid: 20174 + pos: -92.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-16.5 - parent: 89 - - uid: 20175 + pos: -90.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 89 - - uid: 20177 + pos: -89.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 89 - - uid: 21683 + rot: 3.141592653589793 rad + pos: -88.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11982 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 21627 - - uid: 22434 + pos: -89.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 89 - - uid: 22435 + rot: 3.141592653589793 rad + pos: -99.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-19.5 - parent: 89 - - uid: 22436 + pos: -96.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 89 - - uid: 22438 + pos: -96.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 89 - - uid: 22440 + rot: 3.141592653589793 rad + pos: -97.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 89 - - uid: 22441 + rot: 3.141592653589793 rad + pos: -97.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 89 - - uid: 22442 + rot: 3.141592653589793 rad + pos: -97.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 89 - - uid: 22443 + rot: 3.141592653589793 rad + pos: -97.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-25.5 - parent: 89 - - uid: 22444 + rot: -1.5707963267948966 rad + pos: -101.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-20.5 - parent: 89 - - uid: 22445 + pos: -98.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 89 - - uid: 22446 + pos: -99.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 89 - - uid: 22463 + pos: -100.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - uid: 22464 + pos: -100.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 89 - - uid: 22465 + pos: -101.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 89 - - uid: 22467 - components: - - type: Transform - pos: 43.5,-26.5 - parent: 89 - - uid: 22468 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 89 - - uid: 22471 - components: - - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 25418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-22.5 - parent: 89 - - uid: 25672 + pos: -102.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 89 -- proto: Fireplace - entities: - - uid: 22017 + pos: -103.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11998 components: - type: Transform - pos: 56.5,-24.5 - parent: 89 -- proto: FlashlightLantern - entities: - - uid: 10253 + pos: -102.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11999 components: - type: Transform - pos: -25.593971,25.761902 - parent: 89 - - uid: 10335 + pos: -104.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.783228,-16.650192 - parent: 89 - - uid: 16755 + pos: -104.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12001 components: - type: Transform - pos: -113.51567,-5.446479 - parent: 89 - - uid: 16756 + pos: -104.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12002 components: - type: Transform - pos: -99.97467,2.4873905 - parent: 89 - - uid: 16757 + pos: -104.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12003 components: - type: Transform - pos: -91.41225,5.4460807 - parent: 89 - - uid: 16758 + pos: -102.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12004 components: - type: Transform - pos: -89.445175,6.290927 - parent: 89 - - uid: 16759 + pos: -102.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12005 components: - type: Transform - pos: -57.67143,12.341514 - parent: 89 - - uid: 16762 + pos: -102.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12006 components: - type: Transform - pos: -34.97496,5.4803944 - parent: 89 - - uid: 23754 + rot: -1.5707963267948966 rad + pos: -103.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12007 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23755 + rot: 1.5707963267948966 rad + pos: -104.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12008 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23756 + rot: 1.5707963267948966 rad + pos: -105.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12009 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23764 + rot: 1.5707963267948966 rad + pos: -106.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12010 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23765 + rot: 1.5707963267948966 rad + pos: -105.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12011 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23766 + rot: 1.5707963267948966 rad + pos: -107.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12012 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FlashlightSeclite - entities: - - uid: 5340 + rot: 1.5707963267948966 rad + pos: -106.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12013 components: - type: Transform - pos: 25.487007,-6.1841216 - parent: 89 - - uid: 5343 + rot: 1.5707963267948966 rad + pos: -108.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12014 components: - type: Transform - pos: 25.502632,-6.4341216 - parent: 89 - - uid: 5345 + pos: -109.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12015 components: - type: Transform - pos: 25.518257,-6.7153716 - parent: 89 -- proto: FloodlightBroken - entities: - - uid: 14650 + pos: -109.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12016 components: - type: Transform - pos: -132.48235,20.537903 - parent: 89 -- proto: FloorDrain - entities: - - uid: 716 + pos: -109.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12017 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 3562 + pos: -109.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12018 components: - type: Transform - pos: -13.5,-9.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 4979 + pos: -109.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12019 components: - type: Transform - pos: -21.5,-22.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 5790 + pos: -107.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12020 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 6152 + pos: -107.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12021 components: - type: Transform - pos: 6.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 8559 + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 9189 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12023 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 9537 + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12024 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 16918 + pos: -107.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 19673 + pos: -107.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12026 components: - type: Transform - pos: 10.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 20744 + pos: -107.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12027 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 20982 + pos: -107.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21498 + pos: -107.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21499 + pos: -107.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21500 + pos: -107.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21501 + pos: -107.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 25382 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 89 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGold - entities: - - uid: 20968 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12034 components: - type: Transform - pos: 49.707867,-4.473658 - parent: 89 - - type: Item - size: 150 - - type: Stack - count: 30 -- proto: FoamCrossbow - entities: - - uid: 24 + pos: -109.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12035 components: - type: Transform - pos: 4.5889907,-1.4036782 - parent: 89 - - uid: 21742 + pos: -109.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12036 components: - type: Transform - pos: 50.491665,-18.456736 - parent: 89 - - uid: 21745 + rot: -1.5707963267948966 rad + pos: -108.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12037 components: - type: Transform - pos: 48.559834,-21.37915 - parent: 89 - - uid: 21746 + rot: -1.5707963267948966 rad + pos: -109.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12038 components: - type: Transform - pos: 49.47713,-21.360804 - parent: 89 - - uid: 21823 + rot: 3.141592653589793 rad + pos: -109.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12039 components: - type: Transform - pos: 50.741665,-18.62861 - parent: 89 -- proto: FoodBadRecipe - entities: - - uid: 732 + rot: 3.141592653589793 rad + pos: -109.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12040 components: - type: Transform - pos: -50.536972,43.736313 - parent: 89 -- proto: FoodBakedBunHoney - entities: - - uid: 3663 + rot: 3.141592653589793 rad + pos: -107.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12041 components: - type: Transform - pos: 2.7143266,17.792904 - parent: 89 - - uid: 3664 + pos: -109.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12042 components: - type: Transform - pos: 2.6987016,19.480404 - parent: 89 - - uid: 17031 + rot: 3.141592653589793 rad + pos: -107.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12043 components: - type: Transform - pos: 2.6674516,15.464779 - parent: 89 - - uid: 21541 + rot: 3.141592653589793 rad + pos: -109.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12044 components: - type: Transform - pos: 2.6987016,21.792904 - parent: 89 -- proto: FoodBakedNugget - entities: - - uid: 17190 + rot: 3.141592653589793 rad + pos: -109.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12045 components: - type: Transform - pos: 33.613174,13.64916 - parent: 89 - - type: RandomSprite - selected: - enum.DamageStateVisualLayers.Base: - lizard: null - - uid: 17203 + rot: 3.141592653589793 rad + pos: -107.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12046 components: - type: Transform - pos: 33.394424,13.508535 - parent: 89 - - type: RandomSprite - selected: - enum.DamageStateVisualLayers.Base: - corgi: null - - uid: 25854 + rot: 3.141592653589793 rad + pos: -107.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12047 components: - type: Transform - pos: -25.79127,16.712238 - parent: 89 -- proto: FoodBakedWaffleRoffle - entities: - - uid: 19516 + rot: 3.141592653589793 rad + pos: -109.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12048 components: - type: Transform - pos: 65.51178,-1.3788319 - parent: 89 -- proto: FoodBanana - entities: - - uid: 7434 + rot: 3.141592653589793 rad + pos: -107.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12049 components: - type: Transform - pos: -33.28767,-3.4614453 - parent: 89 - - uid: 7435 + rot: 3.141592653589793 rad + pos: -109.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12050 components: - type: Transform - pos: -33.428295,-3.4458203 - parent: 89 - - uid: 7445 + rot: 3.141592653589793 rad + pos: -109.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12051 components: - type: Transform - pos: -33.56892,-3.4077 - parent: 89 -- proto: FoodBoxDonkpocket - entities: - - uid: 3458 + rot: 3.141592653589793 rad + pos: -107.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12052 components: - type: Transform - pos: 12.448042,-0.7995776 - parent: 89 - - uid: 25853 + rot: 3.141592653589793 rad + pos: -107.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12053 components: - type: Transform - pos: -25.66152,16.638733 - parent: 89 -- proto: FoodBoxDonkpocketDink - entities: - - uid: 20806 + pos: -100.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12054 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.397133,52.459045 - parent: 89 - - uid: 23959 + pos: -107.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12055 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 2924 + pos: -109.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12056 components: - type: Transform - pos: 33.34177,-5.2602663 - parent: 89 - - uid: 3850 + pos: -109.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12057 components: - type: Transform - pos: 12.354292,-0.4714526 - parent: 89 - - uid: 6450 + pos: -109.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12058 components: - type: Transform - pos: 32.857395,-5.2758913 - parent: 89 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 23960 + pos: -109.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12059 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23961 + pos: -109.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12060 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxDonut - entities: - - uid: 4924 + pos: -107.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12061 components: - type: Transform - pos: 7.6550026,-12.300071 - parent: 89 - - uid: 5635 + pos: -107.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12062 components: - type: Transform - pos: -16.490608,8.670728 - parent: 89 -- proto: FoodBoxNugget - entities: - - uid: 19518 + pos: -107.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12063 components: - type: Transform - pos: 34.788673,13.833639 - parent: 89 -- proto: FoodBoxPizzaFilled - entities: - - uid: 14874 + pos: -109.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12064 components: - type: Transform - pos: -12.436198,-36.45387 - parent: 89 -- proto: FoodBreadPlain - entities: - - uid: 14648 + pos: -107.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12065 components: - type: Transform - pos: -132.48235,23.069153 - parent: 89 -- proto: FoodBreadVolcanic - entities: - - uid: 3010 + pos: -109.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12066 components: - - type: MetaData - desc: как всегда.... с пивом. - name: syxapik - type: Transform - pos: 33.445137,29.596706 - parent: 89 - - uid: 21112 + pos: -107.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12067 components: - type: Transform - pos: 38.960247,38.39267 - parent: 89 -- proto: FoodBreadVolcanicSlice - entities: - - uid: 21113 + pos: -109.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12068 components: - type: Transform - pos: 39.72515,38.344387 - parent: 89 -- proto: FoodBurgerBacon - entities: - - uid: 225 + pos: -109.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12069 components: - type: Transform - pos: 4.495135,-18.356115 - parent: 89 -- proto: FoodBurgerEmpowered - entities: - - uid: 18059 + pos: -107.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12070 components: - type: Transform - pos: -2.5179825,-48.507328 - parent: 89 -- proto: FoodBurgerMime - entities: - - uid: 4267 + pos: -109.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12071 components: - type: Transform - pos: -33.513412,-9.430157 - parent: 89 -- proto: FoodBurgerRobot - entities: - - uid: 19707 + pos: -107.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12072 components: - type: Transform - pos: 17.72694,-1.3729725 - parent: 89 -- proto: FoodBurgerSpell - entities: - - uid: 18056 + rot: -1.5707963267948966 rad + pos: -108.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12073 components: - type: Transform - pos: -6.535371,-48.554203 - parent: 89 -- proto: FoodCakeChocolateSlice - entities: - - uid: 19973 + rot: -1.5707963267948966 rad + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12074 components: - type: Transform - pos: 25.538666,39.596962 - parent: 89 -- proto: FoodCartCold - entities: - - uid: 21082 + rot: -1.5707963267948966 rad + pos: -106.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 -- proto: FoodCartHot - entities: - - uid: 5321 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 89 -- proto: FoodCheeseSlice - entities: - - uid: 14983 + pos: -101.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12077 components: - type: Transform - pos: -13.634424,-2.4830256 - parent: 89 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 14977 + rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12078 components: - type: Transform - pos: -13.176779,-2.1402254 - parent: 89 -- proto: FoodCondimentPacketFrostoil - entities: - - uid: 4527 + rot: -1.5707963267948966 rad + pos: -105.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12079 components: - type: Transform - pos: -13.0428295,-0.38803613 - parent: 89 -- proto: FoodDonkpocketHonkWarm - entities: - - uid: 21871 + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12080 components: - type: Transform - pos: 51.573746,-33.424797 - parent: 89 -- proto: FoodDonutChaos - entities: - - uid: 8156 + rot: -1.5707963267948966 rad + pos: -104.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12081 components: - type: Transform - pos: 3.514162,28.464619 - parent: 89 -- proto: FoodDonutJellySweetpea - entities: - - uid: 7238 + rot: -1.5707963267948966 rad + pos: -104.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12082 components: - type: Transform - pos: -105.04697,21.522427 - parent: 89 -- proto: FoodFrozenPopsicleTrash - entities: - - uid: 10248 + rot: -1.5707963267948966 rad + pos: -103.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12083 components: - type: Transform - pos: -34.15423,24.30383 - parent: 89 -- proto: FoodMeatFiestaKebab - entities: - - uid: 16961 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12084 components: - type: Transform - pos: -0.5881367,-28.311087 - parent: 89 - - uid: 21118 + rot: -1.5707963267948966 rad + pos: -102.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12085 components: - type: Transform - pos: 38.284306,38.58346 - parent: 89 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 21817 + rot: -1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12086 components: - type: Transform - pos: 48.413338,-28.104477 - parent: 89 - - uid: 21818 + rot: -1.5707963267948966 rad + pos: -99.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12087 components: - type: Transform - pos: 48.569588,-28.245102 - parent: 89 -- proto: FoodMeatRotten - entities: - - uid: 21104 + rot: -1.5707963267948966 rad + pos: -100.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12088 components: - type: Transform - pos: 40.47344,22.541035 - parent: 89 -- proto: FoodMeatXeno - entities: - - uid: 14643 + rot: -1.5707963267948966 rad + pos: -100.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12089 components: - type: Transform - pos: -129.90422,22.600403 - parent: 89 - - uid: 14644 + rot: 3.141592653589793 rad + pos: -99.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12090 components: - type: Transform - pos: -129.31047,21.819153 - parent: 89 -- proto: FoodNoodlesBoiled - entities: - - uid: 20914 + rot: 3.141592653589793 rad + pos: -99.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12091 components: - type: Transform - pos: -89.909225,-14.737919 - parent: 89 - - uid: 21277 + rot: 3.141592653589793 rad + pos: -99.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12092 components: - type: Transform - pos: -83.846725,-17.472294 - parent: 89 - - uid: 21278 + rot: 3.141592653589793 rad + pos: -98.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12093 components: - type: Transform - pos: -96.61855,-17.472294 - parent: 89 -- proto: FoodPieBananaCream - entities: - - uid: 7439 + rot: 3.141592653589793 rad + pos: -98.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12094 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7440 + rot: 3.141592653589793 rad + pos: -98.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12095 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7441 + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12096 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7442 + pos: -88.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12097 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7443 + pos: -89.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12098 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7444 + pos: -89.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12099 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 -- proto: FoodPineapple - entities: - - uid: 3297 + pos: -89.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12100 components: - - type: MetaData - desc: Ммм, секретный. - name: секретный ананас - type: Transform - pos: 47.477936,-8.598001 - parent: 89 - - type: SolutionContainerManager - solutions: - food: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 16 - name: null - reagents: - - data: null - ReagentId: Ichor - Quantity: 16 -- proto: FoodPizzaDank - entities: - - uid: 23962 + pos: -88.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12101 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPizzaSassysageSlice - entities: - - uid: 16936 + pos: -88.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12102 components: - type: Transform - pos: 4.4923315,-19.911255 - parent: 89 - - uid: 16937 + pos: -88.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12103 components: - type: Transform - pos: 4.3237543,-20.826183 - parent: 89 -- proto: FoodPlate - entities: - - uid: 7263 + pos: -88.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12104 components: - type: Transform - pos: -96.62795,-17.441044 - parent: 89 - - uid: 19910 + pos: -88.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12105 components: - type: Transform - pos: -89.94045,-14.659794 - parent: 89 - - uid: 20854 + pos: -87.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12106 components: - type: Transform - pos: -83.877975,-17.441044 - parent: 89 -- proto: FoodPotato - entities: - - uid: 13958 + rot: -1.5707963267948966 rad + pos: -84.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12107 components: - type: Transform - pos: -7.216362,-5.633604 - parent: 89 -- proto: FoodShakerPepper - entities: - - uid: 4849 + pos: -87.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12108 components: - type: Transform - pos: -19.430532,-2.9313784 - parent: 89 - - uid: 21086 + pos: -87.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12109 components: - type: Transform - pos: -13.379187,-2.4313784 - parent: 89 -- proto: FoodShakerSalt - entities: - - uid: 4973 + rot: -1.5707963267948966 rad + pos: -84.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12110 components: - type: Transform - pos: -22.993032,-6.4157534 - parent: 89 - - uid: 21085 + rot: -1.5707963267948966 rad + pos: -83.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12111 components: - type: Transform - pos: -13.332312,-2.7907534 - parent: 89 -- proto: FoodSnackChocolate - entities: - - uid: 138 + rot: -1.5707963267948966 rad + pos: -81.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12112 components: - type: Transform - pos: 21.70988,31.555183 - parent: 89 - - uid: 6333 + pos: -87.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12113 components: - type: Transform - pos: 27.33488,31.555183 - parent: 89 -- proto: FoodSnackEnergy - entities: - - uid: 16982 + rot: -1.5707963267948966 rad + pos: -85.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12114 components: - type: Transform - pos: -9.953323,-16.541403 - parent: 89 -- proto: FoodSoupClown - entities: - - uid: 7275 + rot: -1.5707963267948966 rad + pos: -87.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12115 components: - type: Transform - pos: -29.498123,-17.317171 - parent: 89 -- proto: FoodSoupSlime - entities: - - uid: 19514 + rot: -1.5707963267948966 rad + pos: -85.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12116 components: - type: Transform - pos: 63.43366,0.63679314 - parent: 89 -- proto: FoodSpaceshroom - entities: - - uid: 15098 + rot: -1.5707963267948966 rad + pos: -86.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12117 components: - type: Transform - pos: -14.440111,21.490667 - parent: 89 -- proto: FoodTartGapple - entities: - - uid: 20868 + rot: -1.5707963267948966 rad + pos: -86.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12118 components: - type: Transform - pos: 50.58392,-5.426783 - parent: 89 -- proto: FoodTinBeans - entities: - - uid: 7617 + rot: -1.5707963267948966 rad + pos: -82.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.222778,36.44787 - parent: 89 -- proto: Football - entities: - - uid: 18199 + rot: -1.5707963267948966 rad + pos: -83.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12120 components: - type: Transform - pos: -10.490348,-38.553753 - parent: 89 -- proto: ForkPlastic - entities: - - uid: 19996 + rot: -1.5707963267948966 rad + pos: -80.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12121 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.511847,21.85918 - parent: 89 -- proto: GasCanisterBrokenBase - entities: - - uid: 18212 + pos: -80.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12122 components: - type: Transform - pos: -28.5,-20.5 - parent: 89 -- proto: GasFilter - entities: - - uid: 1455 + rot: -1.5707963267948966 rad + pos: -79.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12123 components: - - type: MetaData - name: фильтр О2 - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -79.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1456 + color: '#4169E1FF' + - uid: 12124 components: - - type: MetaData - name: фильтр N2 - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -78.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1457 + color: '#DC143CFF' + - uid: 12125 components: - - type: MetaData - name: фильтр CO2 - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: 3.141592653589793 rad + pos: -66.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1459 + color: '#4169E1FF' + - uid: 12126 components: - - type: MetaData - name: фильтр водяного пара - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -74.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1460 + color: '#DC143CFF' + - uid: 12127 components: - - type: MetaData - name: фильтр плазмы - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -73.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2103 + color: '#4169E1FF' + - uid: 12128 components: - - type: MetaData - name: фильтр N2O - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -72.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2104 + color: '#DC143CFF' + - uid: 12129 components: - - type: MetaData - name: фильтр трития - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -72.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2105 + color: '#4169E1FF' + - uid: 12130 components: - - type: MetaData - name: фильтр газа - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 8782 + color: '#4169E1FF' + - uid: 12131 components: - type: Transform - pos: -121.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8860 + rot: -1.5707963267948966 rad + pos: -71.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -130.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16361 + pos: -70.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16363 + pos: -64.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMinerCarbonDioxide - entities: - - uid: 1135 + rot: -1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMinerNitrogen - entities: - - uid: 1112 + pos: -69.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12136 components: - type: Transform - pos: -98.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24015 + rot: -1.5707963267948966 rad + pos: -69.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasMinerOxygen - entities: - - uid: 19588 + rot: -1.5707963267948966 rad + pos: -68.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12138 components: - type: Transform - pos: -100.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24016 + rot: -1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasMinerWaterVapor - entities: - - uid: 1136 + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMixer - entities: - - uid: 1429 + rot: 3.141592653589793 rad + pos: -66.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12141 components: - - type: MetaData - name: смеситель воздушной смеси - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-13.5 - parent: 89 - - type: GasMixer - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 + rot: 3.141592653589793 rad + pos: -65.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1495 + color: '#DC143CFF' + - uid: 12142 components: - - type: MetaData - name: микс O2, N2 - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -64.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1496 + color: '#4169E1FF' + - uid: 12143 components: - - type: MetaData - name: микс CO2 - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -63.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1497 + color: '#DC143CFF' + - uid: 12144 components: - - type: MetaData - name: микс водяного пара - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -66.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1498 + color: '#DC143CFF' + - uid: 12145 components: - - type: MetaData - name: микс плазмы - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -65.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2058 + color: '#DC143CFF' + - uid: 12146 components: - - type: MetaData - name: микс N2O - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -66.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2059 + color: '#4169E1FF' + - uid: 12147 components: - - type: MetaData - name: микс трития - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -65.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2060 + color: '#4169E1FF' + - uid: 12148 components: - - type: MetaData - name: микс газа - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -62.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2471 + color: '#4169E1FF' + - uid: 12149 components: - - type: MetaData - name: дополнительный микс 1 - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2472 + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12150 components: - - type: MetaData - name: дополнительный микс 2 - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -61.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' -- proto: GasMixerFlipped - entities: - - uid: 24017 + color: '#DC143CFF' + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 22565 - - type: GasMixer - targetPressure: 200 - - type: AtmosDevice - joinedGrid: 22565 + pos: -60.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasOutletInjector - entities: - - uid: 252 + color: '#DC143CFF' + - uid: 12152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 639 + rot: -1.5707963267948966 rad + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1149 + rot: -1.5707963267948966 rad + pos: -59.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1150 + rot: -1.5707963267948966 rad + pos: -59.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1151 + rot: -1.5707963267948966 rad + pos: -58.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1152 + rot: -1.5707963267948966 rad + pos: -58.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1155 + rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1285 + rot: -1.5707963267948966 rad + pos: -57.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1977 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1980 + pos: -56.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2221 + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2222 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7465 + rot: -1.5707963267948966 rad + pos: -54.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12164 components: - type: Transform - pos: -87.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasPassiveGate - entities: - - uid: 976 + rot: -1.5707963267948966 rad + pos: -53.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12165 components: - - type: MetaData - name: защита портов для выброса скрубберов - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -53.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1561 + color: '#4169E1FF' + - uid: 12166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12167 components: - - type: MetaData - name: защита портов канистр - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -52.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPassiveVent - entities: - - uid: 249 + color: '#DC143CFF' + - uid: 12168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 264 + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 323 + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 324 + pos: -49.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12171 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 622 + pos: -48.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 640 + pos: -47.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1143 + pos: -43.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1144 + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1145 + pos: -46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12176 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1148 + pos: -46.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12177 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1474 + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1975 + rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1976 + pos: -44.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2223 + pos: -43.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2390 + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 4047 + pos: -42.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -41.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7534 + color: '#DC143CFF' + - uid: 12184 components: - type: Transform - pos: -88.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8841 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21684 + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24018 + color: '#4169E1FF' + - uid: 12187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24019 + color: '#DC143CFF' + - uid: 12188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + pos: -38.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 24020 + color: '#DC143CFF' + - uid: 12189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + pos: -22.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24021 + color: '#4169E1FF' + - uid: 12190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasPipeBend - entities: - - uid: 34 + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 219 + color: '#4169E1FF' + - uid: 12192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 325 + color: '#DC143CFF' + - uid: 12193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 89 - - uid: 326 + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 89 - - uid: 641 + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-25.5 - parent: 89 - - uid: 940 + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12196 components: - type: Transform - pos: -78.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 978 + color: '#4169E1FF' + - uid: 12197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 + pos: -33.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1313 + color: '#4169E1FF' + - uid: 12198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-25.5 - parent: 89 - - uid: 1314 + rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-25.5 - parent: 89 - - uid: 1315 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-25.5 - parent: 89 - - uid: 1316 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-25.5 - parent: 89 - - uid: 1317 + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-25.5 - parent: 89 - - uid: 1485 + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-13.5 - parent: 89 + pos: -39.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1491 + color: '#4169E1FF' + - uid: 12204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1527 + color: '#4169E1FF' + - uid: 12205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1550 + color: '#4169E1FF' + - uid: 12206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-14.5 - parent: 89 + pos: -54.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1559 + color: '#DC143CFF' + - uid: 12207 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1560 + color: '#DC143CFF' + - uid: 12208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1564 + color: '#4169E1FF' + - uid: 12209 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1573 + color: '#4169E1FF' + - uid: 12210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1591 + color: '#DC143CFF' + - uid: 12211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-13.5 - parent: 89 + pos: -24.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1607 + color: '#DC143CFF' + - uid: 12212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1626 + color: '#4169E1FF' + - uid: 12213 components: - type: Transform - pos: -96.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -77.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1664 + color: '#4169E1FF' + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1936 + color: '#4169E1FF' + - uid: 12215 components: - type: Transform - pos: -91.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -75.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1952 + color: '#4169E1FF' + - uid: 12216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1954 + color: '#DC143CFF' + - uid: 12217 components: - type: Transform - pos: -90.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1978 + color: '#4169E1FF' + - uid: 12218 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-25.5 - parent: 89 - - uid: 1979 + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-25.5 - parent: 89 - - uid: 2387 + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12220 components: - type: Transform - pos: -79.5,-17.5 - parent: 89 + pos: -19.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2508 + color: '#4169E1FF' + - uid: 12221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-17.5 - parent: 89 + pos: -17.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2529 + color: '#DC143CFF' + - uid: 12222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2536 + color: '#4169E1FF' + - uid: 12223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-14.5 - parent: 89 + pos: -17.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2538 + color: '#DC143CFF' + - uid: 12224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-15.5 - parent: 89 + pos: -17.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2976 + color: '#DC143CFF' + - uid: 12225 components: - type: Transform - pos: -103.5,-0.5 - parent: 89 + pos: -17.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3012 + color: '#DC143CFF' + - uid: 12226 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-24.5 - parent: 89 + pos: -56.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3044 + color: '#4169E1FF' + - uid: 12227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3070 + color: '#4169E1FF' + - uid: 12228 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,-9.5 - parent: 89 + pos: -21.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3071 + color: '#4169E1FF' + - uid: 12229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3258 + color: '#4169E1FF' + - uid: 12230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3265 + color: '#4169E1FF' + - uid: 12231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3340 + color: '#DC143CFF' + - uid: 12232 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-1.5 - parent: 89 + pos: -20.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3341 + color: '#DC143CFF' + - uid: 12233 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-2.5 - parent: 89 + pos: -21.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3381 + color: '#DC143CFF' + - uid: 12234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,5.5 - parent: 89 + pos: -22.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3550 + color: '#DC143CFF' + - uid: 12235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3648 + color: '#DC143CFF' + - uid: 12236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3653 + color: '#DC143CFF' + - uid: 12237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3654 + color: '#4169E1FF' + - uid: 12238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3655 + color: '#4169E1FF' + - uid: 12239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3656 + color: '#DC143CFF' + - uid: 12240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,4.5 - parent: 89 + pos: -16.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3658 + color: '#DC143CFF' + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,3.5 - parent: 89 + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3669 + color: '#DC143CFF' + - uid: 12242 components: - type: Transform - pos: -78.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3671 + color: '#4169E1FF' + - uid: 12243 components: - type: Transform - pos: -77.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3672 + color: '#4169E1FF' + - uid: 12244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,8.5 - parent: 89 + pos: -13.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3673 + color: '#DC143CFF' + - uid: 12245 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,9.5 - parent: 89 + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3674 + color: '#4169E1FF' + - uid: 12246 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,8.5 - parent: 89 + pos: -15.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3675 + color: '#4169E1FF' + - uid: 12247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,10.5 - parent: 89 + pos: -19.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3677 + color: '#DC143CFF' + - uid: 12248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,9.5 - parent: 89 + pos: -19.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3679 + color: '#4169E1FF' + - uid: 12249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3706 + color: '#DC143CFF' + - uid: 12250 components: - type: Transform - pos: -66.5,9.5 - parent: 89 + pos: -19.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3711 + color: '#4169E1FF' + - uid: 12251 components: - type: Transform - pos: -65.5,10.5 - parent: 89 + pos: -17.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3731 + color: '#DC143CFF' + - uid: 12252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,4.5 - parent: 89 + pos: -17.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3763 + color: '#DC143CFF' + - uid: 12253 components: - type: Transform - pos: -40.5,4.5 - parent: 89 + pos: -19.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3785 + color: '#4169E1FF' + - uid: 12254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 89 + pos: -19.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3786 + color: '#4169E1FF' + - uid: 12255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 89 + pos: -17.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3787 + color: '#DC143CFF' + - uid: 12256 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 89 + pos: -20.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3789 + color: '#4169E1FF' + - uid: 12257 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 89 + pos: -19.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3794 + color: '#DC143CFF' + - uid: 12258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12260 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 89 + pos: -17.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3795 + color: '#DC143CFF' + - uid: 12261 components: - type: Transform - pos: -30.5,5.5 - parent: 89 + pos: -22.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3797 + color: '#4169E1FF' + - uid: 12262 components: - type: Transform - pos: -31.5,4.5 - parent: 89 + pos: -22.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3798 + color: '#4169E1FF' + - uid: 12263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 89 + pos: -20.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3805 + color: '#DC143CFF' + - uid: 12264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 89 + pos: -20.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3806 + color: '#DC143CFF' + - uid: 12265 components: - type: Transform - pos: -23.5,4.5 - parent: 89 + pos: -22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3807 + color: '#4169E1FF' + - uid: 12266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 89 + pos: 52.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3808 + color: '#4169E1FF' + - uid: 12267 components: - type: Transform - pos: -24.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4121 + color: '#DC143CFF' + - uid: 12268 components: - type: Transform - pos: 35.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4122 + color: '#4169E1FF' + - uid: 12269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4123 + color: '#4169E1FF' + - uid: 12270 components: - type: Transform - pos: 34.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4124 + color: '#4169E1FF' + - uid: 12271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4135 + color: '#4169E1FF' + - uid: 12272 components: - type: Transform - pos: 41.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4136 + color: '#4169E1FF' + - uid: 12273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4137 + color: '#DC143CFF' + - uid: 12274 components: - type: Transform - pos: 40.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4147 + color: '#DC143CFF' + - uid: 12275 components: - type: Transform - pos: 39.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4155 + color: '#DC143CFF' + - uid: 12276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4156 + color: '#4169E1FF' + - uid: 12277 components: - type: Transform - pos: 34.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4157 + color: '#DC143CFF' + - uid: 12278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 89 + pos: -9.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4163 + color: '#DC143CFF' + - uid: 12279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4351 + color: '#4169E1FF' + - uid: 12280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4366 + color: '#4169E1FF' + - uid: 12281 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 89 + pos: -8.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4427 + color: '#DC143CFF' + - uid: 12282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4429 + color: '#DC143CFF' + - uid: 12283 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 89 + pos: -7.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4576 + color: '#4169E1FF' + - uid: 12284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4580 + color: '#4169E1FF' + - uid: 12285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 89 + pos: -6.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4651 + color: '#DC143CFF' + - uid: 12286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 89 + pos: -5.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4687 + color: '#DC143CFF' + - uid: 12287 components: - type: Transform - pos: 3.5,-21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4689 + color: '#4169E1FF' + - uid: 12288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 89 + pos: -4.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4768 + color: '#4169E1FF' + - uid: 12289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4769 + color: '#DC143CFF' + - uid: 12290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12292 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-24.5 - parent: 89 + pos: -2.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4770 + color: '#DC143CFF' + - uid: 12293 components: - type: Transform - pos: -4.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4771 + color: '#4169E1FF' + - uid: 12294 components: - type: Transform - pos: -5.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4783 + color: '#4169E1FF' + - uid: 12295 components: - type: Transform - pos: -6.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4784 + color: '#DC143CFF' + - uid: 12296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4785 + color: '#DC143CFF' + - uid: 12297 components: - type: Transform - pos: -5.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4786 + color: '#4169E1FF' + - uid: 12298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4845 + color: '#4169E1FF' + - uid: 12299 components: - type: Transform - pos: -9.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4872 + color: '#4169E1FF' + - uid: 12300 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4956 + color: '#DC143CFF' + - uid: 12301 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-1.5 - parent: 89 + pos: 4.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4991 + color: '#DC143CFF' + - uid: 12302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5055 + color: '#4169E1FF' + - uid: 12303 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-10.5 - parent: 89 + pos: 5.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5056 + color: '#4169E1FF' + - uid: 12304 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,-11.5 - parent: 89 + pos: 5.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5097 + color: '#DC143CFF' + - uid: 12305 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 89 + pos: 6.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5098 + color: '#DC143CFF' + - uid: 12306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5146 + color: '#4169E1FF' + - uid: 12307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5173 + color: '#4169E1FF' + - uid: 12308 components: - type: Transform - pos: -48.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5174 + color: '#DC143CFF' + - uid: 12309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5249 + color: '#DC143CFF' + - uid: 12310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5250 + color: '#4169E1FF' + - uid: 12311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5470 + color: '#4169E1FF' + - uid: 12312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5475 + color: '#DC143CFF' + - uid: 12313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5620 + color: '#DC143CFF' + - uid: 12314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 89 + pos: 10.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5621 + color: '#4169E1FF' + - uid: 12315 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,18.5 - parent: 89 + pos: 11.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5640 + color: '#4169E1FF' + - uid: 12316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5696 + color: '#DC143CFF' + - uid: 12317 components: - type: Transform - pos: -39.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5709 + color: '#DC143CFF' + - uid: 12318 components: - type: Transform - pos: -40.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5738 + color: '#4169E1FF' + - uid: 12319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5740 + color: '#4169E1FF' + - uid: 12320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5803 + color: '#DC143CFF' + - uid: 12321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5804 + color: '#DC143CFF' + - uid: 12322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6221 + color: '#4169E1FF' + - uid: 12323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6268 + color: '#4169E1FF' + - uid: 12324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 89 + pos: 15.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6322 + color: '#DC143CFF' + - uid: 12325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,14.5 - parent: 89 + pos: 16.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6528 + color: '#DC143CFF' + - uid: 12326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6529 + color: '#4169E1FF' + - uid: 12327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6530 + color: '#4169E1FF' + - uid: 12328 components: - type: Transform - pos: -55.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6531 + color: '#DC143CFF' + - uid: 12329 components: - type: Transform - pos: -57.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6536 + color: '#DC143CFF' + - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,44.5 - parent: 89 + pos: 19.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6576 + color: '#4169E1FF' + - uid: 12331 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,13.5 - parent: 89 + pos: 19.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6577 + color: '#DC143CFF' + - uid: 12332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,14.5 - parent: 89 + pos: 20.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6598 + color: '#4169E1FF' + - uid: 12333 components: - type: Transform - pos: -55.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6825 + color: '#DC143CFF' + - uid: 12334 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,4.5 - parent: 89 + pos: 22.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6827 + color: '#DC143CFF' + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,5.5 - parent: 89 + pos: 23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6828 + color: '#4169E1FF' + - uid: 12338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6829 + color: '#DC143CFF' + - uid: 12339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6879 + color: '#4169E1FF' + - uid: 12340 components: - type: Transform - pos: -39.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6880 + color: '#4169E1FF' + - uid: 12341 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 89 + pos: 25.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7193 + color: '#DC143CFF' + - uid: 12342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,1.5 - parent: 89 - - uid: 7413 + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12343 components: - type: Transform - pos: -75.5,-11.5 - parent: 89 - - uid: 7421 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-13.5 - parent: 89 - - uid: 8353 + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 89 + pos: 27.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8537 + color: '#DC143CFF' + - uid: 12346 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 8748 + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8801 + color: '#4169E1FF' + - uid: 12348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,5.5 - parent: 89 - - uid: 8804 + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12349 components: - type: Transform - pos: -121.5,2.5 - parent: 89 - - uid: 8806 + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-0.5 - parent: 89 - - uid: 8808 + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-1.5 - parent: 89 - - uid: 8811 + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,-1.5 - parent: 89 - - uid: 8815 + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-3.5 - parent: 89 - - uid: 8824 + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-3.5 - parent: 89 - - uid: 8849 + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12355 components: - type: Transform - pos: -124.5,6.5 - parent: 89 - - uid: 8861 + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12356 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,9.5 - parent: 89 - - uid: 8871 + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12357 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 8885 + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,1.5 - parent: 89 - - uid: 8886 + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,2.5 - parent: 89 - - uid: 8887 + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,5.5 - parent: 89 - - uid: 8891 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -127.5,6.5 - parent: 89 - - uid: 8960 + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8961 + color: '#DC143CFF' + - uid: 12363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8995 + color: '#DC143CFF' + - uid: 12364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-2.5 - parent: 89 + pos: 38.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8996 + color: '#4169E1FF' + - uid: 12365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8997 + color: '#DC143CFF' + - uid: 12366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-0.5 - parent: 89 + pos: 40.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8998 + color: '#DC143CFF' + - uid: 12367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-2.5 - parent: 89 + pos: 39.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9007 + color: '#4169E1FF' + - uid: 12368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-2.5 - parent: 89 + pos: 39.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9008 + color: '#4169E1FF' + - uid: 12369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-3.5 - parent: 89 + pos: 39.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9041 + color: '#4169E1FF' + - uid: 12370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 89 + pos: 39.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9605 + color: '#4169E1FF' + - uid: 12371 components: - type: Transform - pos: -92.5,20.5 - parent: 89 + pos: 34.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9608 + color: '#DC143CFF' + - uid: 12372 components: - type: Transform - pos: -93.5,21.5 - parent: 89 + pos: 34.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9892 + color: '#DC143CFF' + - uid: 12373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,36.5 - parent: 89 + pos: 34.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9895 + color: '#DC143CFF' + - uid: 12374 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,36.5 - parent: 89 + pos: 38.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9899 + color: '#4169E1FF' + - uid: 12375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,35.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9901 + color: '#4169E1FF' + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,35.5 - parent: 89 + pos: 37.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10969 + color: '#4169E1FF' + - uid: 12377 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 89 + pos: 34.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11314 + color: '#DC143CFF' + - uid: 12378 components: - type: Transform - pos: 24.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11605 + color: '#DC143CFF' + - uid: 12379 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,22.5 - parent: 89 + pos: 34.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12696 + color: '#DC143CFF' + - uid: 12380 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 89 + pos: 36.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12697 + color: '#4169E1FF' + - uid: 12381 components: - type: Transform - pos: 2.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12709 + color: '#4169E1FF' + - uid: 12382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12710 + color: '#4169E1FF' + - uid: 12383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 89 + pos: 42.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12734 + color: '#4169E1FF' + - uid: 12384 components: - type: Transform - pos: 6.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12737 + color: '#DC143CFF' + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,17.5 - parent: 89 + pos: 43.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12750 + color: '#DC143CFF' + - uid: 12386 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 89 + pos: 43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12751 + color: '#4169E1FF' + - uid: 12387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 89 + pos: 44.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12774 + color: '#4169E1FF' + - uid: 12388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12775 + color: '#DC143CFF' + - uid: 12389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#DC143CFF' + - uid: 12390 components: - type: Transform - pos: -3.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12825 + color: '#4169E1FF' + - uid: 12391 components: - type: Transform - pos: 11.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15057 + color: '#DC143CFF' + - uid: 12392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 89 - - uid: 15120 + rot: 1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15126 + color: '#4169E1FF' + - uid: 12394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15131 + color: '#4169E1FF' + - uid: 12395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15176 + color: '#DC143CFF' + - uid: 12396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15390 + color: '#DC143CFF' + - uid: 12397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 89 + pos: 49.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15394 + color: '#4169E1FF' + - uid: 12398 components: - type: Transform - pos: 14.5,21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15442 + color: '#DC143CFF' + - uid: 12399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 89 + pos: 51.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15443 + color: '#4169E1FF' + - uid: 12400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15503 + color: '#DC143CFF' + - uid: 12401 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 89 + pos: 51.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15529 + color: '#DC143CFF' + - uid: 12402 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,32.5 - parent: 89 + pos: 51.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15842 + color: '#DC143CFF' + - uid: 12403 components: - type: Transform - pos: -81.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 51.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15843 + color: '#DC143CFF' + - uid: 12404 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,20.5 - parent: 89 + pos: 51.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15844 + color: '#DC143CFF' + - uid: 12405 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,19.5 - parent: 89 + pos: 51.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15845 + color: '#DC143CFF' + - uid: 12406 components: - type: Transform - pos: -82.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16359 - components: - - type: Transform - pos: 11.5,24.5 - parent: 89 - - uid: 16360 + color: '#DC143CFF' + - uid: 12407 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 89 - - uid: 16362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 89 - - uid: 16366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,22.5 - parent: 89 - - uid: 17720 - components: - - type: Transform - pos: 18.5,17.5 - parent: 89 + pos: 53.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18425 + color: '#DC143CFF' + - uid: 12408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,35.5 - parent: 89 + pos: 54.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19137 + color: '#DC143CFF' + - uid: 12409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,3.5 - parent: 89 + pos: 56.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19778 + color: '#DC143CFF' + - uid: 12410 components: - type: Transform - pos: 39.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19780 + color: '#DC143CFF' + - uid: 12411 components: - type: Transform - pos: 43.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 58.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20040 + color: '#DC143CFF' + - uid: 12412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 57.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20057 + color: '#DC143CFF' + - uid: 12413 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,34.5 - parent: 89 + pos: 59.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20058 + color: '#DC143CFF' + - uid: 12414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20060 + color: '#DC143CFF' + - uid: 12415 components: - type: Transform - pos: 26.5,36.5 - parent: 89 + pos: 60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20061 + color: '#DC143CFF' + - uid: 12416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 89 + pos: 60.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20119 + color: '#DC143CFF' + - uid: 12417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 89 + pos: 60.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20157 + color: '#DC143CFF' + - uid: 12418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 89 + pos: 60.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20809 + color: '#DC143CFF' + - uid: 12419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 89 + pos: 60.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20817 + color: '#DC143CFF' + - uid: 12420 components: - type: Transform - pos: 0.5,17.5 - parent: 89 + pos: 60.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20970 + color: '#DC143CFF' + - uid: 12421 components: - type: Transform - pos: -28.5,22.5 - parent: 89 + pos: 60.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21186 + color: '#DC143CFF' + - uid: 12422 components: - type: Transform - pos: -29.5,23.5 - parent: 89 + pos: 52.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21229 + color: '#4169E1FF' + - uid: 12423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,20.5 - parent: 89 + pos: 52.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21253 + color: '#4169E1FF' + - uid: 12424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 89 + pos: 52.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21456 + color: '#4169E1FF' + - uid: 12425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 89 + pos: 52.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21685 + color: '#4169E1FF' + - uid: 12426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 21627 - - uid: 21686 + pos: 52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 21627 - - uid: 21687 + pos: 52.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 + rot: -1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22432 + color: '#4169E1FF' + - uid: 12429 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22477 + color: '#4169E1FF' + - uid: 12430 components: - type: Transform - pos: 44.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22480 + color: '#4169E1FF' + - uid: 12431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22498 + color: '#4169E1FF' + - uid: 12432 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22526 + color: '#4169E1FF' + - uid: 12433 components: - type: Transform - pos: 48.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22527 + color: '#4169E1FF' + - uid: 12434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22528 + color: '#4169E1FF' + - uid: 12435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-29.5 - parent: 89 + pos: 60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22541 + color: '#4169E1FF' + - uid: 12436 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 89 + pos: 61.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22542 + color: '#4169E1FF' + - uid: 12437 components: - type: Transform - pos: 44.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 61.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24022 + color: '#4169E1FF' + - uid: 12438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24023 + color: '#4169E1FF' + - uid: 12439 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 22565 + pos: 61.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24024 + color: '#4169E1FF' + - uid: 12440 components: - type: Transform - pos: -17.5,-10.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 24025 + color: '#4169E1FF' + - uid: 12441 components: - type: Transform - pos: -26.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24026 + color: '#4169E1FF' + - uid: 12442 components: - type: Transform - pos: -10.5,-12.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24027 + color: '#4169E1FF' + - uid: 12443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24028 + color: '#4169E1FF' + - uid: 12444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 22565 + pos: 31.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24029 + color: '#DC143CFF' + - uid: 12445 components: - type: Transform - pos: -12.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24030 + color: '#DC143CFF' + - uid: 12446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 22565 + pos: -0.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24031 + color: '#4169E1FF' + - uid: 12447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24032 + color: '#DC143CFF' + - uid: 12448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24033 + color: '#4169E1FF' + - uid: 12449 components: - type: Transform - pos: -7.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24034 + color: '#4169E1FF' + - uid: 12450 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 22565 + pos: -12.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24035 + color: '#DC143CFF' + - uid: 12451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24036 + color: '#4169E1FF' + - uid: 12452 components: - type: Transform - pos: -11.5,6.5 - parent: 22565 + pos: -12.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24037 + color: '#DC143CFF' + - uid: 12453 components: - type: Transform - pos: -31.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24038 + color: '#DC143CFF' + - uid: 12454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24039 + color: '#DC143CFF' + - uid: 12455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24040 + color: '#4169E1FF' + - uid: 12456 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 22565 + pos: -9.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24041 + color: '#4169E1FF' + - uid: 12457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24042 + color: '#DC143CFF' + - uid: 12458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24043 + color: '#DC143CFF' + - uid: 12459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24044 + color: '#4169E1FF' + - uid: 12460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24045 + color: '#DC143CFF' + - uid: 12461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24046 + color: '#DC143CFF' + - uid: 12462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24047 + color: '#4169E1FF' + - uid: 12463 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,2.5 - parent: 22565 + pos: -22.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24048 + color: '#4169E1FF' + - uid: 12464 components: - type: Transform - pos: -17.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24049 + color: '#4169E1FF' + - uid: 12465 components: - type: Transform - pos: -30.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24050 + color: '#4169E1FF' + - uid: 12466 components: - type: Transform - pos: -29.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24051 + color: '#4169E1FF' + - uid: 12467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24052 + color: '#4169E1FF' + - uid: 12468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24053 + color: '#DC143CFF' + - uid: 12469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 22565 + pos: -18.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24054 + color: '#4169E1FF' + - uid: 12470 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 22565 + pos: -17.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24055 + color: '#4169E1FF' + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 22565 + pos: -17.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25509 + color: '#DC143CFF' + - uid: 12472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 18153 - - uid: 25510 + rot: 1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 18153 - - uid: 25511 + rot: 1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25512 + color: '#4169E1FF' + - uid: 12475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25513 + color: '#DC143CFF' + - uid: 12476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25514 + color: '#4169E1FF' + - uid: 12477 components: - type: Transform - pos: 5.5,-4.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPipeFourway - entities: - - uid: 120 + color: '#DC143CFF' + - uid: 12478 components: - type: Transform - pos: -109.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 189 + color: '#DC143CFF' + - uid: 12479 components: - type: Transform - pos: -12.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 317 + color: '#4169E1FF' + - uid: 12480 components: - type: Transform - pos: -17.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 910 + color: '#4169E1FF' + - uid: 12481 components: - type: Transform - pos: -82.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2506 + color: '#DC143CFF' + - uid: 12482 components: - type: Transform - pos: -81.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2898 + color: '#DC143CFF' + - uid: 12483 components: - type: Transform - pos: -78.5,-16.5 - parent: 89 - - uid: 2985 + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12484 components: - type: Transform - pos: -103.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3238 + color: '#4169E1FF' + - uid: 12485 components: - type: Transform - pos: -95.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3239 + color: '#DC143CFF' + - uid: 12486 components: - type: Transform - pos: -94.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3433 + color: '#4169E1FF' + - uid: 12487 components: - type: Transform - pos: -107.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3743 + color: '#DC143CFF' + - uid: 12488 components: - type: Transform - pos: -49.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3846 + color: '#DC143CFF' + - uid: 12489 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3860 + color: '#4169E1FF' + - uid: 12490 components: - type: Transform - pos: -17.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4002 + color: '#4169E1FF' + - uid: 12491 components: - type: Transform - pos: -11.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4197 + color: '#DC143CFF' + - uid: 12492 components: - type: Transform - pos: 52.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4425 + color: '#4169E1FF' + - uid: 12493 components: - type: Transform - pos: -2.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4528 + color: '#4169E1FF' + - uid: 12494 components: - type: Transform - pos: -2.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4529 + color: '#DC143CFF' + - uid: 12495 components: - type: Transform - pos: -0.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4560 + color: '#DC143CFF' + - uid: 12496 components: - type: Transform - pos: -2.5,-29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4634 + color: '#4169E1FF' + - uid: 12497 components: - type: Transform - pos: 1.5,-25.5 - parent: 89 + pos: -1.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4637 + color: '#DC143CFF' + - uid: 12498 components: - type: Transform - pos: 3.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4737 + color: '#DC143CFF' + - uid: 12499 components: - type: Transform - pos: -54.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4781 + color: '#DC143CFF' + - uid: 12500 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4941 + color: '#DC143CFF' + - uid: 12501 components: - type: Transform - pos: -56.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5130 + color: '#4169E1FF' + - uid: 12502 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5132 + color: '#4169E1FF' + - uid: 12503 components: - type: Transform - pos: 5.5,-12.5 - parent: 89 + pos: -2.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5137 + color: '#DC143CFF' + - uid: 12504 components: - type: Transform - pos: 51.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5237 + color: '#4169E1FF' + - uid: 12505 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5359 + color: '#4169E1FF' + - uid: 12506 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6604 + color: '#4169E1FF' + - uid: 12507 components: - type: Transform - pos: -73.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6605 + color: '#DC143CFF' + - uid: 12508 components: - type: Transform - pos: -72.5,9.5 - parent: 89 + pos: -0.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11096 + color: '#4169E1FF' + - uid: 12509 components: - type: Transform - pos: 25.5,29.5 - parent: 89 + pos: -2.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11879 + color: '#DC143CFF' + - uid: 12510 components: - type: Transform - pos: 23.5,31.5 - parent: 89 + pos: -2.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12711 + color: '#DC143CFF' + - uid: 12511 components: - type: Transform - pos: 7.5,12.5 - parent: 89 + pos: -0.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14050 + color: '#4169E1FF' + - uid: 12512 components: - type: Transform - pos: 25.5,14.5 - parent: 89 + pos: -0.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16364 + color: '#4169E1FF' + - uid: 12513 components: - type: Transform - pos: 7.5,22.5 - parent: 89 - - uid: 20091 + pos: -2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12514 components: - type: Transform - pos: -5.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21204 + color: '#4169E1FF' + - uid: 12515 components: - type: Transform - pos: -30.5,32.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21210 + color: '#4169E1FF' + - uid: 12516 components: - type: Transform - pos: -30.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21238 + color: '#4169E1FF' + - uid: 12517 components: - type: Transform - pos: -29.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21242 + color: '#DC143CFF' + - uid: 12518 components: - type: Transform - pos: -29.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21265 + color: '#DC143CFF' + - uid: 12519 components: - type: Transform - pos: -30.5,24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24056 + color: '#DC143CFF' + - uid: 12520 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -2.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24057 + color: '#DC143CFF' + - uid: 12521 components: - type: Transform - pos: -31.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24058 + color: '#4169E1FF' + - uid: 12522 components: - type: Transform - pos: -10.5,2.5 - parent: 22565 + pos: -0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24059 + color: '#4169E1FF' + - uid: 12523 components: - type: Transform - pos: 7.5,5.5 - parent: 22565 + pos: -2.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24060 + color: '#DC143CFF' + - uid: 12524 components: - type: Transform - pos: -29.5,6.5 - parent: 22565 + pos: -2.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24061 + color: '#DC143CFF' + - uid: 12525 components: - type: Transform - pos: -20.5,10.5 - parent: 22565 + pos: -0.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 17 + color: '#4169E1FF' + - uid: 12526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 89 + pos: -2.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21 + color: '#DC143CFF' + - uid: 12527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,11.5 - parent: 89 + pos: -2.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 36 + color: '#DC143CFF' + - uid: 12528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,15.5 - parent: 89 + pos: -0.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 111 + color: '#4169E1FF' + - uid: 12529 components: - type: Transform - pos: 25.5,26.5 - parent: 89 + pos: -0.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 204 + color: '#4169E1FF' + - uid: 12530 components: - type: Transform - pos: 10.5,36.5 - parent: 89 + pos: -54.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 222 + color: '#DC143CFF' + - uid: 12531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 240 + color: '#DC143CFF' + - uid: 12532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 261 + color: '#4169E1FF' + - uid: 12533 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-24.5 - parent: 89 - - uid: 313 + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 89 + pos: -1.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 319 + color: '#DC143CFF' + - uid: 12535 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,15.5 - parent: 89 + pos: -0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 327 + color: '#DC143CFF' + - uid: 12536 components: - type: Transform - pos: -107.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 330 + color: '#DC143CFF' + - uid: 12537 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 89 + pos: 0.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 332 + color: '#4169E1FF' + - uid: 12538 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 89 + pos: 12.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 333 + color: '#DC143CFF' + - uid: 12539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 335 + color: '#DC143CFF' + - uid: 12540 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12541 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 89 + pos: 2.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 369 + color: '#DC143CFF' + - uid: 12542 components: - type: Transform - pos: -66.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 537 + color: '#4169E1FF' + - uid: 12543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 632 + color: '#4169E1FF' + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 633 + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12545 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 634 + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-21.5 - parent: 89 - - uid: 635 + pos: 3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12547 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 636 + pos: 3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12548 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 637 + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12549 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-21.5 - parent: 89 - - uid: 638 + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12550 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 642 + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12551 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-24.5 - parent: 89 - - uid: 643 + pos: 3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12552 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-23.5 - parent: 89 - - uid: 644 + pos: 3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12553 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-22.5 - parent: 89 - - uid: 850 + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 912 + color: '#DC143CFF' + - uid: 12555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 966 + color: '#4169E1FF' + - uid: 12556 components: - type: Transform - pos: -78.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 981 + color: '#4169E1FF' + - uid: 12557 components: - type: Transform - pos: -91.5,-7.5 - parent: 89 + pos: -2.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1097 + color: '#DC143CFF' + - uid: 12558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1153 + pos: -2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-21.5 - parent: 89 - - uid: 1154 + pos: -2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-21.5 - parent: 89 - - uid: 1156 + pos: -2.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1157 + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 1158 + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1159 + pos: -2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 1160 + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 1161 + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-21.5 - parent: 89 - - uid: 1162 + pos: -0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 1163 + pos: -0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1164 + pos: -0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-21.5 - parent: 89 - - uid: 1165 + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 1166 + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-21.5 - parent: 89 - - uid: 1167 + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 1168 + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-22.5 - parent: 89 - - uid: 1288 + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-23.5 - parent: 89 - - uid: 1289 + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-21.5 - parent: 89 - - uid: 1290 + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 1292 + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12577 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-24.5 - parent: 89 - - uid: 1293 + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12578 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-23.5 - parent: 89 - - uid: 1294 + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-22.5 - parent: 89 - - uid: 1295 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-21.5 - parent: 89 - - uid: 1296 + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 1297 + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12582 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-24.5 - parent: 89 - - uid: 1298 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-23.5 - parent: 89 - - uid: 1299 + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-22.5 - parent: 89 - - uid: 1300 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-21.5 - parent: 89 - - uid: 1301 + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 1302 + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12587 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-21.5 - parent: 89 - - uid: 1303 + pos: -7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12588 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1304 + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-22.5 - parent: 89 - - uid: 1305 + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-23.5 - parent: 89 - - uid: 1306 + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-24.5 - parent: 89 - - uid: 1307 + rot: -1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1308 + rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-24.5 - parent: 89 - - uid: 1309 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12594 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-23.5 - parent: 89 - - uid: 1310 + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12595 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-22.5 - parent: 89 - - uid: 1311 + pos: -7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-21.5 - parent: 89 - - uid: 1312 + pos: -9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 1321 + pos: -9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1426 + color: '#DC143CFF' + - uid: 12599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-12.5 - parent: 89 + pos: -1.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1427 + color: '#DC143CFF' + - uid: 12600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-12.5 - parent: 89 + pos: -0.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-19.5 - parent: 89 - - uid: 1451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-19.5 - parent: 89 - - uid: 1452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-19.5 - parent: 89 - - uid: 1453 + color: '#DC143CFF' + - uid: 12601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-19.5 - parent: 89 - - uid: 1454 + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-19.5 - parent: 89 - - uid: 1467 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1468 + color: '#4169E1FF' + - uid: 12604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1469 + color: '#4169E1FF' + - uid: 12605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1470 + color: '#4169E1FF' + - uid: 12606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-18.5 - parent: 89 + pos: -56.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1473 + color: '#4169E1FF' + - uid: 12607 components: - type: Transform - pos: -102.5,-20.5 - parent: 89 - - uid: 1480 + pos: -56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-18.5 - parent: 89 + pos: -54.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1481 + color: '#DC143CFF' + - uid: 12609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-17.5 - parent: 89 + pos: -54.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1482 + color: '#DC143CFF' + - uid: 12610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-15.5 - parent: 89 + pos: -54.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1483 + color: '#DC143CFF' + - uid: 12611 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-21.5 - parent: 89 - - uid: 1484 + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12612 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-14.5 - parent: 89 + pos: -54.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1490 + color: '#DC143CFF' + - uid: 12613 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-18.5 - parent: 89 + pos: -54.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1492 + color: '#DC143CFF' + - uid: 12614 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,-16.5 - parent: 89 + pos: -54.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1493 + color: '#DC143CFF' + - uid: 12615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1494 + color: '#4169E1FF' + - uid: 12616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1499 + color: '#4169E1FF' + - uid: 12617 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-16.5 - parent: 89 + pos: -55.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1500 + color: '#DC143CFF' + - uid: 12618 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-16.5 - parent: 89 + pos: -56.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1501 + color: '#DC143CFF' + - uid: 12619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-16.5 - parent: 89 + pos: -57.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1502 + color: '#DC143CFF' + - uid: 12620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,-16.5 - parent: 89 + pos: -58.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1503 + color: '#DC143CFF' + - uid: 12621 components: - type: Transform - pos: -97.5,-17.5 - parent: 89 - - uid: 1504 + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12622 components: - type: Transform - pos: -97.5,-18.5 - parent: 89 - - uid: 1505 + rot: 1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12623 components: - type: Transform - pos: -95.5,-17.5 - parent: 89 - - uid: 1506 + rot: 1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12624 components: - type: Transform - pos: -95.5,-18.5 - parent: 89 - - uid: 1507 + rot: 1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12625 components: - type: Transform - pos: -93.5,-17.5 - parent: 89 - - uid: 1508 + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12626 components: - type: Transform - pos: -93.5,-18.5 - parent: 89 - - uid: 1513 + rot: 1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12627 components: - type: Transform - pos: -102.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1514 + color: '#4169E1FF' + - uid: 12628 components: - type: Transform - pos: -102.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1515 + color: '#4169E1FF' + - uid: 12629 components: - type: Transform - pos: -102.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1523 + color: '#4169E1FF' + - uid: 12630 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-16.5 - parent: 89 + pos: -64.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1524 + color: '#4169E1FF' + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-16.5 - parent: 89 + pos: -63.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1557 + color: '#4169E1FF' + - uid: 12632 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-12.5 - parent: 89 + pos: -62.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1593 + color: '#4169E1FF' + - uid: 12633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-14.5 - parent: 89 + pos: -61.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1601 + color: '#4169E1FF' + - uid: 12634 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1667 + color: '#4169E1FF' + - uid: 12635 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-11.5 - parent: 89 + pos: -60.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1669 + color: '#DC143CFF' + - uid: 12636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,11.5 - parent: 89 + pos: -61.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1681 + color: '#DC143CFF' + - uid: 12637 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-9.5 - parent: 89 + pos: -62.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1682 + color: '#DC143CFF' + - uid: 12638 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-9.5 - parent: 89 + pos: -63.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1685 + color: '#DC143CFF' + - uid: 12639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-9.5 - parent: 89 + pos: -64.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1687 + color: '#DC143CFF' + - uid: 12640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-11.5 - parent: 89 + pos: -65.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1688 + color: '#DC143CFF' + - uid: 12641 components: - type: Transform - pos: -95.5,-10.5 - parent: 89 + pos: -73.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1689 + color: '#DC143CFF' + - uid: 12642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1742 + color: '#4169E1FF' + - uid: 12643 components: - type: Transform - pos: -95.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1906 + color: '#4169E1FF' + - uid: 12644 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,11.5 - parent: 89 + pos: -68.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1937 + color: '#4169E1FF' + - uid: 12645 components: - type: Transform - pos: -91.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1943 + color: '#4169E1FF' + - uid: 12646 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,-8.5 - parent: 89 + pos: 9.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1944 + color: '#4169E1FF' + - uid: 12647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,-8.5 - parent: 89 + pos: 8.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1945 + color: '#DC143CFF' + - uid: 12648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,-8.5 - parent: 89 + pos: 9.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1955 + color: '#DC143CFF' + - uid: 12649 components: - type: Transform - pos: -90.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1956 + color: '#DC143CFF' + - uid: 12650 components: - type: Transform - pos: -90.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1964 + color: '#DC143CFF' + - uid: 12651 components: - type: Transform - pos: -90.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1981 + color: '#DC143CFF' + - uid: 12652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-24.5 - parent: 89 - - uid: 1982 + pos: -65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-23.5 - parent: 89 - - uid: 1983 + pos: -65.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-22.5 - parent: 89 - - uid: 1984 + pos: -65.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-21.5 - parent: 89 - - uid: 1985 + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 1986 + pos: -65.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-24.5 - parent: 89 - - uid: 1987 + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-23.5 - parent: 89 - - uid: 1989 + pos: -65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-22.5 - parent: 89 - - uid: 1990 + pos: -65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-21.5 - parent: 89 - - uid: 1991 + rot: 1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 1995 + pos: -59.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-2.5 - parent: 89 + pos: -59.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2025 + color: '#DC143CFF' + - uid: 12663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 2026 + pos: -59.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-16.5 - parent: 89 + pos: -59.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2027 + color: '#DC143CFF' + - uid: 12665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-21.5 - parent: 89 - - uid: 2028 + pos: -59.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2057 + pos: -59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2106 + color: '#4169E1FF' + - uid: 12668 components: - type: Transform - pos: -91.5,-18.5 - parent: 89 - - uid: 2107 + rot: 1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12669 components: - type: Transform - pos: -91.5,-17.5 - parent: 89 - - uid: 2108 + rot: 1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12670 components: - type: Transform - pos: -89.5,-18.5 - parent: 89 - - uid: 2109 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12671 components: - type: Transform - pos: -89.5,-17.5 - parent: 89 - - uid: 2110 + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12672 components: - type: Transform - pos: -87.5,-18.5 - parent: 89 - - uid: 2111 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12673 components: - type: Transform - pos: -87.5,-17.5 - parent: 89 - - uid: 2114 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12674 components: - type: Transform - pos: -88.5,-19.5 - parent: 89 - - uid: 2115 + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12675 components: - type: Transform - pos: -90.5,-19.5 - parent: 89 - - uid: 2116 + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12676 components: - type: Transform - pos: -86.5,-19.5 - parent: 89 - - uid: 2117 + rot: 1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-18.5 - parent: 89 + pos: -60.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2119 + color: '#DC143CFF' + - uid: 12678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-18.5 - parent: 89 + pos: -61.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2231 + color: '#DC143CFF' + - uid: 12679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2232 + rot: -1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-21.5 - parent: 89 - - uid: 2233 + rot: -1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-21.5 - parent: 89 - - uid: 2234 + rot: -1.5707963267948966 rad + pos: -64.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-21.5 - parent: 89 - - uid: 2235 + rot: -1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2236 + rot: -1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2237 + rot: -1.5707963267948966 rad + pos: -67.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2349 + rot: -1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12686 components: - type: Transform - pos: -79.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2370 + color: '#DC143CFF' + - uid: 12687 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,-18.5 - parent: 89 + pos: -70.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2371 + color: '#DC143CFF' + - uid: 12688 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,-18.5 - parent: 89 + pos: -68.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2372 + color: '#4169E1FF' + - uid: 12689 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,-18.5 - parent: 89 + pos: -67.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2377 + color: '#4169E1FF' + - uid: 12690 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,-16.5 - parent: 89 + pos: -66.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2378 + color: '#4169E1FF' + - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -71.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2381 + color: '#DC143CFF' + - uid: 12692 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-18.5 - parent: 89 + pos: -71.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2382 + color: '#DC143CFF' + - uid: 12693 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-17.5 - parent: 89 + pos: -71.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2388 + color: '#DC143CFF' + - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -69.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2389 + color: '#4169E1FF' + - uid: 12695 components: - type: Transform - pos: -78.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -69.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2391 + color: '#4169E1FF' + - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2487 + pos: -6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12697 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-6.5 - parent: 89 + pos: -10.5,-10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2498 + - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2504 + color: '#DC143CFF' + - uid: 12699 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-16.5 - parent: 89 + pos: -8.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2531 + color: '#4169E1FF' + - uid: 12700 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-17.5 - parent: 89 + pos: -8.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2533 + color: '#4169E1FF' + - uid: 12701 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-16.5 - parent: 89 + pos: -8.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2534 + color: '#4169E1FF' + - uid: 12702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-14.5 - parent: 89 + pos: -6.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2535 + color: '#DC143CFF' + - uid: 12703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2537 + color: '#DC143CFF' + - uid: 12704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2539 + color: '#4169E1FF' + - uid: 12705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2540 + color: '#DC143CFF' + - uid: 12706 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-15.5 - parent: 89 + pos: 7.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2541 + color: '#DC143CFF' + - uid: 12707 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-15.5 - parent: 89 + pos: 2.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2542 + color: '#DC143CFF' + - uid: 12708 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-15.5 - parent: 89 + pos: 2.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2543 + color: '#4169E1FF' + - uid: 12709 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-15.5 - parent: 89 + pos: 3.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2656 + color: '#4169E1FF' + - uid: 12710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2676 + color: '#4169E1FF' + - uid: 12711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 89 + pos: 4.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2842 + color: '#DC143CFF' + - uid: 12712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2925 + color: '#DC143CFF' + - uid: 12713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2927 + color: '#DC143CFF' + - uid: 12714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2935 + color: '#4169E1FF' + - uid: 12715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 89 + pos: 7.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2945 + color: '#4169E1FF' + - uid: 12716 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-9.5 - parent: 89 + pos: 37.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2960 + color: '#4169E1FF' + - uid: 12717 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-7.5 - parent: 89 + pos: 11.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2961 + color: '#4169E1FF' + - uid: 12718 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-7.5 - parent: 89 + pos: 12.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2963 + color: '#DC143CFF' + - uid: 12719 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-5.5 - parent: 89 + pos: -56.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2964 + color: '#4169E1FF' + - uid: 12720 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-3.5 - parent: 89 + pos: -56.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2967 + color: '#4169E1FF' + - uid: 12721 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-4.5 - parent: 89 + pos: -56.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2968 + color: '#4169E1FF' + - uid: 12722 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-3.5 - parent: 89 + pos: -55.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2969 + color: '#4169E1FF' + - uid: 12723 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-4.5 - parent: 89 + pos: -54.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2970 + color: '#4169E1FF' + - uid: 12724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2971 + color: '#4169E1FF' + - uid: 12725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-4.5 - parent: 89 + pos: -52.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2972 + color: '#4169E1FF' + - uid: 12726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-3.5 - parent: 89 + pos: -51.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2973 + color: '#4169E1FF' + - uid: 12727 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-3.5 - parent: 89 + pos: -49.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2975 + color: '#4169E1FF' + - uid: 12728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-4.5 - parent: 89 + pos: -54.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2977 + color: '#DC143CFF' + - uid: 12729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2978 + color: '#DC143CFF' + - uid: 12730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2979 + color: '#DC143CFF' + - uid: 12731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2980 + color: '#DC143CFF' + - uid: 12732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-4.5 - parent: 89 + pos: 14.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2981 + color: '#4169E1FF' + - uid: 12733 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-4.5 - parent: 89 + pos: 15.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2982 + color: '#4169E1FF' + - uid: 12734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-3.5 - parent: 89 + pos: 16.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2984 + color: '#4169E1FF' + - uid: 12735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2986 + color: '#4169E1FF' + - uid: 12736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2992 + color: '#4169E1FF' + - uid: 12737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2995 + color: '#4169E1FF' + - uid: 12738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2996 + color: '#4169E1FF' + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -103.5,-4.5 - parent: 89 + pos: 23.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2997 + color: '#4169E1FF' + - uid: 12740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2998 + color: '#4169E1FF' + - uid: 12741 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-3.5 - parent: 89 + pos: 26.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3000 + color: '#4169E1FF' + - uid: 12742 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-3.5 - parent: 89 + pos: 28.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3001 + color: '#4169E1FF' + - uid: 12743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-3.5 - parent: 89 + pos: 29.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3031 + color: '#4169E1FF' + - uid: 12744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3059 + color: '#4169E1FF' + - uid: 12745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3060 + color: '#4169E1FF' + - uid: 12746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3061 + color: '#4169E1FF' + - uid: 12747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3068 + color: '#4169E1FF' + - uid: 12748 components: - type: Transform - pos: -104.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3069 + color: '#DC143CFF' + - uid: 12749 components: - type: Transform - pos: -104.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3073 + color: '#DC143CFF' + - uid: 12750 components: - type: Transform - pos: -105.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3074 + color: '#DC143CFF' + - uid: 12751 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3075 + color: '#DC143CFF' + - uid: 12752 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3076 + color: '#DC143CFF' + - uid: 12753 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3077 + color: '#DC143CFF' + - uid: 12754 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3078 + color: '#DC143CFF' + - uid: 12755 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3079 + color: '#DC143CFF' + - uid: 12756 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3080 + color: '#DC143CFF' + - uid: 12757 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3213 + color: '#DC143CFF' + - uid: 12758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3214 + color: '#DC143CFF' + - uid: 12759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3215 + color: '#DC143CFF' + - uid: 12760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3217 + color: '#DC143CFF' + - uid: 12761 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3218 + color: '#DC143CFF' + - uid: 12762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3219 + color: '#DC143CFF' + - uid: 12763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,2.5 - parent: 89 + pos: 12.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3220 + color: '#DC143CFF' + - uid: 12764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,4.5 - parent: 89 + pos: 12.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3221 + color: '#DC143CFF' + - uid: 12765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3222 + color: '#DC143CFF' + - uid: 12766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3223 + color: '#DC143CFF' + - uid: 12767 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,8.5 - parent: 89 + pos: 11.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3224 + color: '#4169E1FF' + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,9.5 - parent: 89 + pos: 11.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3225 + color: '#4169E1FF' + - uid: 12769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3227 + color: '#4169E1FF' + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-1.5 - parent: 89 + pos: 26.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3228 + color: '#DC143CFF' + - uid: 12771 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,0.5 - parent: 89 + pos: 26.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3229 + color: '#DC143CFF' + - uid: 12772 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,2.5 - parent: 89 + pos: 26.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3230 + color: '#DC143CFF' + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,1.5 - parent: 89 + pos: 26.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3231 + color: '#DC143CFF' + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,3.5 - parent: 89 + pos: 27.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3232 + color: '#4169E1FF' + - uid: 12775 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,4.5 - parent: 89 + pos: 27.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3233 + color: '#4169E1FF' + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,5.5 - parent: 89 + pos: 27.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3234 + color: '#4169E1FF' + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,6.5 - parent: 89 + pos: 27.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3235 + color: '#4169E1FF' + - uid: 12778 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,7.5 - parent: 89 + pos: 27.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3236 + color: '#4169E1FF' + - uid: 12779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,9.5 - parent: 89 + pos: 18.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3237 + color: '#4169E1FF' + - uid: 12780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,10.5 - parent: 89 + pos: 18.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3240 + color: '#4169E1FF' + - uid: 12781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,7.5 - parent: 89 + pos: 18.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3241 + color: '#4169E1FF' + - uid: 12782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,0.5 - parent: 89 + pos: 19.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3268 + color: '#DC143CFF' + - uid: 12783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,8.5 - parent: 89 + pos: 19.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3307 + color: '#DC143CFF' + - uid: 12784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-1.5 - parent: 89 + pos: 19.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3310 + color: '#DC143CFF' + - uid: 12785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-1.5 - parent: 89 + pos: 19.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3315 + color: '#DC143CFF' + - uid: 12786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-1.5 - parent: 89 + pos: 21.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3319 + color: '#4169E1FF' + - uid: 12787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-1.5 - parent: 89 + pos: 21.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3320 + color: '#4169E1FF' + - uid: 12788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-1.5 - parent: 89 + pos: 21.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3322 + color: '#4169E1FF' + - uid: 12789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-1.5 - parent: 89 + pos: 22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3324 + color: '#DC143CFF' + - uid: 12790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,7.5 - parent: 89 + pos: 22.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3326 + color: '#DC143CFF' + - uid: 12791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-2.5 - parent: 89 + pos: 22.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3328 + color: '#DC143CFF' + - uid: 12792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-2.5 - parent: 89 + pos: 22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3329 + color: '#DC143CFF' + - uid: 12793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-2.5 - parent: 89 + pos: 24.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3331 + color: '#4169E1FF' + - uid: 12794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-2.5 - parent: 89 + pos: 24.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3333 + color: '#4169E1FF' + - uid: 12795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-2.5 - parent: 89 + pos: 24.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3345 + color: '#4169E1FF' + - uid: 12796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 - parent: 89 + pos: 25.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3349 + color: '#DC143CFF' + - uid: 12797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,0.5 - parent: 89 + pos: 25.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3371 + color: '#DC143CFF' + - uid: 12798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,6.5 - parent: 89 + pos: 25.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3374 + color: '#DC143CFF' + - uid: 12799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,8.5 - parent: 89 + pos: 25.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3375 + color: '#DC143CFF' + - uid: 12800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,7.5 - parent: 89 + pos: 27.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3376 + color: '#4169E1FF' + - uid: 12801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,6.5 - parent: 89 + pos: 27.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3377 + color: '#4169E1FF' + - uid: 12802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,7.5 - parent: 89 + pos: 27.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3378 + color: '#4169E1FF' + - uid: 12803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,5.5 - parent: 89 + pos: 28.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3379 + color: '#DC143CFF' + - uid: 12804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,4.5 - parent: 89 + pos: 28.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3385 + color: '#DC143CFF' + - uid: 12805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,3.5 - parent: 89 + pos: 28.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3388 + color: '#DC143CFF' + - uid: 12806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,3.5 - parent: 89 + pos: 28.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3392 + color: '#DC143CFF' + - uid: 12807 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,3.5 - parent: 89 + pos: 30.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3403 + color: '#4169E1FF' + - uid: 12808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3404 + color: '#DC143CFF' + - uid: 12809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3405 + color: '#DC143CFF' + - uid: 12810 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,5.5 - parent: 89 + pos: -68.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3406 + color: '#DC143CFF' + - uid: 12811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3410 + color: '#DC143CFF' + - uid: 12812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3414 + color: '#DC143CFF' + - uid: 12813 components: - type: Transform - pos: -102.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3418 + color: '#DC143CFF' + - uid: 12814 components: - type: Transform - pos: -104.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3420 + color: '#4169E1FF' + - uid: 12815 components: - type: Transform - pos: -104.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3421 + color: '#4169E1FF' + - uid: 12816 components: - type: Transform - pos: -104.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3422 + color: '#4169E1FF' + - uid: 12817 components: - type: Transform - pos: -104.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3426 + color: '#4169E1FF' + - uid: 12818 components: - type: Transform - pos: -102.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3428 + color: '#4169E1FF' + - uid: 12819 components: - type: Transform - pos: -102.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3429 + color: '#4169E1FF' + - uid: 12820 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3430 + pos: 2.5,-42.5 + parent: 2 + - uid: 12821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,3.5 - parent: 89 + pos: 48.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3434 + color: '#DC143CFF' + - uid: 12822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3435 + color: '#DC143CFF' + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,3.5 - parent: 89 + pos: 39.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3436 + color: '#4169E1FF' + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3437 + pos: 0.5,-42.5 + parent: 2 + - uid: 12825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3438 + color: '#DC143CFF' + - uid: 12826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,5.5 - parent: 89 + pos: 38.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3439 + color: '#4169E1FF' + - uid: 12827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -106.5,5.5 - parent: 89 + pos: 36.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3440 + color: '#DC143CFF' + - uid: 12828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,5.5 - parent: 89 + pos: 37.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3441 + color: '#DC143CFF' + - uid: 12829 components: - type: Transform - pos: -109.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3442 + color: '#DC143CFF' + - uid: 12830 components: - type: Transform - pos: -109.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3446 + color: '#DC143CFF' + - uid: 12831 components: - type: Transform - pos: -109.5,8.5 - parent: 89 + pos: 37.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3447 + color: '#4169E1FF' + - uid: 12832 components: - type: Transform - pos: -109.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3449 + color: '#DC143CFF' + - uid: 12833 components: - type: Transform - pos: -109.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3453 + color: '#4169E1FF' + - uid: 12834 components: - type: Transform - pos: -107.5,4.5 - parent: 89 + pos: 36.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3454 + color: '#4169E1FF' + - uid: 12835 components: - type: Transform - pos: -107.5,5.5 - parent: 89 + pos: 37.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3455 + color: '#DC143CFF' + - uid: 12836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 89 + pos: 46.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3456 + color: '#DC143CFF' + - uid: 12837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 89 + pos: 45.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3457 + color: '#DC143CFF' + - uid: 12838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 89 + pos: 51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3466 + color: '#4169E1FF' + - uid: 12839 components: - type: Transform - pos: -107.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3467 + color: '#4169E1FF' + - uid: 12840 components: - type: Transform - pos: -107.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3482 + color: '#4169E1FF' + - uid: 12841 components: - type: Transform - pos: -107.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 48.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3483 + color: '#4169E1FF' + - uid: 12842 components: - type: Transform - pos: -107.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3486 + color: '#4169E1FF' + - uid: 12843 components: - type: Transform - pos: -107.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3487 + color: '#4169E1FF' + - uid: 12844 components: - type: Transform - pos: -107.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3492 + color: '#4169E1FF' + - uid: 12845 components: - type: Transform - pos: -107.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3493 + pos: -99.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12846 components: - type: Transform - pos: -107.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -67.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3495 + color: '#DC143CFF' + - uid: 12847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3496 + color: '#DC143CFF' + - uid: 12848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3497 + color: '#DC143CFF' + - uid: 12849 components: - type: Transform - pos: -109.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3508 + color: '#DC143CFF' + - uid: 12850 components: - type: Transform - pos: -109.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -63.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3509 + color: '#DC143CFF' + - uid: 12851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3510 + color: '#DC143CFF' + - uid: 12852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -61.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3511 + color: '#DC143CFF' + - uid: 12853 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3513 + color: '#DC143CFF' + - uid: 12854 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + color: '#DC143CFF' + - uid: 12855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3516 + color: '#DC143CFF' + - uid: 12856 components: - type: Transform - pos: -109.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -55.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3517 + color: '#DC143CFF' + - uid: 12857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -54.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3518 + color: '#DC143CFF' + - uid: 12858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3519 + color: '#DC143CFF' + - uid: 12859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3520 + color: '#DC143CFF' + - uid: 12860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3521 + color: '#DC143CFF' + - uid: 12861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3523 + color: '#DC143CFF' + - uid: 12862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -49.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3524 + color: '#DC143CFF' + - uid: 12863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -48.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3526 + color: '#DC143CFF' + - uid: 12864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3527 + color: '#DC143CFF' + - uid: 12865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3528 + color: '#DC143CFF' + - uid: 12866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3529 + color: '#DC143CFF' + - uid: 12867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -43.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3530 + color: '#DC143CFF' + - uid: 12868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3531 + color: '#DC143CFF' + - uid: 12869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3532 + color: '#DC143CFF' + - uid: 12870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3533 + color: '#DC143CFF' + - uid: 12871 components: - type: Transform - pos: -109.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3556 + color: '#DC143CFF' + - uid: 12872 components: - type: Transform - pos: -109.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3557 + color: '#DC143CFF' + - uid: 12873 components: - type: Transform - pos: -109.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3559 + color: '#DC143CFF' + - uid: 12874 components: - type: Transform - pos: -109.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3560 + color: '#DC143CFF' + - uid: 12875 components: - type: Transform - pos: -109.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3565 + color: '#DC143CFF' + - uid: 12876 components: - type: Transform - pos: -107.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3566 + color: '#DC143CFF' + - uid: 12877 components: - type: Transform - pos: -107.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3567 + color: '#DC143CFF' + - uid: 12878 components: - type: Transform - pos: -107.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -67.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3568 + color: '#4169E1FF' + - uid: 12879 components: - type: Transform - pos: -109.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3569 + color: '#4169E1FF' + - uid: 12880 components: - type: Transform - pos: -107.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3573 + color: '#4169E1FF' + - uid: 12881 components: - type: Transform - pos: -109.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3574 + color: '#4169E1FF' + - uid: 12882 components: - type: Transform - pos: -107.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -63.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3575 + color: '#4169E1FF' + - uid: 12883 components: - type: Transform - pos: -109.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3576 + color: '#4169E1FF' + - uid: 12884 components: - type: Transform - pos: -109.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3577 + color: '#4169E1FF' + - uid: 12885 components: - type: Transform - pos: -107.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -59.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3578 + color: '#4169E1FF' + - uid: 12886 components: - type: Transform - pos: -109.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3579 + color: '#4169E1FF' + - uid: 12887 components: - type: Transform - pos: -107.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -57.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3582 + color: '#4169E1FF' + - uid: 12888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3583 + color: '#4169E1FF' + - uid: 12889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -54.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3584 + color: '#4169E1FF' + - uid: 12890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3585 + color: '#4169E1FF' + - uid: 12891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3586 + color: '#4169E1FF' + - uid: 12892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3587 + color: '#4169E1FF' + - uid: 12893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3588 + color: '#4169E1FF' + - uid: 12894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -48.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3589 + color: '#4169E1FF' + - uid: 12895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3590 + color: '#4169E1FF' + - uid: 12896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3591 + color: '#4169E1FF' + - uid: 12897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3592 + color: '#4169E1FF' + - uid: 12898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3594 + color: '#4169E1FF' + - uid: 12899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -43.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3595 + color: '#4169E1FF' + - uid: 12900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3596 + color: '#4169E1FF' + - uid: 12901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3597 + color: '#4169E1FF' + - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3598 + color: '#4169E1FF' + - uid: 12903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3599 + color: '#4169E1FF' + - uid: 12904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3606 + color: '#4169E1FF' + - uid: 12905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3607 + color: '#4169E1FF' + - uid: 12906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3609 + color: '#4169E1FF' + - uid: 12907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3610 + color: '#4169E1FF' + - uid: 12908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3611 + color: '#4169E1FF' + - uid: 12909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3612 + color: '#4169E1FF' + - uid: 12910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,23.5 - parent: 89 + pos: -73.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3613 + color: '#DC143CFF' + - uid: 12911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,22.5 - parent: 89 + pos: -73.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3623 + color: '#DC143CFF' + - uid: 12912 components: - type: Transform - pos: -107.5,26.5 - parent: 89 + pos: -73.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3629 + color: '#DC143CFF' + - uid: 12913 components: - type: Transform - pos: -88.5,9.5 - parent: 89 + pos: -73.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3632 + color: '#DC143CFF' + - uid: 12914 components: - type: Transform - pos: -89.5,1.5 - parent: 89 + pos: -73.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3633 + color: '#DC143CFF' + - uid: 12915 components: - type: Transform - pos: -89.5,2.5 - parent: 89 + pos: -73.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3634 + color: '#DC143CFF' + - uid: 12916 components: - type: Transform - pos: -89.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -72.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3635 + color: '#DC143CFF' + - uid: 12917 components: - type: Transform - pos: -88.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -71.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3636 + color: '#DC143CFF' + - uid: 12918 components: - type: Transform - pos: -88.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3637 + color: '#DC143CFF' + - uid: 12919 components: - type: Transform - pos: -88.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3639 + color: '#DC143CFF' + - uid: 12920 components: - type: Transform - pos: -88.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3640 + color: '#4169E1FF' + - uid: 12921 components: - type: Transform - pos: -88.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3641 + color: '#4169E1FF' + - uid: 12922 components: - type: Transform - pos: -87.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3642 + color: '#4169E1FF' + - uid: 12923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3643 + color: '#4169E1FF' + - uid: 12924 components: - type: Transform - pos: -87.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3644 + color: '#4169E1FF' + - uid: 12925 components: - type: Transform - pos: -87.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3646 + color: '#4169E1FF' + - uid: 12926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3647 + color: '#4169E1FF' + - uid: 12927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -70.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3649 + color: '#4169E1FF' + - uid: 12928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -69.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3650 + color: '#4169E1FF' + - uid: 12929 components: - type: Transform - pos: -87.5,8.5 - parent: 89 + pos: -32.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3651 + color: '#4169E1FF' + - uid: 12930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,10.5 - parent: 89 + pos: -32.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3652 + color: '#4169E1FF' + - uid: 12931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,10.5 - parent: 89 + pos: -32.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3657 + color: '#4169E1FF' + - uid: 12932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3659 + color: '#DC143CFF' + - uid: 12933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3660 + color: '#DC143CFF' + - uid: 12934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3661 + color: '#DC143CFF' + - uid: 12935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3662 + color: '#4169E1FF' + - uid: 12936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3665 + color: '#4169E1FF' + - uid: 12937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,9.5 - parent: 89 + pos: -30.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3666 + color: '#DC143CFF' + - uid: 12938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,10.5 - parent: 89 + pos: -30.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3667 + color: '#DC143CFF' + - uid: 12939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3668 + color: '#4169E1FF' + - uid: 12940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 89 + pos: -30.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3670 + color: '#DC143CFF' + - uid: 12941 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,10.5 - parent: 89 + pos: -30.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3676 + color: '#4169E1FF' + - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3678 + color: '#DC143CFF' + - uid: 12943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,10.5 - parent: 89 + pos: -31.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3680 + color: '#DC143CFF' + - uid: 12944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3683 + color: '#DC143CFF' + - uid: 12945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3684 + color: '#DC143CFF' + - uid: 12946 components: - type: Transform - pos: -72.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3685 + color: '#DC143CFF' + - uid: 12947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3687 + color: '#DC143CFF' + - uid: 12948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3688 + color: '#DC143CFF' + - uid: 12949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3689 + color: '#DC143CFF' + - uid: 12950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,5.5 - parent: 89 + pos: -26.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3690 + color: '#DC143CFF' + - uid: 12951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3691 + color: '#DC143CFF' + - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3692 + color: '#DC143CFF' + - uid: 12953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3697 + color: '#DC143CFF' + - uid: 12954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3700 + color: '#DC143CFF' + - uid: 12955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3701 + color: '#DC143CFF' + - uid: 12956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3704 + color: '#DC143CFF' + - uid: 12957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3705 + color: '#DC143CFF' + - uid: 12958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3707 + color: '#DC143CFF' + - uid: 12959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,4.5 - parent: 89 + pos: -35.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3710 + color: '#DC143CFF' + - uid: 12960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,5.5 - parent: 89 + pos: -36.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3714 + color: '#DC143CFF' + - uid: 12961 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,10.5 - parent: 89 + pos: -37.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3715 + color: '#DC143CFF' + - uid: 12962 components: - type: Transform - pos: -65.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3716 + color: '#DC143CFF' + - uid: 12963 components: - type: Transform - pos: -66.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3718 + color: '#4169E1FF' + - uid: 12964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3720 + color: '#4169E1FF' + - uid: 12965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3721 + color: '#4169E1FF' + - uid: 12966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3722 + color: '#4169E1FF' + - uid: 12967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3723 + color: '#4169E1FF' + - uid: 12968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3724 + color: '#4169E1FF' + - uid: 12969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3725 + color: '#4169E1FF' + - uid: 12970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3726 + color: '#4169E1FF' + - uid: 12971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3727 + color: '#4169E1FF' + - uid: 12972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3728 + color: '#4169E1FF' + - uid: 12973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3729 + color: '#4169E1FF' + - uid: 12974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3730 + color: '#4169E1FF' + - uid: 12975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3732 + color: '#4169E1FF' + - uid: 12976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3733 + color: '#4169E1FF' + - uid: 12977 components: - type: Transform - pos: -56.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3734 + color: '#4169E1FF' + - uid: 12978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,4.5 - parent: 89 + pos: -39.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3735 + color: '#DC143CFF' + - uid: 12979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 89 + pos: -39.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3736 + color: '#DC143CFF' + - uid: 12980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,4.5 - parent: 89 + pos: -39.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3738 + color: '#DC143CFF' + - uid: 12981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,5.5 - parent: 89 + pos: -39.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3739 + color: '#DC143CFF' + - uid: 12982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,4.5 - parent: 89 + pos: -39.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3740 + color: '#DC143CFF' + - uid: 12983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,4.5 - parent: 89 + pos: -39.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3741 + color: '#DC143CFF' + - uid: 12984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,5.5 - parent: 89 + pos: -39.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3742 + color: '#DC143CFF' + - uid: 12985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,5.5 - parent: 89 + pos: -39.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3744 + color: '#DC143CFF' + - uid: 12986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 89 + pos: -39.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3746 + color: '#DC143CFF' + - uid: 12987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,4.5 - parent: 89 + pos: -39.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3747 + color: '#DC143CFF' + - uid: 12988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 89 + pos: -39.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3749 + color: '#DC143CFF' + - uid: 12989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,4.5 - parent: 89 + pos: -40.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3750 + color: '#4169E1FF' + - uid: 12990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,4.5 - parent: 89 + pos: -40.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3751 + color: '#4169E1FF' + - uid: 12991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 89 + pos: -40.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3752 + color: '#4169E1FF' + - uid: 12992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,4.5 - parent: 89 + pos: -40.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3753 + color: '#4169E1FF' + - uid: 12993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 89 + pos: -40.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3754 + color: '#4169E1FF' + - uid: 12994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,5.5 - parent: 89 + pos: -40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3755 + color: '#4169E1FF' + - uid: 12995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 89 + pos: -40.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3756 + color: '#4169E1FF' + - uid: 12996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,4.5 - parent: 89 + pos: -40.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3757 + color: '#4169E1FF' + - uid: 12997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 89 + pos: -40.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3758 + color: '#4169E1FF' + - uid: 12998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 89 + pos: -40.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3759 + color: '#4169E1FF' + - uid: 12999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,4.5 - parent: 89 + pos: -40.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3761 + color: '#4169E1FF' + - uid: 13000 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 89 + pos: -41.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3762 + color: '#4169E1FF' + - uid: 13001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 - parent: 89 + pos: -50.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3764 + color: '#4169E1FF' + - uid: 13002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,3.5 - parent: 89 + pos: -50.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3765 + color: '#4169E1FF' + - uid: 13003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 89 + pos: -50.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3766 + color: '#4169E1FF' + - uid: 13004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 89 + pos: -50.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3767 + color: '#4169E1FF' + - uid: 13005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 89 + pos: -50.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3768 + color: '#4169E1FF' + - uid: 13006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,2.5 - parent: 89 + pos: -50.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3769 + color: '#4169E1FF' + - uid: 13007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 89 + pos: -49.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3770 + color: '#DC143CFF' + - uid: 13008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 89 + pos: -49.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3771 + color: '#DC143CFF' + - uid: 13009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 - parent: 89 + pos: -49.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3772 + color: '#DC143CFF' + - uid: 13010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,3.5 - parent: 89 + pos: -49.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3773 + color: '#DC143CFF' + - uid: 13011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 89 + pos: -49.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3774 + color: '#DC143CFF' + - uid: 13012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,3.5 - parent: 89 + pos: -49.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3776 + color: '#DC143CFF' + - uid: 13013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 89 + pos: -49.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3777 + color: '#DC143CFF' + - uid: 13014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3778 + color: '#DC143CFF' + - uid: 13015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3779 + color: '#DC143CFF' + - uid: 13016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 89 + pos: -50.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3781 + color: '#4169E1FF' + - uid: 13017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3782 + color: '#DC143CFF' + - uid: 13018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3784 + color: '#DC143CFF' + - uid: 13019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3799 + color: '#4169E1FF' + - uid: 13020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3800 + color: '#4169E1FF' + - uid: 13021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3801 + color: '#4169E1FF' + - uid: 13022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 89 + pos: -87.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3802 + color: '#4169E1FF' + - uid: 13023 components: - type: Transform - pos: -54.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -86.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3803 + color: '#4169E1FF' + - uid: 13024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,5.5 - parent: 89 + pos: -85.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3804 + color: '#4169E1FF' + - uid: 13025 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 89 + pos: -83.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3810 + color: '#4169E1FF' + - uid: 13026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -82.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3811 + color: '#4169E1FF' + - uid: 13027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -81.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3813 + color: '#4169E1FF' + - uid: 13028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -80.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3814 + color: '#4169E1FF' + - uid: 13029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -79.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3815 + color: '#4169E1FF' + - uid: 13030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -78.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3816 + color: '#4169E1FF' + - uid: 13031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -77.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3817 + color: '#4169E1FF' + - uid: 13032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3818 + color: '#DC143CFF' + - uid: 13033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -87.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3822 + color: '#DC143CFF' + - uid: 13034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -86.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3824 + color: '#DC143CFF' + - uid: 13035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -85.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3828 + color: '#DC143CFF' + - uid: 13036 components: - type: Transform - pos: -19.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3829 + color: '#DC143CFF' + - uid: 13037 components: - type: Transform - pos: -19.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -83.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3831 + color: '#DC143CFF' + - uid: 13038 components: - type: Transform - pos: -17.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -81.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3834 + color: '#DC143CFF' + - uid: 13039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -80.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3835 + color: '#DC143CFF' + - uid: 13040 components: - type: Transform - pos: -17.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -79.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3837 + color: '#DC143CFF' + - uid: 13041 components: - type: Transform - pos: -17.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -78.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3839 + color: '#DC143CFF' + - uid: 13042 components: - type: Transform - pos: -17.5,-1.5 - parent: 89 + pos: -77.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3841 + color: '#DC143CFF' + - uid: 13043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 - parent: 89 + pos: -94.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3844 + color: '#4169E1FF' + - uid: 13044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 89 + pos: -94.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3845 + color: '#4169E1FF' + - uid: 13045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 89 + pos: -95.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3847 + color: '#DC143CFF' + - uid: 13046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 89 + pos: -95.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3848 + color: '#DC143CFF' + - uid: 13047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -97.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3849 + color: '#4169E1FF' + - uid: 13048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -97.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3851 + color: '#DC143CFF' + - uid: 13049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3856 + color: '#4169E1FF' + - uid: 13050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3857 + color: '#DC143CFF' + - uid: 13051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3858 + color: '#4169E1FF' + - uid: 13052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3859 + color: '#DC143CFF' + - uid: 13053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -94.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3865 + color: '#DC143CFF' + - uid: 13054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -98.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3866 + color: '#DC143CFF' + - uid: 13055 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 89 + pos: -31.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3867 + color: '#4169E1FF' + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 89 + pos: -3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3870 + color: '#DC143CFF' + - uid: 13057 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 89 + pos: -2.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3875 + color: '#4169E1FF' + - uid: 13058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 89 + pos: -13.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3876 + color: '#4169E1FF' + - uid: 13059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 89 + pos: 4.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3877 + color: '#FF0000FF' + - uid: 13060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 89 + pos: 4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3879 + color: '#4169E1FF' + - uid: 13061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3881 + color: '#DC143CFF' + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 89 + pos: -7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3882 + color: '#DC143CFF' + - uid: 13063 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 89 + pos: -7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3885 + color: '#DC143CFF' + - uid: 13064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 89 + pos: -7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3949 + color: '#DC143CFF' + - uid: 13065 components: - type: Transform - pos: -19.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3959 + color: '#4169E1FF' + - uid: 13066 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 89 + pos: -6.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3963 + color: '#4169E1FF' + - uid: 13067 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3965 + color: '#4169E1FF' + - uid: 13068 components: - type: Transform - pos: -17.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3966 + color: '#4169E1FF' + - uid: 13069 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 + pos: -6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#4169E1FF' + - uid: 13070 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3968 + color: '#DC143CFF' + - uid: 13071 components: - type: Transform - pos: -19.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3970 + color: '#4169E1FF' + - uid: 13072 components: - type: Transform - pos: -17.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3973 + color: '#DC143CFF' + - uid: 13073 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 89 + pos: -3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3974 + color: '#4169E1FF' + - uid: 13074 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 89 + pos: -5.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3975 + color: '#DC143CFF' + - uid: 13075 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 89 + pos: -6.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3978 + color: '#DC143CFF' + - uid: 13076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 89 + pos: -3.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3979 + color: '#4169E1FF' + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3991 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3992 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3994 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3996 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3997 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 89 + pos: -18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3998 + color: '#4169E1FF' + - uid: 13078 components: - type: Transform - pos: 52.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4001 + color: '#4169E1FF' + - uid: 13079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4009 + color: '#4169E1FF' + - uid: 13080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4010 + color: '#4169E1FF' + - uid: 13081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4011 + color: '#DC143CFF' + - uid: 13082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4012 + color: '#DC143CFF' + - uid: 13083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4013 + color: '#DC143CFF' + - uid: 13084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 89 + pos: -8.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4014 + color: '#DC143CFF' + - uid: 13085 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 89 + pos: -7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + color: '#4169E1FF' + - uid: 13086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 89 + pos: -8.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4016 + color: '#4169E1FF' + - uid: 13087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 89 + pos: -4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4018 + color: '#4169E1FF' + - uid: 13088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4019 + color: '#DC143CFF' + - uid: 13089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4020 + color: '#DC143CFF' + - uid: 13090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4022 + color: '#DC143CFF' + - uid: 13091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4024 + color: '#DC143CFF' + - uid: 13092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4025 + color: '#4169E1FF' + - uid: 13093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4026 + color: '#4169E1FF' + - uid: 13094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4027 + color: '#4169E1FF' + - uid: 13095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4028 + color: '#4169E1FF' + - uid: 13096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4029 + color: '#4169E1FF' + - uid: 13097 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 89 + pos: -65.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4030 + color: '#DC143CFF' + - uid: 13098 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 89 + pos: -65.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4031 + color: '#4169E1FF' + - uid: 13099 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 89 + pos: -64.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4032 + color: '#DC143CFF' + - uid: 13100 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 89 + pos: -64.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4034 + color: '#4169E1FF' + - uid: 13101 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 89 + pos: -63.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4036 + color: '#DC143CFF' + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4041 - components: - - type: Transform - pos: -2.5,1.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 89 + pos: -63.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4045 + color: '#4169E1FF' + - uid: 13103 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 89 + pos: -62.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4048 + color: '#DC143CFF' + - uid: 13104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 89 + pos: -62.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4050 + color: '#4169E1FF' + - uid: 13105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 89 + pos: -61.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4051 + color: '#DC143CFF' + - uid: 13106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 89 + pos: -61.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4052 + color: '#4169E1FF' + - uid: 13107 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 89 + pos: -60.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4053 + color: '#DC143CFF' + - uid: 13108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 89 + pos: -60.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4054 + color: '#4169E1FF' + - uid: 13109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 89 + pos: -59.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4055 + color: '#DC143CFF' + - uid: 13110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 89 + pos: -59.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4056 + color: '#4169E1FF' + - uid: 13111 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 89 + pos: -58.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4057 + color: '#DC143CFF' + - uid: 13112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 89 + pos: -58.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4058 + color: '#4169E1FF' + - uid: 13113 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 89 + pos: -57.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4059 + color: '#4169E1FF' + - uid: 13114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 89 + pos: -56.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4060 + color: '#4169E1FF' + - uid: 13115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 89 + pos: -55.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4061 + color: '#4169E1FF' + - uid: 13116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 89 + pos: -66.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4062 + color: '#4169E1FF' + - uid: 13117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 89 + pos: -66.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4063 + color: '#4169E1FF' + - uid: 13118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 89 + pos: -66.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4064 + color: '#4169E1FF' + - uid: 13119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,3.5 - parent: 89 + pos: -66.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4065 + color: '#4169E1FF' + - uid: 13120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 89 + pos: -66.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4066 + color: '#4169E1FF' + - uid: 13121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 89 + pos: -66.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4067 + color: '#4169E1FF' + - uid: 13122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 89 + pos: -66.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4068 + color: '#4169E1FF' + - uid: 13123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 89 + pos: -66.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4069 + color: '#4169E1FF' + - uid: 13124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 89 + pos: -66.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4070 + color: '#4169E1FF' + - uid: 13125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 89 + pos: -66.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4071 + color: '#4169E1FF' + - uid: 13126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 89 + pos: -66.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4072 + color: '#4169E1FF' + - uid: 13127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,3.5 - parent: 89 + pos: -66.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4073 + color: '#4169E1FF' + - uid: 13128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 89 + pos: -66.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4074 + color: '#DC143CFF' + - uid: 13129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4075 + color: '#DC143CFF' + - uid: 13130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4076 + color: '#DC143CFF' + - uid: 13131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4077 + color: '#DC143CFF' + - uid: 13132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 89 + pos: -67.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4079 + color: '#DC143CFF' + - uid: 13133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 89 + pos: -67.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4080 + color: '#DC143CFF' + - uid: 13134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,3.5 - parent: 89 + pos: -67.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4081 + color: '#DC143CFF' + - uid: 13135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,3.5 - parent: 89 + pos: -67.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4082 + color: '#DC143CFF' + - uid: 13136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 89 + pos: -67.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4083 + color: '#DC143CFF' + - uid: 13137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 89 + pos: -67.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4084 + color: '#DC143CFF' + - uid: 13138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 89 + pos: -67.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4085 + color: '#DC143CFF' + - uid: 13139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 89 + pos: -67.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4087 + color: '#DC143CFF' + - uid: 13140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 89 + pos: -67.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4088 + color: '#DC143CFF' + - uid: 13141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 89 + pos: -67.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4090 + color: '#DC143CFF' + - uid: 13142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 89 + pos: -67.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4092 + color: '#DC143CFF' + - uid: 13143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,3.5 - parent: 89 + pos: -67.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4093 + color: '#DC143CFF' + - uid: 13144 components: - type: Transform - pos: 39.5,4.5 - parent: 89 + pos: -67.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4094 + color: '#DC143CFF' + - uid: 13145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 89 + pos: -67.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4095 + color: '#DC143CFF' + - uid: 13146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 89 + pos: -67.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4096 + color: '#DC143CFF' + - uid: 13147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 89 + pos: -67.5,42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4098 + color: '#DC143CFF' + - uid: 13148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 89 + pos: -67.5,43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4099 + color: '#DC143CFF' + - uid: 13149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 89 + pos: 33.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4100 + color: '#4169E1FF' + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 89 + pos: 31.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4101 + color: '#4169E1FF' + - uid: 13151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4102 + color: '#DC143CFF' + - uid: 13152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4103 + color: '#DC143CFF' + - uid: 13153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4104 + color: '#DC143CFF' + - uid: 13154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4106 + color: '#DC143CFF' + - uid: 13155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4107 + color: '#DC143CFF' + - uid: 13156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4108 + color: '#DC143CFF' + - uid: 13157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4109 + color: '#DC143CFF' + - uid: 13158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4110 + color: '#4169E1FF' + - uid: 13159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4111 + color: '#4169E1FF' + - uid: 13160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4112 + color: '#4169E1FF' + - uid: 13161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4113 + color: '#4169E1FF' + - uid: 13162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4114 + color: '#4169E1FF' + - uid: 13163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4115 + color: '#4169E1FF' + - uid: 13164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4116 + rot: 3.141592653589793 rad + pos: -60.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4117 + color: '#4169E1FF' + - uid: 13166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 89 + pos: -65.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4118 + color: '#DC143CFF' + - uid: 13167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 89 + pos: -64.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4125 + color: '#DC143CFF' + - uid: 13168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 89 + pos: -63.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4126 + color: '#DC143CFF' + - uid: 13169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 89 + pos: -62.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4127 + color: '#DC143CFF' + - uid: 13170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4128 + color: '#DC143CFF' + - uid: 13171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4129 + color: '#DC143CFF' + - uid: 13172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 89 + pos: -59.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4130 + color: '#DC143CFF' + - uid: 13173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 89 + pos: -47.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4131 + color: '#DC143CFF' + - uid: 13174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4133 + color: '#DC143CFF' + - uid: 13175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4134 + color: '#DC143CFF' + - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4138 + color: '#4169E1FF' + - uid: 13177 components: - type: Transform - pos: 39.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4139 + color: '#4169E1FF' + - uid: 13178 components: - type: Transform - pos: 39.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4140 + color: '#4169E1FF' + - uid: 13179 components: - type: Transform - pos: 39.5,5.5 - parent: 89 + pos: -68.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4142 + color: '#4169E1FF' + - uid: 13180 components: - type: Transform - pos: 39.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4143 + color: '#DC143CFF' + - uid: 13181 components: - type: Transform - pos: 34.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4144 + color: '#DC143CFF' + - uid: 13182 components: - type: Transform - pos: 34.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4145 + color: '#DC143CFF' + - uid: 13183 components: - type: Transform - pos: 34.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4148 + color: '#DC143CFF' + - uid: 13184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 89 + pos: -62.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4149 + color: '#DC143CFF' + - uid: 13185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4150 + color: '#DC143CFF' + - uid: 13186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 89 + pos: -60.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4151 + color: '#DC143CFF' + - uid: 13187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4152 + color: '#DC143CFF' + - uid: 13188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -67.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4153 + color: '#4169E1FF' + - uid: 13189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4154 + color: '#4169E1FF' + - uid: 13190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4158 + color: '#4169E1FF' + - uid: 13191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4164 + color: '#4169E1FF' + - uid: 13192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4165 + color: '#4169E1FF' + - uid: 13193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -62.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4166 + color: '#4169E1FF' + - uid: 13194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4167 + color: '#4169E1FF' + - uid: 13195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -60.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4168 + color: '#4169E1FF' + - uid: 13196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4169 + color: '#4169E1FF' + - uid: 13197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -58.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4170 + color: '#4169E1FF' + - uid: 13198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -57.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4171 + color: '#4169E1FF' + - uid: 13199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -56.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4172 + color: '#4169E1FF' + - uid: 13200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -73.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4173 + color: '#DC143CFF' + - uid: 13201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,1.5 - parent: 89 + pos: -71.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4174 + color: '#4169E1FF' + - uid: 13202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,1.5 - parent: 89 + pos: -71.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4175 + color: '#4169E1FF' + - uid: 13203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,0.5 - parent: 89 + pos: -71.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4176 + color: '#4169E1FF' + - uid: 13204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 - parent: 89 + pos: -71.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4177 + color: '#4169E1FF' + - uid: 13205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 89 + pos: -71.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4178 + color: '#4169E1FF' + - uid: 13206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,1.5 - parent: 89 + pos: -71.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4180 + color: '#4169E1FF' + - uid: 13207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4198 + color: '#4169E1FF' + - uid: 13208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4199 + color: '#4169E1FF' + - uid: 13209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 89 + pos: -68.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4200 + color: '#4169E1FF' + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,1.5 - parent: 89 + pos: -67.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4203 + color: '#4169E1FF' + - uid: 13211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -67.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4204 + color: '#DC143CFF' + - uid: 13212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -68.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4205 + color: '#DC143CFF' + - uid: 13213 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,4.5 - parent: 89 + pos: -69.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4206 + color: '#DC143CFF' + - uid: 13214 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,5.5 - parent: 89 + pos: -69.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4207 + color: '#DC143CFF' + - uid: 13215 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,6.5 - parent: 89 + pos: -69.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4208 + color: '#DC143CFF' + - uid: 13216 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,7.5 - parent: 89 + pos: -69.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4210 + color: '#DC143CFF' + - uid: 13217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,8.5 - parent: 89 + pos: -66.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4211 + color: '#DC143CFF' + - uid: 13218 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,8.5 - parent: 89 + pos: -87.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4212 + color: '#DC143CFF' + - uid: 13219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4213 + color: '#4169E1FF' + - uid: 13220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4214 + color: '#4169E1FF' + - uid: 13221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4215 + color: '#DC143CFF' + - uid: 13222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4217 + color: '#DC143CFF' + - uid: 13223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4218 + color: '#DC143CFF' + - uid: 13224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4220 + color: '#DC143CFF' + - uid: 13225 components: - type: Transform - pos: 60.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4221 + color: '#DC143CFF' + - uid: 13226 components: - type: Transform - pos: 60.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4223 + color: '#4169E1FF' + - uid: 13227 components: - type: Transform - pos: 60.5,5.5 - parent: 89 + pos: -32.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4224 + color: '#DC143CFF' + - uid: 13228 components: - type: Transform - pos: 60.5,4.5 - parent: 89 + pos: -62.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4225 + color: '#DC143CFF' + - uid: 13229 components: - type: Transform - pos: 60.5,3.5 - parent: 89 + pos: -47.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4226 + color: '#DC143CFF' + - uid: 13230 components: - type: Transform - pos: 60.5,2.5 - parent: 89 + pos: -12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4227 + color: '#DC143CFF' + - uid: 13231 components: - type: Transform - pos: 60.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4233 + color: '#4169E1FF' + - uid: 13232 components: - type: Transform - pos: 51.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4234 + color: '#4169E1FF' + - uid: 13233 components: - type: Transform - pos: 52.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4235 + color: '#4169E1FF' + - uid: 13234 components: - type: Transform - pos: 52.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4236 + color: '#DC143CFF' + - uid: 13235 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4237 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 13236 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4238 + rot: 1.5707963267948966 rad + pos: -78.5,-11.5 + parent: 2 + - uid: 13237 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4240 + rot: 3.141592653589793 rad + pos: -75.5,-12.5 + parent: 2 + - uid: 13238 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4244 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 13239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4245 + rot: 1.5707963267948966 rad + pos: -77.5,-11.5 + parent: 2 + - uid: 13240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4246 + pos: -141.5,-0.5 + parent: 2 + - uid: 13241 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4248 + pos: -140.5,-0.5 + parent: 2 + - uid: 13242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4249 + color: '#4169E1FF' + - uid: 13243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4250 + color: '#4169E1FF' + - uid: 13244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4251 + color: '#4169E1FF' + - uid: 13245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,0.5 - parent: 89 + pos: -1.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4252 + color: '#4169E1FF' + - uid: 13246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,0.5 - parent: 89 + pos: -1.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4263 + color: '#4169E1FF' + - uid: 13247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4264 + color: '#4169E1FF' + - uid: 13248 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,2.5 - parent: 89 + pos: -14.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4265 + color: '#4169E1FF' + - uid: 13249 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,3.5 - parent: 89 + pos: -14.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4266 + color: '#4169E1FF' + - uid: 13250 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,4.5 - parent: 89 + pos: -14.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4268 + color: '#4169E1FF' + - uid: 13251 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,5.5 - parent: 89 + pos: -14.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4269 + color: '#4169E1FF' + - uid: 13252 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,6.5 - parent: 89 + pos: -14.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4270 + color: '#4169E1FF' + - uid: 13253 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,7.5 - parent: 89 + pos: -14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4271 + color: '#4169E1FF' + - uid: 13254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4327 + color: '#4169E1FF' + - uid: 13255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 89 - - uid: 4328 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 89 - - uid: 4353 + rot: -1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13257 components: - type: Transform - pos: -0.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4357 + color: '#4169E1FF' + - uid: 13258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 89 + pos: -116.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4358 + color: '#4169E1FF' + - uid: 13259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4359 + rot: 1.5707963267948966 rad + pos: -128.5,9.5 + parent: 2 + - uid: 13260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4360 + color: '#DC143CFF' + - uid: 13261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4361 + color: '#DC143CFF' + - uid: 13262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4367 + color: '#DC143CFF' + - uid: 13263 components: - type: Transform - pos: -12.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4368 + color: '#DC143CFF' + - uid: 13264 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 89 + pos: -115.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4369 + color: '#DC143CFF' + - uid: 13265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 89 + pos: -121.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4370 + color: '#4169E1FF' + - uid: 13266 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 89 + pos: -111.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4371 + color: '#4169E1FF' + - uid: 13267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 89 + pos: -112.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4372 + color: '#4169E1FF' + - uid: 13268 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 89 + pos: -113.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4373 + color: '#4169E1FF' + - uid: 13269 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 89 + pos: -114.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4374 + color: '#4169E1FF' + - uid: 13270 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 + pos: -115.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4384 + color: '#4169E1FF' + - uid: 13271 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4385 + pos: -5.5,-42.5 + parent: 2 + - uid: 13272 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4386 + pos: -121.5,6.5 + parent: 2 + - uid: 13273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4387 + rot: -1.5707963267948966 rad + pos: -122.5,5.5 + parent: 2 + - uid: 13274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4388 + rot: -1.5707963267948966 rad + pos: -122.5,2.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -121.5,1.5 + parent: 2 + - uid: 13276 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4389 + pos: -121.5,-0.5 + parent: 2 + - uid: 13277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4390 + rot: -1.5707963267948966 rad + pos: -122.5,-1.5 + parent: 2 + - uid: 13278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4391 + rot: -1.5707963267948966 rad + pos: -123.5,-1.5 + parent: 2 + - uid: 13279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4393 + pos: -124.5,-2.5 + parent: 2 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4394 + pos: -128.5,-3.5 + parent: 2 + - uid: 13281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4395 + rot: 3.141592653589793 rad + pos: -129.5,-2.5 + parent: 2 + - uid: 13282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4396 + rot: 3.141592653589793 rad + pos: -129.5,-1.5 + parent: 2 + - uid: 13283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4397 + rot: 3.141592653589793 rad + pos: -129.5,-0.5 + parent: 2 + - uid: 13284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4398 + rot: 3.141592653589793 rad + pos: -129.5,0.5 + parent: 2 + - uid: 13285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4399 + rot: 3.141592653589793 rad + pos: -129.5,1.5 + parent: 2 + - uid: 13286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4400 + rot: 3.141592653589793 rad + pos: -129.5,2.5 + parent: 2 + - uid: 13287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4401 + rot: 3.141592653589793 rad + pos: -129.5,3.5 + parent: 2 + - uid: 13288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4402 + rot: 3.141592653589793 rad + pos: -129.5,4.5 + parent: 2 + - uid: 13289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4403 + rot: 3.141592653589793 rad + pos: -129.5,5.5 + parent: 2 + - uid: 13290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4404 + rot: 3.141592653589793 rad + pos: -129.5,6.5 + parent: 2 + - uid: 13291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4405 + pos: -129.5,7.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,8.5 + parent: 2 + - uid: 13293 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4406 + pos: -129.5,9.5 + parent: 2 + - uid: 13294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4407 + pos: -127.5,9.5 + parent: 2 + - uid: 13295 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4408 + pos: -126.5,9.5 + parent: 2 + - uid: 13296 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4409 + pos: -125.5,9.5 + parent: 2 + - uid: 13297 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4411 + pos: -124.5,9.5 + parent: 2 + - uid: 13298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4412 + pos: -123.5,9.5 + parent: 2 + - uid: 13299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 89 + pos: -122.5,9.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4414 + color: '#4169E1FF' + - uid: 13301 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 89 + pos: 8.5,20.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4415 + color: '#4169E1FF' + - uid: 13303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4416 + color: '#4169E1FF' + - uid: 13304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4417 + color: '#4169E1FF' + - uid: 13305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4418 + color: '#4169E1FF' + - uid: 13306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4419 + color: '#4169E1FF' + - uid: 13307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4420 + color: '#4169E1FF' + - uid: 13308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4421 + color: '#4169E1FF' + - uid: 13309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4422 + color: '#4169E1FF' + - uid: 13310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4423 + color: '#4169E1FF' + - uid: 13311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4424 + color: '#4169E1FF' + - uid: 13312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4430 + color: '#DC143CFF' + - uid: 13313 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4431 + color: '#DC143CFF' + - uid: 13314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 89 + pos: -112.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4432 + color: '#DC143CFF' + - uid: 13315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 89 + pos: -113.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4433 + color: '#DC143CFF' + - uid: 13316 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 89 + pos: -114.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4434 + color: '#DC143CFF' + - uid: 13317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 89 + pos: -115.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4435 + color: '#DC143CFF' + - uid: 13318 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 89 + pos: -116.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4436 + color: '#DC143CFF' + - uid: 13319 components: - type: Transform - pos: -2.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4437 + color: '#DC143CFF' + - uid: 13320 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 89 + pos: -118.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4438 + color: '#DC143CFF' + - uid: 13321 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 89 + pos: -119.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4439 + color: '#4169E1FF' + - uid: 13322 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 89 + pos: -120.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4440 + color: '#4169E1FF' + - uid: 13323 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-14.5 - parent: 89 + pos: -120.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4453 + color: '#4169E1FF' + - uid: 13324 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4455 + color: '#4169E1FF' + - uid: 13325 components: - type: Transform - pos: -2.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4456 + color: '#4169E1FF' + - uid: 13326 components: - type: Transform - pos: -2.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4457 + color: '#DC143CFF' + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13329 components: - type: Transform - pos: -0.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -119.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4458 + color: '#DC143CFF' + - uid: 13330 components: - type: Transform - pos: -0.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4459 + color: '#DC143CFF' + - uid: 13331 components: - type: Transform - pos: -2.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4462 + color: '#DC143CFF' + - uid: 13332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4463 + color: '#DC143CFF' + - uid: 13333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4464 + color: '#DC143CFF' + - uid: 13334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4465 + color: '#DC143CFF' + - uid: 13335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4466 + color: '#DC143CFF' + - uid: 13336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4467 + color: '#DC143CFF' + - uid: 13337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4468 + color: '#DC143CFF' + - uid: 13338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4469 + color: '#DC143CFF' + - uid: 13339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -108.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4532 + color: '#4169E1FF' + - uid: 13340 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4545 + color: '#4169E1FF' + - uid: 13341 components: - type: Transform - pos: -2.5,-25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4546 + color: '#4169E1FF' + - uid: 13342 components: - type: Transform - pos: -2.5,-26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4547 + color: '#4169E1FF' + - uid: 13343 components: - type: Transform - pos: -0.5,-26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4549 + color: '#4169E1FF' + - uid: 13344 components: - type: Transform - pos: -2.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4550 + color: '#4169E1FF' + - uid: 13345 components: - type: Transform - pos: -2.5,-28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4551 + color: '#4169E1FF' + - uid: 13346 components: - type: Transform - pos: -0.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4552 + color: '#4169E1FF' + - uid: 13347 components: - type: Transform - pos: -0.5,-28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4566 + color: '#4169E1FF' + - uid: 13348 components: - type: Transform - pos: -54.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4577 + color: '#4169E1FF' + - uid: 13349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4578 + color: '#4169E1FF' + - uid: 13350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -119.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4594 + color: '#DC143CFF' + - uid: 13351 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-29.5 - parent: 89 + pos: -120.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4603 + color: '#DC143CFF' + - uid: 13352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 89 + pos: -120.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4607 + color: '#4169E1FF' + - uid: 13353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 89 + pos: -121.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4609 + color: '#4169E1FF' + - uid: 13354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 89 + pos: -121.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4610 + color: '#DC143CFF' + - uid: 13355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 89 + pos: -122.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4653 + color: '#DC143CFF' + - uid: 13356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 89 + pos: 5.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4655 + color: '#4169E1FF' + - uid: 13357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 89 + pos: 5.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4656 + color: '#4169E1FF' + - uid: 13358 components: - type: Transform - pos: 3.5,-7.5 - parent: 89 + pos: 7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4657 + color: '#DC143CFF' + - uid: 13359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 89 + pos: 7.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4660 + color: '#DC143CFF' + - uid: 13360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 89 + pos: 7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4661 + color: '#DC143CFF' + - uid: 13361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 89 + pos: 7.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4662 + color: '#DC143CFF' + - uid: 13362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4663 + color: '#4169E1FF' + - uid: 13363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4664 + color: '#4169E1FF' + - uid: 13364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4667 + color: '#4169E1FF' + - uid: 13365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4710 + color: '#4169E1FF' + - uid: 13366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4711 + color: '#4169E1FF' + - uid: 13367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4712 + color: '#4169E1FF' + - uid: 13368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4713 + color: '#4169E1FF' + - uid: 13369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4714 + color: '#DC143CFF' + - uid: 13370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4729 + color: '#DC143CFF' + - uid: 13371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4738 + color: '#DC143CFF' + - uid: 13372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 89 + pos: 11.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4739 + color: '#DC143CFF' + - uid: 13373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 89 + pos: 12.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4740 + color: '#DC143CFF' + - uid: 13374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 89 + pos: 21.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4741 + color: '#4169E1FF' + - uid: 13375 components: - type: Transform - pos: -2.5,-30.5 - parent: 89 + pos: 23.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4742 + color: '#DC143CFF' + - uid: 13376 components: - type: Transform - pos: -2.5,-31.5 - parent: 89 + pos: 23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4743 + color: '#DC143CFF' + - uid: 13377 components: - type: Transform - pos: -2.5,-32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -93.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4744 + color: '#DC143CFF' + - uid: 13378 components: - type: Transform - pos: -2.5,-33.5 - parent: 89 + pos: -24.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4746 + color: '#4169E1FF' + - uid: 13379 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 + pos: -24.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4747 + color: '#4169E1FF' + - uid: 13380 components: - type: Transform - pos: -2.5,-36.5 - parent: 89 + pos: -24.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4748 + color: '#4169E1FF' + - uid: 13381 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 + pos: -24.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4749 + color: '#4169E1FF' + - uid: 13382 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 + pos: -24.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4750 + color: '#4169E1FF' + - uid: 13383 components: - type: Transform - pos: -0.5,-31.5 - parent: 89 + pos: -24.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4751 + color: '#4169E1FF' + - uid: 13384 components: - type: Transform - pos: -0.5,-32.5 - parent: 89 + pos: -24.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4752 + color: '#4169E1FF' + - uid: 13385 components: - type: Transform - pos: -0.5,-33.5 - parent: 89 + pos: -24.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4753 + color: '#4169E1FF' + - uid: 13386 components: - type: Transform - pos: -0.5,-34.5 - parent: 89 + pos: -24.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4755 + color: '#4169E1FF' + - uid: 13387 components: - type: Transform - pos: -0.5,-36.5 - parent: 89 + pos: -24.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4756 + color: '#4169E1FF' + - uid: 13388 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 + pos: -24.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4757 + color: '#4169E1FF' + - uid: 13389 components: - type: Transform - pos: -0.5,-38.5 - parent: 89 + pos: -24.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4764 + color: '#4169E1FF' + - uid: 13390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 89 + pos: -24.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4765 + color: '#4169E1FF' + - uid: 13391 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 89 + pos: -57.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4766 + color: '#DC143CFF' + - uid: 13392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 89 + pos: -58.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4767 + color: '#DC143CFF' + - uid: 13393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 89 + pos: -59.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4772 + color: '#4169E1FF' + - uid: 13394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4773 + color: '#4169E1FF' + - uid: 13395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4774 + color: '#DC143CFF' + - uid: 13396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -59.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4775 + color: '#DC143CFF' + - uid: 13397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4776 + color: '#4169E1FF' + - uid: 13398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4777 + color: '#4169E1FF' + - uid: 13399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4778 + color: '#DC143CFF' + - uid: 13400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4779 + color: '#4169E1FF' + - uid: 13401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4780 + color: '#4169E1FF' + - uid: 13402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4788 + color: '#4169E1FF' + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 89 + pos: -62.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4790 + color: '#4169E1FF' + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 89 + pos: -61.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4792 + color: '#4169E1FF' + - uid: 13405 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 89 + pos: -61.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4793 + color: '#DC143CFF' + - uid: 13406 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 89 + pos: -66.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4800 + color: '#4169E1FF' + - uid: 13407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -66.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4801 + color: '#4169E1FF' + - uid: 13408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -66.5,42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4802 + color: '#4169E1FF' + - uid: 13409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 89 + pos: -31.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4804 + color: '#4169E1FF' + - uid: 13410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 89 + pos: -30.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4814 + color: '#4169E1FF' + - uid: 13411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4838 + color: '#4169E1FF' + - uid: 13412 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 89 + pos: -29.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4839 + color: '#4169E1FF' + - uid: 13413 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-18.5 - parent: 89 + pos: -30.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4842 + color: '#DC143CFF' + - uid: 13414 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4843 + color: '#DC143CFF' + - uid: 13415 components: - type: Transform - pos: -9.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4844 + color: '#4169E1FF' + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 89 + pos: 10.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4852 + color: '#4169E1FF' + - uid: 13417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 13418 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 89 + pos: 9.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4854 + color: '#4169E1FF' + - uid: 13419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4855 + color: '#4169E1FF' + - uid: 13420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4857 + pos: 9.5,20.5 + parent: 2 + - uid: 13421 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 89 + pos: -124.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4859 + color: '#DC143CFF' + - uid: 13422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -124.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4860 + color: '#4169E1FF' + - uid: 13423 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 89 + pos: -125.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4874 + color: '#DC143CFF' + - uid: 13424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 89 + pos: 7.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4893 + color: '#D3FC03FF' + - uid: 13425 components: - type: Transform - pos: -56.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4895 + color: '#DC143CFF' + - uid: 13426 components: - type: Transform - pos: -56.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4897 + color: '#4169E1FF' + - uid: 13427 components: - type: Transform - pos: -54.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4898 + color: '#4169E1FF' + - uid: 13428 components: - type: Transform - pos: -54.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4899 + color: '#DC143CFF' + - uid: 13429 components: - type: Transform - pos: -54.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4903 + color: '#4169E1FF' + - uid: 13430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4904 + color: '#DC143CFF' + - uid: 13431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-3.5 - parent: 89 + pos: -14.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4905 + color: '#4169E1FF' + - uid: 13432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -8.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4906 + color: '#4169E1FF' + - uid: 13433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4909 + color: '#DC143CFF' + - uid: 13434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4912 + color: '#DC143CFF' + - uid: 13435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,0.5 - parent: 89 + pos: -14.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4915 + color: '#4169E1FF' + - uid: 13436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-1.5 - parent: 89 + pos: 10.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4917 + color: '#4169E1FF' + - uid: 13437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-1.5 - parent: 89 + pos: 10.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4918 + color: '#4169E1FF' + - uid: 13438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 89 + pos: -121.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4922 + color: '#DC143CFF' + - uid: 13439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4929 + color: '#4169E1FF' + - uid: 13440 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-6.5 - parent: 89 + pos: -14.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4932 + color: '#4169E1FF' + - uid: 13441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4933 + color: '#4169E1FF' + - uid: 13442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4934 + color: '#4169E1FF' + - uid: 13443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4936 + color: '#4169E1FF' + - uid: 13444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4937 + color: '#4169E1FF' + - uid: 13445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4938 + color: '#4169E1FF' + - uid: 13446 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 89 + pos: -2.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4940 + color: '#DC143CFF' + - uid: 13447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4960 + color: '#4169E1FF' + - uid: 13448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4962 + color: '#4169E1FF' + - uid: 13449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,0.5 - parent: 89 + pos: -1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4963 + color: '#DC143CFF' + - uid: 13450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,0.5 - parent: 89 + pos: -0.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4964 + color: '#DC143CFF' + - uid: 13451 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,0.5 - parent: 89 + pos: 0.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4965 + color: '#DC143CFF' + - uid: 13452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,0.5 - parent: 89 + pos: -1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4967 + color: '#4169E1FF' + - uid: 13453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,0.5 - parent: 89 + pos: -0.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4969 + color: '#4169E1FF' + - uid: 13454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-1.5 - parent: 89 + pos: 1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4970 + color: '#4169E1FF' + - uid: 13455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-1.5 - parent: 89 + pos: 2.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4971 + color: '#4169E1FF' + - uid: 13456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-1.5 - parent: 89 + pos: 3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4972 + color: '#4169E1FF' + - uid: 13457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,-1.5 - parent: 89 + pos: 4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4974 + color: '#4169E1FF' + - uid: 13458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-1.5 - parent: 89 + pos: 3.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4975 + color: '#DC143CFF' + - uid: 13459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-1.5 - parent: 89 + pos: 4.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4978 + color: '#DC143CFF' + - uid: 13460 components: - type: Transform - pos: -73.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4987 + color: '#DC143CFF' + - uid: 13461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 89 + pos: 1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4988 + color: '#DC143CFF' + - uid: 13462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 89 + pos: 5.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4989 + color: '#4169E1FF' + - uid: 13463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,17.5 - parent: 89 + pos: 5.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4990 + color: '#4169E1FF' + - uid: 13464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 89 + pos: 7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4992 + color: '#DC143CFF' + - uid: 13465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 89 + pos: 8.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4993 + color: '#DC143CFF' + - uid: 13466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 89 + pos: 9.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4994 + color: '#DC143CFF' + - uid: 13467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 + pos: 7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4996 + color: '#4169E1FF' + - uid: 13468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 89 + pos: 8.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4997 + color: '#4169E1FF' + - uid: 13469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 89 + pos: 9.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4998 + color: '#4169E1FF' + - uid: 13470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 89 + pos: 9.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5008 + color: '#4169E1FF' + - uid: 13471 components: - type: Transform - pos: -65.5,-6.5 - parent: 89 + pos: 9.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5009 + color: '#4169E1FF' + - uid: 13472 components: - type: Transform - pos: -65.5,-7.5 - parent: 89 + pos: 10.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5010 + color: '#DC143CFF' + - uid: 13473 components: - type: Transform - pos: -65.5,-8.5 - parent: 89 + pos: 10.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5011 + color: '#DC143CFF' + - uid: 13474 components: - type: Transform - pos: -65.5,-9.5 - parent: 89 + pos: 10.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5012 + color: '#DC143CFF' + - uid: 13475 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 + pos: 10.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5014 + color: '#DC143CFF' + - uid: 13476 components: - type: Transform - pos: -65.5,-12.5 - parent: 89 + pos: 6.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5015 + color: '#4169E1FF' + - uid: 13477 components: - type: Transform - pos: -65.5,-13.5 - parent: 89 + pos: 6.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5016 + color: '#4169E1FF' + - uid: 13478 components: - type: Transform - pos: -65.5,-14.5 - parent: 89 + pos: 6.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5017 + color: '#4169E1FF' + - uid: 13479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 89 + pos: 7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5019 + color: '#DC143CFF' + - uid: 13480 components: - type: Transform - pos: -59.5,-8.5 - parent: 89 + pos: 7.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5020 + color: '#DC143CFF' + - uid: 13481 components: - type: Transform - pos: -59.5,-9.5 - parent: 89 + pos: 7.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5022 + color: '#DC143CFF' + - uid: 13482 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 + pos: 7.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5023 + color: '#DC143CFF' + - uid: 13483 components: - type: Transform - pos: -59.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5024 + color: '#4169E1FF' + - uid: 13484 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5026 + color: '#4169E1FF' + - uid: 13485 components: - type: Transform - pos: -59.5,-14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5027 + color: '#4169E1FF' + - uid: 13486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5028 + color: '#DC143CFF' + - uid: 13487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-5.5 - parent: 89 + pos: 14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5029 + color: '#4169E1FF' + - uid: 13488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 89 + pos: 13.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5030 + color: '#4169E1FF' + - uid: 13489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 89 + pos: 14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5031 + color: '#DC143CFF' + - uid: 13490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 89 + pos: 14.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5032 + color: '#DC143CFF' + - uid: 13491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5033 + color: '#DC143CFF' + - uid: 13492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5034 + color: '#DC143CFF' + - uid: 13493 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 89 + pos: 13.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5035 + color: '#4169E1FF' + - uid: 13494 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 89 + pos: 13.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5038 + color: '#4169E1FF' + - uid: 13495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5042 + color: '#4169E1FF' + - uid: 13496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5043 + color: '#4169E1FF' + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5044 + color: '#DC143CFF' + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5045 + color: '#4169E1FF' + - uid: 13499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5046 + color: '#DC143CFF' + - uid: 13500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5047 + color: '#4169E1FF' + - uid: 13501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5048 + color: '#DC143CFF' + - uid: 13502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5051 + color: '#DC143CFF' + - uid: 13503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5052 + color: '#DC143CFF' + - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5053 + color: '#4169E1FF' + - uid: 13505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5054 + color: '#4169E1FF' + - uid: 13506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5059 + color: '#4169E1FF' + - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5060 + color: '#DC143CFF' + - uid: 13508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5062 + color: '#DC143CFF' + - uid: 13509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-11.5 - parent: 89 + pos: 22.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5063 + color: '#DC143CFF' + - uid: 13510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-14.5 - parent: 89 + pos: 22.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5064 + color: '#DC143CFF' + - uid: 13511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5065 + color: '#4169E1FF' + - uid: 13512 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-13.5 - parent: 89 + pos: 18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5067 + color: '#4169E1FF' + - uid: 13513 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-13.5 - parent: 89 + pos: 18.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5068 + color: '#4169E1FF' + - uid: 13514 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-14.5 - parent: 89 + pos: 18.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5080 + color: '#4169E1FF' + - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 89 + pos: 20.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5081 + color: '#DC143CFF' + - uid: 13516 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 89 + pos: 20.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5082 + color: '#DC143CFF' + - uid: 13517 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 89 + pos: 15.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5083 + color: '#4169E1FF' + - uid: 13518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5084 + color: '#4169E1FF' + - uid: 13519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5085 + color: '#4169E1FF' + - uid: 13520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5086 + color: '#4169E1FF' + - uid: 13521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5087 + color: '#4169E1FF' + - uid: 13522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5088 + color: '#4169E1FF' + - uid: 13523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 89 + pos: 10.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5089 + color: '#4169E1FF' + - uid: 13524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5090 + color: '#DC143CFF' + - uid: 13525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5091 + color: '#4169E1FF' + - uid: 13526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5094 + color: '#DC143CFF' + - uid: 13527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 89 + pos: 10.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5102 + color: '#4169E1FF' + - uid: 13528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 89 + pos: 26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5125 + color: '#4169E1FF' + - uid: 13529 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-8.5 - parent: 89 + pos: 28.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5127 + color: '#4169E1FF' + - uid: 13530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 89 + pos: -12.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5133 + color: '#4169E1FF' + - uid: 13531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 89 + pos: -10.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5134 + color: '#4169E1FF' + - uid: 13532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 89 + pos: 21.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5135 + color: '#4169E1FF' + - uid: 13533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 89 + pos: 20.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5136 + color: '#4169E1FF' + - uid: 13534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 89 + pos: 25.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5141 + color: '#DC143CFF' + - uid: 13535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 89 + pos: 25.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5142 + color: '#DC143CFF' + - uid: 13536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 89 + pos: 26.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5143 + color: '#4169E1FF' + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 89 + pos: 24.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5144 + color: '#DC143CFF' + - uid: 13538 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 89 + pos: 20.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5145 + color: '#DC143CFF' + - uid: 13539 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 89 + pos: 19.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5150 + color: '#4169E1FF' + - uid: 13540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5153 + color: '#DC143CFF' + - uid: 13541 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 89 + pos: 34.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5159 + color: '#DC143CFF' + - uid: 13542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5160 + color: '#DC143CFF' + - uid: 13543 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-7.5 - parent: 89 + pos: 27.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5161 + color: '#DC143CFF' + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-9.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-9.5 - parent: 89 + pos: 28.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5164 + color: '#4169E1FF' + - uid: 13545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 89 + pos: 13.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5165 + color: '#4169E1FF' + - uid: 13546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5166 + color: '#4169E1FF' + - uid: 13547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5168 + color: '#DC143CFF' + - uid: 13548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5169 + color: '#DC143CFF' + - uid: 13549 components: - type: Transform - pos: -54.5,-9.5 - parent: 89 + pos: 27.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5170 + color: '#DC143CFF' + - uid: 13550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 89 + pos: 27.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5171 + color: '#DC143CFF' + - uid: 13551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 + pos: 28.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5191 + color: '#DC143CFF' + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 89 + pos: 29.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5196 + color: '#4169E1FF' + - uid: 13553 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 89 + pos: 30.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5197 + color: '#DC143CFF' + - uid: 13554 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 89 + pos: 31.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5198 + color: '#DC143CFF' + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 89 + pos: 31.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5199 + color: '#4169E1FF' + - uid: 13556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5201 + color: '#DC143CFF' + - uid: 13557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5202 + color: '#4169E1FF' + - uid: 13558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 89 + pos: 32.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5204 + color: '#4169E1FF' + - uid: 13559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 + pos: 32.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5205 + color: '#DC143CFF' + - uid: 13560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5207 + color: '#4169E1FF' + - uid: 13561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 89 + pos: 33.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5208 + color: '#DC143CFF' + - uid: 13562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 89 + pos: 13.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5210 + color: '#4169E1FF' + - uid: 13563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5211 + color: '#4169E1FF' + - uid: 13564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5214 + color: '#4169E1FF' + - uid: 13565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5216 + color: '#4169E1FF' + - uid: 13566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5217 + color: '#4169E1FF' + - uid: 13567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5219 + color: '#4169E1FF' + - uid: 13568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5223 + color: '#4169E1FF' + - uid: 13569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5224 + color: '#4169E1FF' + - uid: 13570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5225 + color: '#4169E1FF' + - uid: 13571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5226 + color: '#4169E1FF' + - uid: 13572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5227 + color: '#4169E1FF' + - uid: 13573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5229 + color: '#4169E1FF' + - uid: 13574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5230 + color: '#4169E1FF' + - uid: 13575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5232 + color: '#4169E1FF' + - uid: 13576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5233 + color: '#DC143CFF' + - uid: 13577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5236 + color: '#DC143CFF' + - uid: 13578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5238 + color: '#DC143CFF' + - uid: 13579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5239 + color: '#DC143CFF' + - uid: 13580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5241 + color: '#DC143CFF' + - uid: 13581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5242 + color: '#DC143CFF' + - uid: 13582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5245 + color: '#DC143CFF' + - uid: 13583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5252 + color: '#DC143CFF' + - uid: 13584 components: - type: Transform - pos: 12.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5253 + color: '#DC143CFF' + - uid: 13585 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5254 + color: '#DC143CFF' + - uid: 13586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 89 + pos: 25.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5255 + color: '#4169E1FF' + - uid: 13587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 89 + pos: 9.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5256 + color: '#D3FC03FF' + - uid: 13588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 89 + pos: 24.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5257 + color: '#4169E1FF' + - uid: 13589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 89 + pos: 25.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5258 + color: '#DC143CFF' + - uid: 13590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 89 + pos: 25.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5259 + color: '#DC143CFF' + - uid: 13591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 89 + pos: 9.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5260 + color: '#D3FC03FF' + - uid: 13592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 89 + pos: 9.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5261 + color: '#D3FC03FF' + - uid: 13593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5262 + color: '#4169E1FF' + - uid: 13594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 89 + pos: 14.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5267 + color: '#DC143CFF' + - uid: 13595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 89 + pos: 13.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5268 + color: '#4169E1FF' + - uid: 13596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 89 + pos: 13.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5269 + color: '#4169E1FF' + - uid: 13597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 89 + pos: 13.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5270 + color: '#4169E1FF' + - uid: 13598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 89 + pos: 13.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5271 + color: '#4169E1FF' + - uid: 13599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 89 + pos: 13.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5276 + color: '#4169E1FF' + - uid: 13600 components: - type: Transform - pos: 18.5,-10.5 - parent: 89 + pos: 13.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5277 + color: '#4169E1FF' + - uid: 13601 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 + pos: 13.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5278 + color: '#4169E1FF' + - uid: 13602 components: - type: Transform - pos: 18.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5282 + color: '#DC143CFF' + - uid: 13603 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 + pos: 8.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5283 + color: '#4169E1FF' + - uid: 13604 components: - type: Transform - pos: 19.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5284 + color: '#4169E1FF' + - uid: 13605 components: - type: Transform - pos: 19.5,-11.5 - parent: 89 + pos: 13.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5285 + color: '#4169E1FF' + - uid: 13606 components: - type: Transform - pos: 19.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5287 + color: '#DC143CFF' + - uid: 13607 components: - type: Transform - pos: 21.5,-10.5 - parent: 89 + pos: 9.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5288 + color: '#D3FC03FF' + - uid: 13608 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 + pos: 9.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5289 + color: '#D3FC03FF' + - uid: 13609 components: - type: Transform - pos: 21.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5290 + color: '#4169E1FF' + - uid: 13610 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 + pos: 14.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5291 + color: '#DC143CFF' + - uid: 13611 components: - type: Transform - pos: 22.5,-10.5 - parent: 89 + pos: 14.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5292 + color: '#DC143CFF' + - uid: 13612 components: - type: Transform - pos: 22.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5293 + color: '#D3FC03FF' + - uid: 13613 components: - type: Transform - pos: 22.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5294 + color: '#D3FC03FF' + - uid: 13614 components: - type: Transform - pos: 24.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5295 + color: '#4169E1FF' + - uid: 13615 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5296 + color: '#4169E1FF' + - uid: 13616 components: - type: Transform - pos: 24.5,-12.5 - parent: 89 + pos: 14.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5297 + color: '#DC143CFF' + - uid: 13617 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5298 + color: '#D3FC03FF' + - uid: 13618 components: - type: Transform - pos: 25.5,-10.5 - parent: 89 + pos: 12.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5299 + color: '#D3FC03FF' + - uid: 13619 components: - type: Transform - pos: 25.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5300 + color: '#D3FC03FF' + - uid: 13620 components: - type: Transform - pos: 25.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5302 + color: '#D3FC03FF' + - uid: 13621 components: - type: Transform - pos: 27.5,-10.5 - parent: 89 + pos: 14.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5303 + color: '#DC143CFF' + - uid: 13622 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5304 + color: '#4169E1FF' + - uid: 13623 components: - type: Transform - pos: 27.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -126.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5306 + color: '#DC143CFF' + - uid: 13624 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5307 + color: '#DC143CFF' + - uid: 13625 components: - type: Transform - pos: 28.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5308 + color: '#DC143CFF' + - uid: 13626 components: - type: Transform - pos: 28.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5309 + color: '#DC143CFF' + - uid: 13627 components: - type: Transform - pos: 28.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5332 + color: '#DC143CFF' + - uid: 13628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 89 - - uid: 5362 + rot: 3.141592653589793 rad + pos: -82.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13629 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 89 + pos: -82.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5363 + color: '#DC143CFF' + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-6.5 - parent: 89 + pos: -82.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5364 + color: '#DC143CFF' + - uid: 13631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5365 + color: '#DC143CFF' + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-4.5 - parent: 89 + pos: -81.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5366 + color: '#4169E1FF' + - uid: 13633 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 89 + pos: -81.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5367 + color: '#4169E1FF' + - uid: 13634 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-2.5 - parent: 89 + pos: -81.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5368 + color: '#4169E1FF' + - uid: 13635 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 89 + pos: -81.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5369 + color: '#4169E1FF' + - uid: 13636 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 89 + pos: -81.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5371 + color: '#4169E1FF' + - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 89 + pos: -81.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5372 + color: '#4169E1FF' + - uid: 13638 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 89 + pos: -81.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5373 + color: '#4169E1FF' + - uid: 13639 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-3.5 - parent: 89 + pos: -81.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5374 + color: '#4169E1FF' + - uid: 13640 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-2.5 - parent: 89 + pos: -81.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5388 + color: '#4169E1FF' + - uid: 13641 components: - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 5391 + rot: 3.141592653589793 rad + pos: -81.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5415 + color: '#DC143CFF' + - uid: 13643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5419 + color: '#DC143CFF' + - uid: 13644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5428 + color: '#DC143CFF' + - uid: 13645 components: - type: Transform - pos: 0.5,-42.5 - parent: 89 - - uid: 5436 + rot: 3.141592653589793 rad + pos: -85.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5438 + color: '#DC143CFF' + - uid: 13647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5445 + color: '#DC143CFF' + - uid: 13648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5446 + color: '#DC143CFF' + - uid: 13649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5447 + color: '#DC143CFF' + - uid: 13650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5448 + color: '#DC143CFF' + - uid: 13651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5468 + color: '#DC143CFF' + - uid: 13652 components: - type: Transform - pos: 37.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5480 + color: '#DC143CFF' + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 89 + pos: -85.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5483 + color: '#DC143CFF' + - uid: 13654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5486 + color: '#DC143CFF' + - uid: 13655 components: - type: Transform - pos: 36.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5487 + color: '#DC143CFF' + - uid: 13656 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5490 + color: '#DC143CFF' + - uid: 13657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5491 + color: '#4169E1FF' + - uid: 13658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5492 + color: '#4169E1FF' + - uid: 13659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5493 + color: '#4169E1FF' + - uid: 13660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5494 + color: '#4169E1FF' + - uid: 13661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5495 + color: '#4169E1FF' + - uid: 13662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5496 + color: '#4169E1FF' + - uid: 13663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5497 + color: '#4169E1FF' + - uid: 13664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5498 + rot: 3.141592653589793 rad + pos: -84.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5509 + color: '#4169E1FF' + - uid: 13666 components: - type: Transform - pos: -99.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5527 + color: '#4169E1FF' + - uid: 13667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5528 + color: '#4169E1FF' + - uid: 13668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5529 + color: '#4169E1FF' + - uid: 13669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5530 + color: '#4169E1FF' + - uid: 13670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5531 + color: '#4169E1FF' + - uid: 13671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5532 + color: '#4169E1FF' + - uid: 13672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5533 + color: '#4169E1FF' + - uid: 13673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5534 + color: '#4169E1FF' + - uid: 13674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5536 + color: '#4169E1FF' + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,18.5 - parent: 89 + pos: -83.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5538 + color: '#DC143CFF' + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,18.5 - parent: 89 + pos: -84.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5539 + color: '#DC143CFF' + - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,18.5 - parent: 89 + pos: -83.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5540 + color: '#4169E1FF' + - uid: 13678 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,18.5 - parent: 89 + pos: -82.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5541 + color: '#4169E1FF' + - uid: 13679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,18.5 - parent: 89 + pos: -84.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5542 + color: '#DC143CFF' + - uid: 13680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5543 + color: '#4169E1FF' + - uid: 13681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5544 + color: '#4169E1FF' + - uid: 13682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,18.5 - parent: 89 + pos: 13.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5545 + color: '#4169E1FF' + - uid: 13683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,18.5 - parent: 89 + pos: 14.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5546 + color: '#DC143CFF' + - uid: 13684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5548 + color: '#4169E1FF' + - uid: 13685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5549 + color: '#4169E1FF' + - uid: 13686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5550 + color: '#4169E1FF' + - uid: 13687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5551 + color: '#DC143CFF' + - uid: 13688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5552 + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 13689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5553 + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - uid: 13690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5554 + rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - uid: 13691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5555 + rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 2 + - uid: 13692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5556 + pos: 6.5,23.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 2 + - uid: 13694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 89 + pos: 11.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5557 + color: '#DC143CFF' + - uid: 13695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5558 + color: '#4169E1FF' + - uid: 13696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,18.5 - parent: 89 + pos: 26.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5559 + color: '#4169E1FF' + - uid: 13697 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,18.5 - parent: 89 + pos: -28.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5560 + color: '#4169E1FF' + - uid: 13698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5561 + color: '#DC143CFF' + - uid: 13699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,18.5 - parent: 89 + pos: 18.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5563 + color: '#4169E1FF' + - uid: 13700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5564 + color: '#4169E1FF' + - uid: 13701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5565 + color: '#DC143CFF' + - uid: 13702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5566 + color: '#DC143CFF' + - uid: 13703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5567 + color: '#DC143CFF' + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,17.5 - parent: 89 + pos: -16.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5568 + color: '#DC143CFF' + - uid: 13705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,17.5 - parent: 89 + pos: 43.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5570 + color: '#4169E1FF' + - uid: 13706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5571 + color: '#4169E1FF' + - uid: 13707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5572 + color: '#4169E1FF' + - uid: 13708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,17.5 - parent: 89 + pos: -5.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5573 + color: '#4169E1FF' + - uid: 13709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5574 + color: '#4169E1FF' + - uid: 13710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5576 + color: '#4169E1FF' + - uid: 13711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,17.5 - parent: 89 + pos: -5.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5577 + color: '#4169E1FF' + - uid: 13712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5578 + color: '#4169E1FF' + - uid: 13713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5579 + color: '#4169E1FF' + - uid: 13714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5580 + color: '#4169E1FF' + - uid: 13715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5582 + color: '#4169E1FF' + - uid: 13716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5583 + color: '#4169E1FF' + - uid: 13717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5584 + color: '#4169E1FF' + - uid: 13718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5585 + color: '#4169E1FF' + - uid: 13719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,17.5 - parent: 89 + pos: -4.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5586 + color: '#DC143CFF' + - uid: 13720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5587 + color: '#DC143CFF' + - uid: 13721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5588 + color: '#DC143CFF' + - uid: 13722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5589 + color: '#DC143CFF' + - uid: 13723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5590 + color: '#DC143CFF' + - uid: 13724 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 89 + pos: 25.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5591 + color: '#DC143CFF' + - uid: 13725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 89 + pos: 24.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5592 + color: '#DC143CFF' + - uid: 13726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 89 + pos: 23.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5593 + color: '#DC143CFF' + - uid: 13727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,17.5 - parent: 89 + pos: 23.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5594 + color: '#DC143CFF' + - uid: 13728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,17.5 - parent: 89 + pos: -4.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5595 + color: '#DC143CFF' + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5596 + color: '#4169E1FF' + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,17.5 - parent: 89 + pos: -5.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5597 + color: '#4169E1FF' + - uid: 13731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5599 + color: '#4169E1FF' + - uid: 13732 components: - type: Transform - pos: -73.5,12.5 - parent: 89 + pos: -5.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5600 + color: '#4169E1FF' + - uid: 13733 components: - type: Transform - pos: -73.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5601 + color: '#4169E1FF' + - uid: 13734 components: - type: Transform - pos: -73.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5602 + color: '#4169E1FF' + - uid: 13735 components: - type: Transform - pos: -73.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5603 + color: '#4169E1FF' + - uid: 13736 components: - type: Transform - pos: -73.5,16.5 - parent: 89 + pos: -11.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5604 + color: '#4169E1FF' + - uid: 13737 components: - type: Transform - pos: -73.5,17.5 - parent: 89 + pos: -5.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5605 + color: '#4169E1FF' + - uid: 13738 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,18.5 - parent: 89 + pos: -4.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5606 + color: '#4169E1FF' + - uid: 13739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,18.5 - parent: 89 + pos: -3.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5607 + color: '#4169E1FF' + - uid: 13740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,18.5 - parent: 89 + pos: -2.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5608 + color: '#4169E1FF' + - uid: 13741 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,18.5 - parent: 89 + pos: -3.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5609 + color: '#DC143CFF' + - uid: 13742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5610 + color: '#DC143CFF' + - uid: 13743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5611 + color: '#4169E1FF' + - uid: 13744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5612 + color: '#4169E1FF' + - uid: 13745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,14.5 - parent: 89 + pos: 0.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5613 + color: '#4169E1FF' + - uid: 13746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5614 + color: '#DC143CFF' + - uid: 13747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5615 + color: '#DC143CFF' + - uid: 13748 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,17.5 - parent: 89 + pos: -29.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5616 + color: '#4169E1FF' + - uid: 13749 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,17.5 - parent: 89 + pos: -31.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5617 + color: '#4169E1FF' + - uid: 13750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 89 + pos: -32.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5622 + color: '#4169E1FF' + - uid: 13751 components: - type: Transform - pos: -32.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5623 + color: '#4169E1FF' + - uid: 13752 components: - type: Transform - pos: -32.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5624 + color: '#4169E1FF' + - uid: 13753 components: - type: Transform - pos: -32.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5625 + color: '#4169E1FF' + - uid: 13754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 89 + pos: -29.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5626 + color: '#4169E1FF' + - uid: 13755 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 89 + pos: -28.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5627 + color: '#4169E1FF' + - uid: 13756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 89 + pos: -27.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5629 + color: '#4169E1FF' + - uid: 13757 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,13.5 - parent: 89 + pos: -32.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5630 + color: '#4169E1FF' + - uid: 13758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 89 + pos: -31.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5631 + color: '#4169E1FF' + - uid: 13759 components: - type: Transform - pos: -30.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5632 + color: '#4169E1FF' + - uid: 13760 components: - type: Transform - pos: -30.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5634 + color: '#4169E1FF' + - uid: 13761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,13.5 - parent: 89 + pos: -27.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5638 + color: '#4169E1FF' + - uid: 13762 components: - type: Transform - pos: -30.5,13.5 - parent: 89 + pos: -30.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5639 + color: '#4169E1FF' + - uid: 13763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,13.5 - parent: 89 + pos: -30.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5642 + color: '#4169E1FF' + - uid: 13764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,18.5 - parent: 89 + pos: -30.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5643 + color: '#4169E1FF' + - uid: 13765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,18.5 - parent: 89 + pos: -30.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5644 + color: '#4169E1FF' + - uid: 13766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,17.5 - parent: 89 + pos: -30.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5648 + color: '#4169E1FF' + - uid: 13767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 89 + pos: -30.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5649 + color: '#4169E1FF' + - uid: 13768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 89 + pos: -30.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5650 + color: '#4169E1FF' + - uid: 13769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 89 + pos: -30.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5651 + color: '#4169E1FF' + - uid: 13770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 89 + pos: -28.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5652 + color: '#4169E1FF' + - uid: 13771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5653 + - uid: 13772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,26.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5654 + - uid: 13773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5655 + - uid: 13774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,28.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5656 + - uid: 13775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,30.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5657 + - uid: 13776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5658 + - uid: 13777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5659 + - uid: 13778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5660 + - uid: 13779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5661 + - uid: 13780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5662 + - uid: 13781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5663 + - uid: 13782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5664 + - uid: 13783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5665 + - uid: 13784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5671 + - uid: 13785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5672 + color: '#FF0000FF' + - uid: 13786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5673 + color: '#FF0000FF' + - uid: 13787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5674 + color: '#FF0000FF' + - uid: 13788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5675 + color: '#FF0000FF' + - uid: 13789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5676 + color: '#FF0000FF' + - uid: 13790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5677 + color: '#FF0000FF' + - uid: 13791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5678 + color: '#FF0000FF' + - uid: 13792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 89 + pos: 39.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5679 + color: '#4169E1FF' + - uid: 13793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 89 + pos: 39.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5680 + color: '#4169E1FF' + - uid: 13794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 89 + pos: 39.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5681 + color: '#4169E1FF' + - uid: 13795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 89 + pos: 38.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5682 + color: '#DC143CFF' + - uid: 13796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 89 + pos: 38.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5683 + color: '#DC143CFF' + - uid: 13797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 89 + pos: 38.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5684 + color: '#DC143CFF' + - uid: 13798 components: - type: Transform - pos: -39.5,-11.5 - parent: 89 + pos: 38.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5685 + color: '#DC143CFF' + - uid: 13799 components: - type: Transform - pos: -39.5,-10.5 - parent: 89 + pos: 38.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5686 + color: '#DC143CFF' + - uid: 13800 components: - type: Transform - pos: -39.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5687 + color: '#DC143CFF' + - uid: 13801 components: - type: Transform - pos: -39.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5689 + color: '#DC143CFF' + - uid: 13802 components: - type: Transform - pos: -39.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5690 + color: '#DC143CFF' + - uid: 13803 components: - type: Transform - pos: -39.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5691 + color: '#DC143CFF' + - uid: 13804 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5692 + color: '#DC143CFF' + - uid: 13805 components: - type: Transform - pos: -39.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5693 + color: '#4169E1FF' + - uid: 13806 components: - type: Transform - pos: -39.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5694 + color: '#4169E1FF' + - uid: 13807 components: - type: Transform - pos: -39.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5695 + color: '#4169E1FF' + - uid: 13808 components: - type: Transform - pos: -39.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5697 + color: '#4169E1FF' + - uid: 13809 components: - type: Transform - pos: -40.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5698 + color: '#DC143CFF' + - uid: 13810 components: - type: Transform - pos: -40.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5699 + color: '#4169E1FF' + - uid: 13811 components: - type: Transform - pos: -40.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5700 + color: '#4169E1FF' + - uid: 13812 components: - type: Transform - pos: -40.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5701 + color: '#4169E1FF' + - uid: 13813 components: - type: Transform - pos: -40.5,-8.5 - parent: 89 + pos: 45.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5702 + color: '#4169E1FF' + - uid: 13814 components: - type: Transform - pos: -40.5,-7.5 - parent: 89 + pos: 45.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5704 + color: '#4169E1FF' + - uid: 13815 components: - type: Transform - pos: -40.5,-5.5 - parent: 89 + pos: 45.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5705 + color: '#4169E1FF' + - uid: 13816 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 + pos: 45.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5706 + color: '#4169E1FF' + - uid: 13817 components: - type: Transform - pos: -40.5,-3.5 - parent: 89 + pos: 45.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5707 + color: '#4169E1FF' + - uid: 13818 components: - type: Transform - pos: -40.5,-2.5 - parent: 89 + pos: 45.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5708 + color: '#4169E1FF' + - uid: 13819 components: - type: Transform - pos: -40.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5710 + color: '#4169E1FF' + - uid: 13820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5711 + color: '#4169E1FF' + - uid: 13821 components: - type: Transform - pos: -50.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5712 + color: '#4169E1FF' + - uid: 13822 components: - type: Transform - pos: -50.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5713 + color: '#4169E1FF' + - uid: 13823 components: - type: Transform - pos: -50.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5714 + color: '#4169E1FF' + - uid: 13824 components: - type: Transform - pos: -50.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5715 + color: '#4169E1FF' + - uid: 13825 components: - type: Transform - pos: -50.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5716 + color: '#4169E1FF' + - uid: 13826 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 47.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5717 + color: '#4169E1FF' + - uid: 13827 components: - type: Transform - pos: -49.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 55.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5718 + color: '#4169E1FF' + - uid: 13828 components: - type: Transform - pos: -49.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5719 + color: '#4169E1FF' + - uid: 13829 components: - type: Transform - pos: -49.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 53.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5720 + color: '#4169E1FF' + - uid: 13830 components: - type: Transform - pos: -49.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5721 + color: '#4169E1FF' + - uid: 13831 components: - type: Transform - pos: -49.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5722 + color: '#4169E1FF' + - uid: 13832 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5723 + color: '#4169E1FF' + - uid: 13833 components: - type: Transform - pos: -49.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5724 + color: '#4169E1FF' + - uid: 13834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-7.5 - parent: 89 + pos: 48.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5730 + color: '#4169E1FF' + - uid: 13835 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 89 + pos: 47.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5731 + color: '#4169E1FF' + - uid: 13836 components: - type: Transform - pos: -50.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5746 + color: '#4169E1FF' + - uid: 13837 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,6.5 - parent: 89 + pos: 44.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5747 + color: '#DC143CFF' + - uid: 13838 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,7.5 - parent: 89 + pos: 43.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5748 + color: '#DC143CFF' + - uid: 13839 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,5.5 - parent: 89 + pos: 43.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5749 + color: '#DC143CFF' + - uid: 13840 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,6.5 - parent: 89 + pos: 43.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5750 + color: '#DC143CFF' + - uid: 13841 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 89 + pos: 43.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5753 + color: '#DC143CFF' + - uid: 13842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,-1.5 - parent: 89 + pos: 45.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5754 + color: '#DC143CFF' + - uid: 13843 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-1.5 - parent: 89 + pos: 46.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5755 + color: '#DC143CFF' + - uid: 13844 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,-1.5 - parent: 89 + pos: 47.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5757 + color: '#DC143CFF' + - uid: 13845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-1.5 - parent: 89 + pos: 48.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5758 + color: '#DC143CFF' + - uid: 13846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-1.5 - parent: 89 + pos: 48.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5759 + color: '#DC143CFF' + - uid: 13847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-1.5 - parent: 89 + pos: 48.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5760 + color: '#DC143CFF' + - uid: 13848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-1.5 - parent: 89 + pos: 48.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5761 + color: '#DC143CFF' + - uid: 13849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 56.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5762 + color: '#DC143CFF' + - uid: 13850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-1.5 - parent: 89 + pos: 55.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5763 + color: '#DC143CFF' + - uid: 13851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,-1.5 - parent: 89 + pos: 54.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5764 + color: '#DC143CFF' + - uid: 13852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,-0.5 - parent: 89 + pos: 53.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5765 + color: '#DC143CFF' + - uid: 13853 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,-0.5 - parent: 89 + pos: 52.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5766 + color: '#DC143CFF' + - uid: 13854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-0.5 - parent: 89 + pos: 51.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5767 + color: '#DC143CFF' + - uid: 13855 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,-0.5 - parent: 89 + pos: 50.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5768 + color: '#DC143CFF' + - uid: 13856 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,-0.5 - parent: 89 + pos: 49.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5769 + color: '#DC143CFF' + - uid: 13857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-0.5 - parent: 89 + pos: 48.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5771 + color: '#DC143CFF' + - uid: 13858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -81.5,-0.5 - parent: 89 + pos: 47.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5772 + color: '#DC143CFF' + - uid: 13859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,-0.5 - parent: 89 + pos: 46.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5773 + color: '#DC143CFF' + - uid: 13860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-0.5 - parent: 89 + pos: 45.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5774 + color: '#DC143CFF' + - uid: 13861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-0.5 - parent: 89 + pos: 44.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5777 + color: '#DC143CFF' + - uid: 13862 components: - type: Transform - pos: -77.5,-1.5 - parent: 89 + pos: 39.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5797 + color: '#4169E1FF' + - uid: 13863 components: - type: Transform - pos: -94.5,11.5 - parent: 89 + pos: 39.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5798 + color: '#4169E1FF' + - uid: 13864 components: - type: Transform - pos: -94.5,12.5 - parent: 89 + pos: 39.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5799 + color: '#4169E1FF' + - uid: 13865 components: - type: Transform - pos: -95.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5800 + color: '#4169E1FF' + - uid: 13866 components: - type: Transform - pos: -95.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5805 + color: '#4169E1FF' + - uid: 13867 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,21.5 - parent: 89 + pos: 36.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5806 + color: '#4169E1FF' + - uid: 13868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5807 + color: '#DC143CFF' + - uid: 13869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5808 + color: '#DC143CFF' + - uid: 13870 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,20.5 - parent: 89 + pos: 37.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5809 + color: '#DC143CFF' + - uid: 13871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,21.5 - parent: 89 + pos: 36.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5810 + color: '#DC143CFF' + - uid: 13872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,20.5 - parent: 89 + pos: 41.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5812 + color: '#4169E1FF' + - uid: 13873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5813 + color: '#4169E1FF' + - uid: 13874 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,20.5 - parent: 89 + pos: 42.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6196 + color: '#4169E1FF' + - uid: 13875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6218 + color: '#4169E1FF' + - uid: 13876 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 89 + pos: 40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6219 + color: '#DC143CFF' + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 + pos: 42.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6220 + color: '#4169E1FF' + - uid: 13878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 89 + pos: 43.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6232 + color: '#4169E1FF' + - uid: 13879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6233 + color: '#DC143CFF' + - uid: 13880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6256 + color: '#4169E1FF' + - uid: 13881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6257 + color: '#DC143CFF' + - uid: 13882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6258 + color: '#DC143CFF' + - uid: 13883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6260 + color: '#DC143CFF' + - uid: 13884 components: - type: Transform - pos: -7.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6261 + color: '#DC143CFF' + - uid: 13885 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 89 + pos: 43.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6265 + color: '#DC143CFF' + - uid: 13886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6267 + color: '#DC143CFF' + - uid: 13887 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,12.5 - parent: 89 + pos: -6.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6309 + color: '#4169E1FF' + - uid: 13888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 89 + pos: -7.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6310 + color: '#4169E1FF' + - uid: 13889 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6311 + pos: -9.5,-2.5 + parent: 2 + - uid: 13890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6314 + color: '#DC143CFF' + - uid: 13891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6316 + pos: -8.5,-1.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 13894 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 89 + pos: -5.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6325 + color: '#DC143CFF' + - uid: 13895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 89 + pos: -3.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6328 + color: '#DC143CFF' + - uid: 13896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 89 + pos: -3.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6329 + color: '#DC143CFF' + - uid: 13897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 89 + pos: -3.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6334 + color: '#DC143CFF' + - uid: 13898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,23.5 - parent: 89 + pos: -4.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6356 + color: '#DC143CFF' + - uid: 13899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6357 + rot: -1.5707963267948966 rad + pos: -107.5,-16.5 + parent: 2 + - uid: 13900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6358 + rot: 1.5707963267948966 rad + pos: -120.5,-19.5 + parent: 2 + - uid: 13901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6359 + rot: 1.5707963267948966 rad + pos: -120.5,-17.5 + parent: 2 + - uid: 13902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6360 + rot: 1.5707963267948966 rad + pos: -116.5,-18.5 + parent: 2 + - uid: 13903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6361 + rot: -1.5707963267948966 rad + pos: -111.5,-17.5 + parent: 2 + - uid: 13904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6362 + rot: -1.5707963267948966 rad + pos: -108.5,-17.5 + parent: 2 + - uid: 13905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6366 + rot: -1.5707963267948966 rad + pos: -107.5,-17.5 + parent: 2 + - uid: 13906 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 + pos: -93.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6367 + color: '#DC143CFF' + - uid: 13907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6368 + pos: -120.5,-18.5 + parent: 2 + - uid: 13908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6377 + pos: -116.5,-19.5 + parent: 2 + - uid: 13909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6384 + pos: -116.5,-17.5 + parent: 2 + - uid: 13910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6385 + rot: -1.5707963267948966 rad + pos: -109.5,-17.5 + parent: 2 + - uid: 13911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6386 + rot: -1.5707963267948966 rad + pos: -111.5,-16.5 + parent: 2 + - uid: 13912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-18.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,-18.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6387 + color: '#DC143CFF' + - uid: 13915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,19.5 - parent: 89 + pos: -136.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6388 + color: '#DC143CFF' + - uid: 13916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -98.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6389 + color: '#4169E1FF' + - uid: 13917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,19.5 - parent: 89 + pos: -100.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6390 + color: '#DC143CFF' + - uid: 13918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6391 + color: '#DC143CFF' + - uid: 13919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6393 + color: '#4169E1FF' + - uid: 13920 + components: + - type: Transform + pos: -101.5,-22.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -101.5,-24.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: -101.5,-21.5 + parent: 2 + - uid: 13923 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,23.5 - parent: 89 + pos: -125.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6394 + color: '#DC143CFF' + - uid: 13924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,24.5 - parent: 89 + pos: -92.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6395 + color: '#DC143CFF' + - uid: 13925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,25.5 - parent: 89 + pos: -100.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6396 + color: '#DC143CFF' + - uid: 13926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,24.5 - parent: 89 + pos: -95.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6397 + color: '#DC143CFF' + - uid: 13927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6398 + color: '#4169E1FF' + - uid: 13928 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,24.5 - parent: 89 + pos: -133.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6399 + color: '#DC143CFF' + - uid: 13929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -122.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6400 + color: '#4169E1FF' + - uid: 13930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -95.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6401 + color: '#DC143CFF' + - uid: 13931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -98.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6402 + color: '#DC143CFF' + - uid: 13932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -101.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6403 + color: '#DC143CFF' + - uid: 13933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -96.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6404 + color: '#4169E1FF' + - uid: 13934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,24.5 - parent: 89 + pos: -123.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6405 + color: '#DC143CFF' + - uid: 13935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -122.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6406 + color: '#DC143CFF' + - uid: 13936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -127.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6407 + color: '#DC143CFF' + - uid: 13937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -125.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6408 + color: '#4169E1FF' + - uid: 13938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -124.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6409 + color: '#4169E1FF' + - uid: 13939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -142.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6410 + color: '#DC143CFF' + - uid: 13940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -137.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6411 + color: '#DC143CFF' + - uid: 13941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -141.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6412 + color: '#DC143CFF' + - uid: 13942 components: - type: Transform - pos: -55.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -138.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6413 + color: '#DC143CFF' + - uid: 13943 components: - type: Transform - pos: -66.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -139.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6414 + color: '#DC143CFF' + - uid: 13944 components: - type: Transform - pos: -66.5,28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -140.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6415 + color: '#DC143CFF' + - uid: 13945 components: - type: Transform - pos: -66.5,29.5 - parent: 89 + pos: -101.5,-22.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -101.5,-20.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: -101.5,-23.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -137.5,-0.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6416 + color: '#4169E1FF' + - uid: 13950 components: - type: Transform - pos: -66.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -95.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6417 + color: '#4169E1FF' + - uid: 13951 components: - type: Transform - pos: -66.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -142.5,-0.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6418 + color: '#4169E1FF' + - uid: 13953 components: - type: Transform - pos: -66.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -123.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6419 + color: '#4169E1FF' + - uid: 13954 components: - type: Transform - pos: -66.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -130.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6420 + color: '#4169E1FF' + - uid: 13955 components: - type: Transform - pos: -66.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -127.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6421 + color: '#4169E1FF' + - uid: 13956 components: - type: Transform - pos: -66.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -121.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6422 + color: '#4169E1FF' + - uid: 13957 components: - type: Transform - pos: -66.5,36.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6423 + color: '#4169E1FF' + - uid: 13958 components: - type: Transform - pos: -66.5,37.5 - parent: 89 + pos: -136.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6424 + color: '#4169E1FF' + - uid: 13959 components: - type: Transform - pos: -66.5,38.5 - parent: 89 + pos: -136.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6425 + color: '#4169E1FF' + - uid: 13960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,37.5 - parent: 89 + pos: -93.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6427 + color: '#DC143CFF' + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,37.5 - parent: 89 + pos: -123.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6428 + color: '#DC143CFF' + - uid: 13962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,36.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -126.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6429 + color: '#DC143CFF' + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 89 + pos: -125.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6430 + color: '#DC143CFF' + - uid: 13964 components: - type: Transform - pos: -67.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -125.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6431 + color: '#DC143CFF' + - uid: 13965 components: - type: Transform - pos: -67.5,27.5 - parent: 89 + pos: -100.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6432 + color: '#DC143CFF' + - uid: 13966 components: - type: Transform - pos: -67.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -133.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6433 + color: '#4169E1FF' + - uid: 13967 components: - type: Transform - pos: -67.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -122.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6434 + color: '#4169E1FF' + - uid: 13968 components: - type: Transform - pos: -67.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6435 + color: '#4169E1FF' + - uid: 13969 components: - type: Transform - pos: -67.5,31.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6436 + rot: -1.5707963267948966 rad + pos: -139.5,-0.5 + parent: 2 + - uid: 13970 components: - type: Transform - pos: -67.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6437 + rot: -1.5707963267948966 rad + pos: -138.5,-0.5 + parent: 2 + - uid: 13971 components: - type: Transform - pos: -67.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -120.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6438 + color: '#DC143CFF' + - uid: 13972 components: - type: Transform - pos: -67.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -119.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6439 + color: '#DC143CFF' + - uid: 13973 components: - type: Transform - pos: -67.5,35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -118.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6440 + color: '#DC143CFF' + - uid: 13974 components: - type: Transform - pos: -67.5,36.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -117.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6442 + color: '#DC143CFF' + - uid: 13975 components: - type: Transform - pos: -67.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -116.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6443 + color: '#DC143CFF' + - uid: 13976 components: - type: Transform - pos: -67.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -115.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6444 + color: '#DC143CFF' + - uid: 13977 components: - type: Transform - pos: -67.5,40.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -119.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6445 + color: '#4169E1FF' + - uid: 13978 components: - type: Transform - pos: -67.5,41.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -118.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6446 + color: '#4169E1FF' + - uid: 13979 components: - type: Transform - pos: -67.5,42.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -117.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6447 + color: '#4169E1FF' + - uid: 13980 components: - type: Transform - pos: -67.5,43.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -116.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6468 + color: '#4169E1FF' + - uid: 13981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 89 - - uid: 6478 + pos: -115.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 89 - - uid: 6487 + pos: -114.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,30.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6488 + pos: -101.5,-21.5 + parent: 2 + - uid: 13984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6489 + pos: -101.5,-20.5 + parent: 2 + - uid: 13985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,32.5 - parent: 89 + pos: -99.5,-24.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -99.5,-23.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: -99.5,-21.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -99.5,-20.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -99.5,-24.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: -99.5,-23.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: -99.5,-21.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: -99.5,-20.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6491 + color: '#DC143CFF' + - uid: 13996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -83.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6492 + color: '#4169E1FF' + - uid: 13997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -90.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6493 + color: '#4169E1FF' + - uid: 13998 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,36.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6495 + pos: -84.5,-20.5 + parent: 2 + - uid: 13999 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,38.5 - parent: 89 + pos: -84.5,-19.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6500 + color: '#4169E1FF' + - uid: 14001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,38.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -85.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6501 + color: '#4169E1FF' + - uid: 14002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,37.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -86.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6502 + color: '#4169E1FF' + - uid: 14003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,36.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -87.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6504 + color: '#4169E1FF' + - uid: 14004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -88.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6505 + color: '#4169E1FF' + - uid: 14005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -94.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6506 + color: '#DC143CFF' + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -92.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6507 + color: '#4169E1FF' + - uid: 14008 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,31.5 - parent: 89 + pos: -99.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6508 + color: '#4169E1FF' + - uid: 14009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -89.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6513 + color: '#DC143CFF' + - uid: 14010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,37.5 - parent: 89 + pos: -88.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6514 + color: '#DC143CFF' + - uid: 14011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,37.5 - parent: 89 + pos: -87.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6515 + color: '#DC143CFF' + - uid: 14012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,37.5 - parent: 89 + pos: -86.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6516 + color: '#DC143CFF' + - uid: 14013 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,37.5 - parent: 89 + pos: -85.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6532 + color: '#DC143CFF' + - uid: 14014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6533 + color: '#DC143CFF' + - uid: 14015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6565 + color: '#DC143CFF' + - uid: 14016 components: - type: Transform - pos: -59.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6566 + color: '#DC143CFF' + - uid: 14017 components: - type: Transform - pos: -47.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6571 + color: '#4169E1FF' + - uid: 14018 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,11.5 - parent: 89 + pos: -5.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6572 + color: '#4169E1FF' + - uid: 14019 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,12.5 - parent: 89 + pos: -95.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6573 + color: '#4169E1FF' + - uid: 14020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,10.5 - parent: 89 + pos: -94.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6574 + color: '#4169E1FF' + - uid: 23811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,11.5 - parent: 89 + pos: 4.5,-10.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6575 + color: '#17E8E2FF' + - uid: 23812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,12.5 - parent: 89 + pos: 4.5,-9.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6578 + color: '#17E8E2FF' + - uid: 23813 components: - type: Transform - pos: -68.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6579 + color: '#17E8E2FF' + - uid: 23814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6580 + color: '#17E8E2FF' + - uid: 23815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,13.5 - parent: 89 + pos: 5.5,-5.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6581 + color: '#17E8E2FF' + - uid: 23816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,13.5 - parent: 89 + pos: 4.5,-3.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6582 + color: '#17E8E2FF' + - uid: 24120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6583 + color: '#4169E1FF' + - uid: 24121 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 89 + pos: 3.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6584 + color: '#4169E1FF' + - uid: 24122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,13.5 - parent: 89 + pos: 2.5,-4.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6585 + color: '#4169E1FF' + - uid: 24123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,13.5 - parent: 89 + pos: 2.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6586 + color: '#4169E1FF' + - uid: 24124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 89 + pos: 2.5,-2.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6587 + color: '#4169E1FF' + - uid: 24125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,14.5 - parent: 89 + pos: 2.5,-0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6588 + color: '#4169E1FF' + - uid: 24126 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,14.5 - parent: 89 + pos: 4.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6589 + color: '#4169E1FF' + - uid: 24127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6590 + color: '#4169E1FF' + - uid: 24128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6591 + color: '#4169E1FF' + - uid: 24129 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,14.5 - parent: 89 + pos: 5.5,-8.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6592 + color: '#DC143CFF' + - uid: 24130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,14.5 - parent: 89 + pos: 5.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6593 + color: '#DC143CFF' + - uid: 24131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,14.5 - parent: 89 + pos: 6.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6594 + color: '#DC143CFF' + - uid: 24132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,14.5 - parent: 89 + pos: 7.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6595 + color: '#DC143CFF' + - uid: 24133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6599 + color: '#DC143CFF' + - uid: 24134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6600 + color: '#DC143CFF' + - uid: 24135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6601 + color: '#DC143CFF' + - uid: 24136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6606 + color: '#4169E1FF' + - uid: 24137 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,9.5 - parent: 89 + pos: 2.5,2.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6807 + color: '#4169E1FF' + - uid: 24138 components: - type: Transform - pos: -71.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6808 + color: '#4169E1FF' + - uid: 24139 components: - type: Transform - pos: -71.5,2.5 - parent: 89 + pos: 4.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6809 + color: '#DC143CFF' + - uid: 24140 components: - type: Transform - pos: -71.5,1.5 - parent: 89 + pos: 4.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6810 + color: '#DC143CFF' + - uid: 24141 components: - type: Transform - pos: -71.5,0.5 - parent: 89 + pos: 4.5,-2.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6811 + color: '#DC143CFF' + - uid: 24142 components: - type: Transform - pos: -71.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6812 + color: '#4169E1FF' + - uid: 24143 components: - type: Transform - pos: -71.5,-1.5 - parent: 89 + pos: 4.5,-0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6813 + color: '#DC143CFF' + - uid: 24144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,4.5 - parent: 89 + pos: 4.5,2.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6814 + color: '#DC143CFF' + - uid: 24398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,4.5 - parent: 89 + pos: 0.5,-3.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6815 + color: '#DC143CFF' + - uid: 24399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6816 + color: '#DC143CFF' + - uid: 24400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,4.5 - parent: 89 + pos: -0.5,-4.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6818 + color: '#DC143CFF' + - uid: 25970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,5.5 - parent: 89 + pos: -18.5,-13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6819 + color: '#0000FFFF' + - uid: 25971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,5.5 - parent: 89 + pos: -18.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6820 + color: '#990000FF' + - uid: 25972 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,4.5 - parent: 89 + pos: -21.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6821 + - uid: 25973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,3.5 - parent: 89 + pos: -10.5,-13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6822 + color: '#17E8E2FF' + - uid: 25974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,2.5 - parent: 89 + pos: -17.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6823 + color: '#990000FF' + - uid: 25975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6831 + color: '#17E8E2FF' + - uid: 25976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6832 + color: '#17E8E2FF' + - uid: 25977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,6.5 - parent: 89 + pos: -10.5,-14.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6833 + color: '#17E8E2FF' + - uid: 25978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 89 + pos: -10.5,-15.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6834 + color: '#17E8E2FF' + - uid: 25979 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 89 + pos: -12.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6835 + color: '#FF0000FF' + - uid: 25980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 89 + pos: -11.5,-18.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6836 + color: '#17E8E2FF' + - uid: 25981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,0.5 - parent: 89 + pos: -11.5,-19.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6837 + color: '#17E8E2FF' + - uid: 25982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 89 + pos: -11.5,-20.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6838 + color: '#17E8E2FF' + - uid: 25983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,0.5 - parent: 89 + pos: -11.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6854 + color: '#17E8E2FF' + - uid: 25984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 89 + pos: -11.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6855 + color: '#17E8E2FF' + - uid: 25985 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 89 + pos: -22.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6860 + color: '#17E8E2FF' + - uid: 25986 components: - type: Transform - pos: -32.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6861 + - uid: 25987 components: - type: Transform - pos: -62.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6867 + color: '#17E8E2FF' + - uid: 25988 components: - type: Transform - pos: -47.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6868 + - uid: 25989 components: - type: Transform - pos: -12.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6876 + color: '#17E8E2FF' + - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,5.5 - parent: 89 + pos: -12.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6877 + color: '#17E8E2FF' + - uid: 25991 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,6.5 - parent: 89 + pos: -12.5,-8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6878 + color: '#17E8E2FF' + - uid: 25992 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,7.5 - parent: 89 + pos: -12.5,-7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6883 + color: '#17E8E2FF' + - uid: 25993 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 89 + pos: -12.5,-6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7281 + color: '#17E8E2FF' + - uid: 25994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-13.5 - parent: 89 - - uid: 7290 + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-11.5 - parent: 89 - - uid: 7431 + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25996 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 89 - - uid: 7433 + pos: -12.5,-3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7436 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7569 + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25999 components: - type: Transform - pos: -88.5,-6.5 - parent: 89 - - uid: 7570 + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26000 components: - type: Transform - pos: -87.5,-6.5 - parent: 89 - - uid: 8037 + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8147 + color: '#17E8E2FF' + - uid: 26002 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,35.5 - parent: 89 + pos: -13.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8200 + color: '#17E8E2FF' + - uid: 26003 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 89 + pos: -14.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8354 + color: '#17E8E2FF' + - uid: 26004 components: - type: Transform - pos: -1.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8355 + color: '#17E8E2FF' + - uid: 26005 components: - type: Transform - pos: -1.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8360 + color: '#17E8E2FF' + - uid: 26006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8361 + color: '#17E8E2FF' + - uid: 26007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8362 + color: '#17E8E2FF' + - uid: 26008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8363 + color: '#17E8E2FF' + - uid: 26009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8364 + color: '#17E8E2FF' + - uid: 26010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 89 + pos: -7.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8365 + color: '#17E8E2FF' + - uid: 26011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,12.5 - parent: 89 + pos: -17.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8366 + color: '#17E8E2FF' + - uid: 26012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8452 + color: '#17E8E2FF' + - uid: 26013 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,23.5 - parent: 89 + pos: -19.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8591 + color: '#17E8E2FF' + - uid: 26014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -126.5,13.5 - parent: 89 + pos: -20.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8592 + color: '#17E8E2FF' + - uid: 26015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -125.5,13.5 - parent: 89 + pos: -21.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8593 + color: '#17E8E2FF' + - uid: 26016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,13.5 - parent: 89 + pos: -23.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8617 + color: '#17E8E2FF' + - uid: 26017 components: - type: Transform - pos: -116.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8720 + color: '#17E8E2FF' + - uid: 26018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,9.5 - parent: 89 - - uid: 8743 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8744 + color: '#17E8E2FF' + - uid: 26020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8745 + color: '#17E8E2FF' + - uid: 26021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8746 + color: '#17E8E2FF' + - uid: 26022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8747 + color: '#17E8E2FF' + - uid: 26023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8749 + color: '#17E8E2FF' + - uid: 26024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8753 + color: '#17E8E2FF' + - uid: 26025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8754 + color: '#17E8E2FF' + - uid: 26026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8755 + color: '#17E8E2FF' + - uid: 26027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8756 + color: '#17E8E2FF' + - uid: 26028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,3.5 - parent: 89 + pos: -13.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8757 + color: '#17E8E2FF' + - uid: 26029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,3.5 - parent: 89 + pos: -13.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8761 + color: '#17E8E2FF' + - uid: 26030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 8800 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26031 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,6.5 - parent: 89 - - uid: 8802 + pos: -1.5,0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,5.5 - parent: 89 - - uid: 8803 + pos: -31.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,2.5 - parent: 89 - - uid: 8805 + pos: -31.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26034 components: - type: Transform - pos: -121.5,1.5 - parent: 89 - - uid: 8807 + pos: -31.5,8.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-0.5 - parent: 89 - - uid: 8809 + pos: -31.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26036 components: - type: Transform rot: -1.5707963267948966 rad - pos: -122.5,-1.5 - parent: 89 - - uid: 8810 + pos: -32.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26037 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,-1.5 - parent: 89 - - uid: 8820 - components: - - type: Transform - pos: -124.5,-2.5 - parent: 89 - - uid: 8826 + pos: -32.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-3.5 - parent: 89 - - uid: 8827 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26039 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-2.5 - parent: 89 - - uid: 8828 + pos: -11.5,-24.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26040 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-1.5 - parent: 89 - - uid: 8829 + pos: -22.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26041 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-0.5 - parent: 89 - - uid: 8830 + pos: -22.5,3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26042 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,0.5 - parent: 89 - - uid: 8831 + pos: -22.5,4.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,1.5 - parent: 89 - - uid: 8832 + pos: -22.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26044 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,2.5 - parent: 89 - - uid: 8833 + pos: -22.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26045 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,3.5 - parent: 89 - - uid: 8834 + pos: -22.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26046 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,4.5 - parent: 89 - - uid: 8835 + pos: -22.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26047 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,5.5 - parent: 89 - - uid: 8836 + pos: -22.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26048 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,6.5 - parent: 89 - - uid: 8838 - components: - - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 8840 + pos: -22.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8863 + pos: -22.5,13.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,9.5 - parent: 89 - - uid: 8864 + pos: -22.5,14.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,9.5 - parent: 89 - - uid: 8865 + pos: -22.5,15.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,9.5 - parent: 89 - - uid: 8866 + pos: -22.5,17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,9.5 - parent: 89 - - uid: 8867 + pos: -22.5,18.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,9.5 - parent: 89 - - uid: 8868 + pos: -22.5,19.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,9.5 - parent: 89 - - uid: 8869 + pos: -22.5,20.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,9.5 - parent: 89 - - uid: 8933 + pos: -22.5,21.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,8.5 - parent: 89 + pos: -22.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8935 + color: '#17E8E2FF' + - uid: 26058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 89 - - uid: 8940 + pos: -22.5,23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,8.5 - parent: 89 + pos: -24.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8941 + color: '#17E8E2FF' + - uid: 26060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,8.5 - parent: 89 + pos: -23.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8942 + color: '#17E8E2FF' + - uid: 26061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8943 + color: '#17E8E2FF' + - uid: 26062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8944 + color: '#17E8E2FF' + - uid: 26063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8945 + color: '#17E8E2FF' + - uid: 26064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,8.5 - parent: 89 + pos: -15.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8946 + color: '#17E8E2FF' + - uid: 26065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8947 + color: '#17E8E2FF' + - uid: 26066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8948 + color: '#17E8E2FF' + - uid: 26067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8949 + color: '#17E8E2FF' + - uid: 26068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8950 + color: '#17E8E2FF' + - uid: 26069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8951 + color: '#17E8E2FF' + - uid: 26070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8952 + color: '#17E8E2FF' + - uid: 26071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8953 + color: '#17E8E2FF' + - uid: 26072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8954 + color: '#17E8E2FF' + - uid: 26073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8955 + color: '#17E8E2FF' + - uid: 26074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8956 + color: '#17E8E2FF' + - uid: 26075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8957 + color: '#17E8E2FF' + - uid: 26076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8958 + color: '#17E8E2FF' + - uid: 26077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8959 + color: '#17E8E2FF' + - uid: 26078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8962 + color: '#17E8E2FF' + - uid: 26079 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,9.5 - parent: 89 + pos: -1.5,19.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8963 + color: '#17E8E2FF' + - uid: 26080 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,10.5 - parent: 89 + pos: -1.5,20.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8964 + color: '#17E8E2FF' + - uid: 26081 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,11.5 - parent: 89 + pos: -1.5,21.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8965 + color: '#17E8E2FF' + - uid: 26082 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,12.5 - parent: 89 + pos: -1.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8966 + color: '#17E8E2FF' + - uid: 26083 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-42.5 - parent: 89 - - uid: 8967 + pos: -1.5,23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8969 + color: '#17E8E2FF' + - uid: 26085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8970 + color: '#17E8E2FF' + - uid: 26086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8971 + color: '#17E8E2FF' + - uid: 26087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8974 + color: '#17E8E2FF' + - uid: 26088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8975 + color: '#17E8E2FF' + - uid: 26089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8976 + color: '#17E8E2FF' + - uid: 26090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8977 + color: '#17E8E2FF' + - uid: 26091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-0.5 - parent: 89 + pos: 2.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8978 + color: '#17E8E2FF' + - uid: 26092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-0.5 - parent: 89 + pos: 2.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8979 + color: '#17E8E2FF' + - uid: 26093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-0.5 - parent: 89 + pos: 2.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8980 + color: '#17E8E2FF' + - uid: 26094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-0.5 - parent: 89 + pos: 2.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8981 + color: '#17E8E2FF' + - uid: 26095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-0.5 - parent: 89 + pos: 2.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8982 + color: '#17E8E2FF' + - uid: 26096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -118.5,-0.5 - parent: 89 + pos: 3.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8983 + color: '#17E8E2FF' + - uid: 26097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -108.5,-2.5 - parent: 89 + pos: 4.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8984 + color: '#17E8E2FF' + - uid: 26098 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,-2.5 - parent: 89 + pos: 5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8985 + color: '#17E8E2FF' + - uid: 26099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,-2.5 - parent: 89 + pos: 6.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8986 + color: '#17E8E2FF' + - uid: 26100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-2.5 - parent: 89 + pos: 7.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8987 + color: '#17E8E2FF' + - uid: 26101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-2.5 - parent: 89 + pos: 7.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8988 + color: '#17E8E2FF' + - uid: 26102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-2.5 - parent: 89 + pos: 7.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8989 + color: '#17E8E2FF' + - uid: 26103 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.5,-2.5 - parent: 89 + pos: 8.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8990 + color: '#17E8E2FF' + - uid: 26104 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,-2.5 - parent: 89 + pos: 8.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8991 + color: '#17E8E2FF' + - uid: 26105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8992 + color: '#17E8E2FF' + - uid: 26106 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-2.5 - parent: 89 + pos: 8.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8993 + color: '#17E8E2FF' + - uid: 26107 components: - type: Transform rot: -1.5707963267948966 rad - pos: -118.5,-2.5 - parent: 89 + pos: -0.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8994 + color: '#17E8E2FF' + - uid: 26108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -16.5,-25.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8999 + - uid: 26109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9000 + - uid: 26110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9001 + - uid: 26111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9002 + color: '#FF0000FF' + - uid: 26112 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-3.5 - parent: 89 + pos: -12.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9003 + color: '#FF0000FF' + - uid: 26113 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,-3.5 - parent: 89 + pos: -11.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9004 + color: '#FF0000FF' + - uid: 26114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-2.5 - parent: 89 + pos: -10.5,-25.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9005 + - uid: 26115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,-2.5 - parent: 89 + pos: -9.5,-23.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9006 + - uid: 26116 components: - type: Transform - pos: -123.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9346 + - uid: 26117 components: - type: Transform - pos: 5.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9347 + color: '#FF0000FF' + - uid: 26118 components: - type: Transform - pos: 5.5,9.5 - parent: 89 + pos: -10.5,-16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9351 + color: '#17E8E2FF' + - uid: 26119 components: - type: Transform - pos: 7.5,10.5 - parent: 89 + pos: -10.5,1.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9352 + - uid: 26120 components: - type: Transform - pos: 7.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9353 + - uid: 26121 components: - type: Transform - pos: 7.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9354 + - uid: 26122 components: - type: Transform - pos: 7.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9357 + - uid: 26123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9358 + color: '#FF0000FF' + - uid: 26124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9359 + color: '#FF0000FF' + - uid: 26125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9360 + color: '#FF0000FF' + - uid: 26126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9361 + color: '#FF0000FF' + - uid: 26127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9362 + color: '#FF0000FF' + - uid: 26128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 89 + pos: -10.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9363 + color: '#FF0000FF' + - uid: 26129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9364 + color: '#FF0000FF' + - uid: 26130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9365 + - uid: 26131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9366 + - uid: 26132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,6.5 - parent: 89 + pos: -1.5,14.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9367 + - uid: 26133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 89 + pos: -22.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9368 + - uid: 26134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 89 + pos: -23.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9430 + - uid: 26135 components: - type: Transform - pos: 21.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9431 + color: '#FF0000FF' + - uid: 26136 components: - type: Transform - pos: 23.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9432 + - uid: 26137 components: - type: Transform - pos: 23.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9611 + - uid: 26138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9622 + - uid: 26139 components: - type: Transform - pos: -24.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9623 + color: '#FF0000FF' + - uid: 26140 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9624 + color: '#FF0000FF' + - uid: 26141 components: - type: Transform - pos: -24.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9625 + color: '#FF0000FF' + - uid: 26142 components: - type: Transform - pos: -24.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9626 + color: '#FF0000FF' + - uid: 26143 components: - type: Transform - pos: -24.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9627 + color: '#FF0000FF' + - uid: 26144 components: - type: Transform - pos: -24.5,-21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9628 + color: '#FF0000FF' + - uid: 26145 components: - type: Transform - pos: -24.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9629 + color: '#FF0000FF' + - uid: 26146 components: - type: Transform - pos: -24.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9630 + color: '#FF0000FF' + - uid: 26147 components: - type: Transform - pos: -24.5,-18.5 - parent: 89 + pos: -30.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9631 + color: '#FF0000FF' + - uid: 26148 components: - type: Transform - pos: -24.5,-17.5 - parent: 89 + pos: -30.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9632 + color: '#FF0000FF' + - uid: 26149 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 + pos: -30.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9633 + color: '#FF0000FF' + - uid: 26150 components: - type: Transform - pos: -24.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9634 + color: '#FF0000FF' + - uid: 26151 components: - type: Transform - pos: -24.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9666 + color: '#FF0000FF' + - uid: 26152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,33.5 - parent: 89 + pos: -18.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9667 + - uid: 26153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 89 + pos: -17.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9887 + - uid: 26154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,35.5 - parent: 89 + pos: -17.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9888 + color: '#FF0000FF' + - uid: 26155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,35.5 - parent: 89 + pos: -17.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9889 + color: '#FF0000FF' + - uid: 26156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,33.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9890 + - uid: 26157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9903 + - uid: 26158 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,37.5 - parent: 89 + pos: -21.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9904 + color: '#FF0000FF' + - uid: 26159 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,38.5 - parent: 89 + pos: -20.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9905 + color: '#FF0000FF' + - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,38.5 - parent: 89 + pos: -20.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9913 + - uid: 26161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,39.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9914 + color: '#FF0000FF' + - uid: 26162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9915 + color: '#FF0000FF' + - uid: 26163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9916 + color: '#FF0000FF' + - uid: 26164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9918 + color: '#FF0000FF' + - uid: 26165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9944 + color: '#FF0000FF' + - uid: 26166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,39.5 - parent: 89 + pos: -20.5,11.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9945 + - uid: 26167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,40.5 - parent: 89 + pos: -20.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9946 + color: '#FF0000FF' + - uid: 26168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,41.5 - parent: 89 + pos: -20.5,13.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9947 + color: '#FF0000FF' + - uid: 26169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,42.5 - parent: 89 + pos: -20.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10164 + color: '#FF0000FF' + - uid: 26170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,17.5 - parent: 89 + pos: -20.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10165 + color: '#FF0000FF' + - uid: 26171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,17.5 - parent: 89 + pos: -20.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10166 + color: '#FF0000FF' + - uid: 26172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,18.5 - parent: 89 + pos: -20.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10168 + color: '#FF0000FF' + - uid: 26173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 89 + pos: -20.5,19.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10169 + color: '#FF0000FF' + - uid: 26174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,19.5 - parent: 89 + pos: -20.5,20.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10171 + - uid: 26175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 89 + pos: -20.5,21.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10446 + - uid: 26176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-10.5 - parent: 89 + pos: -20.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10486 + color: '#FF0000FF' + - uid: 26177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 89 + pos: -20.5,23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10498 + color: '#FF0000FF' + - uid: 26178 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 89 + pos: -21.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 89 - - uid: 10599 + color: '#FF0000FF' + - uid: 26179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 89 + pos: -4.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10671 + color: '#17E8E2FF' + - uid: 26180 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,33.5 - parent: 89 + pos: -10.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 89 - - uid: 10761 + color: '#FF0000FF' + - uid: 26181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10766 + - uid: 26182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10799 + color: '#FF0000FF' + - uid: 26183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10832 + - uid: 26184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 10971 + color: '#FF0000FF' + - uid: 26185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,29.5 - parent: 89 + pos: -4.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10973 + - uid: 26186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10991 + color: '#FF0000FF' + - uid: 26187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11033 + color: '#FF0000FF' + - uid: 26188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11060 + - uid: 26189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11098 + color: '#FF0000FF' + - uid: 26190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11350 + - uid: 26191 components: - type: Transform - pos: -14.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11386 + color: '#FF0000FF' + - uid: 26192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11602 + color: '#FF0000FF' + - uid: 26193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11604 + - uid: 26194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11825 + - uid: 26195 components: - type: Transform - pos: -14.5,22.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11911 + color: '#FF0000FF' + - uid: 26196 components: - type: Transform - pos: 10.5,40.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11915 + color: '#FF0000FF' + - uid: 26197 components: - type: Transform - pos: 10.5,39.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12328 + color: '#FF0000FF' + - uid: 26198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,19.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12566 + - uid: 26199 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 89 + pos: -3.5,20.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12581 + color: '#FF0000FF' + - uid: 26200 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 89 + pos: -3.5,21.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12582 + color: '#FF0000FF' + - uid: 26201 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,16.5 - parent: 89 + pos: -3.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12583 + color: '#FF0000FF' + - uid: 26202 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 89 + pos: -3.5,23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12584 + color: '#FF0000FF' + - uid: 26203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12585 + color: '#FF0000FF' + - uid: 26204 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 89 + pos: -7.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12586 + color: '#FF0000FF' + - uid: 26205 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,20.5 - parent: 89 + pos: -7.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12644 + color: '#FF0000FF' + - uid: 26206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12652 + - uid: 26207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 89 + pos: 7.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12657 + color: '#FF0000FF' + - uid: 26208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12683 + color: '#FF0000FF' + - uid: 26209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12684 + - uid: 26210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 89 + pos: -1.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12685 + - uid: 26211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 89 + pos: -0.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12686 + - uid: 26212 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 89 + pos: 0.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12687 + color: '#FF0000FF' + - uid: 26213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 89 + pos: 1.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12688 + color: '#FF0000FF' + - uid: 26214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 89 + pos: 2.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12689 + color: '#FF0000FF' + - uid: 26215 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 89 + pos: 3.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12690 + color: '#FF0000FF' + - uid: 26216 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 89 + pos: 4.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12691 + color: '#FF0000FF' + - uid: 26217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 + pos: 8.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12693 + color: '#FF0000FF' + - uid: 26218 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 89 + pos: 7.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12694 + - uid: 26219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,11.5 - parent: 89 + pos: 6.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12695 + - uid: 26220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12698 + - uid: 26221 components: - type: Transform - pos: 1.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12707 + - uid: 26222 components: - type: Transform - pos: 5.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,15.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 27260 + - uid: 27635 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12708 + - uid: 27636 components: - type: Transform - pos: 5.5,12.5 - parent: 89 + pos: 1.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12712 + - uid: 27637 components: - type: Transform - pos: 7.5,11.5 - parent: 89 + pos: 0.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12716 + - uid: 27638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12717 + color: '#0000FFFF' + - uid: 27639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12718 + color: '#0000FFFF' + - uid: 27640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12719 + - uid: 27641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12720 + - uid: 27642 components: - type: Transform - pos: 9.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12721 + - uid: 27643 components: - type: Transform - pos: 9.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12722 + - uid: 27644 components: - type: Transform - pos: 9.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12723 + - uid: 27645 components: - type: Transform - pos: 10.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12724 + color: '#0000FFFF' + - uid: 27646 components: - type: Transform - pos: 10.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12725 + color: '#0000FFFF' + - uid: 27647 components: - type: Transform - pos: 10.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12726 + - uid: 27648 components: - type: Transform - pos: 10.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12727 + - uid: 27649 components: - type: Transform - pos: 6.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12728 + color: '#FF0000FF' + - uid: 27650 components: - type: Transform - pos: 6.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12729 + color: '#FF0000FF' + - uid: 27651 components: - type: Transform - pos: 6.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12730 + color: '#FF0000FF' + - uid: 27652 components: - type: Transform - pos: 7.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12731 + - uid: 27653 components: - type: Transform - pos: 7.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12732 + - uid: 27654 components: - type: Transform - pos: 7.5,15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12733 + - uid: 27655 components: - type: Transform - pos: 7.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12744 + - uid: 27656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12745 + - uid: 27657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12754 + - uid: 27658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12755 + - uid: 27659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12756 + color: '#0000FFFF' + - uid: 27660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 89 + pos: -0.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12757 + - uid: 27661 components: - type: Transform - pos: 13.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12758 + - uid: 27662 components: - type: Transform - pos: 14.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12759 + color: '#0000FFFF' + - uid: 27663 components: - type: Transform - pos: 14.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12760 + - uid: 27664 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,12.5 - parent: 89 + pos: 2.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12763 + - uid: 27665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12766 + - uid: 27666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12767 + color: '#FF0000FF' + - uid: 27667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12768 + color: '#FF0000FF' + - uid: 27668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12769 + color: '#FF0000FF' + - uid: 27669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12778 + color: '#FF0000FF' + - uid: 27670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 89 + pos: 1.5,-5.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#0000FFFF' + - uid: 27671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 89 + pos: 1.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12781 + - uid: 27672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 89 + pos: 1.5,-3.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12782 + color: '#0000FFFF' + - uid: 27673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 89 + pos: 1.5,-2.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12783 + - uid: 27674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12784 + - uid: 27675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12785 + - uid: 27676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12788 +- proto: GasPipeTJunction + entities: + - uid: 14021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 89 + pos: -121.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12789 + color: '#DC143CFF' + - uid: 14022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 89 + pos: -136.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12790 + color: '#4169E1FF' + - uid: 14023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 + pos: -129.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12791 + color: '#4169E1FF' + - uid: 14024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12792 + color: '#4169E1FF' + - uid: 14025 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12796 - components: - - type: Transform - pos: 22.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 - components: - - type: Transform - pos: 22.5,16.5 - parent: 89 + pos: -136.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 + color: '#DC143CFF' + - uid: 14026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 89 + pos: -101.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12805 + color: '#17E8E2FF' + - uid: 14027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -102.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12806 + color: '#947507FF' + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 89 + pos: -99.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12807 + color: '#4169E1FF' + - uid: 14029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 89 + pos: -100.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12808 + color: '#DC143CFF' + - uid: 14030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -109.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12810 + color: '#DC143CFF' + - uid: 14031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12830 + rot: -1.5707963267948966 rad + pos: -125.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 89 + pos: -91.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13201 + color: '#DC143CFF' + - uid: 14033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 89 + pos: -90.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13202 + color: '#DC143CFF' + - uid: 14034 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 89 + pos: -99.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13205 + color: '#DC143CFF' + - uid: 14035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 89 + pos: -4.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13209 + color: '#DC143CFF' + - uid: 14036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14022 + color: '#DC143CFF' + - uid: 14037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14026 + color: '#4169E1FF' + - uid: 14038 components: - type: Transform - pos: 10.5,37.5 - parent: 89 + pos: -0.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14053 + color: '#4169E1FF' + - uid: 14039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -99.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14055 + color: '#DC143CFF' + - uid: 14040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,15.5 - parent: 89 + pos: -109.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14056 + color: '#DC143CFF' + - uid: 14041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -87.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14061 + color: '#4169E1FF' + - uid: 14042 components: - type: Transform - pos: 10.5,38.5 - parent: 89 + pos: -25.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14360 + color: '#4169E1FF' + - uid: 14043 components: - type: Transform - pos: 26.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -101.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14540 + color: '#17E8E2FF' + - uid: 14044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -102.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14902 + color: '#947507FF' + - uid: 14045 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 89 + pos: -99.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14905 + color: '#17E8E2FF' + - uid: 14046 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 89 + pos: -96.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14947 + color: '#DC143CFF' + - uid: 14047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14950 + color: '#4169E1FF' + - uid: 14048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14985 + color: '#DC143CFF' + - uid: 14049 components: - type: Transform - pos: 25.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14986 + color: '#4169E1FF' + - uid: 14050 components: - type: Transform - pos: 25.5,13.5 - parent: 89 + pos: -81.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14996 + color: '#947507FF' + - uid: 14051 components: - type: Transform - pos: 26.5,13.5 - parent: 89 + pos: -80.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15005 + color: '#FFD800FF' + - uid: 14052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15010 + color: '#FFD800FF' + - uid: 14053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -83.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15036 + color: '#FFD800FF' + - uid: 14054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 89 + pos: -96.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15062 + color: '#DC143CFF' + - uid: 14055 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,29.5 - parent: 89 + pos: -95.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15080 + color: '#4169E1FF' + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 89 + pos: -99.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15086 + color: '#DC143CFF' + - uid: 14057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15099 + color: '#DC143CFF' + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 89 + pos: -95.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15103 + color: '#DC143CFF' + - uid: 14059 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 89 + pos: -94.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15124 + color: '#4169E1FF' + - uid: 14060 components: - type: Transform - pos: 13.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15127 + color: '#4169E1FF' + - uid: 14061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15129 + color: '#4169E1FF' + - uid: 14062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -89.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15130 + color: '#DC143CFF' + - uid: 14063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15132 + color: '#4169E1FF' + - uid: 14064 components: - type: Transform - pos: 27.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -104.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15134 + color: '#DC143CFF' + - uid: 14065 components: - type: Transform - pos: 27.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -102.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15135 + color: '#4169E1FF' + - uid: 14066 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 89 + pos: -107.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15137 + color: '#4169E1FF' + - uid: 14067 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 89 + pos: -109.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15140 + color: '#DC143CFF' + - uid: 14068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15141 + color: '#DC143CFF' + - uid: 14069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 89 + pos: -107.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15142 + color: '#4169E1FF' + - uid: 14070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 89 + pos: -110.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15143 + color: '#4169E1FF' + - uid: 14071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -110.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15144 + color: '#DC143CFF' + - uid: 14072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 89 + pos: -107.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15181 + color: '#4169E1FF' + - uid: 14073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15183 + color: '#DC143CFF' + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,18.5 - parent: 89 + pos: -107.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15194 + color: '#4169E1FF' + - uid: 14075 components: - type: Transform - pos: 13.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15201 + color: '#4169E1FF' + - uid: 14076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15205 + color: '#DC143CFF' + - uid: 14077 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,31.5 - parent: 89 + pos: -99.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15211 + color: '#DC143CFF' + - uid: 14078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,31.5 - parent: 89 + pos: -98.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15212 + color: '#4169E1FF' + - uid: 14079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15216 + color: '#DC143CFF' + - uid: 14080 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,19.5 - parent: 89 + pos: -67.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15217 + color: '#DC143CFF' + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 89 + pos: -68.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15219 + color: '#4169E1FF' + - uid: 14082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15220 + color: '#4169E1FF' + - uid: 14083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15221 + color: '#DC143CFF' + - uid: 14084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 89 + pos: -62.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15222 + color: '#DC143CFF' + - uid: 14085 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,21.5 - parent: 89 + pos: -66.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15223 + color: '#4169E1FF' + - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 89 + pos: -51.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15224 + color: '#4169E1FF' + - uid: 14087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,23.5 - parent: 89 + pos: -63.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15225 + color: '#4169E1FF' + - uid: 14088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 - parent: 89 + pos: -50.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15226 + color: '#4169E1FF' + - uid: 14089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15227 + color: '#DC143CFF' + - uid: 14090 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,16.5 - parent: 89 + pos: -41.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15228 + color: '#4169E1FF' + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,17.5 - parent: 89 + pos: -25.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15229 + color: '#DC143CFF' + - uid: 14092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15230 + color: '#DC143CFF' + - uid: 14093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15231 + color: '#4169E1FF' + - uid: 14094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,20.5 - parent: 89 + pos: -19.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15232 + color: '#4169E1FF' + - uid: 14095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15233 + color: '#DC143CFF' + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,22.5 - parent: 89 + pos: -18.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15234 + color: '#4169E1FF' + - uid: 14097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,23.5 - parent: 89 + pos: -56.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15235 + color: '#4169E1FF' + - uid: 14098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15237 + color: '#4169E1FF' + - uid: 14099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 89 + pos: -54.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15253 + color: '#DC143CFF' + - uid: 14100 components: - type: Transform - pos: 9.5,40.5 - parent: 89 + pos: -54.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15259 + color: '#DC143CFF' + - uid: 14101 components: - type: Transform - pos: 24.5,25.5 - parent: 89 + pos: -15.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15260 + color: '#4169E1FF' + - uid: 14102 components: - type: Transform - pos: 25.5,25.5 - parent: 89 + pos: -14.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15261 + color: '#DC143CFF' + - uid: 14103 components: - type: Transform - pos: 25.5,27.5 - parent: 89 + pos: -22.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15263 + color: '#4169E1FF' + - uid: 14104 components: - type: Transform - pos: 9.5,39.5 - parent: 89 + pos: -20.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15266 + color: '#DC143CFF' + - uid: 14105 components: - type: Transform - pos: 9.5,38.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15357 + color: '#DC143CFF' + - uid: 14106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15358 + color: '#4169E1FF' + - uid: 14107 components: - type: Transform - pos: 14.5,18.5 - parent: 89 + pos: 23.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15366 + color: '#DC143CFF' + - uid: 14108 components: - type: Transform - pos: 13.5,19.5 - parent: 89 + pos: 21.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15368 + color: '#4169E1FF' + - uid: 14109 components: - type: Transform - pos: 13.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15370 + color: '#DC143CFF' + - uid: 14110 components: - type: Transform - pos: 13.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15371 + color: '#4169E1FF' + - uid: 14111 components: - type: Transform - pos: 13.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15372 + color: '#4169E1FF' + - uid: 14112 components: - type: Transform - pos: 13.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15373 + color: '#DC143CFF' + - uid: 14113 components: - type: Transform - pos: 13.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 51.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15374 + color: '#DC143CFF' + - uid: 14114 components: - type: Transform - pos: 13.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 52.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15387 + color: '#4169E1FF' + - uid: 14115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 89 + pos: 61.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15388 + color: '#4169E1FF' + - uid: 14116 components: - type: Transform - pos: 8.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15413 + color: '#DC143CFF' + - uid: 14117 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,33.5 - parent: 89 + pos: -17.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15414 + color: '#DC143CFF' + - uid: 14118 components: - type: Transform - pos: 13.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15430 + color: '#DC143CFF' + - uid: 14119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15433 + color: '#4169E1FF' + - uid: 14120 components: - type: Transform - pos: 9.5,36.5 - parent: 89 + pos: -11.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15434 + color: '#4169E1FF' + - uid: 14121 components: - type: Transform - pos: 9.5,37.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15450 + color: '#4169E1FF' + - uid: 14122 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 89 + pos: -20.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15470 + color: '#DC143CFF' + - uid: 14123 components: - type: Transform - pos: 14.5,15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15527 + color: '#4169E1FF' + - uid: 14124 components: - type: Transform - pos: 14.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15532 + color: '#4169E1FF' + - uid: 14125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,34.5 - parent: 89 + pos: -0.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15538 + color: '#4169E1FF' + - uid: 14126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,34.5 - parent: 89 + pos: -2.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15543 + color: '#DC143CFF' + - uid: 14127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15544 + color: '#4169E1FF' + - uid: 14128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15555 + color: '#DC143CFF' + - uid: 14129 components: - type: Transform - pos: 14.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15569 + color: '#4169E1FF' + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,35.5 - parent: 89 + pos: -8.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15604 + color: '#4169E1FF' + - uid: 14131 components: - type: Transform - pos: 12.5,35.5 - parent: 89 + pos: -1.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15619 + color: '#4169E1FF' + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 89 + pos: -81.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15626 + color: '#4169E1FF' + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 89 + pos: 3.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15690 + color: '#DC143CFF' + - uid: 14136 components: - type: Transform - pos: 14.5,16.5 - parent: 89 + pos: -59.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15755 + color: '#DC143CFF' + - uid: 14137 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,34.5 - parent: 89 + pos: 6.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15756 + color: '#4169E1FF' + - uid: 14138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15785 + color: '#DC143CFF' + - uid: 14139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15786 + color: '#4169E1FF' + - uid: 14140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15787 + color: '#DC143CFF' + - uid: 14141 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,13.5 - parent: 89 + pos: -9.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15788 + color: '#DC143CFF' + - uid: 14142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,14.5 - parent: 89 + pos: -6.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15789 + color: '#DC143CFF' + - uid: 14143 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,15.5 - parent: 89 + pos: -55.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15790 + color: '#DC143CFF' + - uid: 14144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,16.5 - parent: 89 + pos: -59.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15791 + color: '#DC143CFF' + - uid: 14145 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,17.5 - parent: 89 + pos: -59.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15792 + color: '#4169E1FF' + - uid: 14146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,18.5 - parent: 89 + pos: -65.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15793 + color: '#4169E1FF' + - uid: 14147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15794 + color: '#4169E1FF' + - uid: 14148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15795 + color: '#DC143CFF' + - uid: 14149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15796 + color: '#DC143CFF' + - uid: 14150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15797 + color: '#4169E1FF' + - uid: 14151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15798 + color: '#4169E1FF' + - uid: 14152 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,15.5 - parent: 89 + pos: 35.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15799 + color: '#DC143CFF' + - uid: 14153 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,16.5 - parent: 89 + pos: -50.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15800 + color: '#4169E1FF' + - uid: 14154 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,17.5 - parent: 89 + pos: 13.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15801 + color: '#DC143CFF' + - uid: 14155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,18.5 - parent: 89 + pos: 22.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15802 + color: '#DC143CFF' + - uid: 14156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,19.5 - parent: 89 + pos: 25.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15803 + color: '#DC143CFF' + - uid: 14157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,20.5 - parent: 89 + pos: 24.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15804 + color: '#4169E1FF' + - uid: 14158 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,21.5 - parent: 89 + pos: 26.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15806 + color: '#DC143CFF' + - uid: 14159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,23.5 - parent: 89 + pos: 13.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15807 + color: '#4169E1FF' + - uid: 14160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,24.5 - parent: 89 + pos: 21.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15808 + color: '#4169E1FF' + - uid: 14161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,25.5 - parent: 89 + pos: 28.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15809 + color: '#DC143CFF' + - uid: 14162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15810 + color: '#DC143CFF' + - uid: 14163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15811 + color: '#4169E1FF' + - uid: 14164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,28.5 - parent: 89 + pos: 18.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15812 + color: '#4169E1FF' + - uid: 14165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,29.5 - parent: 89 + pos: 19.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15813 + color: '#DC143CFF' + - uid: 14166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15814 + color: '#DC143CFF' + - uid: 14167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15815 + color: '#4169E1FF' + - uid: 14168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15816 + color: '#DC143CFF' + - uid: 14169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,33.5 - parent: 89 + pos: 37.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15817 + color: '#DC143CFF' + - uid: 14170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,34.5 - parent: 89 + pos: 37.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15818 + color: '#4169E1FF' + - uid: 14171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,35.5 - parent: 89 + pos: -77.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15819 + color: '#DC143CFF' + - uid: 14172 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,21.5 - parent: 89 + pos: -55.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15820 + color: '#4169E1FF' + - uid: 14173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 89 + pos: -47.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15822 + color: '#DC143CFF' + - uid: 14174 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,24.5 - parent: 89 + pos: -57.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15823 + color: '#DC143CFF' + - uid: 14175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,25.5 - parent: 89 + pos: -49.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15824 + color: '#4169E1FF' + - uid: 14176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15825 + color: '#4169E1FF' + - uid: 14177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15826 + color: '#DC143CFF' + - uid: 14178 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 89 + pos: -19.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15827 + color: '#DC143CFF' + - uid: 14179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,29.5 - parent: 89 + pos: -24.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15828 + color: '#4169E1FF' + - uid: 14180 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,30.5 - parent: 89 + pos: -82.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15829 + color: '#DC143CFF' + - uid: 14181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,31.5 - parent: 89 + pos: -84.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15830 + color: '#4169E1FF' + - uid: 14182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,32.5 - parent: 89 + pos: -76.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15831 + color: '#4169E1FF' + - uid: 14183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,33.5 - parent: 89 + pos: -94.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15832 + color: '#4169E1FF' + - uid: 14184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15833 + color: '#4169E1FF' + - uid: 14185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15834 + color: '#DC143CFF' + - uid: 14186 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,36.5 - parent: 89 + pos: -7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15835 + color: '#DC143CFF' + - uid: 14187 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,37.5 - parent: 89 + pos: -6.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15836 + color: '#4169E1FF' + - uid: 14188 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,38.5 - parent: 89 + pos: -5.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15837 + color: '#DC143CFF' + - uid: 14189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,39.5 - parent: 89 + pos: -5.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15838 + color: '#4169E1FF' + - uid: 14190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -55.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15839 + color: '#4169E1FF' + - uid: 14191 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,19.5 - parent: 89 + pos: -57.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15840 + color: '#DC143CFF' + - uid: 14192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,20.5 - parent: 89 + pos: -60.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15841 + color: '#4169E1FF' + - uid: 14193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,20.5 - parent: 89 + pos: -67.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15850 + color: '#DC143CFF' + - uid: 14194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15870 + color: '#DC143CFF' + - uid: 14195 + components: + - type: Transform + pos: -59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14196 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14197 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 89 + pos: -65.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16020 + color: '#DC143CFF' + - uid: 14198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 89 + pos: -39.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16129 + color: '#DC143CFF' + - uid: 14199 components: - type: Transform - pos: 13.5,30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16166 + color: '#4169E1FF' + - uid: 14200 components: - type: Transform - pos: 14.5,20.5 - parent: 89 + pos: -35.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16285 + color: '#4169E1FF' + - uid: 14201 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14202 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 89 + pos: -47.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16286 + color: '#DC143CFF' + - uid: 14204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,22.5 - parent: 89 + pos: -30.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16287 + color: '#DC143CFF' + - uid: 14205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 - parent: 89 + pos: -32.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16288 + color: '#4169E1FF' + - uid: 14206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 89 + pos: -120.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16367 + color: '#4169E1FF' + - uid: 14207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 89 - - uid: 16368 + pos: -122.5,0.5 + parent: 2 + - uid: 14208 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 89 - - uid: 16369 + pos: -121.5,8.5 + parent: 2 + - uid: 14209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 89 - - uid: 16370 + pos: -121.5,7.5 + parent: 2 + - uid: 14210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 89 - - uid: 16371 + rot: 3.141592653589793 rad + pos: -125.5,-3.5 + parent: 2 + - uid: 14211 components: - type: Transform - pos: 6.5,23.5 - parent: 89 - - uid: 16372 + rot: 3.141592653589793 rad + pos: -127.5,-3.5 + parent: 2 + - uid: 14212 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 89 - - uid: 16374 + pos: -126.5,-3.5 + parent: 2 + - uid: 14213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17035 + pos: -125.5,6.5 + parent: 2 + - uid: 14214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17340 + pos: -126.5,6.5 + parent: 2 + - uid: 14215 components: - type: Transform - pos: 26.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17663 + rot: 3.141592653589793 rad + pos: -126.5,1.5 + parent: 2 + - uid: 14216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 89 + pos: 39.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19492 + color: '#4169E1FF' + - uid: 14217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19595 + rot: 3.141592653589793 rad + pos: -125.5,1.5 + parent: 2 + - uid: 14218 components: - type: Transform - pos: 18.5,16.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19598 + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 14219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19614 + color: '#DC143CFF' + - uid: 14220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19776 + color: '#4169E1FF' + - uid: 14221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19777 + color: '#4169E1FF' + - uid: 14222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 89 + pos: -56.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19917 + color: '#DC143CFF' + - uid: 14223 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 89 + pos: -61.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19999 + color: '#DC143CFF' + - uid: 14224 components: - type: Transform - pos: 43.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -57.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20000 + color: '#4169E1FF' + - uid: 14225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 89 + pos: -60.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20006 + color: '#4169E1FF' + - uid: 14226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 89 + pos: 8.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20026 + color: '#4169E1FF' + - uid: 14227 components: - type: Transform - pos: -5.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20034 + color: '#DC143CFF' + - uid: 14228 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20035 + pos: 9.5,21.5 + parent: 2 + - uid: 14229 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 89 + pos: 11.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20036 + color: '#4169E1FF' + - uid: 14230 components: - type: Transform - pos: -5.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20037 + color: '#4169E1FF' + - uid: 14231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20038 + color: '#DC143CFF' + - uid: 14232 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,33.5 - parent: 89 + pos: 0.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20041 + color: '#4169E1FF' + - uid: 14233 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,35.5 - parent: 89 + pos: 1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20042 + color: '#DC143CFF' + - uid: 14234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 89 + pos: 5.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20043 + color: '#4169E1FF' + - uid: 14235 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 89 + pos: 6.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20044 + color: '#4169E1FF' + - uid: 14236 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 89 + pos: 9.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20045 + color: '#4169E1FF' + - uid: 14237 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 89 + pos: 10.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20046 + color: '#DC143CFF' + - uid: 14238 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 89 + pos: 13.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20047 + color: '#4169E1FF' + - uid: 14239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20052 + color: '#4169E1FF' + - uid: 14240 components: - type: Transform - pos: -4.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20053 + color: '#DC143CFF' + - uid: 14241 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,30.5 - parent: 89 + pos: 22.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20054 + color: '#DC143CFF' + - uid: 14242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 89 + pos: 26.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20055 + color: '#4169E1FF' + - uid: 14243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -85.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20056 + color: '#DC143CFF' + - uid: 14244 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 89 + pos: 24.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20062 + color: '#4169E1FF' + - uid: 14245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20063 + color: '#4169E1FF' + - uid: 14246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 89 + pos: 27.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20064 + color: '#DC143CFF' + - uid: 14247 components: - type: Transform - pos: 23.5,37.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20065 + color: '#4169E1FF' + - uid: 14248 components: - type: Transform - pos: 23.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20067 + color: '#4169E1FF' + - uid: 14249 components: - type: Transform - pos: -4.5,16.5 - parent: 89 + pos: 0.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20075 + color: '#4169E1FF' + - uid: 14250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20077 + color: '#4169E1FF' + - uid: 14251 components: - type: Transform - pos: -5.5,16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20082 + color: '#D3FC03FF' + - uid: 14252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20087 + color: '#4169E1FF' + - uid: 14253 components: - type: Transform - pos: -5.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20101 + color: '#D3FC03FF' + - uid: 14254 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 89 + pos: 13.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20113 + color: '#4169E1FF' + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20117 + color: '#4169E1FF' + - uid: 14256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20120 + color: '#4169E1FF' + - uid: 14257 components: - type: Transform - pos: -11.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20143 + color: '#D3FC03FF' + - uid: 14258 components: - type: Transform - pos: -5.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20159 + color: '#4169E1FF' + - uid: 14259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20180 + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 2 + - uid: 14260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20188 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 14261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20285 + color: '#4169E1FF' + - uid: 14262 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,17.5 - parent: 89 + pos: -119.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20441 + color: '#DC143CFF' + - uid: 14263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20812 + color: '#4169E1FF' + - uid: 14264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 89 + pos: 23.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20813 + color: '#4169E1FF' + - uid: 14265 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 89 + pos: 24.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20814 + color: '#4169E1FF' + - uid: 14266 components: - type: Transform - pos: 0.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20815 + color: '#DC143CFF' + - uid: 14267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 89 + pos: 26.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20816 + color: '#DC143CFF' + - uid: 14268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21152 + color: '#4169E1FF' + - uid: 14269 components: - type: Transform - pos: -27.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -27.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21178 + - uid: 14270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 89 + pos: -2.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21179 + color: '#DC143CFF' + - uid: 14271 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 89 + pos: -29.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21180 + color: '#4169E1FF' + - uid: 14272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21201 + color: '#FF0000FF' + - uid: 14273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 89 + pos: 39.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21202 + color: '#4169E1FF' + - uid: 14274 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 89 + pos: 38.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21203 + color: '#DC143CFF' + - uid: 14275 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,28.5 - parent: 89 + pos: 45.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21205 + color: '#4169E1FF' + - uid: 14276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21206 + color: '#4169E1FF' + - uid: 14277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21207 + color: '#DC143CFF' + - uid: 14278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,28.5 - parent: 89 + pos: 43.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21208 + color: '#DC143CFF' + - uid: 14279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21209 + color: '#4169E1FF' + - uid: 14280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 89 + pos: 38.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21211 + color: '#DC143CFF' + - uid: 14281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21212 + color: '#DC143CFF' + - uid: 14282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 89 + pos: 41.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21213 + color: '#4169E1FF' + - uid: 14283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 89 + pos: 43.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21214 + color: '#DC143CFF' + - uid: 14284 components: - type: Transform - pos: -30.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21215 + color: '#DC143CFF' + - uid: 14285 components: - type: Transform - pos: -30.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -129.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21216 + color: '#DC143CFF' + - uid: 14286 components: - type: Transform - pos: -30.5,27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -124.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21217 + color: '#DC143CFF' + - uid: 14287 components: - type: Transform - pos: -30.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -120.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21218 + color: '#4169E1FF' + - uid: 14288 components: - type: Transform - pos: -30.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -122.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21219 + color: '#4169E1FF' + - uid: 14289 components: - type: Transform - pos: -30.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -96.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21220 + color: '#DC143CFF' + - uid: 14290 components: - type: Transform - pos: -30.5,33.5 - parent: 89 + pos: -89.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21221 + color: '#4169E1FF' + - uid: 14291 components: - type: Transform - pos: -30.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -90.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21230 + color: '#DC143CFF' + - uid: 14292 components: - type: Transform - pos: -28.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -95.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21232 + color: '#4169E1FF' + - uid: 23817 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,29.5 - parent: 89 + pos: 4.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21235 + color: '#17E8E2FF' + - uid: 23818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21236 + color: '#17E8E2FF' + - uid: 24145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21237 + color: '#4169E1FF' + - uid: 24146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21239 + color: '#DC143CFF' + - uid: 24147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21240 + color: '#4169E1FF' + - uid: 24148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21241 + color: '#4169E1FF' + - uid: 24149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21243 + color: '#DC143CFF' + - uid: 24150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21245 + color: '#DC143CFF' + - uid: 24401 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,33.5 - parent: 89 + pos: 0.5,-4.5 + parent: 24340 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21246 + color: '#DC143CFF' + - uid: 26223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,33.5 - parent: 89 + pos: -18.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21247 + color: '#0000FFFF' + - uid: 26224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21248 + color: '#990000FF' + - uid: 26225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21249 + color: '#17E8E2FF' + - uid: 26226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21250 + color: '#17E8E2FF' + - uid: 26227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21251 + color: '#17E8E2FF' + - uid: 26228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21252 + color: '#17E8E2FF' + - uid: 26229 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,29.5 - parent: 89 + pos: -12.5,-2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21254 + color: '#17E8E2FF' + - uid: 26230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21255 + color: '#17E8E2FF' + - uid: 26231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21256 + color: '#17E8E2FF' + - uid: 26232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21257 + color: '#17E8E2FF' + - uid: 26233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21258 + color: '#17E8E2FF' + - uid: 26234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,25.5 - parent: 89 + pos: -11.5,-22.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21398 + color: '#17E8E2FF' + - uid: 26235 components: - type: Transform - pos: 39.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21399 + color: '#17E8E2FF' + - uid: 26236 components: - type: Transform - pos: 39.5,-16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21400 + color: '#17E8E2FF' + - uid: 26237 components: - type: Transform - pos: 39.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21403 + color: '#17E8E2FF' + - uid: 26238 components: - type: Transform - pos: 38.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21404 + color: '#17E8E2FF' + - uid: 26239 components: - type: Transform - pos: 38.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21411 + color: '#17E8E2FF' + - uid: 26240 components: - type: Transform - pos: 38.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21413 + color: '#17E8E2FF' + - uid: 26241 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21414 + color: '#17E8E2FF' + - uid: 26242 components: - type: Transform - pos: 38.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21462 + color: '#17E8E2FF' + - uid: 26243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 89 + pos: -1.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21467 + color: '#17E8E2FF' + - uid: 26244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 89 + pos: -1.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21468 + color: '#17E8E2FF' + - uid: 26245 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 89 + pos: 7.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21469 + color: '#17E8E2FF' + - uid: 26246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21470 + - uid: 26247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-20.5 - parent: 89 + pos: -11.5,-2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21478 + - uid: 26248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 89 + pos: -11.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21479 + color: '#FF0000FF' + - uid: 26249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21688 + color: '#FF0000FF' + - uid: 26250 components: - type: Transform - pos: 0.5,-4.5 - parent: 21627 + pos: -21.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21689 + - uid: 26251 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21690 + - uid: 26252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 21627 + pos: -20.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22474 + - uid: 26253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22481 + - uid: 26254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22482 + color: '#FF0000FF' + - uid: 26255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 89 + pos: -3.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22483 + color: '#FF0000FF' + - uid: 26256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22484 - components: - - type: Transform - pos: 45.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22485 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 89 + pos: -3.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22486 + color: '#FF0000FF' + - uid: 26257 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22487 + color: '#FF0000FF' + - uid: 26258 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22488 + color: '#FF0000FF' + - uid: 26259 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 + pos: 5.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22489 + color: '#FF0000FF' + - uid: 26260 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22490 + color: '#FF0000FF' + - uid: 27677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-22.5 - parent: 89 + pos: 1.5,-7.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22494 + - uid: 27678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-21.5 - parent: 89 + pos: 0.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22495 + color: '#FF0000FF' + - uid: 27679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22496 + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 14293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-19.5 - parent: 89 + pos: -102.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22497 + color: '#DC143CFF' + - uid: 14294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-18.5 - parent: 89 + pos: -103.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22499 + color: '#DC143CFF' + - uid: 14295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 89 + pos: -91.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22500 + color: '#DC143CFF' + - uid: 14296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22502 + color: '#DC143CFF' + - uid: 14297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22503 + color: '#DC143CFF' + - uid: 14298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22504 + pos: 0.5,-40.5 + parent: 2 + - uid: 14299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22505 + pos: -5.5,-40.5 + parent: 2 + - uid: 14300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22506 + pos: -7.5,-40.5 + parent: 2 + - uid: 14301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22507 + pos: -5.5,-40.5 + parent: 2 + - uid: 14302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22508 + pos: 2.5,-40.5 + parent: 2 + - uid: 14303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22509 + pos: -123.5,0.5 + parent: 2 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22510 + pos: -123.5,-0.5 + parent: 2 + - uid: 14305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22511 + pos: -123.5,7.5 + parent: 2 + - uid: 14306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22515 + pos: -123.5,8.5 + parent: 2 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 89 + pos: -92.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22516 + color: '#DC143CFF' + - uid: 14308 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22517 + pos: -94.5,19.5 + parent: 2 + - uid: 14309 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-24.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22518 + pos: -93.5,19.5 + parent: 2 + - uid: 14310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22519 + rot: -1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - uid: 14311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22520 + pos: -26.5,-27.5 + parent: 2 + - uid: 14312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22521 + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 14313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22522 + pos: 5.5,20.5 + parent: 2 + - uid: 14314 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22523 + rot: -1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - uid: 14315 components: - type: Transform - pos: 48.5,-25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22524 + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 14316 components: - type: Transform - pos: 48.5,-24.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22525 + pos: 0.5,-40.5 + parent: 2 + - uid: 14317 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -91.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22529 + color: '#DC143CFF' + - uid: 14318 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-28.5 - parent: 89 + pos: -90.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22530 + color: '#DC143CFF' + - uid: 14319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-29.5 - parent: 89 + pos: -104.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22531 + color: '#DC143CFF' + - uid: 23819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22532 + pos: 2.5,-11.5 + parent: 23711 + - uid: 24151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 - parent: 89 + pos: 5.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22533 + color: '#4169E1FF' + - uid: 26261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22534 + rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 24450 + - uid: 26262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22535 + pos: -18.5,-7.5 + parent: 24450 + - uid: 26263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22536 + pos: -13.5,-10.5 + parent: 24450 + - uid: 26264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22537 + pos: -15.5,-10.5 + parent: 24450 + - uid: 26265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22538 + pos: -14.5,-10.5 + parent: 24450 + - uid: 27680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22539 + color: '#0000FFFF' +- proto: GasPressurePump + entities: + - uid: 14320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-29.5 - parent: 89 + pos: -102.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22540 + color: '#947507FF' + - uid: 14321 components: + - type: MetaData + name: О2 в смесители - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -101.5,-19.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22543 + color: '#17E8E2FF' + - uid: 14322 components: + - type: MetaData + name: N2 в смесители - type: Transform - pos: 44.5,-28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -99.5,-19.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24062 + color: '#17E8E2FF' + - uid: 14323 components: + - type: MetaData + name: CO2 в микс - type: Transform - pos: -18.5,-13.5 - parent: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24063 + rot: 3.141592653589793 rad + pos: -97.5,-19.5 + parent: 2 + - uid: 14324 components: + - type: MetaData + name: водяной пар в микс - type: Transform - pos: -18.5,-9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24064 + rot: 3.141592653589793 rad + pos: -95.5,-19.5 + parent: 2 + - uid: 14325 components: + - type: MetaData + name: плазма в микс - type: Transform rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24065 + pos: -93.5,-19.5 + parent: 2 + - uid: 14326 components: - type: Transform - pos: -10.5,-13.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24066 + pos: 0.5,-41.5 + parent: 2 + - uid: 14327 components: + - type: MetaData + name: N2O в микс - type: Transform - pos: -17.5,-11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24067 + rot: 3.141592653589793 rad + pos: -91.5,-19.5 + parent: 2 + - uid: 14328 components: + - type: MetaData + name: тритий в микс - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24068 + rot: 3.141592653589793 rad + pos: -89.5,-19.5 + parent: 2 + - uid: 14329 components: + - type: MetaData + name: газ в микс - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24069 + rot: 3.141592653589793 rad + pos: -87.5,-19.5 + parent: 2 + - uid: 14330 components: - type: Transform - pos: -10.5,-14.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -94.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24070 + color: '#4169E1FF' + - uid: 14331 components: - type: Transform - pos: -10.5,-15.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24071 + color: '#4169E1FF' + - uid: 14332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24072 + pos: -5.5,-41.5 + parent: 2 + - uid: 14333 components: - type: Transform - pos: -11.5,-18.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - type: GasPressurePump + targetPressure: 150 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24073 + color: '#4169E1FF' + - uid: 14334 components: - type: Transform - pos: -11.5,-19.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24074 + color: '#4169E1FF' + - uid: 14335 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24075 + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - type: GasPressurePump + targetPressure: 150 + - uid: 14336 components: - type: Transform - pos: -11.5,-21.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24076 + color: '#DC143CFF' + - uid: 14337 components: - type: Transform - pos: -11.5,-21.5 - parent: 22565 + pos: -96.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24077 + color: '#DC143CFF' + - uid: 14338 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 22565 + pos: -95.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24078 + color: '#4169E1FF' + - uid: 23820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 23711 + - type: GasPressurePump + targetPressure: 110 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24079 + color: '#17E8E2FF' + - uid: 26266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 22565 + pos: -11.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24080 + color: '#FF1212FF' + - uid: 27681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 22565 + pos: 0.5,-11.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24081 +- proto: GasThermoMachineFreezer + entities: + - uid: 14339 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24082 + pos: -84.5,-8.5 + parent: 2 + - uid: 14340 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24083 + pos: -84.5,-9.5 + parent: 2 + - uid: 14341 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24084 + pos: -84.5,-10.5 + parent: 2 + - uid: 14342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24085 + pos: -15.5,-8.5 + parent: 2 + - uid: 14343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24086 + pos: -125.5,-2.5 + parent: 2 + - uid: 14344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24087 + pos: -126.5,-2.5 + parent: 2 + - uid: 14345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24088 + pos: -127.5,-2.5 + parent: 2 + - uid: 14346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24089 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 14348 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24090 + pos: -85.5,-8.5 + parent: 2 + - uid: 14349 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24091 + pos: -85.5,-10.5 + parent: 2 + - uid: 14350 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24092 + pos: -85.5,-9.5 + parent: 2 +- proto: GasValve + entities: + - uid: 14351 components: + - type: MetaData + name: предфильтровый выброс вейста - type: Transform rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 22565 + pos: -102.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24093 + color: '#947507FF' + - uid: 14352 components: + - type: MetaData + name: вейст в камеру - type: Transform rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 22565 + pos: -81.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24094 + color: '#947507FF' + - uid: 14353 components: + - type: MetaData + name: микс в камеру - type: Transform rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 22565 + pos: -80.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24095 + color: '#FFD800FF' + - uid: 14354 components: + - type: MetaData + name: выброс микса - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -79.5,-16.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24096 + color: '#FFD800FF' + - uid: 14355 components: + - type: MetaData + name: выброс вейста - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -79.5,-18.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24097 + color: '#947507FF' + - uid: 14356 components: + - type: MetaData + name: камера в канистры - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 + pos: -81.5,-15.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24098 + color: '#FF9900FF' + - uid: 14357 components: + - type: MetaData + name: вейст в канистры - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 22565 + pos: -82.5,-15.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24099 + color: '#FF9900FF' + - uid: 14358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24100 + rot: -1.5707963267948966 rad + pos: -123.5,5.5 + parent: 2 + - type: GasValve + open: False + - uid: 14359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24101 + rot: -1.5707963267948966 rad + pos: -123.5,2.5 + parent: 2 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 14360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24102 + pos: -143.5,-0.5 + parent: 2 + - uid: 14361 components: - type: Transform - pos: -7.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -136.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24103 + color: '#4169E1FF' + - uid: 14362 components: - type: Transform - pos: -17.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -129.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24104 + color: '#4169E1FF' + - uid: 14363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 22565 + pos: -120.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24105 + color: '#4169E1FF' + - uid: 14364 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 22565 + pos: -94.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24106 + color: '#4169E1FF' + - uid: 14365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24107 + color: '#4169E1FF' + - uid: 14366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -104.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24108 + color: '#4169E1FF' + - uid: 14367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -104.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24109 + color: '#4169E1FF' + - uid: 14368 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 22565 + pos: -93.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24110 + color: '#4169E1FF' + - uid: 14369 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 22565 + pos: -93.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24113 + color: '#4169E1FF' + - uid: 14370 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,2.5 - parent: 22565 + pos: -97.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24114 + color: '#4169E1FF' + - uid: 14371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,3.5 - parent: 22565 + pos: -102.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24115 + color: '#4169E1FF' + - uid: 14372 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 22565 + pos: -107.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24116 + color: '#4169E1FF' + - uid: 14373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 - parent: 22565 + pos: -98.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24117 + color: '#4169E1FF' + - uid: 14374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,5.5 - parent: 22565 + pos: -107.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24118 + color: '#4169E1FF' + - uid: 14375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -106.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24119 + color: '#4169E1FF' + - uid: 14376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -106.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24120 + color: '#4169E1FF' + - uid: 14377 components: - type: Transform - pos: -13.5,7.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -48.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24121 + color: '#4169E1FF' + - uid: 14378 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -35.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24122 + color: '#4169E1FF' + - uid: 14379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 22565 + pos: -12.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24123 + color: '#4169E1FF' + - uid: 14380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24124 + color: '#4169E1FF' + - uid: 14381 components: - type: Transform - pos: -31.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24125 + color: '#4169E1FF' + - uid: 14382 components: - type: Transform - pos: -31.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24126 + color: '#4169E1FF' + - uid: 14383 components: - type: Transform - pos: -31.5,8.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24127 + color: '#4169E1FF' + - uid: 14384 components: - type: Transform - pos: -31.5,10.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24128 + color: '#4169E1FF' + - uid: 14385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 22565 + pos: 61.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24129 + color: '#4169E1FF' + - uid: 14386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24130 + color: '#4169E1FF' + - uid: 14387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 22565 + pos: 37.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24132 + color: '#4169E1FF' + - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,2.5 - parent: 22565 + pos: 52.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24133 + color: '#4169E1FF' + - uid: 14389 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 22565 + pos: -48.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24134 + color: '#4169E1FF' + - uid: 14390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24135 + color: '#4169E1FF' + - uid: 14391 components: - type: Transform - pos: -22.5,12.5 - parent: 22565 + pos: -0.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24136 + color: '#4169E1FF' + - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24137 + color: '#4169E1FF' + - uid: 14393 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,6.5 - parent: 22565 + pos: 1.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24138 + color: '#4169E1FF' + - uid: 14394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24139 + color: '#4169E1FF' + - uid: 14395 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,9.5 - parent: 22565 + pos: -65.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24140 + color: '#4169E1FF' + - uid: 14396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24141 + color: '#4169E1FF' + - uid: 14397 components: - type: Transform - pos: -22.5,13.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24142 + color: '#4169E1FF' + - uid: 14398 components: - type: Transform - pos: -22.5,14.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24143 + color: '#4169E1FF' + - uid: 14399 components: - type: Transform - pos: -22.5,15.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24144 + color: '#4169E1FF' + - uid: 14400 components: - type: Transform - pos: -22.5,17.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24145 + color: '#4169E1FF' + - uid: 14401 components: - type: Transform - pos: -22.5,18.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24146 + color: '#4169E1FF' + - uid: 14402 components: - type: Transform - pos: -22.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24147 + color: '#4169E1FF' + - uid: 14403 components: - type: Transform - pos: -22.5,20.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24148 + color: '#4169E1FF' + - uid: 14404 components: - type: Transform - pos: -22.5,21.5 - parent: 22565 + pos: -7.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24149 + color: '#4169E1FF' + - uid: 14405 components: - type: Transform - pos: -22.5,22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24150 + color: '#4169E1FF' + - uid: 14406 components: - type: Transform - pos: -22.5,23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24151 + color: '#4169E1FF' + - uid: 14407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 22565 + pos: -59.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24152 + color: '#4169E1FF' + - uid: 14408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 - parent: 22565 + pos: -66.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24153 + color: '#4169E1FF' + - uid: 14409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 22565 + pos: -70.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24154 + color: '#4169E1FF' + - uid: 14410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -69.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24155 + color: '#4169E1FF' + - uid: 14411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24156 + color: '#4169E1FF' + - uid: 14412 components: - type: Transform - pos: -15.5,-24.5 - parent: 22565 + pos: 11.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24157 + color: '#4169E1FF' + - uid: 14413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 22565 + pos: 8.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24158 + color: '#4169E1FF' + - uid: 14414 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 22565 + pos: 18.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24159 + color: '#4169E1FF' + - uid: 14415 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 22565 + pos: 21.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24160 + color: '#4169E1FF' + - uid: 14416 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 22565 + pos: 24.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24161 + color: '#4169E1FF' + - uid: 14417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24162 + color: '#4169E1FF' + - uid: 14418 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 22565 + pos: 27.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24163 + color: '#4169E1FF' + - uid: 14419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 22565 + pos: 27.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24164 + color: '#4169E1FF' + - uid: 14420 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 22565 + pos: 13.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24165 + color: '#4169E1FF' + - uid: 14421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 22565 + pos: 36.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24166 + color: '#4169E1FF' + - uid: 14422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24167 + color: '#4169E1FF' + - uid: 14423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 22565 + pos: 6.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24168 + color: '#4169E1FF' + - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 22565 + pos: -50.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24169 + color: '#4169E1FF' + - uid: 14425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24170 + color: '#4169E1FF' + - uid: 14426 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 22565 + pos: -61.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24171 + color: '#4169E1FF' + - uid: 14427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24172 + color: '#4169E1FF' + - uid: 14428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 22565 + pos: -50.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24173 + color: '#4169E1FF' + - uid: 14429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24174 + color: '#4169E1FF' + - uid: 14430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 22565 + pos: -51.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24175 + color: '#4169E1FF' + - uid: 14431 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,23.5 - parent: 22565 + pos: -84.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24176 + color: '#4169E1FF' + - uid: 14432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24177 + color: '#4169E1FF' + - uid: 14433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 22565 + pos: -94.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24178 + color: '#4169E1FF' + - uid: 14434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24179 + color: '#4169E1FF' + - uid: 14435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24180 + color: '#4169E1FF' + - uid: 14436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24181 + color: '#4169E1FF' + - uid: 14437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 22565 + pos: -18.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24182 + color: '#4169E1FF' + - uid: 14438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 22565 + pos: -9.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24183 + color: '#4169E1FF' + - uid: 14439 components: - type: Transform - pos: 2.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24184 + color: '#4169E1FF' + - uid: 14440 components: - type: Transform - pos: 2.5,1.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -56.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24185 + color: '#4169E1FF' + - uid: 14441 components: - type: Transform - pos: 2.5,2.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -49.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24186 + color: '#4169E1FF' + - uid: 14442 components: - type: Transform - pos: 2.5,3.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -55.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24187 + color: '#4169E1FF' + - uid: 14443 components: - type: Transform - pos: 2.5,4.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -72.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24188 + color: '#4169E1FF' + - uid: 14444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 22565 + pos: -86.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24189 + color: '#4169E1FF' + - uid: 14445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 + pos: -55.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24190 + color: '#4169E1FF' + - uid: 14446 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 22565 + pos: -70.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24191 + color: '#4169E1FF' + - uid: 14447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24192 + color: '#4169E1FF' + - uid: 14448 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 + pos: -23.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24193 + color: '#4169E1FF' + - uid: 14449 components: - type: Transform - pos: 7.5,7.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -63.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24194 + color: '#4169E1FF' + - uid: 14450 components: - type: Transform - pos: 7.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24195 + color: '#4169E1FF' + - uid: 14451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 22565 + pos: -40.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24196 + color: '#4169E1FF' + - uid: 14452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -110.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24197 + color: '#4169E1FF' + - uid: 14453 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24198 + pos: -127.5,5.5 + parent: 2 + - uid: 14454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24199 + rot: 3.141592653589793 rad + pos: -126.5,5.5 + parent: 2 + - uid: 14455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24200 + rot: 3.141592653589793 rad + pos: -125.5,5.5 + parent: 2 + - uid: 14456 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-25.5 - parent: 22565 + pos: 5.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24201 + color: '#4169E1FF' + - uid: 14457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24202 + color: '#4169E1FF' + - uid: 14459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 22565 + pos: -60.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24203 + color: '#4169E1FF' + - uid: 14460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 22565 + pos: -56.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24204 + color: '#4169E1FF' + - uid: 14461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -57.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24205 + color: '#4169E1FF' + - uid: 14462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 22565 + pos: -66.5,43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24206 + color: '#4169E1FF' + - uid: 14463 components: - type: Transform - pos: -10.5,-25.5 - parent: 22565 + pos: -29.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24207 + color: '#4169E1FF' + - uid: 14464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 22565 + pos: 5.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24208 + color: '#4169E1FF' + - uid: 14465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 22565 + pos: 18.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24209 + color: '#4169E1FF' + - uid: 14466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 22565 + pos: 24.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24210 + color: '#4169E1FF' + - uid: 14467 components: - type: Transform - pos: -10.5,-16.5 - parent: 22565 + pos: 9.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24211 + color: '#4169E1FF' + - uid: 14468 components: - type: Transform - pos: -10.5,1.5 - parent: 22565 + pos: 20.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24212 + color: '#0000FFFF' + - uid: 14469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 - parent: 22565 + pos: 18.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24213 + color: '#4169E1FF' + - uid: 14470 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 22565 + pos: 15.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24214 + color: '#4169E1FF' + - uid: 14471 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 22565 + pos: 61.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24215 + color: '#4169E1FF' + - uid: 14472 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-6.5 - parent: 22565 + pos: 52.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24216 + color: '#4169E1FF' + - uid: 14473 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-5.5 - parent: 22565 + pos: 26.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24217 + color: '#4169E1FF' + - uid: 14474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24218 + color: '#4169E1FF' + - uid: 14475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-3.5 - parent: 22565 + pos: 28.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24219 + color: '#4169E1FF' + - uid: 14476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24220 + color: '#4169E1FF' + - uid: 14477 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24221 + color: '#4169E1FF' + - uid: 14478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 22565 + pos: 7.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24222 + color: '#4169E1FF' + - uid: 14479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 22565 + pos: 10.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24223 + color: '#4169E1FF' + - uid: 14480 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14481 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 22565 + pos: 6.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24224 + color: '#4169E1FF' + - uid: 14482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 22565 + pos: 14.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24225 + color: '#4169E1FF' + - uid: 14483 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 22565 + pos: -127.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24226 + color: '#4169E1FF' + - uid: 14484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 - parent: 22565 + pos: -84.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24227 + color: '#4169E1FF' + - uid: 14485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24228 + color: '#4169E1FF' + - uid: 14486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -116.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24229 + color: '#4169E1FF' + - uid: 14487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -83.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24230 + color: '#4169E1FF' + - uid: 14488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24231 + color: '#4169E1FF' + - uid: 14489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24232 + color: '#4169E1FF' + - uid: 14490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 22565 + pos: 11.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24233 + color: '#4169E1FF' + - uid: 14491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,6.5 - parent: 22565 + pos: 23.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24234 + color: '#4169E1FF' + - uid: 14492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24235 + color: '#4169E1FF' + - uid: 14493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 22565 + pos: -8.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24236 + color: '#4169E1FF' + - uid: 14494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,8.5 - parent: 22565 + pos: -11.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24237 + color: '#4169E1FF' + - uid: 14495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24238 + color: '#4169E1FF' + - uid: 14496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 22565 + pos: -5.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24239 + color: '#4169E1FF' + - uid: 14497 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 + pos: 0.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24240 + color: '#4169E1FF' + - uid: 14498 components: - type: Transform - pos: -30.5,10.5 - parent: 22565 + pos: -30.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24241 + color: '#4169E1FF' + - uid: 14499 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24242 + color: '#4169E1FF' + - uid: 14500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24243 + color: '#4169E1FF' + - uid: 14501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 22565 + pos: -33.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24244 + color: '#4169E1FF' + - uid: 14502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24245 + color: '#4169E1FF' + - uid: 14503 components: - type: Transform - pos: -17.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24246 + color: '#4169E1FF' + - uid: 14504 components: - type: Transform - pos: -17.5,4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24247 + color: '#4169E1FF' + - uid: 14505 components: - type: Transform - pos: -17.5,3.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 47.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24248 + color: '#4169E1FF' + - uid: 14506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 22565 + pos: 56.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24249 + color: '#4169E1FF' + - uid: 14507 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 22565 + pos: 41.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24250 + color: '#4169E1FF' + - uid: 14508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24251 + color: '#4169E1FF' + - uid: 14509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24252 + color: '#4169E1FF' + - uid: 14510 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 22565 + pos: 39.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24253 + color: '#4169E1FF' + - uid: 14511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24254 + color: '#4169E1FF' + - uid: 14512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24255 + color: '#4169E1FF' + - uid: 14513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 22565 + pos: 41.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24256 + color: '#4169E1FF' + - uid: 14514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24257 + color: '#4169E1FF' + - uid: 14515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24258 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 14516 components: - type: Transform - pos: -20.5,11.5 - parent: 22565 + pos: -122.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24259 + color: '#4169E1FF' + - uid: 14517 components: - type: Transform - pos: -20.5,12.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -120.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24260 + color: '#4169E1FF' + - uid: 14518 components: - type: Transform - pos: -20.5,13.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -113.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24261 + color: '#4169E1FF' + - uid: 14519 components: - type: Transform - pos: -20.5,14.5 - parent: 22565 + pos: -99.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24262 + color: '#4169E1FF' + - uid: 14520 components: - type: Transform - pos: -20.5,16.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -81.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24263 + color: '#4169E1FF' + - uid: 14521 components: - type: Transform - pos: -20.5,17.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -89.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24264 + color: '#4169E1FF' + - uid: 23821 components: - type: Transform - pos: -20.5,18.5 - parent: 22565 + pos: 4.5,-6.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24265 + color: '#17E8E2FF' + - uid: 23822 components: - type: Transform - pos: -20.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24266 + color: '#17E8E2FF' + - uid: 23823 components: - type: Transform - pos: -20.5,20.5 - parent: 22565 + pos: 4.5,-2.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24267 + color: '#17E8E2FF' + - uid: 24152 components: - type: Transform - pos: -20.5,21.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24268 + color: '#4169E1FF' + - uid: 24153 components: - type: Transform - pos: -20.5,22.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24269 + color: '#4169E1FF' + - uid: 24154 components: - type: Transform - pos: -20.5,23.5 - parent: 22565 + pos: 4.5,4.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24270 + color: '#4169E1FF' + - uid: 24155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,15.5 - parent: 22565 + pos: 3.5,-1.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24271 + color: '#4169E1FF' + - uid: 26267 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 22565 + pos: -33.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 24272 + - uid: 26268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 22565 + pos: -12.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24273 + color: '#17E8E2FF' + - uid: 26269 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 22565 + pos: -11.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24274 + color: '#17E8E2FF' + - uid: 26270 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 22565 + pos: -11.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24275 + color: '#17E8E2FF' + - uid: 26271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 22565 + pos: -0.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24276 + color: '#17E8E2FF' + - uid: 26272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 22565 + pos: -12.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24277 + color: '#17E8E2FF' + - uid: 26273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24278 + color: '#17E8E2FF' + - uid: 26274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24279 + color: '#17E8E2FF' + - uid: 26275 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 22565 + pos: -31.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24280 + color: '#17E8E2FF' + - uid: 26276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24281 + color: '#17E8E2FF' + - uid: 26277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,8.5 - parent: 22565 + pos: -12.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24282 + color: '#17E8E2FF' + - uid: 26278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24283 + color: '#17E8E2FF' + - uid: 26279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24284 + color: '#17E8E2FF' + - uid: 26280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24285 + color: '#17E8E2FF' + - uid: 26281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24286 + color: '#17E8E2FF' + - uid: 26282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,15.5 - parent: 22565 + pos: -22.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24287 + color: '#17E8E2FF' + - uid: 26283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24288 + color: '#17E8E2FF' + - uid: 26284 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 22565 + pos: -15.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24289 + color: '#17E8E2FF' + - uid: 26285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24290 + color: '#17E8E2FF' + - uid: 26286 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,19.5 - parent: 22565 + pos: 7.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24291 + color: '#17E8E2FF' + - uid: 26287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,20.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24292 + color: '#17E8E2FF' + - uid: 26288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,21.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24293 + color: '#17E8E2FF' + - uid: 26289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24294 + color: '#17E8E2FF' + - uid: 26290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24295 + color: '#17E8E2FF' + - uid: 26291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 22565 + pos: -1.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24296 + color: '#17E8E2FF' + - uid: 27682 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 22565 + pos: -4.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27264 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24297 + color: '#0000FFFF' + - uid: 27683 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 22565 + pos: 6.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27265 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24298 + color: '#0000FFFF' + - uid: 27684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27262 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24299 + color: '#0000FFFF' + - uid: 27685 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 22565 + pos: 5.5,-6.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27263 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24300 + color: '#0000FFFF' + - uid: 27686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24301 + color: '#0000FFFF' + - uid: 27687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24302 + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 14522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -121.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24303 + color: '#DC143CFF' + - uid: 14523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 22565 + pos: -136.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24304 + color: '#DC143CFF' + - uid: 14524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 22565 + pos: -129.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24305 + color: '#DC143CFF' + - uid: 14525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 22565 + pos: -104.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24306 + color: '#DC143CFF' + - uid: 14526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -94.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24307 + color: '#DC143CFF' + - uid: 14527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 22565 + pos: -70.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24308 + color: '#DC143CFF' + - uid: 14528 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 22565 + pos: 35.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24309 + color: '#DC143CFF' + - uid: 14529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24310 + color: '#DC143CFF' + - uid: 14530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -93.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24311 + color: '#DC143CFF' + - uid: 14531 components: - type: Transform - pos: 6.5,7.5 - parent: 22565 + pos: -99.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24312 + color: '#DC143CFF' + - uid: 14532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 22565 + pos: -99.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24313 + color: '#DC143CFF' + - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 51.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24314 + color: '#DC143CFF' + - uid: 14534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -93.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25407 + color: '#DC143CFF' + - uid: 14535 components: - type: Transform - pos: 39.5,-19.5 - parent: 89 + pos: -99.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25408 + color: '#DC143CFF' + - uid: 14536 components: - type: Transform - pos: 39.5,-20.5 - parent: 89 + pos: -104.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25409 + color: '#DC143CFF' + - uid: 14537 components: - type: Transform - pos: 39.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -109.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25411 + color: '#DC143CFF' + - uid: 14538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 89 + pos: -110.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25412 + color: '#DC143CFF' + - uid: 14539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -106.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25413 + color: '#DC143CFF' + - uid: 14540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 89 + pos: -109.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25515 + color: '#DC143CFF' + - uid: 14541 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 + rot: 3.141592653589793 rad + pos: -47.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25516 + color: '#DC143CFF' + - uid: 14542 components: - type: Transform - pos: 4.5,-9.5 - parent: 18153 + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25517 + color: '#DC143CFF' + - uid: 14543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 18153 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25518 + color: '#DC143CFF' + - uid: 14544 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 18153 + pos: -14.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25519 + color: '#DC143CFF' + - uid: 14545 components: - type: Transform - pos: 5.5,-5.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25520 + color: '#DC143CFF' + - uid: 14546 components: - type: Transform - pos: 4.5,-3.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPipeTJunction - entities: - - uid: 33 + color: '#DC143CFF' + - uid: 14547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 89 + pos: -18.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 67 + color: '#DC143CFF' + - uid: 14548 components: - type: Transform - pos: -0.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 223 + color: '#DC143CFF' + - uid: 14549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 318 + color: '#DC143CFF' + - uid: 14550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 321 + color: '#DC143CFF' + - uid: 14551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,7.5 - parent: 89 + pos: 51.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 808 + color: '#DC143CFF' + - uid: 14552 components: - type: Transform - pos: -25.5,3.5 - parent: 89 + pos: 60.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 979 + color: '#DC143CFF' + - uid: 14553 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,-6.5 - parent: 89 + pos: -13.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1394 + color: '#DC143CFF' + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14555 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14557 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-16.5 - parent: 89 + pos: -60.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1462 + color: '#DC143CFF' + - uid: 14558 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 + pos: -59.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1472 + color: '#DC143CFF' + - uid: 14559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-18.5 - parent: 89 + pos: 2.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1488 + color: '#DC143CFF' + - uid: 14560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-17.5 - parent: 89 + pos: 4.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1525 + color: '#DC143CFF' + - uid: 14561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-15.5 - parent: 89 + pos: -1.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1530 + color: '#DC143CFF' + - uid: 14562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1556 + color: '#DC143CFF' + - uid: 14563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14564 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-14.5 - parent: 89 + pos: -2.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1598 + color: '#DC143CFF' + - uid: 14565 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-14.5 - parent: 89 + pos: -12.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1604 + color: '#DC143CFF' + - uid: 14566 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-12.5 - parent: 89 + pos: -14.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1622 + color: '#DC143CFF' + - uid: 14567 components: - type: Transform - pos: -98.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1624 + color: '#DC143CFF' + - uid: 14568 components: - type: Transform - pos: -97.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1737 + color: '#DC143CFF' + - uid: 14569 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-11.5 - parent: 89 + pos: -66.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1738 + color: '#DC143CFF' + - uid: 14570 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-11.5 - parent: 89 + pos: -59.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1741 + color: '#DC143CFF' + - uid: 14571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-9.5 - parent: 89 + pos: -55.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1743 + color: '#DC143CFF' + - uid: 14572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -71.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1744 + color: '#DC143CFF' + - uid: 14573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1949 + color: '#DC143CFF' + - uid: 14574 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-8.5 - parent: 89 + pos: -86.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2086 + color: '#DC143CFF' + - uid: 14575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,39.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2368 + color: '#DC143CFF' + - uid: 14576 components: - type: Transform - pos: -81.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2385 + color: '#DC143CFF' + - uid: 14577 components: - type: Transform - pos: -80.5,-16.5 - parent: 89 + pos: 12.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2443 + color: '#DC143CFF' + - uid: 14578 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,-16.5 - parent: 89 + pos: 19.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2448 + color: '#DC143CFF' + - uid: 14579 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,-16.5 - parent: 89 + pos: 22.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2530 + color: '#DC143CFF' + - uid: 14580 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-18.5 - parent: 89 + pos: 25.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2544 + color: '#DC143CFF' + - uid: 14581 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-15.5 - parent: 89 + pos: 28.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2955 + color: '#DC143CFF' + - uid: 14582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-4.5 - parent: 89 + pos: 26.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2965 + color: '#DC143CFF' + - uid: 14583 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,-3.5 - parent: 89 + pos: 38.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3003 + color: '#DC143CFF' + - uid: 14584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-9.5 - parent: 89 + pos: 13.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3025 + color: '#DC143CFF' + - uid: 14585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-8.5 - parent: 89 + pos: 35.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3045 + color: '#DC143CFF' + - uid: 14586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3058 + color: '#DC143CFF' + - uid: 14587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-10.5 - parent: 89 + pos: 4.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3226 + color: '#DC143CFF' + - uid: 14588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-1.5 - parent: 89 + pos: 44.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3242 + color: '#DC143CFF' + - uid: 14589 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,0.5 - parent: 89 + pos: -59.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3267 + color: '#DC143CFF' + - uid: 14590 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-0.5 - parent: 89 + pos: -49.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3309 + color: '#DC143CFF' + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-2.5 - parent: 89 + pos: -49.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3343 + color: '#DC143CFF' + - uid: 14594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3344 + color: '#DC143CFF' + - uid: 14595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-0.5 - parent: 89 + pos: -82.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3357 + color: '#DC143CFF' + - uid: 14596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,3.5 - parent: 89 + pos: -95.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3401 + color: '#DC143CFF' + - uid: 14597 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,5.5 - parent: 89 + pos: -30.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3432 + color: '#DC143CFF' + - uid: 14598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3448 + color: '#DC143CFF' + - uid: 14599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,8.5 - parent: 89 + pos: -25.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3468 + color: '#DC143CFF' + - uid: 14600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,10.5 - parent: 89 + pos: -17.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3522 + color: '#DC143CFF' + - uid: 14601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3525 + color: '#DC143CFF' + - uid: 14602 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-2.5 - parent: 89 + pos: -56.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3537 + color: '#DC143CFF' + - uid: 14603 components: - type: Transform - pos: -110.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3538 + color: '#DC143CFF' + - uid: 14604 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,5.5 - parent: 89 + pos: -47.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3563 + color: '#DC143CFF' + - uid: 14605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3570 + color: '#DC143CFF' + - uid: 14606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -73.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3571 + color: '#DC143CFF' + - uid: 14607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,21.5 - parent: 89 + pos: -55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3580 + color: '#DC143CFF' + - uid: 14608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,25.5 - parent: 89 + pos: -44.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3581 + color: '#DC143CFF' + - uid: 14609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,26.5 - parent: 89 + pos: -41.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3604 + color: '#DC143CFF' + - uid: 14610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,26.5 - parent: 89 + pos: -19.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3605 + color: '#DC143CFF' + - uid: 14611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -62.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3645 + color: '#DC143CFF' + - uid: 14612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3696 + color: '#DC143CFF' + - uid: 14613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3699 + color: '#DC143CFF' + - uid: 14614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,9.5 - parent: 89 + pos: -99.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3702 + color: '#DC143CFF' + - uid: 14615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 89 + pos: -116.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3703 + color: '#DC143CFF' + - uid: 14616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,7.5 - parent: 89 + pos: -127.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3708 + color: '#DC143CFF' + - uid: 14617 components: - type: Transform - pos: -62.5,5.5 - parent: 89 + pos: -110.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3709 + color: '#DC143CFF' + - uid: 14618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3717 + pos: -127.5,2.5 + parent: 2 + - uid: 14619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3719 + pos: -126.5,2.5 + parent: 2 + - uid: 14620 components: - type: Transform - pos: -63.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3745 + pos: -125.5,2.5 + parent: 2 + - uid: 14621 components: - type: Transform - pos: -50.5,4.5 - parent: 89 + pos: 22.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3760 + color: '#DC143CFF' + - uid: 14622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 89 + pos: -119.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3788 + color: '#DC143CFF' + - uid: 14623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3812 + color: '#DC143CFF' + - uid: 14624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3820 + color: '#DC143CFF' + - uid: 14625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3823 + color: '#DC143CFF' + - uid: 14626 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,0.5 - parent: 89 + pos: -66.5,44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3826 + color: '#DC143CFF' + - uid: 14627 components: - type: Transform - pos: -19.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3830 + color: '#DC143CFF' + - uid: 14628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 89 + pos: -55.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3832 + color: '#DC143CFF' + - uid: 14629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,2.5 - parent: 89 + pos: -61.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3836 + color: '#DC143CFF' + - uid: 14630 components: - type: Transform - pos: -56.5,4.5 - parent: 89 + pos: -30.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3838 + color: '#DC143CFF' + - uid: 14631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 89 + pos: 11.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3842 + color: '#DC143CFF' + - uid: 14632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 89 + pos: 7.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3843 + color: '#DC143CFF' + - uid: 14633 components: - type: Transform - pos: -54.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3872 + color: '#DC143CFF' + - uid: 14634 components: - type: Transform - pos: -15.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3874 + color: '#DC143CFF' + - uid: 14635 components: - type: Transform - pos: -14.5,-2.5 - parent: 89 + pos: 20.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3976 + color: '#DC143CFF' + - uid: 14636 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3977 + color: '#DC143CFF' + - uid: 14637 components: - type: Transform - pos: -20.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4086 + color: '#DC143CFF' + - uid: 14638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4089 + color: '#DC143CFF' + - uid: 14639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 89 + pos: 27.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4091 + color: '#DC143CFF' + - uid: 14640 components: - type: Transform - pos: 23.5,3.5 - parent: 89 + pos: 34.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4097 + color: '#DC143CFF' + - uid: 14641 components: - type: Transform - pos: 21.5,2.5 - parent: 89 + pos: 9.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4120 + color: '#D3FC03FF' + - uid: 14642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 89 + pos: 12.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4132 + color: '#D3FC03FF' + - uid: 14643 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,1.5 - parent: 89 + pos: 6.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4141 + color: '#D3FC03FF' + - uid: 14644 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 89 + pos: -83.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4146 + color: '#DC143CFF' + - uid: 14645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 89 + pos: -85.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4196 + color: '#DC143CFF' + - uid: 14646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,1.5 - parent: 89 + pos: 6.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4209 + color: '#D3FC03FF' + - uid: 14647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4258 + color: '#DC143CFF' + - uid: 14648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 89 + pos: -5.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4262 + color: '#DC143CFF' + - uid: 14649 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,8.5 - parent: 89 + pos: 43.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4292 + color: '#DC143CFF' + - uid: 14650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4362 + color: '#DC143CFF' + - uid: 14651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 89 + pos: 23.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4363 + color: '#DC143CFF' + - uid: 14652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 89 + pos: 25.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4364 + color: '#DC143CFF' + - uid: 14653 components: - type: Transform - pos: -11.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4380 + color: '#DC143CFF' + - uid: 14654 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 89 + pos: 0.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4382 + color: '#DC143CFF' + - uid: 14655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-12.5 - parent: 89 + pos: -29.5,35.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4392 + - uid: 14656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4426 + color: '#FF0000FF' + - uid: 14657 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 89 + pos: -26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4428 + color: '#FF0000FF' + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 89 + pos: -33.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4452 + color: '#FF0000FF' + - uid: 14659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4454 + - uid: 14660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4460 + color: '#FF0000FF' + - uid: 14661 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 89 + pos: -33.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4461 + - uid: 14662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 89 + pos: 56.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4558 + color: '#DC143CFF' + - uid: 14663 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-12.5 - parent: 89 + pos: 43.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4559 + color: '#DC143CFF' + - uid: 14664 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 89 + pos: 48.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4584 + color: '#DC143CFF' + - uid: 14665 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4585 + color: '#DC143CFF' + - uid: 14666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 89 + pos: 39.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4624 + color: '#DC143CFF' + - uid: 14667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,9.5 - parent: 89 + pos: 40.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4625 + color: '#DC143CFF' + - uid: 14668 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,10.5 - parent: 89 + pos: 40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4650 + color: '#DC143CFF' + - uid: 14669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4658 + color: '#DC143CFF' + - uid: 14670 components: - type: Transform - pos: -59.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4726 + color: '#DC143CFF' + - uid: 14671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4727 + color: '#DC143CFF' + - uid: 14672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4745 + color: '#DC143CFF' + - uid: 14673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -100.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4754 + color: '#DC143CFF' + - uid: 14674 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 89 + pos: -143.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4791 + color: '#DC143CFF' + - uid: 14675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 89 + pos: -124.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4796 + color: '#DC143CFF' + - uid: 14676 components: - type: Transform - pos: -6.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4930 + color: '#DC143CFF' + - uid: 14677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-7.5 - parent: 89 + pos: -90.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4950 + color: '#DC143CFF' + - uid: 14678 components: - type: Transform - pos: -59.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4953 + color: '#DC143CFF' + - uid: 24156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5007 + color: '#DC143CFF' + - uid: 24157 components: - type: Transform - pos: -65.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5013 + color: '#DC143CFF' + - uid: 24158 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-11.5 - parent: 89 + pos: 5.5,3.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5021 + color: '#DC143CFF' + - uid: 24159 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 89 + pos: 5.5,-1.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5057 + color: '#DC143CFF' + - uid: 24402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 24340 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5058 + color: '#DC143CFF' + - uid: 24403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-12.5 - parent: 89 + pos: 0.5,-1.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5129 + color: '#DC143CFF' + - uid: 26292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5140 + color: '#FF0000FF' + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 89 + pos: -16.5,-26.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5167 + - uid: 26294 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-9.5 - parent: 89 + pos: -11.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5177 + color: '#FF0000FF' + - uid: 26295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26296 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-8.5 - parent: 89 + pos: -29.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5200 + - uid: 26297 components: - type: Transform - pos: 22.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5203 + - uid: 26298 components: - type: Transform - pos: 25.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5206 + - uid: 26299 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5209 + color: '#FF0000FF' + - uid: 26300 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 89 + pos: -21.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5222 + - uid: 26301 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5228 + color: '#FF0000FF' + - uid: 26302 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5235 + color: '#FF0000FF' + - uid: 26303 components: - type: Transform - pos: 28.5,-8.5 - parent: 89 + pos: -20.5,24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5248 + - uid: 26304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5251 + - uid: 26305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5274 + color: '#FF0000FF' + - uid: 26306 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 + pos: -10.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5275 + color: '#FF0000FF' + - uid: 26307 components: - type: Transform - pos: 19.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5408 + - uid: 26308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5441 + - uid: 26309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 89 + pos: -3.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5442 + color: '#FF0000FF' + - uid: 26310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5457 + - uid: 26311 components: - type: Transform - pos: 37.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5463 + - uid: 26312 components: - type: Transform - pos: 37.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5466 + color: '#FF0000FF' + - uid: 26313 components: - type: Transform - pos: -77.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5537 + - uid: 26314 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,17.5 - parent: 89 + pos: 5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5547 + color: '#FF0000FF' + - uid: 27688 components: - type: Transform - pos: -47.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27264 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5575 + - uid: 27689 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,18.5 - parent: 89 + pos: 4.5,-10.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27265 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5581 + - uid: 27690 components: - type: Transform - pos: -49.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27263 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5636 + color: '#FF0000FF' + - uid: 27691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 89 + pos: -3.5,-4.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27262 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5637 + color: '#FF0000FF' + - uid: 27692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 89 + pos: -0.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5667 +- proto: GasVolumePump + entities: + - uid: 14679 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5668 + pos: -7.5,-41.5 + parent: 2 + - uid: 14680 components: - type: Transform - pos: -24.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5756 + rot: 3.141592653589793 rad + pos: 2.5,-41.5 + parent: 2 + - uid: 14681 components: + - type: MetaData + name: выход камеры - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-0.5 - parent: 89 + pos: -79.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5770 + color: '#FF9900FF' + - uid: 14682 components: - type: Transform - pos: -84.5,-1.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5776 + rot: 1.5707963267948966 rad + pos: -122.5,7.5 + parent: 2 + - uid: 14683 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5811 + rot: 1.5707963267948966 rad + pos: -122.5,8.5 + parent: 2 + - uid: 14684 components: - type: Transform - pos: -94.5,21.5 - parent: 89 + pos: -93.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6259 + color: '#4169E1FF' + - uid: 14685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6266 + color: '#4169E1FF' + - uid: 14686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6280 + color: '#D3FC03FF' + - uid: 14687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6281 + color: '#4169E1FF' + - uid: 26315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 89 + pos: -18.5,-14.5 + parent: 24450 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6312 + - uid: 26316 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 89 + pos: -18.5,-8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6313 + color: '#990000FF' + - uid: 26317 components: - type: Transform - pos: -5.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6383 + color: '#17E8E2FF' + - uid: 26318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,22.5 - parent: 89 + pos: -15.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6392 + color: '#17E8E2FF' + - uid: 26319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,23.5 - parent: 89 + pos: -14.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6503 + color: '#17E8E2FF' +- proto: Gateway + entities: + - uid: 14688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6518 + pos: -55.5,-14.5 + parent: 2 + - type: Gateway + enabled: True +- proto: Gauze + entities: + - uid: 14689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,37.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6519 + pos: -1.6229911,15.447899 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 14690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,37.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6563 + pos: -37.5,-15.5 + parent: 2 + - uid: 26320 components: - type: Transform - pos: -59.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6564 + pos: -6.5,-17.5 + parent: 24450 +- proto: GeneratorRTGDamaged + entities: + - uid: 14691 components: - type: Transform - pos: -61.5,17.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6830 + pos: -125.5,4.5 + parent: 2 + - uid: 14692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6852 + pos: -127.5,3.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 23824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6853 + pos: 2.5,-10.5 + parent: 23711 + - type: PowerSupplier + supplyRate: 9000 + - uid: 23825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-6.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6858 + pos: 1.5,-10.5 + parent: 23711 + - uid: 24160 components: - type: Transform - pos: -35.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6859 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24161 components: - type: Transform - pos: -32.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6865 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24162 components: - type: Transform - pos: -48.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6866 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24163 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7560 + pos: 6.5,-0.5 + parent: 23919 + - uid: 24404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7567 + pos: 2.5,-1.5 + parent: 24340 + - uid: 24405 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8752 + pos: -1.5,-1.5 + parent: 24340 + - uid: 24406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8779 + pos: -0.5,-3.5 + parent: 24340 + - uid: 27693 components: - type: Transform - pos: -122.5,0.5 - parent: 89 - - uid: 8797 + pos: 2.5,-11.5 + parent: 27260 + - uid: 27694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,8.5 - parent: 89 - - uid: 8799 + pos: 2.5,-12.5 + parent: 27260 + - uid: 27695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,7.5 - parent: 89 - - uid: 8812 + pos: -1.5,-11.5 + parent: 27260 +- proto: GeneratorWallmountBasic + entities: + - uid: 26321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-3.5 - parent: 89 - - uid: 8817 + pos: -6.5,-15.5 + parent: 24450 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 20000 +- proto: Girder + entities: + - uid: 14693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-3.5 - parent: 89 - - uid: 8818 + pos: -17.5,16.5 + parent: 2 + - uid: 14694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-3.5 - parent: 89 - - uid: 8850 + pos: -15.5,23.5 + parent: 2 + - uid: 14695 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 8851 + pos: 29.5,26.5 + parent: 2 + - uid: 14696 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 8882 + pos: 19.5,27.5 + parent: 2 + - uid: 14697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,1.5 - parent: 89 - - uid: 8883 + pos: 16.5,27.5 + parent: 2 + - uid: 14698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8884 + pos: -6.5,31.5 + parent: 2 + - uid: 14699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,1.5 - parent: 89 - - uid: 8932 + pos: -0.5,31.5 + parent: 2 + - uid: 14700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 89 - - uid: 9355 + pos: -38.5,26.5 + parent: 2 + - uid: 14701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9356 + pos: -13.5,22.5 + parent: 2 + - uid: 14702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9621 + pos: 29.5,25.5 + parent: 2 + - uid: 14703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9717 + pos: 28.5,24.5 + parent: 2 +- proto: GlassBoxLaser + entities: + - uid: 14704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9879 + rot: 3.141592653589793 rad + pos: 46.5,12.5 + parent: 2 +- proto: GlowstickYellow + entities: + - uid: 14705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9897 + pos: -27.695927,23.49133 + parent: 2 + - uid: 14706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9910 + pos: -27.305302,23.52258 + parent: 2 + - uid: 14707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,39.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10384 + pos: -27.480957,23.532402 + parent: 2 + - uid: 14708 components: - type: Transform - pos: 8.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10426 + pos: -27.168457,23.469902 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 14709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10427 + pos: -116.5,25.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 23826 components: - type: Transform - pos: -92.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10495 + pos: 5.5,-11.5 + parent: 23711 + - uid: 24164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10808 + pos: 7.5,0.5 + parent: 23919 + - uid: 24407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 89 - - uid: 11035 + pos: 1.5,-0.5 + parent: 24340 + - type: Visibility + layer: 15 + - uid: 26322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11313 + pos: -12.5,7.5 + parent: 24450 + - uid: 27696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11515 + pos: 1.5,-12.5 + parent: 27260 +- proto: GrenadeFlashBang + entities: + - uid: 27301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12647 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12682 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12692 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 1122 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12713 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12714 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12715 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12746 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12749 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12773 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12787 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14028 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 14710 components: - type: Transform - pos: 26.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14039 + pos: -115.5,30.5 + parent: 2 + - uid: 14711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14054 + pos: -114.5,30.5 + parent: 2 + - uid: 14712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15054 + pos: -115.5,29.5 + parent: 2 + - uid: 14713 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15133 + pos: 66.5,18.5 + parent: 2 + - uid: 14714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15136 + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 14715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15193 + rot: 3.141592653589793 rad + pos: 68.5,17.5 + parent: 2 + - uid: 14716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15393 + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - uid: 14717 components: - type: Transform - pos: 0.5,26.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15395 + rot: 3.141592653589793 rad + pos: 62.5,17.5 + parent: 2 + - uid: 14718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15415 + rot: 3.141592653589793 rad + pos: 68.5,18.5 + parent: 2 + - uid: 14719 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15461 + pos: 66.5,17.5 + parent: 2 + - uid: 14720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15494 + rot: 3.141592653589793 rad + pos: 62.5,18.5 + parent: 2 + - uid: 14721 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15526 + pos: 64.5,17.5 + parent: 2 + - uid: 14722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15530 + pos: -44.5,31.5 + parent: 2 + - uid: 14723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15848 + pos: -46.5,31.5 + parent: 2 + - uid: 14724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16168 + pos: -45.5,31.5 + parent: 2 + - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 16284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16299 + pos: -121.5,-15.5 + parent: 2 + - uid: 14726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 89 - - uid: 16300 + pos: -79.5,-28.5 + parent: 2 + - uid: 14727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 89 - - uid: 16537 + pos: -77.5,-27.5 + parent: 2 + - uid: 14728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16797 + pos: -113.5,-11.5 + parent: 2 + - uid: 14729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19779 + pos: -92.5,25.5 + parent: 2 + - uid: 14730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20039 + rot: -1.5707963267948966 rad + pos: -93.5,25.5 + parent: 2 + - uid: 14731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20048 + pos: -52.5,-5.5 + parent: 2 + - uid: 14732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20050 + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 14733 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20059 + pos: 14.5,-19.5 + parent: 2 + - uid: 14734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20126 + pos: -75.5,22.5 + parent: 2 + - uid: 14735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20954 + pos: -38.5,-17.5 + parent: 2 + - uid: 14736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21058 + pos: 8.5,36.5 + parent: 2 + - uid: 14737 components: - type: Transform - pos: -2.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21200 + pos: 11.5,37.5 + parent: 2 + - uid: 14738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21234 + pos: -7.5,-42.5 + parent: 2 + - uid: 14739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21397 + pos: -103.5,-6.5 + parent: 2 + - uid: 14740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21405 + pos: -102.5,-6.5 + parent: 2 + - uid: 14741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21691 + rot: -1.5707963267948966 rad + pos: 64.5,5.5 + parent: 2 + - uid: 14742 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22472 + pos: 64.5,6.5 + parent: 2 + - uid: 14743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22479 + rot: -1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 14744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22512 + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 2 + - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22514 + rot: -1.5707963267948966 rad + pos: 64.5,2.5 + parent: 2 + - uid: 14746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24315 + rot: -1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + - uid: 14747 components: - type: Transform - pos: -18.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24316 + rot: -1.5707963267948966 rad + pos: 64.5,0.5 + parent: 2 + - uid: 14748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24317 + rot: -1.5707963267948966 rad + pos: 64.5,3.5 + parent: 2 + - uid: 14749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24318 + rot: -1.5707963267948966 rad + pos: 66.5,10.5 + parent: 2 + - uid: 14750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24319 + rot: -1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - uid: 14751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24320 + rot: -1.5707963267948966 rad + pos: 66.5,12.5 + parent: 2 + - uid: 14752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24321 + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + - uid: 14753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24322 + pos: 65.5,14.5 + parent: 2 + - uid: 14754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24323 + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 14755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24324 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 14756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24325 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 14757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24326 + rot: -1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - uid: 14758 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24327 + pos: 58.5,16.5 + parent: 2 + - uid: 14759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24328 + pos: 57.5,16.5 + parent: 2 + - uid: 14760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24329 + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24330 + pos: 55.5,16.5 + parent: 2 + - uid: 14762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24331 + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 14763 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,16.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24332 + pos: 53.5,16.5 + parent: 2 + - uid: 14764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24333 + pos: 52.5,16.5 + parent: 2 + - uid: 14765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24334 + pos: 12.5,41.5 + parent: 2 + - uid: 14766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24335 + rot: -1.5707963267948966 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 14767 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24336 + pos: 41.5,8.5 + parent: 2 + - uid: 14768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24337 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 14769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24338 + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 14770 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24339 + pos: 44.5,3.5 + parent: 2 + - uid: 14771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24340 + rot: 3.141592653589793 rad + pos: -101.5,-20.5 + parent: 2 + - uid: 14772 components: - type: Transform - pos: -11.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24341 + rot: 3.141592653589793 rad + pos: -100.5,-20.5 + parent: 2 + - uid: 14773 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24342 + pos: -99.5,-20.5 + parent: 2 + - uid: 14774 components: - type: Transform - pos: -21.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24343 + rot: 3.141592653589793 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 14775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24344 + rot: 3.141592653589793 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 14776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24345 + rot: 3.141592653589793 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 14777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24346 + rot: 3.141592653589793 rad + pos: -95.5,-20.5 + parent: 2 + - uid: 14778 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24347 + pos: -94.5,-20.5 + parent: 2 + - uid: 14779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24348 + rot: 3.141592653589793 rad + pos: -93.5,-20.5 + parent: 2 + - uid: 14780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24349 + rot: 3.141592653589793 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 14781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24350 + pos: -101.5,-6.5 + parent: 2 + - uid: 14782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24351 + pos: -100.5,-6.5 + parent: 2 + - uid: 14783 components: - type: Transform - pos: 5.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24352 + pos: -106.5,7.5 + parent: 2 + - uid: 14784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25410 + pos: -106.5,8.5 + parent: 2 + - uid: 14785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25521 + pos: -106.5,9.5 + parent: 2 + - uid: 14786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25522 + pos: -105.5,6.5 + parent: 2 + - uid: 14787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPort - entities: - - uid: 226 + pos: -104.5,6.5 + parent: 2 + - uid: 14788 components: - type: Transform - pos: 0.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 248 + pos: -103.5,6.5 + parent: 2 + - uid: 14789 components: - type: Transform - pos: -5.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 251 + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 14790 components: - type: Transform - pos: -7.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 974 + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 14791 components: - type: Transform - pos: -91.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 975 + rot: 3.141592653589793 rad + pos: 65.5,-5.5 + parent: 2 + - uid: 14792 components: - type: Transform - pos: -90.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1537 + rot: 3.141592653589793 rad + pos: -92.5,-22.5 + parent: 2 + - uid: 14793 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1538 + rot: 1.5707963267948966 rad + pos: -100.5,32.5 + parent: 2 + - uid: 14794 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1540 + rot: 3.141592653589793 rad + pos: -96.5,-22.5 + parent: 2 + - uid: 14795 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1627 + rot: 3.141592653589793 rad + pos: -94.5,-22.5 + parent: 2 + - uid: 14796 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1628 + pos: -98.5,-22.5 + parent: 2 + - uid: 14797 components: - type: Transform rot: 3.141592653589793 rad - pos: -97.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1630 + pos: -100.5,-22.5 + parent: 2 + - uid: 14798 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2473 + pos: 66.5,-4.5 + parent: 2 + - uid: 14799 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2474 + pos: -5.5,-42.5 + parent: 2 + - uid: 14800 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5412 + pos: -90.5,-22.5 + parent: 2 + - uid: 14801 components: - type: Transform - pos: -5.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5427 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 14802 components: - type: Transform - pos: 2.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8763 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 14803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8764 + rot: -1.5707963267948966 rad + pos: -78.5,-25.5 + parent: 2 + - uid: 14804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8765 + rot: -1.5707963267948966 rad + pos: -78.5,-24.5 + parent: 2 + - uid: 14805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8766 + rot: -1.5707963267948966 rad + pos: -78.5,-23.5 + parent: 2 + - uid: 14806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9604 + rot: -1.5707963267948966 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 14807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9606 + rot: -1.5707963267948966 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 14808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9607 + rot: -1.5707963267948966 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 14809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9637 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 + parent: 2 + - uid: 14810 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9638 + pos: -80.5,-26.5 + parent: 2 + - uid: 14811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15306 + rot: -1.5707963267948966 rad + pos: -81.5,-26.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 14814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15560 + pos: -81.5,-20.5 + parent: 2 + - uid: 14815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15574 + rot: -1.5707963267948966 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 14816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15857 + pos: -79.5,-20.5 + parent: 2 + - uid: 14817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20179 + pos: -90.5,-20.5 + parent: 2 + - uid: 14818 components: - type: Transform - pos: 0.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24353 + rot: -1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 14819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24354 + rot: -1.5707963267948966 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 14820 components: - type: Transform - pos: -18.5,-7.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24355 + rot: -1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 14821 components: - type: Transform - pos: -13.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24356 + rot: -1.5707963267948966 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 14822 components: - type: Transform - pos: -15.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24357 + rot: -1.5707963267948966 rad + pos: -86.5,-20.5 + parent: 2 + - uid: 14823 components: - type: Transform - pos: -14.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25523 + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 14824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 -- proto: GasPressurePump - entities: - - uid: 1445 + pos: 1.5,-11.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 14826 components: - - type: MetaData - name: О2 в смесители - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-19.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1446 + pos: 62.5,-5.5 + parent: 2 + - uid: 14827 components: - - type: MetaData - name: N2 в смесители - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-19.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1447 + pos: 63.5,-5.5 + parent: 2 + - uid: 14828 components: - - type: MetaData - name: CO2 в микс - type: Transform rot: 3.141592653589793 rad - pos: -97.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1448 + pos: 64.5,-5.5 + parent: 2 + - uid: 14829 components: - - type: MetaData - name: водяной пар в микс - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1449 + pos: 59.5,-7.5 + parent: 2 + - uid: 14830 components: - - type: MetaData - name: плазма в микс - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1518 + pos: 58.5,-7.5 + parent: 2 + - uid: 14831 components: - - type: MetaData - name: скрубберы в вейст - type: Transform - pos: -102.5,-13.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1590 + rot: 3.141592653589793 rad + pos: 57.5,-7.5 + parent: 2 + - uid: 14832 components: - - type: MetaData - name: воздух в дистру - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-12.5 - parent: 89 - - type: GasPressurePump - targetPressure: 228 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1911 + pos: 56.5,-7.5 + parent: 2 + - uid: 14833 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2061 + rot: 3.141592653589793 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 14834 components: - - type: MetaData - name: N2O в микс - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2062 + pos: 54.5,-7.5 + parent: 2 + - uid: 14835 components: - - type: MetaData - name: тритий в микс - type: Transform rot: 3.141592653589793 rad - pos: -89.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2063 + pos: 70.5,8.5 + parent: 2 + - uid: 14836 components: - - type: MetaData - name: газ в микс - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9609 + pos: 70.5,9.5 + parent: 2 + - uid: 14837 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9635 + pos: 70.5,11.5 + parent: 2 + - uid: 14838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10447 + rot: 3.141592653589793 rad + pos: 70.5,12.5 + parent: 2 + - uid: 14839 components: - - type: MetaData - name: выброс дистры - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10754 + pos: 70.5,13.5 + parent: 2 + - uid: 14840 components: - type: Transform - pos: -5.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15070 + rot: 3.141592653589793 rad + pos: 70.5,14.5 + parent: 2 + - uid: 14841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 89 - - type: GasPressurePump - targetPressure: 150 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15445 + rot: 3.141592653589793 rad + pos: 70.5,1.5 + parent: 2 + - uid: 14842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16373 + rot: 3.141592653589793 rad + pos: -100.5,12.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 14844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 89 - - type: GasPressurePump - targetPressure: 150 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17694 + pos: 28.5,-17.5 + parent: 2 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24358 + pos: 29.5,-17.5 + parent: 2 + - uid: 14846 components: - type: Transform - pos: -11.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 25524 + pos: -48.5,-5.5 + parent: 2 + - uid: 14847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 18153 - - type: GasPressurePump - targetPressure: 110 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 322 + pos: -66.5,-18.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 2 + - uid: 14849 components: - type: Transform - pos: -15.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1739 + pos: -71.5,-18.5 + parent: 2 + - uid: 14850 components: - type: Transform - pos: -94.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2475 + pos: -72.5,-18.5 + parent: 2 + - uid: 14851 components: - type: Transform - pos: -84.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2946 + pos: -68.5,-11.5 + parent: 2 + - uid: 14852 components: - type: Transform - pos: -82.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 8813 + pos: 9.5,-22.5 + parent: 2 + - uid: 14853 components: - type: Transform - pos: -125.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8814 + pos: -48.5,-18.5 + parent: 2 + - uid: 14854 components: - type: Transform - pos: -126.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8819 + pos: -49.5,-16.5 + parent: 2 + - uid: 14855 components: - type: Transform - pos: -127.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16295 + pos: -68.5,-12.5 + parent: 2 + - uid: 14856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16622 + pos: -38.5,-0.5 + parent: 2 + - uid: 14857 components: - type: Transform - pos: 11.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasThermoMachineHeater - entities: - - uid: 1740 + rot: -1.5707963267948966 rad + pos: -91.5,28.5 + parent: 2 + - uid: 14858 components: - type: Transform - pos: -93.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2476 + pos: -48.5,-14.5 + parent: 2 + - uid: 14859 components: - type: Transform - pos: -83.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2947 + pos: -68.5,-16.5 + parent: 2 + - uid: 14860 components: - type: Transform - pos: -81.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - type: AtmosDevice - joinedGrid: 89 -- proto: GasValve - entities: - - uid: 1476 + pos: -64.5,-3.5 + parent: 2 + - uid: 14861 components: - - type: MetaData - name: предфильтровый выброс вейста - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1570 + pos: -61.5,-3.5 + parent: 2 + - uid: 14862 components: - - type: MetaData - name: выброс портов канистр - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-13.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2379 + pos: -57.5,-9.5 + parent: 2 + - uid: 14863 components: - - type: MetaData - name: вейст в камеру - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2380 + pos: -15.5,22.5 + parent: 2 + - uid: 14864 components: - - type: MetaData - name: микс в камеру - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2386 - components: - - type: MetaData - name: выброс микса - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-16.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2502 + pos: 0.5,-42.5 + parent: 2 + - uid: 14865 components: - - type: MetaData - name: выброс вейста - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-18.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2523 + pos: 2.5,-42.5 + parent: 2 + - uid: 14866 components: - - type: MetaData - name: камера в канистры - type: Transform - pos: -81.5,-15.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2524 + rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 2 + - uid: 14867 components: - - type: MetaData - name: вейст в канистры - type: Transform - pos: -82.5,-15.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2900 + pos: -43.5,2.5 + parent: 2 + - uid: 14868 components: - - type: MetaData - name: выброс канистровой трубы - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-14.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 8787 + rot: 3.141592653589793 rad + pos: -36.5,22.5 + parent: 2 + - uid: 14869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,5.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - uid: 8789 + pos: -19.5,4.5 + parent: 2 + - uid: 14870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,2.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 -- proto: GasVentPump - entities: - - uid: 53 + pos: -17.5,4.5 + parent: 2 + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 107 + pos: -15.5,6.5 + parent: 2 + - uid: 14872 components: - type: Transform - pos: -8.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1966 + pos: -15.5,8.5 + parent: 2 + - uid: 14873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2006 + pos: -21.5,5.5 + parent: 2 + - uid: 14874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2974 + pos: 18.5,4.5 + parent: 2 + - uid: 14875 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3027 + pos: 17.5,4.5 + parent: 2 + - uid: 14876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3081 + pos: -96.5,4.5 + parent: 2 + - uid: 14877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3272 + rot: -1.5707963267948966 rad + pos: -69.5,29.5 + parent: 2 + - uid: 14878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3294 + pos: -81.5,29.5 + parent: 2 + - uid: 14879 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3386 + pos: -69.5,36.5 + parent: 2 + - uid: 14880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3416 + rot: -1.5707963267948966 rad + pos: -81.5,31.5 + parent: 2 + - uid: 14881 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3539 + rot: -1.5707963267948966 rad + pos: -69.5,31.5 + parent: 2 + - uid: 14882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3619 + rot: -1.5707963267948966 rad + pos: -81.5,36.5 + parent: 2 + - uid: 14883 components: - type: Transform - pos: -98.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3620 + pos: -45.5,2.5 + parent: 2 + - uid: 14884 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3621 + pos: -42.5,0.5 + parent: 2 + - uid: 14885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3622 + pos: -42.5,-1.5 + parent: 2 + - uid: 14886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3712 + rot: 1.5707963267948966 rad + pos: -57.5,42.5 + parent: 2 + - uid: 14887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3783 + rot: 1.5707963267948966 rad + pos: -57.5,43.5 + parent: 2 + - uid: 14888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3937 + pos: -118.5,24.5 + parent: 2 + - uid: 14889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3941 + pos: -90.5,3.5 + parent: 2 + - uid: 14890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3944 + pos: -90.5,4.5 + parent: 2 + - uid: 14891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3987 + pos: -83.5,14.5 + parent: 2 + - uid: 14892 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4008 + pos: -77.5,-13.5 + parent: 2 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4105 + pos: -77.5,-14.5 + parent: 2 + - uid: 14894 components: - type: Transform - pos: 61.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4159 + rot: 1.5707963267948966 rad + pos: -77.5,-12.5 + parent: 2 + - uid: 14895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4160 + pos: -77.5,-11.5 + parent: 2 + - uid: 14896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4219 + pos: -100.5,28.5 + parent: 2 + - uid: 14897 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4243 + rot: 3.141592653589793 rad + pos: -87.5,11.5 + parent: 2 + - uid: 14898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4377 + pos: -2.5,47.5 + parent: 2 + - uid: 14899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4441 + pos: -3.5,47.5 + parent: 2 + - uid: 14900 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4471 + pos: -4.5,47.5 + parent: 2 + - uid: 14901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4537 + pos: -0.5,47.5 + parent: 2 + - uid: 14902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4598 + pos: 0.5,47.5 + parent: 2 + - uid: 14903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4599 + pos: -7.5,47.5 + parent: 2 + - uid: 14904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4691 + pos: -6.5,47.5 + parent: 2 + - uid: 14905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4702 + pos: -58.5,20.5 + parent: 2 + - uid: 14906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4717 + pos: -61.5,9.5 + parent: 2 + - uid: 14907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4733 + pos: -61.5,7.5 + parent: 2 + - uid: 14908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4761 + pos: -1.5,36.5 + parent: 2 + - uid: 14909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4762 + pos: -37.5,12.5 + parent: 2 + - uid: 14910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4811 + pos: -9.5,36.5 + parent: 2 + - uid: 14911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4812 + pos: -15.5,25.5 + parent: 2 + - uid: 14912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4813 + pos: -58.5,22.5 + parent: 2 + - uid: 14913 components: - type: Transform - pos: -7.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4864 + pos: -59.5,23.5 + parent: 2 + - uid: 14914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4939 + pos: -61.5,23.5 + parent: 2 + - uid: 14915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4982 + pos: -61.5,23.5 + parent: 2 + - uid: 14916 components: - type: Transform - pos: -59.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4983 + pos: -11.5,-15.5 + parent: 2 + - uid: 14917 components: - type: Transform - pos: -66.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5071 + pos: -9.5,-15.5 + parent: 2 + - uid: 14918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5072 + pos: -10.5,-15.5 + parent: 2 + - uid: 14919 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5152 + pos: 33.5,23.5 + parent: 2 + - uid: 14920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5156 + pos: -126.5,12.5 + parent: 2 + - uid: 14921 components: - type: Transform - pos: 11.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5157 + pos: -128.5,3.5 + parent: 2 + - uid: 14922 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5279 + pos: -128.5,4.5 + parent: 2 + - uid: 14923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5337 + rot: 1.5707963267948966 rad + pos: -119.5,1.5 + parent: 2 + - uid: 14924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5338 + rot: 1.5707963267948966 rad + pos: -119.5,6.5 + parent: 2 + - uid: 14925 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5339 + pos: -119.5,3.5 + parent: 2 + - uid: 14926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5341 + rot: 1.5707963267948966 rad + pos: -114.5,5.5 + parent: 2 + - uid: 14927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5348 + rot: 1.5707963267948966 rad + pos: -114.5,2.5 + parent: 2 + - uid: 14928 components: - type: Transform - pos: 27.5,-3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5356 + pos: -123.5,-14.5 + parent: 2 + - uid: 14929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5377 + pos: -124.5,-13.5 + parent: 2 + - uid: 14930 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5394 + pos: -124.5,-12.5 + parent: 2 + - uid: 14931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5399 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5437 + pos: -131.5,8.5 + parent: 2 + - uid: 14932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5502 + rot: 1.5707963267948966 rad + pos: -131.5,7.5 + parent: 2 + - uid: 14933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5535 + pos: -131.5,6.5 + parent: 2 + - uid: 14934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5688 + rot: 1.5707963267948966 rad + pos: -131.5,5.5 + parent: 2 + - uid: 14935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5729 + pos: -131.5,4.5 + parent: 2 + - uid: 14936 components: - type: Transform - pos: -50.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5736 + rot: 1.5707963267948966 rad + pos: -131.5,3.5 + parent: 2 + - uid: 14937 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5751 + pos: -131.5,2.5 + parent: 2 + - uid: 14938 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5784 + rot: 1.5707963267948966 rad + pos: -131.5,1.5 + parent: 2 + - uid: 14939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5785 + pos: -13.5,25.5 + parent: 2 + - uid: 14940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5796 + pos: -14.5,25.5 + parent: 2 + - uid: 14941 components: - type: Transform - pos: -94.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6204 + pos: -90.5,2.5 + parent: 2 + - uid: 14942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6205 + pos: -90.5,1.5 + parent: 2 + - uid: 14943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6208 + pos: -110.5,30.5 + parent: 2 + - uid: 14944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6363 + pos: -112.5,30.5 + parent: 2 + - uid: 14945 components: - type: Transform - pos: -18.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6370 + rot: 1.5707963267948966 rad + pos: -101.5,32.5 + parent: 2 + - uid: 14946 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6558 + pos: -102.5,32.5 + parent: 2 + - uid: 14947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6560 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 14948 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6568 + pos: -49.5,41.5 + parent: 2 + - uid: 14949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6603 + pos: -49.5,48.5 + parent: 2 + - uid: 14950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6610 + pos: -51.5,49.5 + parent: 2 + - uid: 14951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6798 + pos: -68.5,33.5 + parent: 2 + - uid: 14952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6802 + pos: -68.5,35.5 + parent: 2 + - uid: 14953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6803 + pos: -68.5,34.5 + parent: 2 + - uid: 14954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6840 + pos: -60.5,23.5 + parent: 2 + - uid: 14955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6856 + pos: -65.5,47.5 + parent: 2 + - uid: 14956 components: - type: Transform - pos: -23.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6862 + pos: -65.5,48.5 + parent: 2 + - uid: 14957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6870 + pos: -68.5,42.5 + parent: 2 + - uid: 14958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6882 + pos: -68.5,43.5 + parent: 2 + - uid: 14959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8770 + pos: -68.5,44.5 + parent: 2 + - uid: 14960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8877 + pos: -62.5,46.5 + parent: 2 + - uid: 14961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8878 + pos: -61.5,46.5 + parent: 2 + - uid: 14962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8879 + pos: -60.5,46.5 + parent: 2 + - uid: 14963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8972 + pos: -57.5,47.5 + parent: 2 + - uid: 14964 components: - type: Transform - pos: -120.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9011 + pos: -57.5,48.5 + parent: 2 + - uid: 14965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9375 + pos: -53.5,45.5 + parent: 2 + - uid: 14966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9379 + pos: -53.5,43.5 + parent: 2 + - uid: 14967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9434 + pos: -53.5,41.5 + parent: 2 + - uid: 14968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9822 + pos: -53.5,39.5 + parent: 2 + - uid: 14969 components: - type: Transform - pos: -60.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9924 + pos: -53.5,49.5 + parent: 2 + - uid: 14970 components: - type: Transform - pos: -56.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9930 + rot: -1.5707963267948966 rad + pos: -58.5,34.5 + parent: 2 + - uid: 14971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9948 + rot: -1.5707963267948966 rad + pos: -57.5,31.5 + parent: 2 + - uid: 14972 components: - type: Transform - pos: -66.5,43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10129 + rot: -1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - uid: 14973 components: - type: Transform - pos: -29.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10488 + rot: -1.5707963267948966 rad + pos: -69.5,38.5 + parent: 2 + - uid: 14974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12607 + rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 2 + - uid: 14975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12615 + pos: -49.5,47.5 + parent: 2 + - uid: 14976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12735 + pos: -41.5,30.5 + parent: 2 + - uid: 14977 components: - type: Transform - pos: 9.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12802 + pos: -41.5,31.5 + parent: 2 + - uid: 14978 components: - type: Transform - pos: 20.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12811 + pos: -41.5,32.5 + parent: 2 + - uid: 14979 components: - type: Transform - pos: 18.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12831 + pos: -122.5,-14.5 + parent: 2 + - uid: 14980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14088 + pos: -85.5,18.5 + parent: 2 + - uid: 14981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14089 + pos: -84.5,18.5 + parent: 2 + - uid: 14982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14931 + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - uid: 14983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' + rot: -1.5707963267948966 rad + pos: -89.5,45.5 + parent: 2 - uid: 14984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15100 + pos: -82.5,42.5 + parent: 2 + - uid: 14985 components: - type: Transform - pos: 28.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15182 + pos: -82.5,43.5 + parent: 2 + - uid: 14986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15444 + pos: -82.5,44.5 + parent: 2 + - uid: 14987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15451 + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 14988 components: - type: Transform - pos: 7.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15453 + pos: -85.5,46.5 + parent: 2 + - uid: 14989 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15467 + pos: -81.5,38.5 + parent: 2 + - uid: 14990 components: - type: Transform - pos: 13.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15472 + rot: -1.5707963267948966 rad + pos: -114.5,21.5 + parent: 2 + - uid: 14991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15589 + pos: -82.5,33.5 + parent: 2 + - uid: 14992 components: - type: Transform - pos: 14.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15725 + pos: -82.5,34.5 + parent: 2 + - uid: 14993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15847 + pos: -82.5,35.5 + parent: 2 + - uid: 14994 components: - type: Transform - pos: -84.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16165 + pos: -85.5,48.5 + parent: 2 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16914 + pos: -83.5,48.5 + parent: 2 + - uid: 14996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18320 + pos: -83.5,46.5 + parent: 2 + - uid: 14997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18327 + pos: -8.5,-39.5 + parent: 2 + - uid: 14998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18339 + pos: -8.5,-40.5 + parent: 2 + - uid: 14999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18360 + pos: 3.5,-39.5 + parent: 2 + - uid: 15000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20025 + pos: 3.5,-40.5 + parent: 2 + - uid: 15001 components: - type: Transform - pos: 11.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20031 + pos: 3.5,-23.5 + parent: 2 + - uid: 15002 components: - type: Transform - pos: 23.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20032 + pos: 1.5,-23.5 + parent: 2 + - uid: 15003 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20033 + pos: 1.5,-26.5 + parent: 2 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20093 + pos: 3.5,-26.5 + parent: 2 + - uid: 15005 components: - type: Transform - pos: -8.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20094 + pos: 1.5,-32.5 + parent: 2 + - uid: 15006 components: - type: Transform - pos: -11.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20108 + pos: 2.5,-32.5 + parent: 2 + - uid: 15007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20142 + pos: 3.5,-32.5 + parent: 2 + - uid: 15008 components: - type: Transform - pos: -5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20442 + pos: 4.5,-32.5 + parent: 2 + - uid: 15009 components: - type: Transform - pos: 0.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21222 + pos: -123.5,22.5 + parent: 2 + - uid: 15010 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21223 + pos: -122.5,22.5 + parent: 2 + - uid: 15011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21224 + pos: -121.5,22.5 + parent: 2 + - uid: 15012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21225 + pos: -106.5,30.5 + parent: 2 + - uid: 15013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21226 + pos: -114.5,26.5 + parent: 2 + - uid: 15014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21227 + pos: -117.5,26.5 + parent: 2 + - uid: 15015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21228 + pos: -115.5,26.5 + parent: 2 + - uid: 15016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22437 + pos: 6.5,38.5 + parent: 2 + - uid: 15017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22439 + pos: 12.5,35.5 + parent: 2 + - uid: 15018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-30.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22466 + pos: -107.5,28.5 + parent: 2 + - uid: 15019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22563 + pos: 8.5,43.5 + parent: 2 + - uid: 15020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24359 + pos: -103.5,28.5 + parent: 2 + - uid: 15021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24360 + pos: 7.5,42.5 + parent: 2 + - uid: 15022 components: - type: Transform - pos: -12.5,2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24361 + pos: -109.5,28.5 + parent: 2 + - uid: 15023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24362 + pos: 13.5,38.5 + parent: 2 + - uid: 15024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24363 + pos: 7.5,35.5 + parent: 2 + - uid: 15025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24364 + pos: 7.5,41.5 + parent: 2 + - uid: 15026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24365 + pos: 7.5,38.5 + parent: 2 + - uid: 15027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24366 + pos: 62.5,-37.5 + parent: 2 + - uid: 15028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24367 + pos: -13.5,-34.5 + parent: 2 + - uid: 15029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24368 + pos: 55.5,-16.5 + parent: 2 + - uid: 15030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24369 + pos: 38.5,-35.5 + parent: 2 + - uid: 15031 components: - type: Transform - pos: -12.5,-21.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24370 + pos: -13.5,-35.5 + parent: 2 + - uid: 15032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24371 + pos: -13.5,-36.5 + parent: 2 + - uid: 15033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24372 + pos: -19.5,23.5 + parent: 2 + - uid: 15034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24373 + pos: 11.5,43.5 + parent: 2 + - uid: 15035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24374 + pos: 12.5,42.5 + parent: 2 + - uid: 15036 components: - type: Transform - pos: -22.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24375 + pos: 11.5,36.5 + parent: 2 + - uid: 15037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24376 + pos: 21.5,35.5 + parent: 2 + - uid: 15038 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24377 + pos: -27.5,36.5 + parent: 2 + - uid: 15039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24378 + rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + - uid: 15040 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24379 + pos: -32.5,37.5 + parent: 2 + - uid: 15041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24380 + rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 2 + - uid: 15042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24381 + pos: 8.5,37.5 + parent: 2 + - uid: 15043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24382 + pos: 12.5,38.5 + parent: 2 + - uid: 15044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24383 + pos: 6.5,31.5 + parent: 2 + - uid: 15045 components: - type: Transform - pos: -1.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25414 + pos: 27.5,35.5 + parent: 2 + - uid: 15046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25415 + pos: 21.5,36.5 + parent: 2 + - uid: 15047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25525 + pos: 27.5,36.5 + parent: 2 + - uid: 15048 components: - type: Transform - pos: 4.5,-6.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25526 + rot: 1.5707963267948966 rad + pos: -57.5,41.5 + parent: 2 + - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25527 + pos: -49.5,45.5 + parent: 2 + - uid: 15050 components: - type: Transform - pos: 4.5,-2.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasVentScrubber - entities: - - uid: 1363 + rot: 3.141592653589793 rad + pos: -119.5,2.5 + parent: 2 + - uid: 15051 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1596 + pos: -119.5,4.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,5.5 + parent: 2 + - uid: 15053 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1940 + pos: -13.5,42.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,37.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: -52.5,49.5 + parent: 2 + - uid: 15056 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3020 + pos: 66.5,-7.5 + parent: 2 + - uid: 15057 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3024 + pos: 64.5,-9.5 + parent: 2 + - uid: 15058 components: - type: Transform - pos: -99.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3062 + rot: 1.5707963267948966 rad + pos: -104.5,32.5 + parent: 2 + - uid: 15059 components: - type: Transform - pos: -99.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3301 + rot: -1.5707963267948966 rad + pos: -48.5,49.5 + parent: 2 + - uid: 15060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3384 + pos: -47.5,49.5 + parent: 2 + - uid: 15061 components: - type: Transform - pos: -99.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3424 + rot: -1.5707963267948966 rad + pos: -46.5,49.5 + parent: 2 + - uid: 15062 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3535 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 + parent: 2 + - uid: 15063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3614 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 + parent: 2 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3615 + pos: -61.5,49.5 + parent: 2 + - uid: 15065 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3617 + pos: -45.5,46.5 + parent: 2 + - uid: 15066 components: - type: Transform - pos: -109.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3748 + rot: -1.5707963267948966 rad + pos: -45.5,45.5 + parent: 2 + - uid: 15067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3775 + rot: -1.5707963267948966 rad + pos: -45.5,44.5 + parent: 2 + - uid: 15068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3936 + rot: -1.5707963267948966 rad + pos: -45.5,47.5 + parent: 2 + - uid: 15069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3938 + rot: 1.5707963267948966 rad + pos: -132.5,28.5 + parent: 2 + - uid: 15070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3947 + rot: -1.5707963267948966 rad + pos: -122.5,26.5 + parent: 2 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3988 + pos: -137.5,26.5 + parent: 2 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4007 + pos: -137.5,27.5 + parent: 2 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4161 + pos: -137.5,25.5 + parent: 2 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4162 + pos: -138.5,11.5 + parent: 2 + - uid: 15075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4242 + pos: -121.5,26.5 + parent: 2 + - uid: 15076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4273 + rot: 1.5707963267948966 rad + pos: -135.5,28.5 + parent: 2 + - uid: 15077 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4278 + rot: 1.5707963267948966 rad + pos: -134.5,28.5 + parent: 2 + - uid: 15078 components: - type: Transform - pos: 60.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4354 + rot: 3.141592653589793 rad + pos: 66.5,-8.5 + parent: 2 + - uid: 15079 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4375 + pos: 70.5,-5.5 + parent: 2 + - uid: 15080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4383 + rot: 3.141592653589793 rad + pos: 70.5,-3.5 + parent: 2 + - uid: 15081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4442 + rot: 3.141592653589793 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 15082 components: - type: Transform - pos: -2.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4541 + rot: -1.5707963267948966 rad + pos: -13.5,39.5 + parent: 2 + - uid: 15083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4590 + rot: -1.5707963267948966 rad + pos: -41.5,38.5 + parent: 2 + - uid: 15084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4591 + rot: -1.5707963267948966 rad + pos: -45.5,41.5 + parent: 2 + - uid: 15085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4692 + rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - uid: 15086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4698 + rot: -1.5707963267948966 rad + pos: -45.5,39.5 + parent: 2 + - uid: 15087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4718 + pos: -45.5,38.5 + parent: 2 + - uid: 15088 components: - type: Transform - pos: -1.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4730 + rot: -1.5707963267948966 rad + pos: -43.5,37.5 + parent: 2 + - uid: 15089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4759 + pos: -127.5,28.5 + parent: 2 + - uid: 15090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4760 + rot: 3.141592653589793 rad + pos: 68.5,-5.5 + parent: 2 + - uid: 15091 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4815 + pos: 70.5,-2.5 + parent: 2 + - uid: 15092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4816 + rot: 3.141592653589793 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 15093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4819 + rot: -1.5707963267948966 rad + pos: -40.5,38.5 + parent: 2 + - uid: 15094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4866 + pos: -39.5,38.5 + parent: 2 + - uid: 15095 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4985 + pos: -38.5,38.5 + parent: 2 + - uid: 15096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4986 + rot: -1.5707963267948966 rad + pos: -37.5,38.5 + parent: 2 + - uid: 15097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4999 + rot: -1.5707963267948966 rad + pos: -36.5,38.5 + parent: 2 + - uid: 15098 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5069 + pos: -126.5,28.5 + parent: 2 + - uid: 15099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5070 + pos: -125.5,28.5 + parent: 2 + - uid: 15100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5106 + pos: -18.5,38.5 + parent: 2 + - uid: 15101 components: - type: Transform - pos: -9.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5118 + rot: -1.5707963267948966 rad + pos: -22.5,38.5 + parent: 2 + - uid: 15102 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5151 + pos: -23.5,38.5 + parent: 2 + - uid: 15103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5154 + pos: -15.5,37.5 + parent: 2 + - uid: 15104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5326 + rot: 1.5707963267948966 rad + pos: -138.5,13.5 + parent: 2 + - uid: 15105 components: - type: Transform - pos: 12.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5328 + rot: 1.5707963267948966 rad + pos: -138.5,20.5 + parent: 2 + - uid: 15106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5329 + pos: -128.5,28.5 + parent: 2 + - uid: 15107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5330 + rot: 1.5707963267948966 rad + pos: -138.5,21.5 + parent: 2 + - uid: 15108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5331 + rot: 1.5707963267948966 rad + pos: -138.5,19.5 + parent: 2 + - uid: 15109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5336 + rot: 1.5707963267948966 rad + pos: -138.5,22.5 + parent: 2 + - uid: 15110 components: - type: Transform - pos: 26.5,-3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5354 + rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 2 + - uid: 15111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5355 + pos: -20.5,38.5 + parent: 2 + - uid: 15112 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5382 + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 2 + - uid: 15113 components: - type: Transform - pos: 35.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5389 + rot: -1.5707963267948966 rad + pos: -16.5,37.5 + parent: 2 + - uid: 15114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5401 + pos: -14.5,37.5 + parent: 2 + - uid: 15115 components: - type: Transform - pos: 4.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5501 + rot: -1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 + - uid: 15116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5569 + rot: 3.141592653589793 rad + pos: 66.5,-9.5 + parent: 2 + - uid: 15117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5725 + rot: 1.5707963267948966 rad + pos: -138.5,19.5 + parent: 2 + - uid: 15118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5728 + rot: 1.5707963267948966 rad + pos: -138.5,12.5 + parent: 2 + - uid: 15119 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5737 + pos: -13.5,46.5 + parent: 2 + - uid: 15120 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5752 + pos: -13.5,41.5 + parent: 2 + - uid: 15121 components: - type: Transform - pos: -49.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5787 + rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 15122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5789 + pos: -13.5,45.5 + parent: 2 + - uid: 15123 components: - type: Transform - pos: -82.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5795 + rot: 1.5707963267948966 rad + pos: -133.5,28.5 + parent: 2 + - uid: 15124 components: - type: Transform - pos: -95.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6206 + rot: -1.5707963267948966 rad + pos: -13.5,37.5 + parent: 2 + - uid: 15125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6207 + rot: -1.5707963267948966 rad + pos: -19.5,38.5 + parent: 2 + - uid: 15126 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6209 + pos: -12.5,48.5 + parent: 2 + - uid: 15127 components: - type: Transform - pos: -25.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6364 + rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 2 + - uid: 15128 components: - type: Transform - pos: -17.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6369 + rot: 1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6550 + pos: -8.5,51.5 + parent: 2 + - uid: 15130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6551 + rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - uid: 15131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6567 + rot: 1.5707963267948966 rad + pos: -6.5,51.5 + parent: 2 + - uid: 15132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6602 + rot: 1.5707963267948966 rad + pos: -5.5,51.5 + parent: 2 + - uid: 15133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6609 + rot: 1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - uid: 15134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6799 + rot: 1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - uid: 15135 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6824 + pos: 1.5,51.5 + parent: 2 + - uid: 15136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6839 + pos: 2.5,51.5 + parent: 2 + - uid: 15137 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6851 + pos: 3.5,51.5 + parent: 2 + - uid: 15138 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6857 + pos: 4.5,51.5 + parent: 2 + - uid: 15139 components: - type: Transform - pos: -19.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6863 + rot: 1.5707963267948966 rad + pos: 5.5,51.5 + parent: 2 + - uid: 15140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6869 + rot: 1.5707963267948966 rad + pos: 8.5,48.5 + parent: 2 + - uid: 15141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6881 + rot: 1.5707963267948966 rad + pos: 8.5,47.5 + parent: 2 + - uid: 15142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7668 + pos: 70.5,-0.5 + parent: 2 + - uid: 15143 components: - type: Transform - pos: -99.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8534 + rot: 1.5707963267948966 rad + pos: 16.5,39.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - uid: 15145 components: - type: Transform - pos: -116.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8758 + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 15146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -127.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8768 + pos: 16.5,36.5 + parent: 2 + - uid: 15147 components: - type: Transform - pos: -110.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8874 + pos: 69.5,-0.5 + parent: 2 + - uid: 15148 components: - type: Transform - pos: -127.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8875 + pos: 68.5,-0.5 + parent: 2 + - uid: 15149 components: - type: Transform - pos: -126.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8876 + rot: 3.141592653589793 rad + pos: 70.5,0.5 + parent: 2 + - uid: 15150 components: - type: Transform - pos: -125.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8930 + rot: 3.141592653589793 rad + pos: 70.5,-1.5 + parent: 2 + - uid: 15151 components: - type: Transform - pos: 22.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8973 + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - uid: 15152 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9010 + pos: 70.5,5.5 + parent: 2 + - uid: 15153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9370 + pos: 70.5,4.5 + parent: 2 + - uid: 15154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9371 + pos: 70.5,3.5 + parent: 2 + - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9433 + rot: 3.141592653589793 rad + pos: 68.5,-6.5 + parent: 2 + - uid: 15156 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9831 + pos: 68.5,-7.5 + parent: 2 + - uid: 15157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,44.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9922 + rot: 3.141592653589793 rad + pos: 64.5,-10.5 + parent: 2 + - uid: 15158 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9923 + pos: 62.5,-11.5 + parent: 2 + - uid: 15159 components: - type: Transform - pos: -55.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9949 + rot: 3.141592653589793 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 15160 components: - type: Transform - pos: -61.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10118 + rot: 3.141592653589793 rad + pos: 60.5,-11.5 + parent: 2 + - uid: 15161 components: - type: Transform - pos: -30.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10485 + rot: 3.141592653589793 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 15162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12736 + rot: 3.141592653589793 rad + pos: 59.5,-9.5 + parent: 2 + - uid: 15163 components: - type: Transform - pos: 7.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12741 + rot: 3.141592653589793 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 15164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12776 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12812 + pos: 53.5,-9.5 + parent: 2 + - uid: 15166 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14090 + rot: 3.141592653589793 rad + pos: 54.5,-9.5 + parent: 2 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14091 + pos: 55.5,-9.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 15169 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14970 + pos: 57.5,25.5 + parent: 2 + - uid: 15170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15009 + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 15171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15186 + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + - uid: 15172 components: - type: Transform - pos: 27.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15198 + rot: 3.141592653589793 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 15173 components: - type: Transform - pos: 34.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15438 + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - uid: 15174 components: - type: Transform - pos: 9.5,41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15525 + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 15175 components: - type: Transform - pos: 12.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15547 + rot: 3.141592653589793 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 15176 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15821 + pos: -31.5,-23.5 + parent: 2 + - uid: 15177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15846 + rot: 3.141592653589793 rad + pos: -31.5,-25.5 + parent: 2 + - uid: 15178 components: - type: Transform - pos: -85.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16137 + rot: 3.141592653589793 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 15179 components: - type: Transform - pos: 6.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 16534 + rot: 3.141592653589793 rad + pos: -31.5,-32.5 + parent: 2 + - uid: 15180 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18334 + pos: -18.5,-32.5 + parent: 2 + - uid: 15181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18338 + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 15182 components: - type: Transform - pos: -5.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18361 + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 15183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19916 + rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 15184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19960 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 15185 components: - type: Transform - pos: 23.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19963 + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 15186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20109 + rot: 3.141592653589793 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 15187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20804 + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 15188 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21244 + pos: -17.5,-36.5 + parent: 2 + - uid: 15189 components: - type: Transform - pos: -29.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21259 + rot: 3.141592653589793 rad + pos: -17.5,-41.5 + parent: 2 + - uid: 15190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21260 + rot: 3.141592653589793 rad + pos: -15.5,-41.5 + parent: 2 + - uid: 15191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21261 + rot: 3.141592653589793 rad + pos: -14.5,-41.5 + parent: 2 + - uid: 15192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21262 + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 15193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21263 + rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 2 + - uid: 15194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21264 + rot: 3.141592653589793 rad + pos: -12.5,-43.5 + parent: 2 + - uid: 15195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21692 + rot: 3.141592653589793 rad + pos: -12.5,-44.5 + parent: 2 + - uid: 15196 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21693 + pos: -12.5,-45.5 + parent: 2 + - uid: 15197 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22313 + rot: 3.141592653589793 rad + pos: -12.5,-48.5 + parent: 2 + - uid: 15198 components: - type: Transform - pos: 56.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22470 + rot: 3.141592653589793 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 15199 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22501 + pos: -12.5,-50.5 + parent: 2 + - uid: 15200 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22560 + pos: -11.5,-50.5 + parent: 2 + - uid: 15201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24384 + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24385 + pos: -9.5,-50.5 + parent: 2 + - uid: 15203 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24386 + pos: -8.5,-50.5 + parent: 2 + - uid: 15204 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24387 + pos: -4.5,-50.5 + parent: 2 + - uid: 15205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24388 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 + parent: 2 + - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24389 + pos: -2.5,-50.5 + parent: 2 + - uid: 15207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24390 + rot: 3.141592653589793 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24391 + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 15209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24392 + rot: 3.141592653589793 rad + pos: 0.5,-50.5 + parent: 2 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24393 + pos: 1.5,-50.5 + parent: 2 + - uid: 15211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24394 + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 15212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24395 + rot: 3.141592653589793 rad + pos: 6.5,-50.5 + parent: 2 + - uid: 15213 components: - type: Transform - pos: -20.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24396 + rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 15214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24397 + rot: 3.141592653589793 rad + pos: 7.5,-47.5 + parent: 2 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24398 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 15216 components: - type: Transform - pos: -10.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24399 + rot: 3.141592653589793 rad + pos: 7.5,-45.5 + parent: 2 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24400 + pos: 7.5,-44.5 + parent: 2 + - uid: 15218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24401 + rot: 3.141592653589793 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 15219 components: - type: Transform - pos: -3.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24402 + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 2 + - uid: 15220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24403 + rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 2 + - uid: 15221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24404 + rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24405 + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24406 + rot: 3.141592653589793 rad + pos: 7.5,-36.5 + parent: 2 + - uid: 15224 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 229 + pos: 11.5,-33.5 + parent: 2 + - uid: 15225 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1577 + pos: 12.5,-33.5 + parent: 2 + - uid: 15226 components: - - type: MetaData - name: насос в канистру 1 - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1578 + pos: 13.5,-33.5 + parent: 2 + - uid: 15227 components: - - type: MetaData - name: насос в канистру 2 - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1579 + pos: 13.5,-32.5 + parent: 2 + - uid: 15228 components: - - type: MetaData - name: насос в канистру 3 - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1915 + pos: 13.5,-31.5 + parent: 2 + - uid: 15229 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2383 + pos: 13.5,-30.5 + parent: 2 + - uid: 15230 components: - - type: MetaData - name: выход камеры - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 8896 + pos: 13.5,-29.5 + parent: 2 + - uid: 15231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8897 + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 15232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9610 + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 15233 components: - type: Transform - pos: -93.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9636 + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 15234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10866 + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 15235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15389 + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 2 + - uid: 15236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24407 + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 15237 components: - type: Transform - pos: -18.5,-14.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24408 + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24409 + pos: 18.5,-20.5 + parent: 2 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24410 + pos: 19.5,-20.5 + parent: 2 + - uid: 15240 components: - type: Transform - pos: -15.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24411 + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 2 + - uid: 15241 components: - type: Transform - pos: -14.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: Gateway - entities: - - uid: 14107 + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 15242 components: - type: Transform - pos: -29.5,49.5 - parent: 89 - - type: Gateway - enabled: True -- proto: Gauze - entities: - - uid: 20820 + rot: 3.141592653589793 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 15243 components: - type: Transform - pos: -1.6229911,15.447899 - parent: 89 -- proto: GeneratorBasic15kW - entities: - - uid: 24412 + rot: 3.141592653589793 rad + pos: -98.5,19.5 + parent: 2 + - uid: 15244 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 -- proto: GeneratorRTGDamaged - entities: - - uid: 25863 + pos: 33.5,40.5 + parent: 2 + - uid: 15245 components: - type: Transform - pos: -125.5,4.5 - parent: 89 - - uid: 25864 + pos: -12.5,25.5 + parent: 2 + - uid: 15246 components: - type: Transform - pos: -127.5,3.5 - parent: 89 -- proto: GeneratorWallmountAPU - entities: - - uid: 14563 + pos: 25.5,33.5 + parent: 2 + - uid: 15247 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14564 + pos: 23.5,44.5 + parent: 2 + - uid: 15248 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 21694 + pos: 24.5,44.5 + parent: 2 + - uid: 15249 components: - type: Transform - pos: 2.5,-1.5 - parent: 21627 - - uid: 21695 + pos: 25.5,44.5 + parent: 2 + - uid: 15250 components: - type: Transform - pos: -1.5,-1.5 - parent: 21627 - - uid: 21696 + pos: 23.5,33.5 + parent: 2 + - uid: 15251 components: - type: Transform - pos: -0.5,-3.5 - parent: 21627 - - uid: 25528 + pos: 33.5,37.5 + parent: 2 + - uid: 15252 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - type: PowerSupplier - supplyRate: 9000 - - uid: 25529 + pos: 33.5,38.5 + parent: 2 + - uid: 15253 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 -- proto: GeneratorWallmountBasic - entities: - - uid: 24413 + pos: 33.5,39.5 + parent: 2 + - uid: 15254 components: - type: Transform - pos: -6.5,-15.5 - parent: 22565 - - type: PowerSupplier - supplyRampRate: 1000 - supplyRampTolerance: 1000 - supplyRate: 20000 -- proto: Girder - entities: - - uid: 14566 + pos: 33.5,36.5 + parent: 2 + - uid: 15255 components: - type: Transform - pos: -17.5,16.5 - parent: 89 - - uid: 17636 + pos: 33.5,41.5 + parent: 2 + - uid: 15256 components: - type: Transform - pos: -15.5,23.5 - parent: 89 -- proto: GlowstickYellow - entities: - - uid: 10232 + pos: 28.5,44.5 + parent: 2 + - uid: 15257 components: - type: Transform - pos: -27.695927,23.49133 - parent: 89 - - uid: 10234 + pos: 28.5,45.5 + parent: 2 + - uid: 15258 components: - type: Transform - pos: -27.305302,23.52258 - parent: 89 - - uid: 17654 + pos: 28.5,46.5 + parent: 2 + - uid: 15259 components: - type: Transform - pos: -27.480957,23.532402 - parent: 89 - - uid: 17655 + pos: 26.5,47.5 + parent: 2 + - uid: 15260 components: - type: Transform - pos: -27.168457,23.469902 - parent: 89 -- proto: GravityGenerator - entities: - - uid: 19572 + pos: 25.5,47.5 + parent: 2 + - uid: 15261 components: - type: Transform - pos: -113.5,-18.5 - parent: 89 -- proto: GravityGeneratorMini - entities: - - uid: 21697 + pos: 24.5,47.5 + parent: 2 + - uid: 15262 components: - type: Transform - pos: 1.5,-0.5 - parent: 21627 - - type: Visibility - layer: 15 - - uid: 24414 + pos: 23.5,47.5 + parent: 2 + - uid: 15263 components: - type: Transform - pos: -12.5,7.5 - parent: 22565 - - uid: 25530 + pos: 22.5,47.5 + parent: 2 + - uid: 15264 components: - type: Transform - pos: 5.5,-11.5 - parent: 18153 -- proto: Grille - entities: - - uid: 28 + pos: 20.5,46.5 + parent: 2 + - uid: 15265 components: - type: Transform - pos: -8.5,-6.5 - parent: 89 - - uid: 104 + pos: 20.5,45.5 + parent: 2 + - uid: 15266 components: - type: Transform - pos: -38.5,-17.5 - parent: 89 - - uid: 126 + pos: 20.5,44.5 + parent: 2 + - uid: 15267 components: - type: Transform - pos: 8.5,36.5 - parent: 89 - - uid: 137 + pos: 17.5,42.5 + parent: 2 + - uid: 15268 components: - type: Transform - pos: 11.5,37.5 - parent: 89 - - uid: 253 + pos: 18.5,42.5 + parent: 2 + - uid: 15269 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 268 + rot: 1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - uid: 15270 components: - type: Transform - pos: -103.5,22.5 - parent: 89 - - uid: 383 + rot: 1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - uid: 15271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,26.5 - parent: 89 - - uid: 406 + pos: -111.5,28.5 + parent: 2 + - uid: 15272 components: - type: Transform - pos: -103.5,-6.5 - parent: 89 - - uid: 407 + pos: -105.5,28.5 + parent: 2 + - uid: 15273 components: - type: Transform - pos: -102.5,-6.5 - parent: 89 - - uid: 418 + rot: 3.141592653589793 rad + pos: -116.5,26.5 + parent: 2 + - uid: 15274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,5.5 - parent: 89 - - uid: 419 + pos: -118.5,25.5 + parent: 2 + - uid: 15275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,6.5 - parent: 89 - - uid: 420 + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 15276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 89 - - uid: 421 + rot: 3.141592653589793 rad + pos: 37.5,32.5 + parent: 2 + - uid: 15277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 89 - - uid: 422 + rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 2 + - uid: 15278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,2.5 - parent: 89 - - uid: 423 + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 + - uid: 15279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 89 - - uid: 424 + rot: 3.141592653589793 rad + pos: 47.5,27.5 + parent: 2 + - uid: 15280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,0.5 - parent: 89 - - uid: 425 + rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 2 + - uid: 15281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,3.5 - parent: 89 - - uid: 442 + pos: 35.5,36.5 + parent: 2 + - uid: 15282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,10.5 - parent: 89 - - uid: 443 + pos: 15.5,-26.5 + parent: 2 + - uid: 15283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,11.5 - parent: 89 - - uid: 444 + pos: 16.5,-26.5 + parent: 2 + - uid: 15284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,12.5 - parent: 89 - - uid: 445 + pos: 17.5,-26.5 + parent: 2 + - uid: 15285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,13.5 - parent: 89 - - uid: 446 + pos: 17.5,-25.5 + parent: 2 + - uid: 15286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 - parent: 89 - - uid: 447 + pos: 17.5,-24.5 + parent: 2 + - uid: 15287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 89 - - uid: 448 + pos: 17.5,-23.5 + parent: 2 + - uid: 15288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 - parent: 89 - - uid: 449 + pos: 19.5,-23.5 + parent: 2 + - uid: 15289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 89 - - uid: 450 + pos: 20.5,-23.5 + parent: 2 + - uid: 15290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,16.5 - parent: 89 - - uid: 451 + pos: 20.5,-22.5 + parent: 2 + - uid: 15291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,16.5 - parent: 89 - - uid: 452 + rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - uid: 15292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,16.5 - parent: 89 - - uid: 453 + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - uid: 15293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,16.5 - parent: 89 - - uid: 454 + pos: 49.5,18.5 + parent: 2 + - uid: 15294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,16.5 - parent: 89 - - uid: 455 + pos: 49.5,17.5 + parent: 2 + - uid: 15295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 89 - - uid: 456 + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - uid: 15296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 89 - - uid: 457 + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 15297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 89 - - uid: 469 + rot: 1.5707963267948966 rad + pos: 12.5,47.5 + parent: 2 + - uid: 15298 components: - type: Transform - pos: 12.5,41.5 - parent: 89 - - uid: 476 + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 2 + - uid: 15299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 493 + rot: 1.5707963267948966 rad + pos: 16.5,45.5 + parent: 2 + - uid: 15300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - uid: 495 + pos: 53.5,-38.5 + parent: 2 + - uid: 15301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - uid: 496 + pos: 38.5,-38.5 + parent: 2 + - uid: 15302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 89 - - uid: 497 + pos: 55.5,-37.5 + parent: 2 + - uid: 15303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 89 - - uid: 498 + pos: 51.5,-38.5 + parent: 2 + - uid: 15304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 - parent: 89 - - uid: 615 + pos: 52.5,-38.5 + parent: 2 + - uid: 15305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-12.5 - parent: 89 - - uid: 617 + pos: 49.5,-38.5 + parent: 2 + - uid: 15306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-12.5 - parent: 89 - - uid: 619 + pos: 50.5,-38.5 + parent: 2 + - uid: 15307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-12.5 - parent: 89 - - uid: 621 + pos: 44.5,-38.5 + parent: 2 + - uid: 15308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-12.5 - parent: 89 - - uid: 628 + pos: 48.5,-38.5 + parent: 2 + - uid: 15309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-19.5 - parent: 89 - - uid: 645 + pos: 42.5,-38.5 + parent: 2 + - uid: 15310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 646 + pos: 43.5,-38.5 + parent: 2 + - uid: 15311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 647 + pos: 40.5,-38.5 + parent: 2 + - uid: 15312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 648 + pos: 39.5,-38.5 + parent: 2 + - uid: 15313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 649 + pos: 55.5,-38.5 + parent: 2 + - uid: 15314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 650 + pos: 46.5,-38.5 + parent: 2 + - uid: 15315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 651 + pos: 45.5,-38.5 + parent: 2 + - uid: 15316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 652 + pos: 38.5,-37.5 + parent: 2 + - uid: 15317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 653 + pos: 53.5,-37.5 + parent: 2 + - uid: 15318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 654 + pos: 41.5,-38.5 + parent: 2 + - uid: 15319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 660 + pos: 38.5,-36.5 + parent: 2 + - uid: 15320 components: - type: Transform - pos: -109.5,-20.5 - parent: 89 - - uid: 661 + pos: 37.5,-35.5 + parent: 2 + - uid: 15321 components: - type: Transform - pos: -108.5,-20.5 - parent: 89 - - uid: 662 + pos: 36.5,-34.5 + parent: 2 + - uid: 15322 components: - type: Transform - pos: -107.5,-20.5 - parent: 89 - - uid: 666 + pos: 36.5,-33.5 + parent: 2 + - uid: 15323 components: - type: Transform - pos: -106.5,-15.5 - parent: 89 - - uid: 667 + pos: 36.5,-32.5 + parent: 2 + - uid: 15324 components: - type: Transform - pos: -106.5,-14.5 - parent: 89 - - uid: 837 + pos: 36.5,-31.5 + parent: 2 + - uid: 15325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-14.5 - parent: 89 - - uid: 849 + pos: 37.5,-31.5 + parent: 2 + - uid: 15326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-17.5 - parent: 89 - - uid: 851 + pos: 37.5,-30.5 + parent: 2 + - uid: 15327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-15.5 - parent: 89 - - uid: 856 + pos: 37.5,-29.5 + parent: 2 + - uid: 15328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-16.5 - parent: 89 - - uid: 863 + pos: 56.5,-38.5 + parent: 2 + - uid: 15329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-18.5 - parent: 89 - - uid: 869 + pos: 57.5,-38.5 + parent: 2 + - uid: 15330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-22.5 - parent: 89 - - uid: 874 + pos: 58.5,-38.5 + parent: 2 + - uid: 15331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-22.5 - parent: 89 - - uid: 898 + pos: 59.5,-37.5 + parent: 2 + - uid: 15332 components: - type: Transform - pos: -101.5,-6.5 - parent: 89 - - uid: 899 + pos: 60.5,-37.5 + parent: 2 + - uid: 15333 components: - type: Transform - pos: -100.5,-6.5 - parent: 89 - - uid: 900 + pos: 61.5,-37.5 + parent: 2 + - uid: 15334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-10.5 - parent: 89 - - uid: 901 + pos: 62.5,-37.5 + parent: 2 + - uid: 15335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-9.5 - parent: 89 - - uid: 902 + pos: 62.5,-36.5 + parent: 2 + - uid: 15336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-8.5 - parent: 89 - - uid: 904 + pos: 62.5,-35.5 + parent: 2 + - uid: 15337 components: - type: Transform - pos: -106.5,7.5 - parent: 89 - - uid: 905 + pos: 62.5,-34.5 + parent: 2 + - uid: 15338 components: - type: Transform - pos: -106.5,8.5 - parent: 89 - - uid: 906 + pos: 62.5,-33.5 + parent: 2 + - uid: 15339 components: - type: Transform - pos: -106.5,9.5 - parent: 89 - - uid: 907 + pos: 62.5,-32.5 + parent: 2 + - uid: 15340 components: - type: Transform - pos: -105.5,6.5 - parent: 89 - - uid: 908 + pos: 62.5,-31.5 + parent: 2 + - uid: 15341 components: - type: Transform - pos: -104.5,6.5 - parent: 89 - - uid: 909 + pos: 62.5,-30.5 + parent: 2 + - uid: 15342 components: - type: Transform - pos: -103.5,6.5 - parent: 89 - - uid: 925 + pos: 62.5,-29.5 + parent: 2 + - uid: 15343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 - - uid: 962 + pos: 63.5,-28.5 + parent: 2 + - uid: 15344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-6.5 - parent: 89 - - uid: 1005 + pos: 63.5,-27.5 + parent: 2 + - uid: 15345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 89 - - uid: 1046 + pos: 63.5,-26.5 + parent: 2 + - uid: 15346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 89 - - uid: 1051 + pos: 63.5,-25.5 + parent: 2 + - uid: 15347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 89 - - uid: 1147 + pos: 63.5,-24.5 + parent: 2 + - uid: 15348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 1196 + pos: 63.5,-23.5 + parent: 2 + - uid: 15349 components: - type: Transform - pos: -12.5,10.5 - parent: 89 - - uid: 1210 + pos: 63.5,-22.5 + parent: 2 + - uid: 15350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,32.5 - parent: 89 - - uid: 1259 + pos: 62.5,-22.5 + parent: 2 + - uid: 15351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1291 + pos: 62.5,-21.5 + parent: 2 + - uid: 15352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 89 - - uid: 1318 + pos: 62.5,-20.5 + parent: 2 + - uid: 15353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1319 + pos: 62.5,-19.5 + parent: 2 + - uid: 15354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1320 + pos: 61.5,-18.5 + parent: 2 + - uid: 15355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1443 + pos: 60.5,-18.5 + parent: 2 + - uid: 15356 components: - type: Transform - pos: -8.5,11.5 - parent: 89 - - uid: 1479 + pos: 60.5,-17.5 + parent: 2 + - uid: 15357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,-17.5 - parent: 89 - - uid: 1603 + pos: 60.5,-16.5 + parent: 2 + - uid: 15358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-4.5 - parent: 89 - - uid: 1799 + pos: 59.5,-16.5 + parent: 2 + - uid: 15359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 89 - - uid: 1859 + pos: 42.5,-37.5 + parent: 2 + - uid: 15360 components: - type: Transform - pos: -9.5,10.5 - parent: 89 - - uid: 1910 + pos: 42.5,-36.5 + parent: 2 + - uid: 15361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 2029 + pos: 42.5,-35.5 + parent: 2 + - uid: 15362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 2030 + pos: 57.5,-37.5 + parent: 2 + - uid: 15363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 2031 + pos: 57.5,-36.5 + parent: 2 + - uid: 15364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 2191 + pos: 57.5,-35.5 + parent: 2 + - uid: 15365 components: - type: Transform - pos: 29.5,9.5 - parent: 89 - - uid: 2193 + pos: 50.5,-35.5 + parent: 2 + - uid: 15366 components: - type: Transform - pos: 29.5,5.5 - parent: 89 - - uid: 2197 + pos: 50.5,-37.5 + parent: 2 + - uid: 15367 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 89 - - uid: 2201 + pos: 59.5,-22.5 + parent: 2 + - uid: 15368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 89 - - uid: 2220 + pos: 48.5,-36.5 + parent: 2 + - uid: 15369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-25.5 - parent: 89 - - uid: 2271 + pos: 48.5,-35.5 + parent: 2 + - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-24.5 - parent: 89 - - uid: 2272 + pos: 60.5,-32.5 + parent: 2 + - uid: 15371 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-23.5 - parent: 89 - - uid: 2275 + pos: 61.5,-32.5 + parent: 2 + - uid: 15372 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2276 + pos: 60.5,-22.5 + parent: 2 + - uid: 15373 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2277 + pos: 61.5,-22.5 + parent: 2 + - uid: 15374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2283 + rot: 3.141592653589793 rad + pos: -123.5,20.5 + parent: 2 + - uid: 15375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 - parent: 89 - - uid: 2284 + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 15376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-26.5 - parent: 89 - - uid: 2285 + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + - uid: 15377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-26.5 - parent: 89 - - uid: 2306 + pos: -76.5,22.5 + parent: 2 + - uid: 15378 components: - type: Transform - pos: 34.5,9.5 - parent: 89 - - uid: 2307 + pos: -74.5,22.5 + parent: 2 + - uid: 15379 components: - type: Transform - pos: 36.5,9.5 - parent: 89 - - uid: 2331 + pos: -50.5,-5.5 + parent: 2 + - uid: 15380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-20.5 - parent: 89 - - uid: 2334 + pos: -114.5,-21.5 + parent: 2 + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2335 + rot: 3.141592653589793 rad + pos: -98.5,28.5 + parent: 2 + - uid: 15382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2336 + rot: 3.141592653589793 rad + pos: -97.5,28.5 + parent: 2 + - uid: 15383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2361 + pos: -108.5,30.5 + parent: 2 + - uid: 15384 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2392 + pos: -110.5,-16.5 + parent: 2 + - uid: 15385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2532 + pos: -117.5,28.5 + parent: 2 + - uid: 15386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 2545 + rot: 3.141592653589793 rad + pos: -96.5,28.5 + parent: 2 + - uid: 15387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 2546 + pos: -110.5,-18.5 + parent: 2 + - uid: 15388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 2547 + pos: -110.5,-17.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 15390 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 2787 + pos: -116.5,-13.5 + parent: 2 + - uid: 15391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-3.5 - parent: 89 - - uid: 2873 + pos: -80.5,-27.5 + parent: 2 + - uid: 15392 components: - type: Transform - pos: 1.5,-11.5 - parent: 89 - - uid: 2874 + pos: -95.5,-11.5 + parent: 2 + - uid: 15393 components: - type: Transform - pos: 4.5,-9.5 - parent: 89 - - uid: 2875 + pos: -84.5,-20.5 + parent: 2 + - uid: 15394 components: - type: Transform - pos: 6.5,-10.5 - parent: 89 - - uid: 2876 + pos: -85.5,-20.5 + parent: 2 + - uid: 15395 components: - type: Transform - pos: 6.5,-12.5 - parent: 89 - - uid: 2877 + pos: -110.5,-24.5 + parent: 2 + - uid: 15396 components: - type: Transform - pos: 8.5,-7.5 - parent: 89 - - uid: 2878 + rot: 3.141592653589793 rad + pos: -102.5,-20.5 + parent: 2 + - uid: 15397 components: - type: Transform - pos: 7.5,-7.5 - parent: 89 - - uid: 2879 + rot: -1.5707963267948966 rad + pos: -133.5,0.5 + parent: 2 + - uid: 15398 components: - type: Transform - pos: 12.5,-4.5 - parent: 89 - - uid: 2880 + pos: -53.5,-20.5 + parent: 2 + - uid: 15399 components: - type: Transform - pos: 13.5,-4.5 - parent: 89 - - uid: 2881 + pos: -120.5,22.5 + parent: 2 + - uid: 15400 components: - type: Transform - pos: 14.5,-4.5 - parent: 89 - - uid: 2882 + pos: -114.5,-11.5 + parent: 2 + - uid: 15401 components: - type: Transform - pos: 15.5,-4.5 - parent: 89 - - uid: 2883 + pos: -116.5,-12.5 + parent: 2 + - uid: 15402 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 - - uid: 2884 + pos: -121.5,-14.5 + parent: 2 + - uid: 15403 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 - - uid: 2885 + rot: -1.5707963267948966 rad + pos: -134.5,0.5 + parent: 2 + - uid: 15404 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 - - uid: 2886 + rot: 3.141592653589793 rad + pos: -51.5,-18.5 + parent: 2 + - uid: 15405 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 - - uid: 2889 + pos: -67.5,48.5 + parent: 2 + - uid: 15406 components: - type: Transform - pos: 25.5,-7.5 - parent: 89 - - uid: 2890 + pos: -63.5,48.5 + parent: 2 + - uid: 15407 components: - type: Transform - pos: 28.5,-7.5 - parent: 89 - - uid: 2891 + rot: 1.5707963267948966 rad + pos: -61.5,-20.5 + parent: 2 + - uid: 15408 components: - type: Transform - pos: 29.5,-5.5 - parent: 89 - - uid: 2892 + rot: 1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - uid: 15409 components: - type: Transform - pos: 29.5,-6.5 - parent: 89 - - uid: 2893 + pos: -86.5,-27.5 + parent: 2 + - uid: 15410 components: - type: Transform - pos: 32.5,-4.5 - parent: 89 - - uid: 2894 + pos: -93.5,-28.5 + parent: 2 + - uid: 15411 components: - type: Transform - pos: 33.5,-4.5 - parent: 89 - - uid: 2895 + pos: -95.5,-28.5 + parent: 2 + - uid: 15412 components: - type: Transform - pos: 34.5,-4.5 - parent: 89 - - uid: 2896 + pos: -97.5,-27.5 + parent: 2 + - uid: 15413 components: - type: Transform - pos: 35.5,-4.5 - parent: 89 - - uid: 3116 + pos: -102.5,-27.5 + parent: 2 + - uid: 15414 components: - type: Transform - pos: 12.5,-16.5 - parent: 89 - - uid: 3147 + pos: -103.5,-23.5 + parent: 2 + - uid: 15415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 89 - - uid: 3148 + pos: -103.5,-24.5 + parent: 2 + - uid: 15416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 - parent: 89 - - uid: 3149 + pos: -114.5,-23.5 + parent: 2 + - uid: 15417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 89 - - uid: 3152 + pos: -121.5,-18.5 + parent: 2 + - uid: 15418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-7.5 - parent: 89 - - uid: 3153 + pos: -125.5,-15.5 + parent: 2 + - uid: 15419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 89 - - uid: 3154 + pos: -125.5,-14.5 + parent: 2 + - uid: 15420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 89 - - uid: 3155 + pos: -135.5,-0.5 + parent: 2 + - uid: 15421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 89 - - uid: 3156 + pos: -96.5,-11.5 + parent: 2 + - uid: 15422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 89 - - uid: 3157 + pos: -90.5,-10.5 + parent: 2 + - uid: 15423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 89 - - uid: 3158 + pos: -91.5,-10.5 + parent: 2 + - uid: 15424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 89 - - uid: 3244 + pos: -135.5,-7.5 + parent: 2 + - uid: 15425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,8.5 - parent: 89 - - uid: 3245 + pos: -135.5,-6.5 + parent: 2 + - uid: 15426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,9.5 - parent: 89 - - uid: 3247 + pos: -135.5,-1.5 + parent: 2 + - uid: 15427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,11.5 - parent: 89 - - uid: 3248 + pos: -135.5,-8.5 + parent: 2 + - uid: 15428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,12.5 - parent: 89 - - uid: 3249 + rot: -1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - uid: 15429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,13.5 - parent: 89 - - uid: 3250 + rot: -1.5707963267948966 rad + pos: -89.5,43.5 + parent: 2 + - uid: 15430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,14.5 - parent: 89 - - uid: 3306 + rot: -1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - uid: 15431 components: - type: Transform - pos: 40.5,34.5 - parent: 89 - - uid: 3317 + rot: -1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - uid: 15432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,1.5 - parent: 89 - - uid: 3505 + rot: -1.5707963267948966 rad + pos: -89.5,39.5 + parent: 2 + - uid: 15433 components: - type: Transform - pos: -13.5,-10.5 - parent: 89 - - uid: 3542 + rot: -1.5707963267948966 rad + pos: -89.5,37.5 + parent: 2 + - uid: 15434 components: - type: Transform - pos: -7.5,-6.5 - parent: 89 - - uid: 3861 + rot: -1.5707963267948966 rad + pos: -89.5,36.5 + parent: 2 + - uid: 15435 components: - type: Transform - pos: -4.5,-6.5 - parent: 89 - - uid: 3862 + rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 2 + - uid: 15436 components: - type: Transform - pos: -4.5,-7.5 - parent: 89 - - uid: 3863 + rot: -1.5707963267948966 rad + pos: -89.5,33.5 + parent: 2 + - uid: 15437 components: - type: Transform - pos: -4.5,-8.5 - parent: 89 - - uid: 3864 + pos: -89.5,28.5 + parent: 2 + - uid: 15438 components: - type: Transform - pos: -4.5,-9.5 - parent: 89 - - uid: 4000 + pos: -47.5,31.5 + parent: 2 + - uid: 15439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,12.5 - parent: 89 - - uid: 4035 + pos: -48.5,29.5 + parent: 2 + - uid: 15440 components: - type: Transform - pos: 21.5,-19.5 - parent: 89 - - uid: 4287 + pos: -49.5,22.5 + parent: 2 + - uid: 15441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 89 - - uid: 4320 + pos: -51.5,24.5 + parent: 2 + - uid: 15442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 89 - - uid: 4445 + pos: -89.5,-9.5 + parent: 2 + - uid: 15443 components: - type: Transform - pos: -48.5,-5.5 - parent: 89 - - uid: 4487 + pos: -89.5,-8.5 + parent: 2 + - uid: 15444 components: - type: Transform - pos: -66.5,-18.5 - parent: 89 - - uid: 4488 + pos: -89.5,-7.5 + parent: 2 + - uid: 15445 components: - type: Transform - pos: -67.5,-18.5 - parent: 89 - - uid: 4491 + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - uid: 15446 components: - type: Transform - pos: -71.5,-18.5 - parent: 89 - - uid: 4493 + rot: 3.141592653589793 rad + pos: 49.5,27.5 + parent: 2 + - uid: 15447 components: - type: Transform - pos: -72.5,-18.5 - parent: 89 - - uid: 4494 + rot: 3.141592653589793 rad + pos: 37.5,31.5 + parent: 2 + - uid: 15448 components: - type: Transform - pos: -68.5,-11.5 - parent: 89 - - uid: 4524 + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - uid: 15449 components: - type: Transform - pos: 9.5,-22.5 - parent: 89 - - uid: 4534 + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 15450 components: - type: Transform - pos: -62.5,2.5 - parent: 89 - - uid: 4535 + pos: -120.5,27.5 + parent: 2 + - uid: 15451 components: - type: Transform - pos: -63.5,2.5 - parent: 89 - - uid: 4538 + pos: -120.5,28.5 + parent: 2 + - uid: 15452 components: - type: Transform - pos: -66.5,2.5 - parent: 89 - - uid: 4540 + pos: -119.5,28.5 + parent: 2 + - uid: 15453 components: - type: Transform - pos: -65.5,2.5 - parent: 89 - - uid: 4707 + rot: 3.141592653589793 rad + pos: -74.5,-23.5 + parent: 2 + - uid: 15454 components: - type: Transform - pos: -48.5,-18.5 - parent: 89 - - uid: 4708 + rot: 3.141592653589793 rad + pos: -94.5,-29.5 + parent: 2 + - uid: 15455 components: - type: Transform - pos: -49.5,-16.5 - parent: 89 - - uid: 4709 + rot: 3.141592653589793 rad + pos: -94.5,-28.5 + parent: 2 + - uid: 15456 components: - type: Transform - pos: -68.5,-12.5 - parent: 89 - - uid: 4715 + rot: 3.141592653589793 rad + pos: -109.5,-25.5 + parent: 2 + - uid: 15457 components: - type: Transform - pos: -60.5,2.5 - parent: 89 - - uid: 4716 + rot: 3.141592653589793 rad + pos: -107.5,-25.5 + parent: 2 + - uid: 15458 components: - type: Transform - pos: -59.5,2.5 - parent: 89 - - uid: 4732 + rot: 3.141592653589793 rad + pos: -111.5,-24.5 + parent: 2 + - uid: 15459 components: - type: Transform - pos: -38.5,-0.5 - parent: 89 - - uid: 4782 + rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,28.5 - parent: 89 - - uid: 4803 + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - uid: 15461 components: - type: Transform - pos: -18.5,0.5 - parent: 89 - - uid: 4805 + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15462 components: - type: Transform - pos: -18.5,-9.5 - parent: 89 - - uid: 4806 + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15463 components: - type: Transform - pos: -17.5,-9.5 - parent: 89 - - uid: 4807 + rot: 3.141592653589793 rad + pos: -37.5,-21.5 + parent: 2 + - uid: 15464 components: - type: Transform - pos: -21.5,-9.5 - parent: 89 - - uid: 4808 + rot: 3.141592653589793 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 15465 components: - type: Transform - pos: -24.5,-9.5 - parent: 89 - - uid: 4809 + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 15466 components: - type: Transform - pos: -25.5,-9.5 - parent: 89 - - uid: 4810 + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 15467 components: - type: Transform - pos: -26.5,-9.5 - parent: 89 - - uid: 4870 + rot: 3.141592653589793 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 15468 components: - type: Transform - pos: -48.5,-14.5 - parent: 89 - - uid: 4894 + rot: 3.141592653589793 rad + pos: -33.5,-21.5 + parent: 2 + - uid: 15469 components: - type: Transform - pos: -68.5,-16.5 - parent: 89 - - uid: 5049 + rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 15470 components: - type: Transform - pos: -64.5,-3.5 - parent: 89 - - uid: 5050 + rot: 3.141592653589793 rad + pos: -30.5,-26.5 + parent: 2 + - uid: 15471 components: - type: Transform - pos: -61.5,-3.5 - parent: 89 - - uid: 5192 + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 15472 components: - type: Transform - pos: -57.5,-8.5 - parent: 89 - - uid: 5193 + rot: 3.141592653589793 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 15473 components: - type: Transform - pos: -57.5,-9.5 - parent: 89 - - uid: 5272 + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 2 + - uid: 15474 components: - type: Transform - pos: -51.5,2.5 - parent: 89 - - uid: 5273 + rot: 3.141592653589793 rad + pos: -21.5,-31.5 + parent: 2 + - uid: 15475 components: - type: Transform - pos: -48.5,2.5 - parent: 89 - - uid: 5314 + rot: 3.141592653589793 rad + pos: -17.5,-33.5 + parent: 2 + - uid: 15476 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 89 - - uid: 5405 + pos: -16.5,-33.5 + parent: 2 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 89 - - uid: 5420 + pos: -17.5,-39.5 + parent: 2 + - uid: 15478 components: - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 6026 + rot: 3.141592653589793 rad + pos: -16.5,-39.5 + parent: 2 + - uid: 15479 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 89 - - uid: 6055 + pos: -16.5,-40.5 + parent: 2 + - uid: 15480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 89 - - uid: 6061 + rot: 3.141592653589793 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 15481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 89 - - uid: 6062 + rot: 3.141592653589793 rad + pos: -29.5,-32.5 + parent: 2 + - uid: 15482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 89 - - uid: 6063 + rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 15483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 89 - - uid: 6069 + rot: 3.141592653589793 rad + pos: -68.5,-21.5 + parent: 2 + - uid: 15484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 89 - - uid: 6070 + rot: 3.141592653589793 rad + pos: -75.5,-23.5 + parent: 2 + - uid: 15485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 89 - - uid: 6071 + rot: 3.141592653589793 rad + pos: -80.5,-28.5 + parent: 2 + - uid: 15486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 89 - - uid: 6072 + rot: 3.141592653589793 rad + pos: -78.5,-29.5 + parent: 2 + - uid: 15487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 89 - - uid: 6076 + rot: 3.141592653589793 rad + pos: -78.5,-28.5 + parent: 2 + - uid: 15488 components: - type: Transform - pos: -43.5,2.5 - parent: 89 - - uid: 6134 + rot: 3.141592653589793 rad + pos: -98.5,-28.5 + parent: 2 + - uid: 15489 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,22.5 - parent: 89 - - uid: 6184 + pos: -100.5,-28.5 + parent: 2 + - uid: 15490 components: - type: Transform - pos: -21.5,6.5 - parent: 89 - - uid: 6197 + rot: 3.141592653589793 rad + pos: -98.5,-29.5 + parent: 2 + - uid: 15491 components: - type: Transform - pos: -19.5,4.5 - parent: 89 - - uid: 6198 + rot: 3.141592653589793 rad + pos: -96.5,-29.5 + parent: 2 + - uid: 15492 components: - type: Transform - pos: -18.5,4.5 - parent: 89 - - uid: 6199 + rot: 3.141592653589793 rad + pos: -129.5,-16.5 + parent: 2 + - uid: 15493 components: - type: Transform - pos: -17.5,4.5 - parent: 89 - - uid: 6200 + rot: 3.141592653589793 rad + pos: -96.5,-28.5 + parent: 2 + - uid: 15494 components: - type: Transform - pos: -16.5,4.5 - parent: 89 - - uid: 6201 + rot: 3.141592653589793 rad + pos: -92.5,-28.5 + parent: 2 + - uid: 15495 components: - type: Transform - pos: -15.5,6.5 - parent: 89 - - uid: 6202 + rot: 3.141592653589793 rad + pos: -92.5,-29.5 + parent: 2 + - uid: 15496 components: - type: Transform - pos: -15.5,8.5 - parent: 89 - - uid: 6203 + rot: 3.141592653589793 rad + pos: -90.5,-28.5 + parent: 2 + - uid: 15497 components: - type: Transform - pos: -15.5,9.5 - parent: 89 - - uid: 6212 + rot: 3.141592653589793 rad + pos: -90.5,-29.5 + parent: 2 + - uid: 15498 components: - type: Transform - pos: -21.5,5.5 - parent: 89 - - uid: 6297 + rot: 3.141592653589793 rad + pos: -91.5,-28.5 + parent: 2 + - uid: 15499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 89 - - uid: 6298 + rot: 3.141592653589793 rad + pos: -88.5,-28.5 + parent: 2 + - uid: 15500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 89 - - uid: 6319 + rot: 3.141592653589793 rad + pos: -88.5,-29.5 + parent: 2 + - uid: 15501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,4.5 - parent: 89 - - uid: 6342 + rot: 3.141592653589793 rad + pos: -88.5,-27.5 + parent: 2 + - uid: 15502 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 89 - - uid: 6456 + pos: -86.5,-29.5 + parent: 2 + - uid: 15503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,29.5 - parent: 89 - - uid: 6467 + rot: 3.141592653589793 rad + pos: -86.5,-28.5 + parent: 2 + - uid: 15504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,29.5 - parent: 89 - - uid: 6469 + rot: 3.141592653589793 rad + pos: -75.5,-21.5 + parent: 2 + - uid: 15505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,36.5 - parent: 89 - - uid: 6472 + rot: 3.141592653589793 rad + pos: -74.5,-21.5 + parent: 2 + - uid: 15506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,31.5 - parent: 89 - - uid: 6474 + rot: 3.141592653589793 rad + pos: -103.5,-25.5 + parent: 2 + - uid: 15507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,31.5 - parent: 89 - - uid: 6546 + rot: 3.141592653589793 rad + pos: -102.5,-28.5 + parent: 2 + - uid: 15508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,36.5 - parent: 89 - - uid: 6625 + rot: 3.141592653589793 rad + pos: -100.5,-29.5 + parent: 2 + - uid: 15509 components: - type: Transform - pos: -45.5,2.5 - parent: 89 - - uid: 6629 + rot: 3.141592653589793 rad + pos: -104.5,-27.5 + parent: 2 + - uid: 15510 components: - type: Transform - pos: -42.5,0.5 - parent: 89 - - uid: 6790 + rot: 3.141592653589793 rad + pos: -104.5,-25.5 + parent: 2 + - uid: 15511 components: - type: Transform - pos: -42.5,-1.5 - parent: 89 - - uid: 7070 + rot: 3.141592653589793 rad + pos: -103.5,-27.5 + parent: 2 + - uid: 15512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,42.5 - parent: 89 - - uid: 7072 + rot: 3.141592653589793 rad + pos: -76.5,-28.5 + parent: 2 + - uid: 15513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,43.5 - parent: 89 - - uid: 7168 + rot: 3.141592653589793 rad + pos: -131.5,-16.5 + parent: 2 + - uid: 15514 components: - type: Transform - pos: -147.5,5.5 - parent: 89 - - uid: 7250 + rot: 3.141592653589793 rad + pos: -76.5,-29.5 + parent: 2 + - uid: 15515 components: - type: Transform - pos: -90.5,3.5 - parent: 89 - - uid: 7251 + rot: 3.141592653589793 rad + pos: -76.5,-29.5 + parent: 2 + - uid: 15516 components: - type: Transform - pos: -90.5,4.5 - parent: 89 - - uid: 7279 + rot: 3.141592653589793 rad + pos: -75.5,-27.5 + parent: 2 + - uid: 15517 components: - type: Transform - pos: -83.5,14.5 - parent: 89 - - uid: 7284 + rot: 3.141592653589793 rad + pos: -74.5,-27.5 + parent: 2 + - uid: 15518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7285 + rot: 3.141592653589793 rad + pos: -74.5,-25.5 + parent: 2 + - uid: 15519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-14.5 - parent: 89 - - uid: 7375 + rot: 3.141592653589793 rad + pos: -75.5,-25.5 + parent: 2 + - uid: 15520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - uid: 7377 + rot: 3.141592653589793 rad + pos: -82.5,-29.5 + parent: 2 + - uid: 15521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - uid: 7378 + rot: 3.141592653589793 rad + pos: -82.5,-28.5 + parent: 2 + - uid: 15522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-12.5 - parent: 89 - - uid: 7480 + rot: 3.141592653589793 rad + pos: -84.5,-29.5 + parent: 2 + - uid: 15523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7502 + rot: 3.141592653589793 rad + pos: -84.5,-28.5 + parent: 2 + - uid: 15524 components: - type: Transform - pos: -106.5,22.5 - parent: 89 - - uid: 7507 + rot: 3.141592653589793 rad + pos: -102.5,-29.5 + parent: 2 + - uid: 15525 components: - type: Transform - pos: -111.5,22.5 - parent: 89 - - uid: 7556 + rot: 3.141592653589793 rad + pos: -119.5,-22.5 + parent: 2 + - uid: 15526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,2.5 - parent: 89 - - uid: 7584 + rot: 3.141592653589793 rad + pos: -117.5,-23.5 + parent: 2 + - uid: 15527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 89 - - uid: 7632 + rot: 3.141592653589793 rad + pos: -111.5,-25.5 + parent: 2 + - uid: 15528 components: - type: Transform - pos: -110.5,22.5 - parent: 89 - - uid: 7678 + rot: 3.141592653589793 rad + pos: -113.5,-23.5 + parent: 2 + - uid: 15529 components: - type: Transform - pos: -100.5,28.5 - parent: 89 - - uid: 7731 + rot: 3.141592653589793 rad + pos: -115.5,-24.5 + parent: 2 + - uid: 15530 components: - type: Transform - pos: -105.5,22.5 - parent: 89 - - uid: 7735 + rot: 3.141592653589793 rad + pos: -117.5,-24.5 + parent: 2 + - uid: 15531 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,11.5 - parent: 89 - - uid: 7775 + pos: -119.5,-23.5 + parent: 2 + - uid: 15532 components: - type: Transform - pos: -2.5,47.5 - parent: 89 - - uid: 7776 + rot: 3.141592653589793 rad + pos: -115.5,-23.5 + parent: 2 + - uid: 15533 components: - type: Transform - pos: -3.5,47.5 - parent: 89 - - uid: 7777 + rot: 3.141592653589793 rad + pos: -113.5,-24.5 + parent: 2 + - uid: 15534 components: - type: Transform - pos: -4.5,47.5 - parent: 89 - - uid: 7778 + rot: 3.141592653589793 rad + pos: -66.5,-21.5 + parent: 2 + - uid: 15535 components: - type: Transform - pos: -0.5,47.5 - parent: 89 - - uid: 7779 + rot: 3.141592653589793 rad + pos: -66.5,-20.5 + parent: 2 + - uid: 15536 components: - type: Transform - pos: 0.5,47.5 - parent: 89 - - uid: 7780 + rot: 3.141592653589793 rad + pos: -70.5,-21.5 + parent: 2 + - uid: 15537 components: - type: Transform - pos: -7.5,47.5 - parent: 89 - - uid: 7781 + rot: 3.141592653589793 rad + pos: -70.5,-20.5 + parent: 2 + - uid: 15538 components: - type: Transform - pos: -6.5,47.5 - parent: 89 - - uid: 7947 + rot: 3.141592653589793 rad + pos: -68.5,-20.5 + parent: 2 + - uid: 15539 components: - type: Transform - pos: -58.5,20.5 - parent: 89 - - uid: 7977 + rot: 3.141592653589793 rad + pos: -72.5,-21.5 + parent: 2 + - uid: 15540 components: - type: Transform - pos: -70.5,12.5 - parent: 89 - - uid: 7978 + rot: 3.141592653589793 rad + pos: -72.5,-20.5 + parent: 2 + - uid: 15541 components: - type: Transform - pos: -70.5,13.5 - parent: 89 - - uid: 7979 + rot: 3.141592653589793 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 15542 components: - type: Transform - pos: -70.5,14.5 - parent: 89 - - uid: 7980 + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 15543 components: - type: Transform - pos: -64.5,12.5 - parent: 89 - - uid: 7981 + rot: 3.141592653589793 rad + pos: -31.5,-26.5 + parent: 2 + - uid: 15544 components: - type: Transform - pos: -63.5,12.5 - parent: 89 - - uid: 7982 + rot: 3.141592653589793 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 15545 components: - type: Transform - pos: -62.5,12.5 - parent: 89 - - uid: 7983 + rot: 3.141592653589793 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 15546 components: - type: Transform - pos: -61.5,10.5 - parent: 89 - - uid: 7984 + rot: 3.141592653589793 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 15547 components: - type: Transform - pos: -61.5,9.5 - parent: 89 - - uid: 7985 + rot: 3.141592653589793 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 15548 components: - type: Transform - pos: -61.5,7.5 - parent: 89 - - uid: 7986 + rot: 3.141592653589793 rad + pos: -23.5,-31.5 + parent: 2 + - uid: 15549 components: - type: Transform - pos: -53.5,15.5 - parent: 89 - - uid: 7987 + rot: 3.141592653589793 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 15550 components: - type: Transform - pos: -50.5,14.5 - parent: 89 - - uid: 7988 + rot: 3.141592653589793 rad + pos: -25.5,-31.5 + parent: 2 + - uid: 15551 components: - type: Transform - pos: -50.5,13.5 - parent: 89 - - uid: 8029 + rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 15552 components: - type: Transform - pos: -1.5,36.5 - parent: 89 - - uid: 8116 + rot: 3.141592653589793 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 15553 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 8165 + rot: 3.141592653589793 rad + pos: -27.5,-31.5 + parent: 2 + - uid: 15554 components: - type: Transform - pos: -9.5,36.5 - parent: 89 - - uid: 8199 + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 15555 components: - type: Transform - pos: -15.5,25.5 - parent: 89 - - uid: 8346 + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 15556 components: - type: Transform - pos: -58.5,22.5 - parent: 89 - - uid: 8347 + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 15557 components: - type: Transform - pos: -59.5,23.5 - parent: 89 - - uid: 8348 + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 15558 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8349 + rot: 3.141592653589793 rad + pos: -107.5,-24.5 + parent: 2 + - uid: 15559 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8384 + rot: 3.141592653589793 rad + pos: -123.5,-21.5 + parent: 2 + - uid: 15560 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - uid: 8385 + rot: 3.141592653589793 rad + pos: -122.5,-21.5 + parent: 2 + - uid: 15561 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - uid: 8386 + rot: 3.141592653589793 rad + pos: -121.5,-22.5 + parent: 2 + - uid: 15562 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - uid: 8408 + rot: 3.141592653589793 rad + pos: -121.5,-23.5 + parent: 2 + - uid: 15563 components: - type: Transform - pos: -104.5,22.5 - parent: 89 - - uid: 8475 + rot: 3.141592653589793 rad + pos: -123.5,-19.5 + parent: 2 + - uid: 15564 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 89 - - uid: 8512 + pos: -122.5,-19.5 + parent: 2 + - uid: 15565 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8513 + rot: 3.141592653589793 rad + pos: -80.5,-29.5 + parent: 2 + - uid: 15566 components: - type: Transform - pos: -128.5,3.5 - parent: 89 - - uid: 8514 + rot: 3.141592653589793 rad + pos: -133.5,-16.5 + parent: 2 + - uid: 15567 components: - type: Transform - pos: -128.5,4.5 - parent: 89 - - uid: 8577 + rot: 3.141592653589793 rad + pos: -31.5,-22.5 + parent: 2 + - uid: 15568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,1.5 - parent: 89 - - uid: 8582 + pos: -120.5,16.5 + parent: 2 + - uid: 15569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,6.5 - parent: 89 - - uid: 8600 + pos: 31.5,23.5 + parent: 2 + - uid: 23827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,3.5 - parent: 89 - - uid: 8661 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23711 + - uid: 23828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,5.5 - parent: 89 - - uid: 8664 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23711 + - uid: 23829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,2.5 - parent: 89 - - uid: 8681 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 23711 + - uid: 23830 components: - type: Transform - pos: -123.5,-14.5 - parent: 89 - - uid: 8683 + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23711 + - uid: 23831 components: - type: Transform - pos: -124.5,-13.5 - parent: 89 - - uid: 8684 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 23711 + - uid: 23832 components: - type: Transform - pos: -124.5,-12.5 - parent: 89 - - uid: 8723 + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 23711 + - uid: 23833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8724 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23711 + - uid: 23834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,7.5 - parent: 89 - - uid: 8725 + pos: 6.5,-7.5 + parent: 23711 + - uid: 23835 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,6.5 - parent: 89 - - uid: 8726 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23836 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,5.5 - parent: 89 - - uid: 8727 + pos: 0.5,-6.5 + parent: 23711 + - uid: 23837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,4.5 - parent: 89 - - uid: 8728 + pos: 6.5,-8.5 + parent: 23711 + - uid: 23838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,3.5 - parent: 89 - - uid: 8729 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23711 + - uid: 23839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,2.5 - parent: 89 - - uid: 8730 + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 23711 + - uid: 23840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,1.5 - parent: 89 - - uid: 8731 + pos: 6.5,-5.5 + parent: 23711 + - uid: 23841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,0.5 - parent: 89 - - uid: 8732 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-0.5 - parent: 89 - - uid: 8854 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23843 components: - type: Transform - pos: -136.5,-9.5 - parent: 89 - - uid: 8862 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23844 components: - type: Transform - pos: -13.5,25.5 - parent: 89 - - uid: 8888 + pos: 3.5,-4.5 + parent: 23711 + - uid: 24165 components: - type: Transform - pos: -136.5,-6.5 - parent: 89 - - uid: 8889 + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 23919 + - uid: 24166 components: - type: Transform - pos: -136.5,-7.5 - parent: 89 - - uid: 8890 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 23919 + - uid: 24167 components: - type: Transform - pos: -136.5,-8.5 - parent: 89 - - uid: 8892 + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 23919 + - uid: 24168 components: - type: Transform - pos: -136.5,-5.5 - parent: 89 - - uid: 8907 + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 23919 + - uid: 24169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - uid: 8916 + pos: 4.5,7.5 + parent: 23919 + - uid: 24170 components: - type: Transform - pos: -14.5,25.5 - parent: 89 - - uid: 9031 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 23919 + - uid: 24408 components: - type: Transform - pos: -90.5,2.5 - parent: 89 - - uid: 9032 + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 24340 + - uid: 24409 components: - type: Transform - pos: -90.5,1.5 - parent: 89 - - uid: 9146 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 24340 + - uid: 24410 components: - type: Transform - pos: -33.5,6.5 - parent: 89 - - uid: 9147 + pos: 0.5,1.5 + parent: 24340 + - uid: 26323 components: - type: Transform - pos: -38.5,5.5 - parent: 89 - - uid: 9148 + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 24450 + - uid: 26324 components: - type: Transform - pos: -38.5,2.5 - parent: 89 - - uid: 9149 + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 24450 + - uid: 26325 components: - type: Transform - pos: -29.5,6.5 - parent: 89 - - uid: 9150 + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 24450 + - uid: 26326 components: - type: Transform - pos: -28.5,5.5 - parent: 89 - - uid: 9151 + pos: -25.5,-1.5 + parent: 24450 + - uid: 26327 components: - type: Transform - pos: -28.5,2.5 - parent: 89 - - uid: 9165 + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 24450 + - uid: 26328 components: - type: Transform - pos: -106.5,30.5 - parent: 89 - - uid: 9166 + pos: -23.5,-1.5 + parent: 24450 + - uid: 26329 components: - type: Transform - pos: -108.5,30.5 - parent: 89 - - uid: 9167 + pos: -24.5,19.5 + parent: 24450 + - uid: 26330 components: - type: Transform - pos: -110.5,30.5 - parent: 89 - - uid: 9168 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 24450 + - uid: 26331 components: - type: Transform - pos: -112.5,30.5 - parent: 89 - - uid: 9169 + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 24450 + - uid: 26332 components: - type: Transform - pos: -114.5,29.5 - parent: 89 - - uid: 9170 + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 24450 + - uid: 26333 components: - type: Transform - pos: -115.5,27.5 - parent: 89 - - uid: 9171 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 24450 + - uid: 26334 components: - type: Transform - pos: -115.5,25.5 - parent: 89 - - uid: 9174 + rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 24450 + - uid: 26335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,32.5 - parent: 89 - - uid: 9175 + pos: -15.5,6.5 + parent: 24450 + - uid: 26336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,32.5 - parent: 89 - - uid: 9257 + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 24450 + - uid: 26337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 89 - - uid: 9518 + pos: -8.5,5.5 + parent: 24450 + - uid: 26338 components: - type: Transform - pos: -146.5,5.5 - parent: 89 - - uid: 9678 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 24450 + - uid: 26339 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,41.5 - parent: 89 - - uid: 9693 + pos: -8.5,6.5 + parent: 24450 + - uid: 26340 components: - type: Transform - pos: -49.5,48.5 - parent: 89 - - uid: 9694 + pos: -19.5,19.5 + parent: 24450 + - uid: 26341 components: - type: Transform - pos: -51.5,49.5 - parent: 89 - - uid: 9705 + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 24450 + - uid: 26342 components: - type: Transform - pos: -68.5,33.5 - parent: 89 - - uid: 9706 + pos: -12.5,-27.5 + parent: 24450 + - uid: 26343 components: - type: Transform - pos: -68.5,35.5 - parent: 89 - - uid: 9707 + pos: 0.5,19.5 + parent: 24450 + - uid: 26344 components: - type: Transform - pos: -68.5,34.5 - parent: 89 - - uid: 9771 + pos: -4.5,19.5 + parent: 24450 + - uid: 26345 components: - type: Transform - pos: -60.5,23.5 - parent: 89 - - uid: 9781 + pos: 1.5,-1.5 + parent: 24450 + - uid: 26346 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 9782 + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 24450 + - uid: 26347 components: - type: Transform - pos: -65.5,48.5 - parent: 89 - - uid: 9783 + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 24450 + - uid: 26348 components: - type: Transform - pos: -68.5,42.5 - parent: 89 - - uid: 9784 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 24450 + - uid: 26349 components: - type: Transform - pos: -68.5,43.5 - parent: 89 - - uid: 9785 + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 24450 + - uid: 26350 components: - type: Transform - pos: -68.5,44.5 - parent: 89 - - uid: 9786 + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 24450 + - uid: 26351 components: - type: Transform - pos: -62.5,46.5 - parent: 89 - - uid: 9787 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 24450 + - uid: 26352 components: - type: Transform - pos: -61.5,46.5 - parent: 89 - - uid: 9788 + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 24450 + - uid: 26353 components: - type: Transform - pos: -60.5,46.5 - parent: 89 - - uid: 9791 + pos: -14.5,-27.5 + parent: 24450 + - uid: 26354 components: - type: Transform - pos: -57.5,47.5 - parent: 89 - - uid: 9792 + pos: -24.5,-1.5 + parent: 24450 + - uid: 26355 components: - type: Transform - pos: -57.5,48.5 - parent: 89 - - uid: 9793 + pos: 0.5,-1.5 + parent: 24450 + - uid: 26356 components: - type: Transform - pos: -53.5,45.5 - parent: 89 - - uid: 9794 + pos: -0.5,-1.5 + parent: 24450 + - uid: 26357 components: - type: Transform - pos: -53.5,43.5 - parent: 89 - - uid: 9796 + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 24450 + - uid: 26358 components: - type: Transform - pos: -53.5,41.5 - parent: 89 - - uid: 9797 + pos: -8.5,-24.5 + parent: 24450 + - uid: 26359 components: - type: Transform - pos: -53.5,39.5 - parent: 89 - - uid: 9801 + pos: -8.5,-23.5 + parent: 24450 + - uid: 26360 components: - type: Transform - pos: -60.5,27.5 - parent: 89 - - uid: 9802 + pos: -18.5,-24.5 + parent: 24450 + - uid: 26361 components: - type: Transform - pos: -59.5,27.5 - parent: 89 - - uid: 9803 + pos: -18.5,-23.5 + parent: 24450 + - uid: 26362 components: - type: Transform - pos: -58.5,27.5 - parent: 89 - - uid: 9804 + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 24450 + - uid: 26363 components: - type: Transform - pos: -57.5,27.5 - parent: 89 - - uid: 9834 + rot: 1.5707963267948966 rad + pos: -15.5,5.5 + parent: 24450 + - uid: 26364 components: - type: Transform - pos: -53.5,49.5 - parent: 89 - - uid: 9854 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 24450 + - uid: 26365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,34.5 - parent: 89 - - uid: 9855 + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 24450 + - uid: 26366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,31.5 - parent: 89 - - uid: 9856 + pos: -1.5,26.5 + parent: 24450 + - uid: 26367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,31.5 - parent: 89 - - uid: 9858 + pos: -2.5,26.5 + parent: 24450 + - uid: 26368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,38.5 - parent: 89 - - uid: 9886 + pos: -21.5,26.5 + parent: 24450 + - uid: 26369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 89 - - uid: 9898 + pos: -22.5,26.5 + parent: 24450 + - uid: 26370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 24450 + - uid: 26371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 24450 + - uid: 26372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 24450 + - uid: 26373 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,49.5 - parent: 89 - - uid: 9900 + pos: -7.5,-22.5 + parent: 24450 + - uid: 26374 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,49.5 - parent: 89 - - uid: 9954 + pos: -7.5,-21.5 + parent: 24450 + - uid: 26375 components: - type: Transform - pos: -49.5,47.5 - parent: 89 - - uid: 10191 + rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 24450 + - uid: 26376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,2.5 - parent: 89 - - uid: 10192 + rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 24450 + - uid: 26377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,2.5 - parent: 89 - - uid: 10193 + rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 24450 + - uid: 26378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,2.5 - parent: 89 - - uid: 10194 + rot: 3.141592653589793 rad + pos: -19.5,-25.5 + parent: 24450 + - uid: 26379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-1.5 - parent: 89 - - uid: 10198 + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 24450 + - uid: 26380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-0.5 - parent: 89 - - uid: 10221 + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 24450 + - uid: 26381 components: - type: Transform - pos: -75.5,2.5 - parent: 89 - - uid: 10273 + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 24450 + - uid: 26382 components: - type: Transform - pos: -41.5,27.5 - parent: 89 - - uid: 10274 + rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 24450 + - uid: 26383 components: - type: Transform - pos: -41.5,30.5 - parent: 89 - - uid: 10275 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 24450 + - uid: 26384 components: - type: Transform - pos: -41.5,31.5 - parent: 89 - - uid: 10276 + rot: 3.141592653589793 rad + pos: -23.5,-18.5 + parent: 24450 + - uid: 26385 components: - type: Transform - pos: -41.5,32.5 - parent: 89 - - uid: 10399 + rot: 3.141592653589793 rad + pos: -24.5,-18.5 + parent: 24450 + - uid: 26386 components: - type: Transform - pos: -122.5,-14.5 - parent: 89 - - uid: 10416 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 24450 + - uid: 26387 components: - type: Transform - pos: -115.5,21.5 - parent: 89 - - uid: 10483 + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 24450 + - uid: 26388 components: - type: Transform - pos: -148.5,5.5 - parent: 89 - - uid: 10487 + rot: 3.141592653589793 rad + pos: -26.5,-15.5 + parent: 24450 + - uid: 26389 components: - type: Transform - pos: -149.5,5.5 - parent: 89 - - uid: 10491 + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 24450 + - uid: 26390 components: - type: Transform - pos: -150.5,5.5 - parent: 89 - - uid: 10492 + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 24450 + - uid: 26391 components: - type: Transform - pos: -151.5,5.5 - parent: 89 - - uid: 10493 + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 24450 + - uid: 26392 components: - type: Transform - pos: -152.5,5.5 - parent: 89 - - uid: 10494 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 24450 + - uid: 26393 components: - type: Transform - pos: -153.5,5.5 - parent: 89 - - uid: 10496 + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 24450 + - uid: 26394 components: - type: Transform - pos: -154.5,5.5 - parent: 89 - - uid: 10538 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 24450 + - uid: 26395 components: - type: Transform - pos: -85.5,18.5 - parent: 89 - - uid: 10541 + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 24450 + - uid: 26396 components: - type: Transform - pos: -84.5,18.5 - parent: 89 - - uid: 10569 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 24450 + - uid: 26397 components: - type: Transform - pos: -86.5,42.5 - parent: 89 - - uid: 10570 + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 24450 + - uid: 26398 components: - type: Transform - pos: -86.5,43.5 - parent: 89 - - uid: 10571 + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 24450 + - uid: 26399 components: - type: Transform - pos: -86.5,44.5 - parent: 89 - - uid: 10577 + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 24450 + - uid: 26400 components: - type: Transform - pos: -82.5,42.5 - parent: 89 - - uid: 10578 + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 24450 + - uid: 26401 components: - type: Transform - pos: -82.5,43.5 - parent: 89 - - uid: 10579 + pos: -8.5,-19.5 + parent: 24450 + - uid: 26402 components: - type: Transform - pos: -82.5,44.5 - parent: 89 - - uid: 10583 + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 24450 + - uid: 26403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 89 - - uid: 10584 + rot: 1.5707963267948966 rad + pos: -36.5,6.5 + parent: 24450 + - uid: 26404 components: - type: Transform - pos: -85.5,46.5 - parent: 89 - - uid: 10585 + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 24450 + - uid: 26405 components: - type: Transform - pos: -81.5,38.5 - parent: 89 - - uid: 10587 + rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 24450 + - uid: 26406 components: - type: Transform - pos: -155.5,5.5 - parent: 89 - - uid: 10588 + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 24450 + - uid: 26407 components: - type: Transform - pos: -82.5,33.5 - parent: 89 - - uid: 10589 + rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 24450 + - uid: 26408 components: - type: Transform - pos: -82.5,34.5 - parent: 89 - - uid: 10590 + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 24450 + - uid: 26409 components: - type: Transform - pos: -82.5,35.5 - parent: 89 - - uid: 10591 + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 24450 + - uid: 26410 components: - type: Transform - pos: -86.5,38.5 - parent: 89 - - uid: 10592 + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 24450 + - uid: 26411 components: - type: Transform - pos: -87.5,38.5 - parent: 89 - - uid: 10593 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 24450 + - uid: 26412 components: - type: Transform - pos: -88.5,38.5 - parent: 89 - - uid: 10594 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 24450 + - uid: 26413 components: - type: Transform - pos: -89.5,38.5 - parent: 89 - - uid: 10595 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 24450 + - uid: 26414 components: - type: Transform - pos: -85.5,48.5 - parent: 89 - - uid: 10596 + pos: -24.5,-14.5 + parent: 24450 + - uid: 26415 components: - type: Transform - pos: -83.5,48.5 - parent: 89 - - uid: 10597 + pos: -23.5,-15.5 + parent: 24450 + - uid: 26416 components: - type: Transform - pos: -83.5,46.5 - parent: 89 - - uid: 10630 + pos: -22.5,-16.5 + parent: 24450 + - uid: 26417 components: - type: Transform - pos: 12.5,9.5 - parent: 89 - - uid: 10635 + pos: -21.5,-17.5 + parent: 24450 + - uid: 26418 components: - type: Transform - pos: 12.5,5.5 - parent: 89 - - uid: 10636 + pos: -20.5,-18.5 + parent: 24450 + - uid: 26419 components: - type: Transform - pos: 12.5,6.5 - parent: 89 - - uid: 10647 + pos: -19.5,-19.5 + parent: 24450 + - uid: 26420 components: - type: Transform - pos: 12.5,8.5 - parent: 89 - - uid: 10653 + pos: -26.5,-13.5 + parent: 24450 + - uid: 26421 components: - type: Transform - pos: -8.5,9.5 - parent: 89 - - uid: 10655 + pos: -26.5,-12.5 + parent: 24450 + - uid: 26422 components: - type: Transform - pos: -8.5,6.5 - parent: 89 - - uid: 10679 + pos: -25.5,-13.5 + parent: 24450 + - uid: 26423 components: - type: Transform - pos: -8.5,-39.5 - parent: 89 - - uid: 10681 + pos: 1.5,-16.5 + parent: 24450 + - uid: 26424 components: - type: Transform - pos: -8.5,-40.5 - parent: 89 - - uid: 10682 + pos: 0.5,-17.5 + parent: 24450 + - uid: 26425 components: - type: Transform - pos: 3.5,-39.5 - parent: 89 - - uid: 10684 + pos: -0.5,-18.5 + parent: 24450 + - uid: 26426 components: - type: Transform - pos: 3.5,-40.5 - parent: 89 - - uid: 10746 + pos: -1.5,-19.5 + parent: 24450 + - uid: 26427 components: - type: Transform - pos: 3.5,-23.5 - parent: 89 - - uid: 10747 + pos: -2.5,-19.5 + parent: 24450 + - uid: 26428 components: - type: Transform - pos: 1.5,-23.5 - parent: 89 - - uid: 10748 + pos: -3.5,-19.5 + parent: 24450 + - uid: 26429 components: - type: Transform - pos: 1.5,-26.5 - parent: 89 - - uid: 10749 + pos: -0.5,-19.5 + parent: 24450 + - uid: 26430 components: - type: Transform - pos: 3.5,-26.5 - parent: 89 - - uid: 10750 + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 24450 + - uid: 26431 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 10751 + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 24450 + - uid: 26432 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 10752 + rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 24450 + - uid: 26433 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 10753 + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 24450 + - uid: 26434 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 10755 + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 24450 + - uid: 26435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 89 - - uid: 10792 + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 24450 + - uid: 27697 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,48.5 - parent: 89 - - uid: 10794 + pos: -11.5,-15.5 + parent: 27260 + - uid: 27698 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,48.5 - parent: 89 - - uid: 10812 + pos: -11.5,-14.5 + parent: 27260 + - uid: 27699 components: - type: Transform - pos: 21.5,16.5 - parent: 89 - - uid: 10813 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 27260 + - uid: 27700 components: - type: Transform - pos: 23.5,17.5 - parent: 89 - - uid: 10814 + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 27260 + - uid: 27701 components: - type: Transform - pos: 23.5,18.5 - parent: 89 - - uid: 10815 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 27260 + - uid: 27702 components: - type: Transform - pos: 23.5,19.5 - parent: 89 - - uid: 10821 + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 27260 + - uid: 27703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 89 - - uid: 10850 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 27260 + - uid: 27704 components: - type: Transform - pos: -120.5,22.5 - parent: 89 - - uid: 10851 + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 27260 + - uid: 27705 components: - type: Transform - pos: -123.5,22.5 - parent: 89 - - uid: 10854 + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 27260 + - uid: 27706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 89 - - uid: 10856 + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 27260 + - uid: 27707 components: - type: Transform - pos: -122.5,22.5 - parent: 89 - - uid: 10857 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 27260 + - uid: 27708 components: - type: Transform - pos: -121.5,22.5 - parent: 89 - - uid: 10911 + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 27260 + - uid: 27709 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,14.5 - parent: 89 - - uid: 10914 + pos: 12.5,-13.5 + parent: 27260 + - uid: 27710 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 89 - - uid: 10930 + pos: 13.5,-13.5 + parent: 27260 + - uid: 27711 components: - type: Transform - pos: -156.5,5.5 - parent: 89 - - uid: 10938 + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 27260 + - uid: 27712 components: - type: Transform - pos: -157.5,5.5 - parent: 89 - - uid: 10947 + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 27260 + - uid: 27713 components: - type: Transform - pos: -158.5,5.5 - parent: 89 - - uid: 10948 + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 27260 + - uid: 27714 components: - type: Transform - pos: -159.5,5.5 - parent: 89 - - uid: 10951 + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 27260 + - uid: 27715 components: - type: Transform - pos: -160.5,5.5 - parent: 89 - - uid: 10955 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 27260 + - uid: 27716 components: - type: Transform - pos: -160.5,4.5 - parent: 89 - - uid: 10959 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 27260 + - uid: 27717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 89 - - uid: 10960 + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 27260 + - uid: 27718 components: - type: Transform - pos: -160.5,3.5 - parent: 89 - - uid: 10974 + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 27260 + - uid: 27719 components: - type: Transform - pos: -160.5,2.5 - parent: 89 - - uid: 10978 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 27260 + - uid: 27720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 89 - - uid: 11053 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 27260 + - uid: 27721 components: - type: Transform - pos: -160.5,1.5 - parent: 89 - - uid: 11054 + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 27260 + - uid: 27722 components: - type: Transform - pos: -160.5,0.5 - parent: 89 - - uid: 11055 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 27260 + - uid: 27723 components: - type: Transform - pos: -160.5,-0.5 - parent: 89 - - uid: 11056 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 27260 + - uid: 27724 components: - type: Transform - pos: -160.5,-1.5 - parent: 89 - - uid: 11058 + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 27260 + - uid: 27725 components: - type: Transform - pos: -160.5,-2.5 - parent: 89 - - uid: 11069 + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 27260 + - uid: 27726 components: - type: Transform - pos: -160.5,-3.5 - parent: 89 - - uid: 11072 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 27260 + - uid: 27727 components: - type: Transform - pos: -160.5,-4.5 - parent: 89 - - uid: 11075 + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 27260 + - uid: 27728 components: - type: Transform - pos: -160.5,-5.5 - parent: 89 - - uid: 11093 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 27260 + - uid: 27729 components: - type: Transform - pos: 6.5,38.5 - parent: 89 - - uid: 11094 + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 27260 + - uid: 27730 components: - type: Transform - pos: 12.5,35.5 - parent: 89 - - uid: 11153 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 27260 + - uid: 27731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 89 - - uid: 11199 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27732 components: - type: Transform - pos: -160.5,-6.5 - parent: 89 - - uid: 11200 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 27260 + - uid: 27733 components: - type: Transform - pos: -160.5,-7.5 - parent: 89 - - uid: 11202 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 27260 + - uid: 27734 components: - type: Transform - pos: -160.5,-8.5 - parent: 89 - - uid: 11203 + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 27260 + - uid: 27735 components: - type: Transform - pos: -160.5,-9.5 - parent: 89 - - uid: 11205 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 27260 + - uid: 27736 components: - type: Transform - pos: -160.5,-10.5 - parent: 89 - - uid: 11207 + rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 27260 + - uid: 27737 components: - type: Transform - pos: -160.5,-11.5 - parent: 89 - - uid: 11208 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 27260 + - uid: 27738 components: - type: Transform - pos: -160.5,-12.5 - parent: 89 - - uid: 11209 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 27260 + - uid: 27739 components: - type: Transform - pos: -160.5,-13.5 - parent: 89 - - uid: 12530 + rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 27260 + - uid: 27740 components: - type: Transform - pos: 12.5,12.5 - parent: 89 - - uid: 12569 + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 27260 + - uid: 27741 components: - type: Transform - pos: -160.5,-14.5 - parent: 89 - - uid: 12591 + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 27260 + - uid: 27742 components: - type: Transform - pos: 8.5,43.5 - parent: 89 - - uid: 12592 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 27260 + - uid: 27743 components: - type: Transform - pos: -160.5,-15.5 - parent: 89 - - uid: 12596 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 27260 + - uid: 27744 components: - type: Transform - pos: 7.5,42.5 - parent: 89 - - uid: 12603 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 27260 + - uid: 27745 components: - type: Transform - pos: -160.5,-16.5 - parent: 89 - - uid: 12604 + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 27260 + - uid: 27746 components: - type: Transform - pos: -160.5,-17.5 - parent: 89 - - uid: 12612 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 27260 + - uid: 27747 components: - type: Transform - pos: -160.5,-18.5 - parent: 89 - - uid: 12614 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 27260 + - uid: 27748 components: - type: Transform - pos: 13.5,38.5 - parent: 89 - - uid: 12623 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 27260 + - uid: 27749 components: - type: Transform - pos: -160.5,-19.5 - parent: 89 - - uid: 12631 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 27260 + - uid: 27750 components: - type: Transform - pos: -160.5,-20.5 - parent: 89 - - uid: 12632 + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 27260 + - uid: 27751 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 89 - - uid: 12637 + pos: -7.5,2.5 + parent: 27260 + - uid: 27752 components: - type: Transform - pos: -159.5,-20.5 - parent: 89 - - uid: 12645 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 27260 + - uid: 27753 components: - type: Transform - pos: -158.5,-20.5 - parent: 89 - - uid: 12658 + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 27260 + - uid: 27754 components: - type: Transform - pos: -157.5,-20.5 - parent: 89 - - uid: 12667 + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 27260 + - uid: 27755 components: - type: Transform - pos: -156.5,-20.5 - parent: 89 - - uid: 12670 + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 27260 + - uid: 27756 components: - type: Transform - pos: -155.5,-20.5 - parent: 89 - - uid: 12671 + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 27260 + - uid: 27757 components: - type: Transform - pos: -154.5,-20.5 - parent: 89 - - uid: 12675 + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 27260 + - uid: 27758 components: - type: Transform - pos: -153.5,-20.5 - parent: 89 - - uid: 12704 + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 27260 + - uid: 27759 components: - type: Transform - pos: -152.5,-20.5 - parent: 89 - - uid: 12742 + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 27260 + - uid: 27760 components: - type: Transform - pos: -151.5,-20.5 - parent: 89 - - uid: 12743 + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 27260 + - uid: 27761 components: - type: Transform - pos: -150.5,-20.5 - parent: 89 - - uid: 12780 + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 27260 + - uid: 27762 components: - type: Transform - pos: -149.5,-20.5 - parent: 89 - - uid: 12786 + rot: 3.141592653589793 rad + pos: -6.5,-17.5 + parent: 27260 + - uid: 27763 components: - type: Transform - pos: -148.5,-20.5 - parent: 89 - - uid: 12793 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 27260 + - uid: 27764 components: - type: Transform - pos: -147.5,-20.5 - parent: 89 - - uid: 12794 + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 27260 + - uid: 27765 components: - type: Transform - pos: -146.5,-20.5 - parent: 89 - - uid: 12798 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 27260 + - uid: 27766 components: - type: Transform - pos: -145.5,-20.5 - parent: 89 - - uid: 12799 + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 27260 + - uid: 27767 components: - type: Transform - pos: -144.5,-20.5 - parent: 89 - - uid: 12801 + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 27260 + - uid: 27768 components: - type: Transform - pos: -143.5,-20.5 - parent: 89 - - uid: 12817 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 27260 + - uid: 27769 components: - type: Transform - pos: -142.5,-20.5 - parent: 89 - - uid: 12820 + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 27260 + - uid: 27770 components: - type: Transform - pos: -141.5,-20.5 - parent: 89 - - uid: 12821 + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 27260 + - uid: 27771 components: - type: Transform - pos: -140.5,-20.5 - parent: 89 - - uid: 12828 + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 27260 + - uid: 27772 components: - type: Transform - pos: -139.5,-20.5 - parent: 89 - - uid: 12849 + pos: 12.5,4.5 + parent: 27260 + - uid: 27773 components: - type: Transform - pos: -139.5,-21.5 - parent: 89 - - uid: 13210 + pos: 12.5,3.5 + parent: 27260 + - uid: 27774 components: - type: Transform - pos: 7.5,35.5 - parent: 89 - - uid: 14020 + pos: 12.5,2.5 + parent: 27260 + - uid: 27775 components: - type: Transform - pos: 7.5,41.5 - parent: 89 - - uid: 14052 + pos: 12.5,1.5 + parent: 27260 + - uid: 27776 components: - type: Transform - pos: 7.5,38.5 - parent: 89 - - uid: 14560 + pos: 12.5,0.5 + parent: 27260 + - uid: 27777 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 14587 + pos: 12.5,-0.5 + parent: 27260 + - uid: 27778 components: - type: Transform - pos: -13.5,-34.5 - parent: 89 - - uid: 14637 + pos: 12.5,-1.5 + parent: 27260 + - uid: 27779 components: - type: Transform - pos: 55.5,-16.5 - parent: 89 - - uid: 14659 + pos: 12.5,-2.5 + parent: 27260 + - uid: 27780 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 14881 + pos: 12.5,-3.5 + parent: 27260 + - uid: 27781 components: - type: Transform - pos: -13.5,-35.5 - parent: 89 - - uid: 14882 + pos: 12.5,-4.5 + parent: 27260 + - uid: 27782 components: - type: Transform - pos: -13.5,-36.5 - parent: 89 - - uid: 14982 + pos: 12.5,-5.5 + parent: 27260 + - uid: 27783 components: - type: Transform - pos: -19.5,23.5 - parent: 89 - - uid: 15175 + pos: -11.5,-5.5 + parent: 27260 + - uid: 27784 components: - type: Transform - pos: 11.5,43.5 - parent: 89 - - uid: 15177 + pos: -11.5,-4.5 + parent: 27260 + - uid: 27785 components: - type: Transform - pos: 12.5,42.5 - parent: 89 - - uid: 15249 + pos: -11.5,-3.5 + parent: 27260 + - uid: 27786 components: - type: Transform - pos: 11.5,36.5 - parent: 89 - - uid: 15315 + pos: -11.5,-2.5 + parent: 27260 + - uid: 27787 components: - type: Transform - pos: 22.5,16.5 - parent: 89 - - uid: 15316 + pos: -11.5,-1.5 + parent: 27260 + - uid: 27788 components: - type: Transform - pos: 21.5,35.5 - parent: 89 - - uid: 15327 + pos: -11.5,-0.5 + parent: 27260 + - uid: 27789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,36.5 - parent: 89 - - uid: 15328 + pos: -11.5,0.5 + parent: 27260 + - uid: 27790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 89 - - uid: 15329 + pos: -11.5,1.5 + parent: 27260 + - uid: 27791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 89 - - uid: 15330 + pos: -11.5,2.5 + parent: 27260 + - uid: 27792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 89 - - uid: 15422 + pos: -11.5,3.5 + parent: 27260 + - uid: 27793 components: - type: Transform - pos: 8.5,37.5 - parent: 89 - - uid: 15425 + pos: -11.5,4.5 + parent: 27260 + - uid: 27794 components: - type: Transform - pos: 12.5,38.5 - parent: 89 - - uid: 15563 + pos: -9.5,-3.5 + parent: 27260 + - uid: 27795 components: - type: Transform - pos: 6.5,31.5 - parent: 89 - - uid: 15621 + pos: -9.5,0.5 + parent: 27260 + - uid: 27796 components: - type: Transform - pos: -114.5,-15.5 - parent: 89 - - uid: 15622 + pos: 10.5,-3.5 + parent: 27260 + - uid: 27797 components: - type: Transform - pos: -112.5,-15.5 - parent: 89 - - uid: 15767 + pos: 10.5,2.5 + parent: 27260 + - uid: 28149 components: - type: Transform - pos: 27.5,35.5 - parent: 89 - - uid: 15769 + rot: 3.141592653589793 rad + pos: -123.5,-17.5 + parent: 28148 + - uid: 28150 components: - type: Transform - pos: 21.5,36.5 - parent: 89 - - uid: 15778 + rot: 3.141592653589793 rad + pos: -122.5,-17.5 + parent: 28148 +- proto: GrilleBroken + entities: + - uid: 15570 components: - type: Transform - pos: 27.5,36.5 - parent: 89 - - uid: 16276 + rot: 1.5707963267948966 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-20.5 - parent: 89 - - uid: 16293 + pos: -38.5,-16.5 + parent: 2 + - uid: 15572 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - uid: 16294 + pos: 70.5,15.5 + parent: 2 + - uid: 15573 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - uid: 16316 + rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 2 + - uid: 15574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-22.5 - parent: 89 - - uid: 16317 + pos: 70.5,10.5 + parent: 2 + - uid: 15575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-25.5 - parent: 89 - - uid: 16331 + rot: -1.5707963267948966 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-32.5 - parent: 89 - - uid: 16332 + rot: 3.141592653589793 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15577 components: - type: Transform rot: 1.5707963267948966 rad - pos: -133.5,-33.5 - parent: 89 - - uid: 16333 + pos: -92.5,28.5 + parent: 2 + - uid: 15578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-30.5 - parent: 89 - - uid: 16334 + pos: -91.5,29.5 + parent: 2 + - uid: 15579 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,-32.5 - parent: 89 - - uid: 16335 + pos: -91.5,29.5 + parent: 2 + - uid: 15580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-27.5 - parent: 89 - - uid: 16336 + pos: 12.5,-15.5 + parent: 2 + - uid: 15581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-23.5 - parent: 89 - - uid: 16455 + pos: 50.5,-36.5 + parent: 2 + - uid: 15582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 89 - - uid: 16462 + pos: 55.5,-15.5 + parent: 2 + - uid: 15583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,45.5 - parent: 89 - - uid: 16919 + pos: -125.5,20.5 + parent: 2 + - uid: 15584 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,2.5 - parent: 89 - - uid: 16920 + pos: -125.5,21.5 + parent: 2 + - uid: 15585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,4.5 - parent: 89 - - uid: 16923 + pos: -52.5,21.5 + parent: 2 + - uid: 15586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,5.5 - parent: 89 - - uid: 17027 + pos: -41.5,20.5 + parent: 2 + - uid: 15587 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - uid: 17148 + pos: -19.5,24.5 + parent: 2 + - uid: 15588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-18.5 - parent: 89 - - uid: 17151 + pos: -16.5,15.5 + parent: 2 + - uid: 15589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-28.5 - parent: 89 - - uid: 17152 + pos: -2.5,25.5 + parent: 2 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-26.5 - parent: 89 - - uid: 17153 + pos: -21.5,21.5 + parent: 2 + - uid: 15591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-20.5 - parent: 89 - - uid: 17159 + rot: 3.141592653589793 rad + pos: 15.5,45.5 + parent: 2 + - uid: 15592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 89 - - uid: 17174 + rot: 3.141592653589793 rad + pos: -104.5,31.5 + parent: 2 + - uid: 15593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 89 - - uid: 17224 + pos: -103.5,32.5 + parent: 2 + - uid: 15594 components: - type: Transform - pos: 41.5,-19.5 - parent: 89 - - uid: 17281 + rot: -1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 15595 components: - type: Transform - pos: -52.5,49.5 - parent: 89 - - uid: 17315 + rot: 1.5707963267948966 rad + pos: -103.5,32.5 + parent: 2 + - uid: 15596 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-7.5 - parent: 89 - - uid: 17329 + pos: -61.5,48.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 15598 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-9.5 - parent: 89 - - uid: 17332 + pos: -45.5,43.5 + parent: 2 + - uid: 15599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,32.5 - parent: 89 - - uid: 17335 + pos: -129.5,28.5 + parent: 2 + - uid: 15600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,49.5 - parent: 89 - - uid: 17336 + pos: -131.5,28.5 + parent: 2 + - uid: 15601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,49.5 - parent: 89 - - uid: 17337 + pos: -124.5,28.5 + parent: 2 + - uid: 15602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,49.5 - parent: 89 - - uid: 17338 + pos: -137.5,28.5 + parent: 2 + - uid: 15603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 - parent: 89 - - uid: 17341 + rot: 1.5707963267948966 rad + pos: -136.5,28.5 + parent: 2 + - uid: 15604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 - parent: 89 - - uid: 17342 + pos: -138.5,23.5 + parent: 2 + - uid: 15605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,49.5 - parent: 89 - - uid: 17344 + rot: 3.141592653589793 rad + pos: -137.5,24.5 + parent: 2 + - uid: 15606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,46.5 - parent: 89 - - uid: 17345 + rot: 3.141592653589793 rad + pos: -138.5,18.5 + parent: 2 + - uid: 15607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,45.5 - parent: 89 - - uid: 17346 + pos: -16.5,38.5 + parent: 2 + - uid: 15608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 89 - - uid: 17349 + pos: -138.5,14.5 + parent: 2 + - uid: 15609 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,47.5 - parent: 89 - - uid: 17350 + pos: -99.5,32.5 + parent: 2 + - uid: 15610 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,28.5 - parent: 89 - - uid: 17353 + pos: -123.5,26.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,25.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,31.5 + parent: 2 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -122.5,26.5 - parent: 89 - - uid: 17354 + pos: -45.5,49.5 + parent: 2 + - uid: 15614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,26.5 - parent: 89 - - uid: 17355 + pos: -42.5,38.5 + parent: 2 + - uid: 15615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,27.5 - parent: 89 - - uid: 17356 + pos: -45.5,49.5 + parent: 2 + - uid: 15616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,25.5 - parent: 89 - - uid: 17357 + pos: -44.5,37.5 + parent: 2 + - uid: 15617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,11.5 - parent: 89 - - uid: 17359 + rot: 3.141592653589793 rad + pos: -42.5,36.5 + parent: 2 + - uid: 15618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -121.5,26.5 - parent: 89 - - uid: 17362 + pos: -35.5,38.5 + parent: 2 + - uid: 15619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,28.5 - parent: 89 - - uid: 17363 + pos: -33.5,38.5 + parent: 2 + - uid: 15620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,28.5 - parent: 89 - - uid: 17370 + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 2 + - uid: 15621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-8.5 - parent: 89 - - uid: 17371 + rot: -1.5707963267948966 rad + pos: -17.5,38.5 + parent: 2 + - uid: 15622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-5.5 - parent: 89 - - uid: 17373 + pos: -13.5,38.5 + parent: 2 + - uid: 15623 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-3.5 - parent: 89 - - uid: 17374 + pos: -13.5,38.5 + parent: 2 + - uid: 15624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-4.5 - parent: 89 - - uid: 17375 + pos: -13.5,47.5 + parent: 2 + - uid: 15625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 89 - - uid: 17376 + rot: 1.5707963267948966 rad + pos: -13.5,48.5 + parent: 2 + - uid: 15626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,38.5 - parent: 89 - - uid: 17377 + rot: 3.141592653589793 rad + pos: 35.5,35.5 + parent: 2 + - uid: 15627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,41.5 - parent: 89 - - uid: 17378 + rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 2 + - uid: 15628 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,40.5 - parent: 89 - - uid: 17380 + pos: -4.5,51.5 + parent: 2 + - uid: 15629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,39.5 - parent: 89 - - uid: 17381 + rot: 1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - uid: 15630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,38.5 - parent: 89 - - uid: 17383 + pos: 8.5,49.5 + parent: 2 + - uid: 15631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,37.5 - parent: 89 - - uid: 17392 + pos: 6.5,51.5 + parent: 2 + - uid: 15632 components: - type: Transform - pos: -127.5,28.5 - parent: 89 - - uid: 17394 + pos: 16.5,40.5 + parent: 2 + - uid: 15633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-5.5 - parent: 89 - - uid: 17404 + pos: 35.5,34.5 + parent: 2 + - uid: 15634 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-2.5 - parent: 89 - - uid: 17405 + pos: 70.5,2.5 + parent: 2 + - uid: 15635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-6.5 - parent: 89 - - uid: 17407 + pos: 70.5,6.5 + parent: 2 + - uid: 15636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,38.5 - parent: 89 - - uid: 17410 + rot: 1.5707963267948966 rad + pos: 69.5,4.5 + parent: 2 + - uid: 15637 components: - type: Transform - pos: -150.5,-21.5 - parent: 89 - - uid: 17414 + rot: 3.141592653589793 rad + pos: 70.5,7.5 + parent: 2 + - uid: 15638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,38.5 - parent: 89 - - uid: 17415 + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 2 + - uid: 15639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,38.5 - parent: 89 - - uid: 17417 + pos: 56.5,-9.5 + parent: 2 + - uid: 15640 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,38.5 - parent: 89 - - uid: 17418 + pos: 60.5,-9.5 + parent: 2 + - uid: 15641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,38.5 - parent: 89 - - uid: 17426 + pos: 60.5,-9.5 + parent: 2 + - uid: 15642 components: - type: Transform - pos: -126.5,28.5 - parent: 89 - - uid: 17427 + rot: 1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - uid: 15643 components: - type: Transform - pos: -125.5,28.5 - parent: 89 - - uid: 17432 + rot: -1.5707963267948966 rad + pos: 63.5,-11.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-11.5 + parent: 2 + - uid: 15645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,-16.5 - parent: 89 - - uid: 17433 + pos: 65.5,-9.5 + parent: 2 + - uid: 15646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 89 - - uid: 17434 + pos: 65.5,-9.5 + parent: 2 + - uid: 15647 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,38.5 - parent: 89 - - uid: 17435 + pos: 67.5,-9.5 + parent: 2 + - uid: 15648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 89 - - uid: 17436 + rot: 1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,37.5 - parent: 89 - - uid: 17438 + pos: 67.5,-7.5 + parent: 2 + - uid: 15650 components: - type: Transform rot: -1.5707963267948966 rad - pos: -120.5,26.5 - parent: 89 - - uid: 17440 + pos: 69.5,-5.5 + parent: 2 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,13.5 - parent: 89 - - uid: 17441 + pos: 69.5,-5.5 + parent: 2 + - uid: 15652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,20.5 - parent: 89 - - uid: 17442 + rot: 3.141592653589793 rad + pos: 68.5,-1.5 + parent: 2 + - uid: 15653 components: - type: Transform - pos: -128.5,28.5 - parent: 89 - - uid: 17443 + pos: 68.5,-4.5 + parent: 2 + - uid: 15654 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,21.5 - parent: 89 - - uid: 17444 + pos: 67.5,-5.5 + parent: 2 + - uid: 15655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,19.5 - parent: 89 - - uid: 17445 + rot: 3.141592653589793 rad + pos: 7.5,-48.5 + parent: 2 + - uid: 15656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,22.5 - parent: 89 - - uid: 17447 + pos: 9.5,-33.5 + parent: 2 + - uid: 15657 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,26.5 - parent: 89 - - uid: 17448 + pos: 23.5,-20.5 + parent: 2 + - uid: 15658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 89 - - uid: 17449 + pos: 13.5,-27.5 + parent: 2 + - uid: 15659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,38.5 - parent: 89 - - uid: 17450 + rot: 1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + - uid: 15660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 89 - - uid: 17451 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 + parent: 2 + - uid: 15661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 89 - - uid: 17452 + rot: 1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 15662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,37.5 - parent: 89 - - uid: 17453 + pos: 7.5,-41.5 + parent: 2 + - uid: 15663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 89 - - uid: 17459 + pos: 2.5,-50.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - uid: 15665 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-9.5 - parent: 89 - - uid: 17461 + pos: -12.5,-46.5 + parent: 2 + - uid: 15666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,19.5 - parent: 89 - - uid: 17462 + rot: -1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 2 + - uid: 15667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,12.5 - parent: 89 - - uid: 17463 + pos: -12.5,-47.5 + parent: 2 + - uid: 15668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 89 - - uid: 17464 + pos: -17.5,-39.5 + parent: 2 + - uid: 15669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 89 - - uid: 17465 + pos: -12.5,-41.5 + parent: 2 + - uid: 15670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 89 - - uid: 17467 + pos: -12.5,-41.5 + parent: 2 + - uid: 15671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 89 - - uid: 17468 + rot: 3.141592653589793 rad + pos: -17.5,-38.5 + parent: 2 + - uid: 15672 components: - type: Transform rot: 1.5707963267948966 rad - pos: -133.5,28.5 - parent: 89 - - uid: 17469 + pos: -41.5,-22.5 + parent: 2 + - uid: 15673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 89 - - uid: 17471 + rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 15674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 89 - - uid: 17475 + rot: 3.141592653589793 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 2 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 89 - - uid: 17623 + pos: 27.5,47.5 + parent: 2 + - uid: 15678 components: - type: Transform - pos: 43.5,-19.5 - parent: 89 - - uid: 17642 + pos: 27.5,47.5 + parent: 2 + - uid: 15679 components: - type: Transform - pos: 41.5,34.5 - parent: 89 - - uid: 17644 + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 15680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-33.5 - parent: 89 - - uid: 17646 + pos: 33.5,42.5 + parent: 2 + - uid: 15681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-29.5 - parent: 89 - - uid: 17651 + pos: 30.5,42.5 + parent: 2 + - uid: 15682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-32.5 - parent: 89 - - uid: 17665 + pos: 31.5,42.5 + parent: 2 + - uid: 15683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 89 - - uid: 17669 + pos: 15.5,45.5 + parent: 2 + - uid: 15684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 89 - - uid: 17670 + rot: -1.5707963267948966 rad + pos: 9.5,47.5 + parent: 2 + - uid: 15685 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 89 - - uid: 17671 + pos: 54.5,-16.5 + parent: 2 + - uid: 15686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 89 - - uid: 17672 + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,51.5 - parent: 89 - - uid: 17673 + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,51.5 - parent: 89 - - uid: 17678 + rot: 3.141592653589793 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 89 - - uid: 17679 + pos: 54.5,-37.5 + parent: 2 + - uid: 15690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,51.5 - parent: 89 - - uid: 17680 + pos: 54.5,-37.5 + parent: 2 + - uid: 15691 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,51.5 - parent: 89 - - uid: 17681 + pos: 50.5,-36.5 + parent: 2 + - uid: 15692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,51.5 - parent: 89 - - uid: 17682 + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 + parent: 2 + - uid: 15693 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,51.5 - parent: 89 - - uid: 17683 + pos: 50.5,-36.5 + parent: 2 + - uid: 15694 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,51.5 - parent: 89 - - uid: 17684 + pos: 50.5,-36.5 + parent: 2 + - uid: 15695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,51.5 - parent: 89 - - uid: 17690 + rot: 3.141592653589793 rad + pos: 48.5,-37.5 + parent: 2 + - uid: 15696 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,48.5 - parent: 89 - - uid: 17691 + pos: 48.5,-37.5 + parent: 2 + - uid: 15697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,47.5 - parent: 89 - - uid: 17705 + pos: 48.5,-37.5 + parent: 2 + - uid: 15698 components: - type: Transform - pos: 70.5,-0.5 - parent: 89 - - uid: 17707 + rot: -1.5707963267948966 rad + pos: 48.5,-37.5 + parent: 2 + - uid: 15699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,39.5 - parent: 89 - - uid: 17708 + pos: 55.5,-15.5 + parent: 2 + - uid: 26436 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,38.5 - parent: 89 - - uid: 17709 + pos: -4.5,-19.5 + parent: 24450 + - uid: 26437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,37.5 - parent: 89 - - uid: 17710 + pos: -4.5,-19.5 + parent: 24450 + - uid: 26438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 89 - - uid: 17715 + rot: -1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 24450 + - uid: 26439 components: - type: Transform - pos: 69.5,-0.5 - parent: 89 - - uid: 17716 + pos: -20.5,-19.5 + parent: 24450 + - uid: 26440 components: - type: Transform - pos: 68.5,-0.5 - parent: 89 - - uid: 17717 + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 24450 + - uid: 26441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,0.5 - parent: 89 - - uid: 17718 + pos: -22.5,-18.5 + parent: 24450 + - uid: 26442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-1.5 - parent: 89 - - uid: 17731 + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 24450 + - uid: 26443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,33.5 - parent: 89 - - uid: 17732 + pos: -24.5,-17.5 + parent: 24450 + - uid: 26444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-33.5 - parent: 89 - - uid: 17741 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 24450 + - uid: 26445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-33.5 - parent: 89 - - uid: 17754 + pos: -25.5,-16.5 + parent: 24450 + - uid: 26446 components: - type: Transform - pos: 70.5,5.5 - parent: 89 - - uid: 17755 + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 24450 + - uid: 26447 components: - type: Transform - pos: 70.5,4.5 - parent: 89 - - uid: 17756 + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 24450 + - uid: 26448 components: - type: Transform - pos: 70.5,3.5 - parent: 89 - - uid: 17773 + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 24450 + - uid: 26449 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-6.5 - parent: 89 - - uid: 17774 + pos: -6.5,-20.5 + parent: 24450 + - uid: 26450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-7.5 - parent: 89 - - uid: 17775 + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 24450 + - uid: 26451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-10.5 - parent: 89 - - uid: 17776 + rot: -1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 24450 + - uid: 26452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-11.5 - parent: 89 - - uid: 17777 + pos: -6.5,-20.5 + parent: 24450 + - uid: 26453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 89 - - uid: 17778 + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 24450 + - uid: 26454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-11.5 - parent: 89 - - uid: 17780 + pos: -0.5,-17.5 + parent: 24450 + - uid: 26455 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-10.5 - parent: 89 - - uid: 17781 + pos: -0.5,-16.5 + parent: 24450 + - uid: 26456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-9.5 - parent: 89 - - uid: 17782 + pos: 0.5,-16.5 + parent: 24450 + - uid: 26457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-9.5 - parent: 89 - - uid: 17783 + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 24450 + - uid: 26458 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-9.5 - parent: 89 - - uid: 17784 + pos: 0.5,-16.5 + parent: 24450 + - uid: 26459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 89 - - uid: 17785 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 24450 + - uid: 26460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 89 - - uid: 17786 + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 24450 + - uid: 28151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 89 - - uid: 17831 + anchored: False + rot: 1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 28152 components: - type: Transform - pos: 37.5,35.5 - parent: 89 - - uid: 17832 + anchored: False + rot: 1.5707963267948966 rad + pos: 35.5,42.5 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: GrilleDiagonal + entities: + - uid: 15700 components: - type: Transform - pos: 34.5,36.5 - parent: 89 - - uid: 17876 + rot: 1.5707963267948966 rad + pos: -49.5,49.5 + parent: 2 + - uid: 15701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,25.5 - parent: 89 - - uid: 17885 + rot: 1.5707963267948966 rad + pos: -124.5,-14.5 + parent: 2 + - uid: 15702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 89 - - uid: 17912 + rot: 1.5707963267948966 rad + pos: -121.5,-16.5 + parent: 2 + - uid: 23845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 89 - - uid: 18006 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 23711 + - uid: 23846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-22.5 - parent: 89 - - uid: 18048 + pos: 1.5,-0.5 + parent: 23711 + - uid: 24171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-33.5 - parent: 89 - - uid: 18060 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 23919 + - uid: 24172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-22.5 - parent: 89 - - uid: 18061 + pos: 2.5,7.5 + parent: 23919 + - uid: 24173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-22.5 - parent: 89 - - uid: 18062 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 23919 + - uid: 24174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-22.5 - parent: 89 - - uid: 18063 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 23919 + - uid: 24411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-22.5 - parent: 89 - - uid: 18064 + pos: -0.5,1.5 + parent: 24340 + - uid: 24412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 89 - - uid: 18065 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 24340 +- proto: GunSafe + entities: + - uid: 1163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 89 - - uid: 18066 + pos: 37.5,-1.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: + - 1164 + - 1170 + - 1169 + - 1165 + - 1166 + - 1168 + - 1167 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-24.5 - parent: 89 - - uid: 18067 + pos: 43.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1178 + - 1174 + - 1177 + - 1172 + - 1175 + - 1173 + - 1176 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-25.5 - parent: 89 - - uid: 18068 + pos: 42.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15709 + - 15708 + - 15710 + - 15706 + - 15705 + - 15704 + - 15707 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15711 components: + - type: MetaData + name: сейф дубинок-шокеров - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-26.5 - parent: 89 - - uid: 18069 + pos: 42.5,-6.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: + - 15719 + - 15718 + - 15717 + - 15716 + - 15715 + - 15714 + - 15713 + - 15712 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 24526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 89 - - uid: 18070 + pos: -11.5,4.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + 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: + - 24545 + - 24547 + - 24536 + - 24535 + - 24539 + - 24538 + - 24537 + - 24542 + - 24530 + - 24550 + - 24531 + - 24527 + - 24529 + - 24534 + - 24540 + - 24541 + - 24528 + - 24543 + - 24548 + - 24533 + - 24546 + - 24544 + - 24549 + - 24532 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 89 - - uid: 18071 + pos: -3.5,-6.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27316 + - 27317 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-31.5 - parent: 89 - - uid: 18072 + pos: 5.5,-11.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27320 + - 27321 + - 27319 + - 27322 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 15720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-32.5 - parent: 89 - - uid: 18073 + pos: 43.5,-6.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 15721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-32.5 - parent: 89 - - uid: 18074 + pos: 49.5,-8.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 15722 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 15723 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 15724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 89 - - uid: 18075 + pos: 47.5,-8.5 + parent: 2 +- proto: GunSafeSubMachineGunWt550 + entities: + - uid: 15725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-32.5 - parent: 89 - - uid: 18076 + pos: 46.5,-8.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 23847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 89 - - uid: 18077 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 23711 + - uid: 24175 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 89 - - uid: 18078 + pos: 4.5,1.5 + parent: 23919 + - uid: 24413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-32.5 - parent: 89 - - uid: 18079 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 24340 + - type: Visibility + layer: 15 + - uid: 26461 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-32.5 - parent: 89 - - uid: 18080 + pos: -2.5,25.5 + parent: 24450 +- proto: Handcuffs + entities: + - uid: 15726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 - parent: 89 - - uid: 18081 + pos: -20.509203,7.4855614 + parent: 2 + - uid: 15727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-32.5 - parent: 89 - - uid: 18082 + pos: -86.700455,14.60647 + parent: 2 + - uid: 15728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 89 - - uid: 18083 + pos: -45.6171,0.5859333 + parent: 2 + - uid: 15729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-32.5 - parent: 89 - - uid: 18084 + pos: -59.432873,7.5281296 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 15730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-33.5 - parent: 89 - - uid: 18085 + rot: 1.5707963267948966 rad + pos: 30.547134,7.4998913 + parent: 2 + - uid: 15731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 89 - - uid: 18086 + pos: 30.570797,7.462756 + parent: 2 + - uid: 15732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-35.5 - parent: 89 - - uid: 18087 + pos: 30.258297,7.478381 + parent: 2 + - uid: 15733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 89 - - uid: 18088 + pos: 30.430172,7.509631 + parent: 2 + - uid: 15734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-37.5 - parent: 89 - - uid: 18089 + pos: 30.758297,7.478381 + parent: 2 + - uid: 26462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 89 - - uid: 18090 + pos: -5.532196,-17.647125 + parent: 24450 +- proto: HandHeldMassScanner + entities: + - uid: 15735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 89 - - uid: 18091 + rot: -1.5707963267948966 rad + pos: -50.481277,-15.240487 + parent: 2 +- proto: HandLabeler + entities: + - uid: 15736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-41.5 - parent: 89 - - uid: 18092 + pos: 44.527477,6.704564 + parent: 2 + - uid: 15737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 - parent: 89 - - uid: 18093 + pos: 20.515057,6.879887 + parent: 2 + - uid: 15738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 - parent: 89 - - uid: 18094 + rot: -1.5707963267948966 rad + pos: -50.293777,-16.287361 + parent: 2 +- proto: HappyHonkNukieSnacks + entities: + - uid: 15739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 89 - - uid: 18095 + pos: 21.487997,-17.439909 + parent: 2 +- proto: HarpInstrument + entities: + - uid: 15740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 89 - - uid: 18096 + pos: -29.5,-9.5 + parent: 2 +- proto: HeadBorgJanitor + entities: + - uid: 15741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-43.5 - parent: 89 - - uid: 18097 + pos: -35.29812,9.790613 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 26463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-44.5 - parent: 89 - - uid: 18098 + pos: 3.9304833,10.600748 + parent: 24450 +- proto: HeatExchanger + entities: + - uid: 15742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-45.5 - parent: 89 - - uid: 18099 + rot: 1.5707963267948966 rad + pos: -76.5,-13.5 + parent: 2 + - uid: 15743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-48.5 - parent: 89 - - uid: 18100 + rot: 1.5707963267948966 rad + pos: -76.5,-11.5 + parent: 2 +- proto: HelicopterInstrument + entities: + - uid: 15744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-49.5 - parent: 89 - - uid: 18101 + pos: 17.650578,25.636961 + parent: 2 + - uid: 15745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 - parent: 89 - - uid: 18102 + pos: -61.430115,47.965298 + parent: 2 +- proto: Hemostat + entities: + - uid: 15746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-50.5 - parent: 89 - - uid: 18103 + pos: -11.463182,21.549883 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 15747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-50.5 - parent: 89 - - uid: 18104 + pos: 38.5,-5.5 + parent: 2 + - uid: 15748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 89 - - uid: 18105 + pos: 42.5,-9.5 + parent: 2 + - uid: 15749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 - parent: 89 - - uid: 18106 + pos: 38.5,-6.5 + parent: 2 + - uid: 27798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-50.5 - parent: 89 - - uid: 18107 + pos: 3.5,-9.5 + parent: 27260 +- proto: HighSecCommandLocked + entities: + - uid: 15750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 - parent: 89 - - uid: 18108 + pos: 56.5,4.5 + parent: 2 + - uid: 15751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-50.5 - parent: 89 - - uid: 18109 + pos: 49.5,-0.5 + parent: 2 + - uid: 15752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 89 - - uid: 18110 + pos: -113.5,25.5 + parent: 2 + - uid: 15753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 89 - - uid: 18111 + pos: -108.5,22.5 + parent: 2 + - uid: 15754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-50.5 - parent: 89 - - uid: 18112 + pos: -108.5,19.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 15755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-50.5 - parent: 89 - - uid: 18113 + pos: 1.0469074,27.745178 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 15756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-50.5 - parent: 89 - - uid: 18114 + pos: 9.5,18.5 + parent: 2 + - uid: 15757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-50.5 - parent: 89 - - uid: 18115 + pos: -20.5,-22.5 + parent: 2 + - uid: 15758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-50.5 - parent: 89 - - uid: 18117 + pos: -36.5,33.5 + parent: 2 + - type: Occluder + enabled: False + - type: Door + state: Open + - type: Physics + canCollide: False + - uid: 15759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 89 - - uid: 18118 + pos: -23.5,33.5 + parent: 2 + - uid: 15760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 89 - - uid: 18119 + pos: 1.5,21.5 + parent: 2 + - uid: 15761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-45.5 - parent: 89 - - uid: 18120 + pos: 1.5,19.5 + parent: 2 + - uid: 15762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-44.5 - parent: 89 - - uid: 18121 + pos: 1.5,15.5 + parent: 2 + - uid: 15763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-43.5 - parent: 89 - - uid: 18122 + pos: 1.5,17.5 + parent: 2 + - uid: 15764 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-42.5 - parent: 89 - - uid: 18124 + pos: 1.5,7.5 + parent: 2 + - uid: 15765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-38.5 - parent: 89 - - uid: 18125 + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - uid: 15766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 89 - - uid: 18126 + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 15767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-37.5 - parent: 89 - - uid: 18127 + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 15768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 89 - - uid: 18128 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - uid: 15769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 89 - - uid: 18129 + pos: 53.5,-33.5 + parent: 2 + - uid: 15770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-33.5 - parent: 89 - - uid: 18130 + pos: 51.5,-33.5 + parent: 2 + - uid: 15771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-33.5 - parent: 89 - - uid: 18131 + pos: 49.5,-33.5 + parent: 2 + - uid: 15772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-32.5 - parent: 89 - - uid: 18132 + pos: 47.5,-33.5 + parent: 2 + - uid: 15773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-31.5 - parent: 89 - - uid: 18133 + pos: 10.5,18.5 + parent: 2 + - uid: 15774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-30.5 - parent: 89 - - uid: 18134 + pos: 11.5,18.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 15775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-29.5 - parent: 89 - - uid: 18135 + pos: -27.5,-4.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-28.5 - parent: 89 - - uid: 18136 + pos: -27.5,-5.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 89 - - uid: 18138 + pos: 50.5,14.5 + parent: 2 + - uid: 15778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 89 - - uid: 18139 + pos: -34.5,-3.5 + parent: 2 + - uid: 15779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 89 - - uid: 18140 + pos: -35.5,-6.5 + parent: 2 + - uid: 15780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 89 - - uid: 18141 + pos: -34.5,-9.5 + parent: 2 + - uid: 15781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-22.5 - parent: 89 - - uid: 18142 + pos: -27.5,-6.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 89 - - uid: 18145 + pos: -73.5,-12.5 + parent: 2 + - uid: 15783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 89 - - uid: 18146 + pos: 31.5,-3.5 + parent: 2 + - uid: 15784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 89 - - uid: 18147 + pos: -47.5,10.5 + parent: 2 + - uid: 15785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 89 - - uid: 18148 + pos: -27.5,-7.5 + parent: 2 + - uid: 15786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 89 - - uid: 18149 + pos: 7.5,-28.5 + parent: 2 + - uid: 15787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 89 - - uid: 18150 + pos: -37.5,33.5 + parent: 2 + - uid: 15788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-20.5 - parent: 89 - - uid: 18160 + pos: -22.5,33.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,19.5 - parent: 89 - - uid: 18330 + pos: 3.5,15.5 + parent: 2 + - uid: 15790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-34.5 - parent: 89 - - uid: 18340 + pos: 1.5,20.5 + parent: 2 + - uid: 15791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-34.5 - parent: 89 - - uid: 18405 + pos: 3.5,17.5 + parent: 2 + - uid: 15792 components: - type: Transform - pos: 41.5,-12.5 - parent: 89 - - uid: 18406 + pos: 3.5,21.5 + parent: 2 + - uid: 15793 components: - type: Transform - pos: 41.5,-14.5 - parent: 89 - - uid: 18426 + pos: 3.5,19.5 + parent: 2 + - uid: 15794 components: - type: Transform - pos: 61.5,27.5 - parent: 89 - - uid: 18432 + pos: 1.5,16.5 + parent: 2 + - uid: 15795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-33.5 - parent: 89 - - uid: 18444 + pos: 21.5,23.5 + parent: 2 + - uid: 15796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,-33.5 - parent: 89 - - uid: 18734 + pos: 12.5,37.5 + parent: 2 + - uid: 15797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-32.5 - parent: 89 - - uid: 18865 + pos: 5.5,37.5 + parent: 2 + - uid: 15798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-32.5 - parent: 89 - - uid: 18868 + pos: 7.5,37.5 + parent: 2 + - uid: 15799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-29.5 - parent: 89 - - uid: 18871 + pos: 14.5,37.5 + parent: 2 + - uid: 15800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-24.5 - parent: 89 - - uid: 18872 + pos: -27.5,-8.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-23.5 - parent: 89 - - uid: 19798 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 15802 components: - type: Transform - pos: 33.5,40.5 - parent: 89 - - uid: 19824 + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 15803 components: - type: Transform - pos: -12.5,25.5 - parent: 89 - - uid: 19865 + pos: 40.5,17.5 + parent: 2 + - uid: 15804 components: - type: Transform - pos: 25.5,33.5 - parent: 89 - - uid: 19867 + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - uid: 15805 components: - type: Transform - pos: 23.5,44.5 - parent: 89 - - uid: 19868 + rot: 3.141592653589793 rad + pos: -45.5,25.5 + parent: 2 + - uid: 15806 components: - type: Transform - pos: 24.5,44.5 - parent: 89 - - uid: 19869 + rot: 3.141592653589793 rad + pos: -44.5,25.5 + parent: 2 + - uid: 15807 components: - type: Transform - pos: 25.5,44.5 - parent: 89 - - uid: 19881 + rot: 3.141592653589793 rad + pos: -43.5,25.5 + parent: 2 + - uid: 15808 components: - type: Transform - pos: 23.5,33.5 - parent: 89 - - uid: 19907 + rot: 3.141592653589793 rad + pos: -42.5,25.5 + parent: 2 + - uid: 24176 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 89 - - uid: 19908 + pos: 6.5,-4.5 + parent: 23919 + - uid: 24177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 89 - - uid: 19909 + pos: 6.5,-5.5 + parent: 23919 +- proto: hydroponicsSoil + entities: + - uid: 15809 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 15812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 89 - - uid: 19920 + pos: 7.5,-22.5 + parent: 2 + - uid: 15813 components: - type: Transform - pos: 33.5,37.5 - parent: 89 - - uid: 19921 + pos: 40.5,-31.5 + parent: 2 + - uid: 15814 components: - type: Transform - pos: 33.5,38.5 - parent: 89 - - uid: 19922 + pos: 43.5,-29.5 + parent: 2 + - uid: 15815 components: - type: Transform - pos: 33.5,39.5 - parent: 89 - - uid: 19923 + pos: 40.5,-29.5 + parent: 2 + - uid: 15816 components: - type: Transform - pos: 33.5,36.5 - parent: 89 - - uid: 19929 + pos: 43.5,-31.5 + parent: 2 + - uid: 15817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 89 - - uid: 19941 + pos: 43.5,-32.5 + parent: 2 + - uid: 15818 components: - type: Transform - pos: 33.5,41.5 - parent: 89 - - uid: 19942 + pos: 40.5,-28.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 15819 components: - type: Transform - pos: 28.5,44.5 - parent: 89 - - uid: 19943 + pos: 41.537804,-33.535225 + parent: 2 + - uid: 15820 components: - type: Transform - pos: 28.5,45.5 - parent: 89 - - uid: 19944 + pos: 41.45968,-31.300852 + parent: 2 + - uid: 15821 components: - type: Transform - pos: 28.5,46.5 - parent: 89 - - uid: 19945 + pos: 42.64718,-30.191477 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 15822 components: - type: Transform - pos: 26.5,47.5 - parent: 89 - - uid: 19946 + rot: -1.5707963267948966 rad + pos: 6.4907417,-25.471716 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 15823 components: - type: Transform - pos: 25.5,47.5 - parent: 89 - - uid: 19947 + pos: -5.3726068,37.559914 + parent: 2 + - uid: 15824 components: - type: Transform - pos: 24.5,47.5 - parent: 89 - - uid: 19948 + pos: 42.58468,-31.003977 + parent: 2 + - uid: 15825 components: - type: Transform - pos: 23.5,47.5 - parent: 89 - - uid: 19949 + pos: 41.45968,-32.80085 + parent: 2 + - uid: 15826 components: - type: Transform - pos: 22.5,47.5 - parent: 89 - - uid: 19951 + rot: 3.141592653589793 rad + pos: 42.261623,-31.969624 + parent: 2 + - uid: 15827 components: - type: Transform - pos: 20.5,46.5 - parent: 89 - - uid: 19952 + rot: 3.141592653589793 rad + pos: 42.636623,-33.6415 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 15828 components: - type: Transform - pos: 20.5,45.5 - parent: 89 - - uid: 19953 + pos: 42.706074,-32.85235 + parent: 2 + - uid: 15829 components: - type: Transform - pos: 20.5,44.5 - parent: 89 - - uid: 19955 + pos: 41.424824,-28.586721 + parent: 2 + - uid: 15830 components: - type: Transform - pos: 17.5,42.5 - parent: 89 - - uid: 19956 + rot: 3.141592653589793 rad + pos: 41.355373,-30.110249 + parent: 2 + - uid: 15831 components: - type: Transform - pos: 18.5,42.5 - parent: 89 - - uid: 20009 + rot: 3.141592653589793 rad + pos: 42.917873,-29.141499 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 15832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,47.5 - parent: 89 - - uid: 20022 + pos: -7.5,-0.5 + parent: 2 + - uid: 15833 components: - type: Transform - pos: -7.5,19.5 - parent: 89 - - uid: 20023 + pos: -7.5,-2.5 + parent: 2 + - uid: 15834 components: - type: Transform - pos: -7.5,20.5 - parent: 89 - - uid: 20024 + pos: -6.5,-2.5 + parent: 2 + - uid: 15835 components: - type: Transform - pos: -7.5,17.5 - parent: 89 - - uid: 20204 + pos: -6.5,-4.5 + parent: 2 + - uid: 15836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,34.5 - parent: 89 - - uid: 20255 + pos: -7.5,-4.5 + parent: 2 + - uid: 15837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 89 - - uid: 20256 + pos: -6.5,-0.5 + parent: 2 + - uid: 15838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 89 - - uid: 20389 + pos: -8.5,-2.5 + parent: 2 + - uid: 15839 components: - type: Transform - pos: 39.5,-32.5 - parent: 89 - - uid: 20392 + pos: -8.5,-4.5 + parent: 2 + - uid: 15840 components: - type: Transform - pos: 39.5,-31.5 - parent: 89 - - uid: 20400 + pos: 40.5,-30.5 + parent: 2 + - uid: 15841 components: - type: Transform - pos: -142.5,-19.5 - parent: 89 - - uid: 20420 + pos: 43.5,-30.5 + parent: 2 + - uid: 15842 components: - type: Transform - pos: 39.5,-33.5 - parent: 89 - - uid: 20437 + pos: 40.5,-33.5 + parent: 2 + - uid: 15843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,37.5 - parent: 89 - - uid: 20475 + pos: 43.5,-33.5 + parent: 2 + - uid: 15844 components: - type: Transform - pos: -139.5,-19.5 - parent: 89 - - uid: 20572 + pos: 40.5,-32.5 + parent: 2 + - uid: 15845 components: - type: Transform - pos: -145.5,-19.5 - parent: 89 - - uid: 20574 + pos: -5.5,-4.5 + parent: 2 + - uid: 15846 components: - type: Transform - pos: -145.5,-21.5 - parent: 89 - - uid: 20580 + pos: -4.5,-4.5 + parent: 2 + - uid: 15847 components: - type: Transform - pos: -161.5,-11.5 - parent: 89 - - uid: 20585 + pos: -4.5,-2.5 + parent: 2 + - uid: 15848 components: - type: Transform - pos: -161.5,-5.5 - parent: 89 - - uid: 20586 + pos: -5.5,-2.5 + parent: 2 +- proto: IgniteRune + entities: + - uid: 26464 components: - type: Transform - pos: -142.5,-21.5 - parent: 89 - - uid: 20597 + pos: -8.5,-2.5 + parent: 24450 +- proto: InflatableDoorStack + entities: + - uid: 15849 components: - type: Transform - pos: -148.5,-19.5 - parent: 89 - - uid: 20601 + rot: 3.141592653589793 rad + pos: -90.34418,-11.2949505 + parent: 2 + - uid: 15850 components: - type: Transform - pos: -148.5,-21.5 - parent: 89 - - uid: 20603 + rot: 3.141592653589793 rad + pos: -90.2973,-11.6699505 + parent: 2 + - uid: 15851 components: - type: Transform - pos: -150.5,-19.5 - parent: 89 - - uid: 20604 + pos: -75.44624,12.53618 + parent: 2 +- proto: InflatableWall + entities: + - uid: 15852 components: - type: Transform - pos: -152.5,-21.5 - parent: 89 - - uid: 20605 + rot: -1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - uid: 15853 components: - type: Transform - pos: -152.5,-19.5 - parent: 89 - - uid: 20606 + rot: -1.5707963267948966 rad + pos: -128.5,-6.5 + parent: 2 + - uid: 15854 components: - type: Transform - pos: -154.5,-21.5 - parent: 89 - - uid: 20608 + pos: -52.5,32.5 + parent: 2 + - uid: 15855 components: - type: Transform - pos: -154.5,-19.5 - parent: 89 - - uid: 20609 + pos: -41.5,28.5 + parent: 2 + - uid: 15856 components: - type: Transform - pos: -156.5,-21.5 - parent: 89 - - uid: 20610 + pos: -41.5,29.5 + parent: 2 + - uid: 15857 components: - type: Transform - pos: -156.5,-19.5 - parent: 89 - - uid: 20611 + pos: -131.5,24.5 + parent: 2 + - uid: 15858 components: - type: Transform - pos: -158.5,-21.5 - parent: 89 - - uid: 20612 + pos: -130.5,24.5 + parent: 2 + - uid: 15859 components: - type: Transform - pos: -158.5,-19.5 - parent: 89 - - uid: 20613 + pos: -133.5,21.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 15860 components: - type: Transform - pos: -161.5,-17.5 - parent: 89 - - uid: 20614 + rot: 3.141592653589793 rad + pos: -90.9848,-11.5918255 + parent: 2 + - uid: 15861 components: - type: Transform - pos: -159.5,-17.5 - parent: 89 - - uid: 20616 + rot: 3.141592653589793 rad + pos: -90.9223,-11.3418255 + parent: 2 + - uid: 15862 components: - type: Transform - pos: -161.5,-15.5 - parent: 89 - - uid: 20617 + pos: -75.46187,13.06743 + parent: 2 +- proto: IngotGold + entities: + - uid: 15863 components: - type: Transform - pos: -159.5,-15.5 - parent: 89 - - uid: 20619 + pos: -8.470213,28.527115 + parent: 2 + - uid: 15864 components: - type: Transform - pos: -161.5,-13.5 - parent: 89 - - uid: 20621 + pos: 48.437695,-3.4508457 + parent: 2 + - uid: 25746 components: - type: Transform - pos: -159.5,-13.5 - parent: 89 - - uid: 20624 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotSilver + entities: + - uid: 15865 components: - type: Transform - pos: -159.5,-11.5 - parent: 89 - - uid: 20625 + pos: 50.562695,-3.4508457 + parent: 2 + - uid: 24178 components: - type: Transform - pos: -154.5,4.5 - parent: 89 - - uid: 20626 + pos: 4.408203,-7.3639374 + parent: 23919 + - uid: 25747 components: - type: Transform - pos: -161.5,-9.5 - parent: 89 - - uid: 20627 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IntercomCommand + entities: + - uid: 15866 components: - type: Transform - pos: -159.5,-9.5 - parent: 89 - - uid: 20628 + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 15867 components: - type: Transform - pos: -161.5,-7.5 - parent: 89 - - uid: 20629 + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 15868 components: - type: Transform - pos: -159.5,-7.5 - parent: 89 - - uid: 20630 + pos: 61.5,14.5 + parent: 2 + - uid: 15869 components: - type: Transform - pos: -159.5,-5.5 - parent: 89 - - uid: 20631 + rot: 3.141592653589793 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 15870 components: - type: Transform - pos: -161.5,-3.5 - parent: 89 - - uid: 20632 + pos: 25.5,38.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 15871 components: - type: Transform - pos: -159.5,-3.5 - parent: 89 - - uid: 20633 + rot: 3.141592653589793 rad + pos: -49.5,-5.5 + parent: 2 +- proto: IntercomElectronics + entities: + - uid: 15872 components: - type: Transform - pos: -161.5,-1.5 - parent: 89 - - uid: 20634 + pos: -104.34865,-10.52207 + parent: 2 + - uid: 15873 components: - type: Transform - pos: -159.5,-1.5 - parent: 89 - - uid: 20635 + pos: -104.6299,-10.24082 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15874 components: - type: Transform - pos: -161.5,0.5 - parent: 89 - - uid: 20636 + rot: -1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - uid: 15875 components: - type: Transform - pos: -159.5,0.5 - parent: 89 - - uid: 20638 + pos: -13.5,10.5 + parent: 2 + - uid: 15876 components: - type: Transform - pos: -161.5,2.5 - parent: 89 - - uid: 20639 + pos: 16.5,16.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 15877 components: - type: Transform - pos: -159.5,2.5 - parent: 89 - - uid: 20640 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 2 + - uid: 15878 components: - type: Transform - pos: -158.5,4.5 - parent: 89 - - uid: 20642 + pos: -3.5,-37.5 + parent: 2 + - uid: 15879 components: - type: Transform - pos: -158.5,6.5 - parent: 89 - - uid: 20643 + pos: -6.5,-19.5 + parent: 2 + - uid: 15880 components: - type: Transform - pos: -156.5,4.5 - parent: 89 - - uid: 20644 + rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 15881 components: - type: Transform - pos: -156.5,6.5 - parent: 89 - - uid: 20646 + pos: 30.5,-0.5 + parent: 2 + - uid: 15882 components: - type: Transform - pos: -154.5,6.5 - parent: 89 - - uid: 20647 + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 15883 components: - type: Transform - pos: -152.5,4.5 - parent: 89 - - uid: 20648 + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 15884 components: - type: Transform - pos: -152.5,6.5 - parent: 89 - - uid: 20649 + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 +- proto: IronRock + entities: + - uid: 26465 components: - type: Transform - pos: -150.5,4.5 - parent: 89 - - uid: 20651 + pos: -26.5,-8.5 + parent: 24450 + - uid: 26466 components: - type: Transform - pos: -150.5,6.5 - parent: 89 - - uid: 20652 + pos: -26.5,-7.5 + parent: 24450 + - uid: 26467 components: - type: Transform - pos: -148.5,4.5 - parent: 89 - - uid: 20653 + pos: -25.5,-7.5 + parent: 24450 +- proto: IronRockMining + entities: + - uid: 26468 components: - type: Transform - pos: -148.5,6.5 - parent: 89 - - uid: 20654 + pos: -1.5,-8.5 + parent: 24450 + - uid: 26469 components: - type: Transform - pos: -146.5,4.5 - parent: 89 - - uid: 20655 + pos: 2.5,-7.5 + parent: 24450 + - uid: 26470 components: - type: Transform - pos: -146.5,6.5 - parent: 89 - - uid: 20664 + pos: 0.5,-4.5 + parent: 24450 +- proto: JanitorialTrolley + entities: + - uid: 15885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,35.5 - parent: 89 - - uid: 20665 + pos: -41.5,8.5 + parent: 2 + - uid: 15886 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 89 - - uid: 20672 + pos: 5.5,9.5 + parent: 2 + - uid: 15887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,35.5 - parent: 89 - - uid: 20673 + pos: -36.5,7.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 15888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,38.5 - parent: 89 - - uid: 20674 + pos: 32.695797,5.556506 + parent: 2 + - uid: 15889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,37.5 - parent: 89 - - uid: 20683 + pos: 32.398922,5.572131 + parent: 2 + - uid: 15890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 89 - - uid: 20700 + pos: 32.664547,5.556506 + parent: 2 + - uid: 15891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,37.5 - parent: 89 - - uid: 20702 + pos: 32.570797,5.525256 + parent: 2 + - uid: 15892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,33.5 - parent: 89 - - uid: 20710 + pos: 32.680172,5.587756 + parent: 2 +- proto: JetpackMini + entities: + - uid: 26471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,37.5 - parent: 89 - - uid: 20711 + pos: -0.04309082,-12.018944 + parent: 24450 +- proto: JetpackMiniFilled + entities: + - uid: 15893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,38.5 - parent: 89 - - uid: 20712 + pos: -88.53448,26.530077 + parent: 2 + - uid: 15894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,40.5 - parent: 89 - - uid: 20713 + pos: 52.53474,-8.405069 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 15895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,41.5 - parent: 89 - - uid: 20714 + pos: -13.5,-3.5 + parent: 2 + - uid: 15896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,30.5 - parent: 89 - - uid: 20715 + pos: 46.5,-25.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 15897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,41.5 - parent: 89 - - uid: 20716 + pos: -14.5,-0.5 + parent: 2 + - uid: 15898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,40.5 - parent: 89 - - uid: 20717 + pos: -12.5,-0.5 + parent: 2 + - uid: 15899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,41.5 - parent: 89 - - uid: 20718 + pos: -119.5,-15.5 + parent: 2 + - uid: 15900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 89 - - uid: 20720 + pos: -5.5,32.5 + parent: 2 + - uid: 15901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,31.5 - parent: 89 - - uid: 20721 + pos: 46.5,-28.5 + parent: 2 + - uid: 15902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 89 - - uid: 20723 + pos: 46.5,-24.5 + parent: 2 + - uid: 15903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,31.5 - parent: 89 - - uid: 20724 + pos: 33.5,-5.5 + parent: 2 + - uid: 15904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,31.5 - parent: 89 - - uid: 20725 + pos: -96.5,-4.5 + parent: 2 + - uid: 26472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,43.5 - parent: 89 - - uid: 20726 + pos: -14.5,-24.5 + parent: 24450 +- proto: KitchenReagentGrinder + entities: + - uid: 15905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,45.5 - parent: 89 - - uid: 20727 + pos: -11.5,-0.5 + parent: 2 + - uid: 15906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,45.5 - parent: 89 - - uid: 20728 + pos: -29.5,0.5 + parent: 2 + - uid: 15907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,44.5 - parent: 89 - - uid: 20729 + pos: -13.5,-0.5 + parent: 2 + - uid: 15908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,45.5 - parent: 89 - - uid: 20730 + pos: -5.5,33.5 + parent: 2 + - uid: 15909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,45.5 - parent: 89 - - uid: 20731 + pos: 47.5,-28.5 + parent: 2 + - uid: 15910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,41.5 - parent: 89 - - uid: 20732 + pos: 46.5,-27.5 + parent: 2 + - uid: 15911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,41.5 - parent: 89 - - uid: 20733 + pos: -3.5,6.5 + parent: 2 + - uid: 27799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 89 - - uid: 20734 + pos: -2.5,-12.5 + parent: 27260 +- proto: KitchenSpike + entities: + - uid: 15912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,41.5 - parent: 89 - - uid: 20735 + pos: -12.5,-9.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 15913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,41.5 - parent: 89 - - uid: 20736 + pos: -12.095051,-31.779919 + parent: 2 + - uid: 15914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,41.5 - parent: 89 - - uid: 20737 + pos: 46.707172,-27.829277 + parent: 2 +- proto: KudzuFlowerFriendly + entities: + - uid: 15915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,41.5 - parent: 89 - - uid: 20738 + rot: 3.141592653589793 rad + pos: -90.5,-14.5 + parent: 2 +- proto: Lamp + entities: + - uid: 15916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,41.5 - parent: 89 - - uid: 20739 + rot: 3.141592653589793 rad + pos: -103.93759,21.725552 + parent: 2 + - uid: 15917 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,28.5 - parent: 89 - - uid: 20740 + pos: -61.446922,-5.000888 + parent: 2 + - uid: 15918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,27.5 - parent: 89 - - uid: 20781 + pos: 44.501057,6.3397737 + parent: 2 + - uid: 15919 components: - type: Transform - pos: 38.5,35.5 - parent: 89 - - uid: 20799 + pos: 20.482098,5.6791444 + parent: 2 + - uid: 15920 components: - type: Transform - pos: 35.5,36.5 - parent: 89 - - uid: 20883 + pos: 8.682205,9.82186 + parent: 2 + - uid: 15921 components: - type: Transform - pos: 15.5,-26.5 - parent: 89 - - uid: 20884 + rot: 3.141592653589793 rad + pos: -25.549576,9.8738165 + parent: 2 + - uid: 15922 components: - type: Transform - pos: 16.5,-26.5 - parent: 89 - - uid: 20885 + rot: 3.141592653589793 rad + pos: -0.5588393,19.764381 + parent: 2 + - uid: 15923 components: - type: Transform - pos: 17.5,-26.5 - parent: 89 - - uid: 20886 + rot: -1.5707963267948966 rad + pos: 25.538666,40.34335 + parent: 2 + - uid: 15924 components: - type: Transform - pos: 17.5,-25.5 - parent: 89 - - uid: 20887 + rot: 3.141592653589793 rad + pos: 58.432224,-31.40483 + parent: 2 +- proto: LampBanana + entities: + - uid: 15925 components: - type: Transform - pos: 17.5,-24.5 - parent: 89 - - uid: 20888 + pos: -35.397045,-3.1333203 + parent: 2 +- proto: LampGold + entities: + - uid: 15926 components: - type: Transform - pos: 17.5,-23.5 - parent: 89 - - uid: 20890 + pos: -27.461552,25.006954 + parent: 2 + - uid: 15927 components: - type: Transform - pos: 19.5,-23.5 - parent: 89 - - uid: 20891 + rot: 1.5707963267948966 rad + pos: -49.895138,9.879225 + parent: 2 + - uid: 15928 components: - type: Transform - pos: 20.5,-23.5 - parent: 89 - - uid: 20892 + rot: -1.5707963267948966 rad + pos: -73.3404,-1.379747 + parent: 2 + - uid: 15929 components: - type: Transform - pos: 20.5,-22.5 - parent: 89 - - uid: 21042 + rot: 3.141592653589793 rad + pos: 55.557224,-33.389206 + parent: 2 + - uid: 15930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 89 - - uid: 21043 + pos: -79.66362,-1.3675164 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 15931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 89 - - uid: 21055 + pos: 18.405268,11.867744 + parent: 2 + - uid: 15932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,26.5 - parent: 89 - - uid: 21056 + pos: 3.9796157,-0.92675114 + parent: 2 + - uid: 15933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,26.5 - parent: 89 - - uid: 21057 + pos: 34.329742,-3.3009233 + parent: 2 + - uid: 15934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,26.5 - parent: 89 - - uid: 21065 + pos: -23.583075,8.832296 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 15935 components: - type: Transform - pos: 37.5,42.5 - parent: 89 - - uid: 21066 + pos: -121.41261,20.372383 + parent: 2 + - uid: 15936 components: - type: Transform - pos: 36.5,42.5 - parent: 89 - - uid: 21067 + pos: -17.49261,17.490574 + parent: 2 + - uid: 15937 components: - type: Transform - pos: 38.5,42.5 - parent: 89 - - uid: 21068 + pos: -7.4802694,33.297485 + parent: 2 + - uid: 15938 components: - type: Transform - pos: 39.5,42.5 - parent: 89 - - uid: 21069 + pos: 0.49442625,43.3962 + parent: 2 + - uid: 15939 components: - type: Transform - pos: 40.5,42.5 - parent: 89 - - uid: 21160 + pos: 50.606052,-16.011705 + parent: 2 + - uid: 15940 components: - type: Transform - pos: 49.5,18.5 - parent: 89 - - uid: 21161 + pos: -4.4686537,40.2199 + parent: 2 + - uid: 15941 components: - type: Transform - pos: 49.5,17.5 - parent: 89 - - uid: 21199 + pos: 34.688606,-35.510906 + parent: 2 + - uid: 15942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,25.5 - parent: 89 - - uid: 21579 + pos: 45.455486,-39.604183 + parent: 2 + - uid: 15943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,47.5 - parent: 89 - - uid: 21580 + pos: 0.68342876,35.56857 + parent: 2 + - uid: 15944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,47.5 - parent: 89 - - uid: 21581 + pos: -22.0184,28.013847 + parent: 2 + - uid: 15945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 89 - - uid: 21582 + pos: -37.92106,27.596144 + parent: 2 + - uid: 15946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 89 - - uid: 21698 + pos: 51.694767,-39.464676 + parent: 2 + - uid: 15947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 21627 - - uid: 21699 + pos: 37.066868,-39.541683 + parent: 2 + - uid: 15948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 - - uid: 21700 + pos: 60.532272,-15.471241 + parent: 2 + - uid: 15949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 21627 - - uid: 21837 + pos: -20.449375,23.433443 + parent: 2 + - uid: 15950 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 21882 + pos: -14.347334,33.5509 + parent: 2 + - uid: 15951 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 21885 + pos: 65.5428,-24.867735 + parent: 2 + - uid: 15952 components: - type: Transform - pos: 55.5,-37.5 - parent: 89 - - uid: 21886 + pos: 55.81865,-39.589676 + parent: 2 + - uid: 15953 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 21887 + pos: 60.473576,-39.495926 + parent: 2 + - uid: 15954 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 21888 + pos: 64.45394,-36.5428 + parent: 2 + - uid: 15955 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 21889 + pos: 64.40707,-30.985271 + parent: 2 + - uid: 15956 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 21890 + pos: 63.5428,-18.87275 + parent: 2 + - uid: 15957 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 21891 + pos: 41.560143,-39.416103 + parent: 2 + - uid: 15958 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 21892 + pos: 34.571785,-30.9184 + parent: 2 + - uid: 15959 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 21893 + pos: -21.363699,23.506382 + parent: 2 + - uid: 15960 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 21894 + pos: -44.660183,24.428074 + parent: 2 + - uid: 15961 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 21895 + pos: -92.34617,26.45698 + parent: 2 + - uid: 15962 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 21897 + pos: -127.621735,20.374523 + parent: 2 + - uid: 15963 components: - type: Transform - pos: 55.5,-38.5 - parent: 89 - - uid: 21898 + pos: -125.420425,20.408354 + parent: 2 +- proto: LandMineModular + entities: + - uid: 15964 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 21899 + pos: 47.42424,13.201784 + parent: 2 + - uid: 15965 components: + - type: MetaData + name: взрывная мина - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 21900 + pos: 47.278114,-15.313954 + parent: 2 + - uid: 15966 components: + - type: MetaData + name: взрывная мина - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 21901 + pos: 50.23124,-13.423328 + parent: 2 +- proto: Lantern + entities: + - uid: 15967 components: - type: Transform - pos: 53.5,-37.5 - parent: 89 - - uid: 21903 + pos: 8.490026,-20.236387 + parent: 2 + - uid: 15968 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 21904 + pos: -12.79487,-35.70387 + parent: 2 + - uid: 26473 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 21905 + pos: 4.397705,10.767603 + parent: 24450 + - uid: 26474 components: - type: Transform - pos: 37.5,-35.5 - parent: 89 - - uid: 21907 + pos: 3.5099854,10.626978 + parent: 24450 +- proto: LargeBeaker + entities: + - uid: 15969 components: - type: Transform - pos: 36.5,-34.5 - parent: 89 - - uid: 21908 + pos: 46.36333,-26.008604 + parent: 2 + - uid: 15970 components: - type: Transform - pos: 36.5,-33.5 - parent: 89 - - uid: 21909 + pos: 46.597706,-25.99298 + parent: 2 + - uid: 15971 components: - type: Transform - pos: 36.5,-32.5 - parent: 89 - - uid: 21910 + pos: -1.9276239,5.7597456 + parent: 2 + - uid: 27800 components: - type: Transform - pos: 36.5,-31.5 - parent: 89 - - uid: 21911 + pos: -3.3199615,-13.10495 + parent: 27260 +- proto: LeavesCannabisDried + entities: + - uid: 9224 components: - type: Transform - pos: 37.5,-31.5 - parent: 89 - - uid: 21912 + parent: 9223 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LightBulb + entities: + - uid: 15973 components: - type: Transform - pos: 37.5,-30.5 - parent: 89 - - uid: 21913 + parent: 15972 + - type: Physics + canCollide: False + - uid: 15975 components: - type: Transform - pos: 37.5,-29.5 - parent: 89 - - uid: 21915 + parent: 15974 + - type: Physics + canCollide: False + - uid: 15977 components: - type: Transform - pos: 56.5,-38.5 - parent: 89 - - uid: 21916 + parent: 15976 + - type: Physics + canCollide: False + - uid: 15979 components: - type: Transform - pos: 57.5,-38.5 - parent: 89 - - uid: 21917 + parent: 15978 + - type: Physics + canCollide: False + - uid: 15981 components: - type: Transform - pos: 58.5,-38.5 - parent: 89 - - uid: 21921 + parent: 15980 + - type: Physics + canCollide: False + - uid: 15983 components: - type: Transform - pos: 59.5,-37.5 - parent: 89 - - uid: 21922 + parent: 15982 + - type: Physics + canCollide: False +- proto: Lighter + entities: + - uid: 25646 components: - type: Transform - pos: 60.5,-37.5 - parent: 89 - - uid: 21923 + parent: 25644 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LightReplacer + entities: + - uid: 15984 components: - type: Transform - pos: 61.5,-37.5 - parent: 89 - - uid: 21924 + pos: -78.464035,-6.370775 + parent: 2 + - uid: 15985 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 21925 + pos: -95.46373,16.583893 + parent: 2 +- proto: LightTree04 + entities: + - uid: 15986 components: - type: Transform - pos: 62.5,-36.5 - parent: 89 - - uid: 21926 + pos: 40.450554,-29.439976 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 15987 components: - type: Transform - pos: 62.5,-35.5 - parent: 89 - - uid: 21927 + pos: -86.5,-4.5 + parent: 2 + - uid: 15988 components: - type: Transform - pos: 62.5,-34.5 - parent: 89 - - uid: 21928 + pos: 2.5,-38.5 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 15989 components: - type: Transform - pos: 62.5,-33.5 - parent: 89 - - uid: 21929 + pos: -84.5,-5.5 + parent: 2 + - uid: 15990 components: - type: Transform - pos: 62.5,-32.5 - parent: 89 - - uid: 21930 + pos: -0.5,-38.5 + parent: 2 + - uid: 15991 components: - type: Transform - pos: 62.5,-31.5 - parent: 89 - - uid: 21931 + pos: -84.5,-4.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 15992 components: - type: Transform - pos: 62.5,-30.5 - parent: 89 - - uid: 21932 + pos: -85.5,-5.5 + parent: 2 + - uid: 15993 components: - type: Transform - pos: 62.5,-29.5 - parent: 89 - - uid: 21934 + pos: 0.5,-38.5 + parent: 2 + - uid: 15994 components: - type: Transform - pos: 63.5,-28.5 - parent: 89 - - uid: 21935 + pos: -85.5,-4.5 + parent: 2 +- proto: LockableButtonCaptain + entities: + - uid: 27801 components: - type: Transform - pos: 63.5,-27.5 - parent: 89 - - uid: 21936 + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27280: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 15995 components: + - type: MetaData + name: кнопка с замком вызова ОБР - type: Transform - pos: 63.5,-26.5 - parent: 89 - - uid: 21937 + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27281: + - Pressed: Open + 15972: + - Pressed: Toggle + 15978: + - Pressed: Toggle + 15976: + - Pressed: Toggle + - uid: 15996 components: + - type: MetaData + name: кнопка с замком вызова ОБР - type: Transform - pos: 63.5,-25.5 - parent: 89 - - uid: 21938 + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27282: + - Pressed: Open + 15982: + - Pressed: Toggle + 15974: + - Pressed: Toggle + 15980: + - Pressed: Toggle + - uid: 24179 components: - type: Transform - pos: 63.5,-24.5 - parent: 89 - - uid: 21939 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 23957: + - Pressed: Toggle + 23958: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 15997 components: - type: Transform - pos: 63.5,-23.5 - parent: 89 - - uid: 21940 + rot: -1.5707963267948966 rad + pos: -127.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18171: + - Pressed: Toggle + 18172: + - Pressed: Toggle + 18173: + - Pressed: Toggle + - uid: 15998 components: - type: Transform - pos: 63.5,-22.5 - parent: 89 - - uid: 21942 + rot: -1.5707963267948966 rad + pos: -123.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1047: + - Pressed: Toggle + 1049: + - Pressed: Toggle + 1050: + - Pressed: Toggle + 1048: + - Pressed: Toggle + - uid: 15999 components: - type: Transform - pos: 62.5,-22.5 - parent: 89 - - uid: 21943 + rot: 3.141592653589793 rad + pos: -122.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1047: + - Pressed: Toggle + 1049: + - Pressed: Toggle + 1050: + - Pressed: Toggle + 1048: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 16000 components: - type: Transform - pos: 62.5,-21.5 - parent: 89 - - uid: 21944 + rot: 1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18114: + - Pressed: Toggle + 18112: + - Pressed: Toggle + 18113: + - Pressed: Toggle +- proto: LockableButtonResearch + entities: + - uid: 16001 components: - type: Transform - pos: 62.5,-20.5 - parent: 89 - - uid: 21945 + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18118: + - Pressed: Toggle + 18117: + - Pressed: Toggle + 18116: + - Pressed: Toggle + - uid: 16002 components: - type: Transform - pos: 62.5,-19.5 - parent: 89 - - uid: 21947 + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18116: + - Pressed: Toggle + 18117: + - Pressed: Toggle + 18118: + - Pressed: Toggle +- proto: LockableButtonSalvage + entities: + - uid: 16003 components: + - type: MetaData + name: кнопка с замком от внешних гермозатворов - type: Transform - pos: 61.5,-18.5 - parent: 89 - - uid: 21948 + rot: -1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1044: + - Pressed: Toggle + 1040: + - Pressed: Toggle + 1039: + - Pressed: Toggle + - uid: 16004 components: + - type: MetaData + name: кнопка с замком от внешних гермозатворов - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 21949 + pos: -53.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1044: + - Pressed: Toggle + 1040: + - Pressed: Toggle + 1039: + - Pressed: Toggle + - uid: 16005 components: + - type: MetaData + name: кнопка с замком от защитных гермозатворов - type: Transform - pos: 60.5,-17.5 - parent: 89 - - uid: 21950 + rot: 1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1052: + - Pressed: Toggle + 1053: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 8767 components: - type: Transform - pos: 60.5,-16.5 - parent: 89 - - uid: 21951 + pos: -90.5,-9.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: + - 8768 + - 8771 + - 8770 + - 8773 + - 8769 + - 8772 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8774 components: - type: Transform - pos: 59.5,-16.5 - parent: 89 - - uid: 21960 + pos: -90.5,-8.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: + - 8775 + - 8776 + - 8779 + - 8777 + - 8780 + - 8778 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - uid: 21961 + pos: -90.5,-7.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: + - 8782 + - 8783 + - 8787 + - 8786 + - 8784 + - 8785 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 16006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - uid: 21962 + pos: 3.5,46.5 + parent: 2 + - uid: 16007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - uid: 21991 + pos: -28.5,-0.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 16008 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 21992 + pos: -3.5,-9.5 + parent: 2 + - uid: 16009 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 21993 + pos: -3.5,-8.5 + parent: 2 + - uid: 16010 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22000 + pos: -3.5,-7.5 + parent: 2 +- proto: LockerBrigmedicFilled + entities: + - uid: 16011 components: - type: Transform - pos: 57.5,-37.5 - parent: 89 - - uid: 22001 + pos: 10.5,-2.5 + parent: 2 +- proto: LockerCaptainFilled + entities: + - uid: 16012 components: - type: Transform - pos: 57.5,-36.5 - parent: 89 - - uid: 22002 + pos: 46.5,14.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 16013 components: - type: Transform - pos: 57.5,-35.5 - parent: 89 - - uid: 22003 + pos: 2.5,9.5 + parent: 2 + - uid: 16014 components: - type: Transform - pos: 50.5,-35.5 - parent: 89 - - uid: 22005 + pos: 3.5,9.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 16015 components: - type: Transform - pos: 50.5,-37.5 - parent: 89 - - uid: 22012 + pos: -102.5,11.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 16016 components: - type: Transform - pos: 39.5,-29.5 - parent: 89 - - uid: 22021 + pos: 23.5,43.5 + parent: 2 +- proto: LockerDetective + entities: + - uid: 8752 components: + - type: MetaData + name: шкаф - type: Transform - pos: 39.5,-30.5 - parent: 89 - - uid: 22023 + pos: 11.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.9938449 + - 7.5006547 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8760 + - 8757 + - 8753 + - 8758 + - 8754 + - 8759 + - 8756 + - 8755 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 16017 components: - type: Transform - pos: 39.5,-28.5 - parent: 89 - - uid: 22027 + pos: 17.5,8.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 16018 components: - type: Transform - pos: 55.5,-34.5 - parent: 89 - - uid: 22028 + pos: -112.5,14.5 + parent: 2 + - uid: 16019 components: - type: Transform - pos: 56.5,-34.5 - parent: 89 - - uid: 22030 + pos: -100.5,0.5 + parent: 2 + - uid: 16020 components: - type: Transform - pos: 59.5,-31.5 - parent: 89 - - uid: 22081 + pos: -101.5,0.5 + parent: 2 + - uid: 16021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 89 - - uid: 22125 + pos: -105.5,-0.5 + parent: 2 + - uid: 16022 components: - type: Transform - pos: 48.5,-36.5 - parent: 89 - - uid: 22126 + pos: -103.5,0.5 + parent: 2 + - uid: 16023 components: - type: Transform - pos: 48.5,-35.5 - parent: 89 - - uid: 22205 + pos: -102.5,0.5 + parent: 2 + - uid: 16024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-32.5 - parent: 89 - - uid: 22206 + pos: -98.5,-1.5 + parent: 2 + - uid: 16025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 89 - - uid: 22208 + pos: -98.5,-2.5 + parent: 2 + - uid: 16026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 89 - - uid: 22209 + pos: -98.5,-3.5 + parent: 2 + - uid: 16027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-22.5 - parent: 89 - - uid: 24415 + pos: -105.5,-1.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 16028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-21.5 - parent: 22565 - - uid: 24416 + pos: -80.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 22565 - - uid: 24417 + pos: -54.5,39.5 + parent: 2 + - uid: 16030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 22565 - - uid: 24418 + pos: -54.5,45.5 + parent: 2 + - uid: 16031 components: - type: Transform - pos: -25.5,-1.5 - parent: 22565 - - uid: 24419 + pos: 21.5,12.5 + parent: 2 + - uid: 16032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 22565 - - uid: 24420 + pos: 40.5,-25.5 + parent: 2 + - uid: 16033 components: - type: Transform - pos: -23.5,-1.5 - parent: 22565 - - uid: 24421 + pos: 38.5,-25.5 + parent: 2 + - uid: 16034 components: - type: Transform - pos: -24.5,19.5 - parent: 22565 - - uid: 24422 + pos: 40.5,-26.5 + parent: 2 + - uid: 16035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 24423 + pos: 38.5,-26.5 + parent: 2 + - uid: 16036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 22565 - - uid: 24424 + pos: 40.5,-23.5 + parent: 2 + - uid: 16037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 22565 - - uid: 24425 + pos: 40.5,-24.5 + parent: 2 + - uid: 16038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 22565 - - uid: 24426 + pos: 38.5,-23.5 + parent: 2 + - uid: 16039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 22565 - - uid: 24427 + pos: 38.5,-24.5 + parent: 2 + - uid: 16040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 22565 - - uid: 24428 + pos: 28.5,-1.5 + parent: 2 + - uid: 16041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 22565 - - uid: 24429 + pos: 28.5,-2.5 + parent: 2 + - uid: 16042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 22565 - - uid: 24430 + pos: 21.5,-10.5 + parent: 2 + - uid: 16043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 22565 - - uid: 24431 + pos: 18.5,-10.5 + parent: 2 + - uid: 16044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 22565 - - uid: 24432 + pos: 24.5,-10.5 + parent: 2 + - uid: 16045 components: - type: Transform - pos: -19.5,19.5 - parent: 22565 - - uid: 24433 + pos: 27.5,-10.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 16046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,2.5 - parent: 22565 - - uid: 24434 + pos: -12.5,-7.5 + parent: 2 +- proto: LockerFreezerBase + entities: + - uid: 25863 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - uid: 24435 + pos: -12.5,-24.5 + parent: 24450 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25868 + - 25869 + - 25867 + - 25870 + - 25872 + - 25866 + - 25865 + - 25871 + - 25864 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 16047 components: - type: Transform - pos: 0.5,19.5 - parent: 22565 - - uid: 24436 + pos: 50.5,-1.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 16048 components: - type: Transform - pos: -4.5,19.5 - parent: 22565 - - uid: 24437 + pos: 44.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 16049 components: - type: Transform - pos: 1.5,-1.5 - parent: 22565 - - uid: 24438 + pos: 31.5,-0.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: + - 16050 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 8931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 22565 - - uid: 24439 + pos: 27.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8937 + - 8933 + - 8936 + - 8932 + - 8935 + - 8934 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 22565 - - uid: 24440 + pos: 21.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8940 + - 8944 + - 8939 + - 8943 + - 8942 + - 8941 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 16051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 22565 - - uid: 24441 + pos: 11.5,16.5 + parent: 2 + - uid: 16052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 22565 - - uid: 24442 + pos: 35.5,18.5 + parent: 2 + - uid: 16053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,3.5 - parent: 22565 - - uid: 24443 + pos: 31.5,20.5 + parent: 2 +- proto: LockerMedicine + entities: + - uid: 10519 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10521 + - 10522 + - 10526 + - 10523 + - 10524 + - 10527 + - 10525 + - 10520 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 16054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 22565 - - uid: 24444 + pos: -11.5,15.5 + parent: 2 + - uid: 16055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 22565 - - uid: 24445 + pos: -12.5,15.5 + parent: 2 + - uid: 16056 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - uid: 24446 + pos: 34.5,18.5 + parent: 2 + - uid: 16057 components: - type: Transform - pos: -24.5,-1.5 - parent: 22565 - - uid: 24447 + pos: 5.5,14.5 + parent: 2 + - uid: 16058 components: - type: Transform - pos: 0.5,-1.5 - parent: 22565 - - uid: 24448 + pos: 33.5,18.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 16059 components: - type: Transform - pos: -0.5,-1.5 - parent: 22565 - - uid: 24449 + pos: 16.5,21.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 22565 - - uid: 24450 + pos: -73.5,-17.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: + - 8928 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative + entities: + - uid: 27546 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 24451 + pos: -5.5,-4.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27552 + - 27548 + - 27549 + - 27551 + - 27547 + - 27550 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 16060 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 24452 + pos: 3.5,-31.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 8819 components: - type: Transform - pos: -18.5,-24.5 - parent: 22565 - - uid: 24453 + pos: -47.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8820 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8821 components: - type: Transform - pos: -18.5,-23.5 - parent: 22565 - - uid: 24454 + pos: -48.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8822 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,8.5 - parent: 22565 - - uid: 24455 + pos: -49.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8824 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 22565 - - uid: 24456 + pos: -50.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8826 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerScienceFilled + entities: + - uid: 16061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 22565 - - uid: 24457 + pos: -6.5,-25.5 + parent: 2 + - uid: 16062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 22565 - - uid: 24458 + pos: -7.5,-25.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 16063 components: - type: Transform - pos: -1.5,26.5 - parent: 22565 - - uid: 24459 + pos: 19.5,-6.5 + parent: 2 + - uid: 16064 components: - type: Transform - pos: -2.5,26.5 - parent: 22565 - - uid: 24460 + pos: -61.5,20.5 + parent: 2 + - uid: 16065 components: - type: Transform - pos: -21.5,26.5 - parent: 22565 - - uid: 24461 + pos: 18.5,-6.5 + parent: 2 + - uid: 16066 components: - type: Transform - pos: -22.5,26.5 - parent: 22565 - - uid: 24462 + pos: 20.5,-6.5 + parent: 2 + - uid: 16067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 22565 - - uid: 24463 + pos: 17.5,-6.5 + parent: 2 + - uid: 16068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 22565 - - uid: 24464 + pos: 21.5,-6.5 + parent: 2 +- proto: LockerWallMedical + entities: + - uid: 23936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 22565 - - uid: 24465 + pos: 4.5,-2.5 + parent: 23919 + - 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: + - 23946 + - 23938 + - 23945 + - 23942 + - 23943 + - 23940 + - 23937 + - 23941 + - 23944 + - 23947 + - 23939 + - 23950 + - 23952 + - 23951 + - 23949 + - 23948 + - uid: 27293 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 22565 - - uid: 24466 + pos: -2.5,-13.5 + parent: 27260 + - 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: + - 27294 + - 27295 + - 27296 +- proto: LockerWardenFilled + entities: + - uid: 16069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 22565 - - uid: 24467 + pos: 9.5,-8.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 16070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-22.5 - parent: 22565 - - uid: 24468 + pos: 49.5,5.5 + parent: 2 + - uid: 16071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 22565 - - uid: 24469 + pos: -39.5,-17.5 + parent: 2 + - uid: 16072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-20.5 - parent: 22565 - - uid: 24470 + pos: -5.5,25.5 + parent: 2 + - uid: 16073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-25.5 - parent: 22565 - - uid: 24471 + pos: -16.5,13.5 + parent: 2 +- proto: Log + entities: + - uid: 16074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-26.5 - parent: 22565 - - uid: 24472 + pos: 7.479765,-25.628338 + parent: 2 + - uid: 16075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 22565 - - uid: 24473 + pos: 7.015009,-25.861204 + parent: 2 +- proto: LogicGate + entities: + - uid: 27802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 22565 - - uid: 24474 + anchored: True + pos: -4.5,-0.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 27284 + - 27281 + - type: Physics + canCollide: False + bodyType: Static + - uid: 27803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 22565 - - uid: 24475 + anchored: True + pos: -4.5,-1.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 27281 + - 27282 + - type: DeviceLinkSource + linkedPorts: + 27864: + - Output: Trigger + - type: Physics + canCollide: False + bodyType: Static + - uid: 27804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 22565 - - uid: 24476 + anchored: True + pos: -4.5,-2.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 27283 + - 27282 + - type: Physics + canCollide: False + bodyType: Static +- proto: MachineAnomalyGenerator + entities: + - uid: 16076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-18.5 - parent: 22565 - - uid: 24477 + pos: -8.5,-28.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 16077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-18.5 - parent: 22565 - - uid: 24478 + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - uid: 16078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 22565 - - uid: 24479 + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - uid: 16079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-16.5 - parent: 22565 - - uid: 24480 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 16080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-15.5 - parent: 22565 - - uid: 24481 + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 16081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-14.5 - parent: 22565 - - uid: 24482 + rot: 1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 16082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 22565 - - uid: 24483 + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 16083 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 22565 - - uid: 24484 + pos: 0.5,-44.5 + parent: 2 + - uid: 16084 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 22565 - - uid: 24485 + pos: -5.5,-44.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 16085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 22565 - - uid: 24486 + pos: -0.5,9.5 + parent: 2 + - uid: 27805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 22565 - - uid: 24487 + pos: -4.5,-11.5 + parent: 27260 +- proto: MachineElectrolysisUnit + entities: + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 22565 - - uid: 24488 + pos: -0.5,8.5 + parent: 2 + - uid: 27806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 22565 - - uid: 24489 + pos: -2.5,-11.5 + parent: 27260 +- proto: MachineFrame + entities: + - uid: 16087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 22565 - - uid: 24490 + pos: 11.5,18.5 + parent: 2 + - uid: 16088 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 22565 - - uid: 24491 + pos: -132.5,-7.5 + parent: 2 + - uid: 16089 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 22565 - - uid: 24492 + pos: -131.5,-7.5 + parent: 2 + - uid: 16090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 22565 - - uid: 24493 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 24494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 22565 - - uid: 24495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,6.5 - parent: 22565 - - uid: 24496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,8.5 - parent: 22565 - - uid: 24497 + pos: -133.5,-7.5 + parent: 2 + - uid: 16091 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,9.5 - parent: 22565 - - uid: 24498 + pos: -133.5,-6.5 + parent: 2 + - uid: 16092 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 22565 - - uid: 24499 + pos: -133.5,-8.5 + parent: 2 + - uid: 16093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,12.5 - parent: 22565 - - uid: 24500 + pos: -130.5,-7.5 + parent: 2 + - uid: 16094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 22565 - - uid: 24501 + pos: 9.5,18.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 26475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 22565 - - uid: 24502 + pos: 1.5,9.5 + parent: 24450 +- proto: MagazineBoxLightRifle + entities: + - uid: 1166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,13.5 - parent: 22565 - - uid: 24503 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 22565 - - uid: 24504 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleIncendiary + entities: + - uid: 1167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 22565 - - uid: 24505 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRiflePractice + entities: + - uid: 1168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 22565 - - uid: 24506 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleUranium + entities: + - uid: 1169 components: - type: Transform - pos: -24.5,-14.5 - parent: 22565 - - uid: 24507 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxMagnum + entities: + - uid: 1192 components: - type: Transform - pos: -23.5,-15.5 - parent: 22565 - - uid: 24508 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol + entities: + - uid: 1193 components: - type: Transform - pos: -22.5,-16.5 - parent: 22565 - - uid: 24509 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolPractice + entities: + - uid: 1175 components: - type: Transform - pos: -21.5,-17.5 - parent: 22565 - - uid: 24510 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifle + entities: + - uid: 1194 components: - type: Transform - pos: -20.5,-18.5 - parent: 22565 - - uid: 24511 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27320 components: - type: Transform - pos: -19.5,-19.5 - parent: 22565 - - uid: 24512 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeBlast + entities: + - uid: 24078 components: - type: Transform - pos: -26.5,-13.5 - parent: 22565 - - uid: 24513 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24079 components: - type: Transform - pos: -26.5,-12.5 - parent: 22565 - - uid: 24514 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24080 components: - type: Transform - pos: -25.5,-13.5 - parent: 22565 - - uid: 24515 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24081 components: - type: Transform - pos: 1.5,-16.5 - parent: 22565 - - uid: 24516 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24082 components: - type: Transform - pos: 0.5,-17.5 - parent: 22565 - - uid: 24517 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeEMP + entities: + - uid: 24083 components: - type: Transform - pos: -0.5,-18.5 - parent: 22565 - - uid: 24518 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24084 components: - type: Transform - pos: -1.5,-19.5 - parent: 22565 - - uid: 24519 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24085 components: - type: Transform - pos: -2.5,-19.5 - parent: 22565 - - uid: 24520 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24086 components: - type: Transform - pos: -3.5,-19.5 - parent: 22565 - - uid: 24521 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24087 components: - type: Transform - pos: -0.5,-19.5 - parent: 22565 - - uid: 24522 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeFrag + entities: + - uid: 24088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 22565 - - uid: 24523 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 22565 - - uid: 24524 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 22565 - - uid: 24525 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 22565 - - uid: 24526 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 22565 - - uid: 24527 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolPractice + entities: + - uid: 1176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 22565 - - uid: 25360 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 - parent: 89 - - uid: 25361 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 89 - - uid: 25531 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle + entities: + - uid: 27321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 18153 - - uid: 25532 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 18153 - - uid: 25533 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 16095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 18153 - - uid: 25534 + pos: 48.802456,-6.4385347 + parent: 2 + - uid: 16096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 18153 - - uid: 25535 + pos: 48.399677,-6.8042755 + parent: 2 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 18153 - - uid: 25536 + pos: 48.399677,-6.646868 + parent: 2 + - uid: 16098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 18153 - - uid: 25537 + pos: 48.441345,-6.4153867 + parent: 2 + - uid: 16099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 18153 - - uid: 25538 + pos: 48.793198,-6.7950163 + parent: 2 + - uid: 16100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 18153 - - uid: 25539 + pos: 48.811714,-6.6190906 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 16101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 18153 - - uid: 25540 + pos: -30.5,-15.5 + parent: 2 + - uid: 16102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 18153 - - uid: 25541 + pos: -81.5,5.5 + parent: 2 + - uid: 16103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 18153 - - uid: 25542 + pos: -72.5,21.5 + parent: 2 + - uid: 16104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 18153 - - uid: 25543 + pos: -38.5,23.5 + parent: 2 + - uid: 16105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 18153 - - uid: 25544 + pos: 7.5,27.5 + parent: 2 + - uid: 16106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 18153 - - uid: 25545 + pos: -26.5,-23.5 + parent: 2 + - uid: 16107 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25546 + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 16108 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25547 + pos: 36.5,23.5 + parent: 2 + - uid: 16109 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25548 + pos: 27.5,25.5 + parent: 2 + - uid: 26476 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25859 + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 24450 +- proto: MaintenancePlantSpawner + entities: + - uid: 16110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,20.5 - parent: 89 - - uid: 25866 + pos: 11.5,27.5 + parent: 2 + - uid: 16111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 89 - - uid: 25867 + pos: -3.5,24.5 + parent: 2 + - uid: 16112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-17.5 - parent: 89 -- proto: GrilleBroken + pos: -12.5,24.5 + parent: 2 +- proto: MaintenanceToolSpawner entities: - - uid: 75 + - uid: 16113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 105 + pos: -24.5,-15.5 + parent: 2 + - uid: 16114 components: - type: Transform - pos: -38.5,-16.5 - parent: 89 - - uid: 823 + pos: -15.5,-23.5 + parent: 2 + - uid: 16115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,26.5 - parent: 89 - - uid: 3305 + pos: -18.5,-23.5 + parent: 2 + - uid: 16116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 89 - - uid: 3318 + pos: -76.5,-15.5 + parent: 2 + - uid: 16117 components: - type: Transform - pos: 70.5,15.5 - parent: 89 - - uid: 3321 + pos: -82.5,-1.5 + parent: 2 + - uid: 16118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,10.5 - parent: 89 - - uid: 3323 + pos: -80.5,5.5 + parent: 2 + - uid: 16119 components: - type: Transform - pos: 70.5,10.5 - parent: 89 - - uid: 3793 + pos: -73.5,21.5 + parent: 2 + - uid: 16120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 3840 + pos: -38.5,24.5 + parent: 2 + - uid: 16121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,26.5 - parent: 89 - - uid: 4873 + pos: 8.5,27.5 + parent: 2 + - uid: 16122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,28.5 - parent: 89 - - uid: 4876 + pos: 48.5,3.5 + parent: 2 + - uid: 16123 components: - type: Transform - pos: -91.5,29.5 - parent: 89 - - uid: 4878 + pos: -26.5,-25.5 + parent: 2 + - uid: 16124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 - - uid: 5969 + pos: -78.5,-6.5 + parent: 2 + - uid: 16125 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 7103 + pos: 40.5,16.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 16126 components: - type: Transform - pos: 50.5,-36.5 - parent: 89 - - uid: 11601 + pos: -43.5,-3.5 + parent: 2 + - uid: 16127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,25.5 - parent: 89 - - uid: 14636 + pos: -33.5,-1.5 + parent: 2 + - uid: 16128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-15.5 - parent: 89 - - uid: 14656 + pos: -82.5,5.5 + parent: 2 + - uid: 16129 components: - type: Transform - pos: -125.5,20.5 - parent: 89 - - uid: 14657 + pos: -69.5,21.5 + parent: 2 + - uid: 16130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,21.5 - parent: 89 - - uid: 14897 + pos: -68.5,21.5 + parent: 2 + - uid: 16131 components: - type: Transform - pos: -52.5,21.5 - parent: 89 - - uid: 14900 + pos: -51.5,32.5 + parent: 2 + - uid: 16132 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 14980 + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 2 + - uid: 16133 components: - type: Transform - pos: -19.5,24.5 - parent: 89 - - uid: 15110 + rot: 3.141592653589793 rad + pos: 36.5,-19.5 + parent: 2 + - uid: 16134 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 15111 + pos: 57.5,-19.5 + parent: 2 + - uid: 16135 components: - type: Transform - pos: -2.5,25.5 - parent: 89 - - uid: 15112 + pos: 54.5,-19.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 16136 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 15118 + pos: -117.26836,-14.507084 + parent: 2 +- proto: MaterialBiomass + entities: + - uid: 16137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,45.5 - parent: 89 - - uid: 15597 + pos: 6.434067,16.596329 + parent: 2 + - uid: 16138 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,31.5 - parent: 89 - - uid: 17066 + pos: 6.7399516,16.784958 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 26477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,26.5 - parent: 89 - - uid: 17226 + pos: -4.2203536,4.4322076 + parent: 24450 + - uid: 26478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17227 + pos: -4.5484786,1.7447076 + parent: 24450 + - uid: 26479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17333 + pos: 0.7796464,3.0103326 + parent: 24450 + - uid: 26480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,32.5 - parent: 89 - - uid: 17334 + pos: 0.9515214,5.5455093 + parent: 24450 + - uid: 26481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,49.5 - parent: 89 - - uid: 17339 + pos: -5.2984786,6.4673843 + parent: 24450 + - uid: 26482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,32.5 - parent: 89 - - uid: 17343 + pos: -4.5328536,8.436134 + parent: 24450 +- proto: MaterialCloth + entities: + - uid: 16139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,48.5 - parent: 89 - - uid: 17347 + pos: 42.415596,10.695596 + parent: 2 + - uid: 26483 components: - type: Transform - pos: -45.5,42.5 - parent: 89 - - uid: 17348 + pos: -31.50148,1.603975 + parent: 24450 + - uid: 26484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,43.5 - parent: 89 - - uid: 17351 + pos: 7.401089,1.572725 + parent: 24450 +- proto: MaterialCloth10 + entities: + - uid: 16140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -129.5,28.5 - parent: 89 - - uid: 17352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,28.5 - parent: 89 - - uid: 17358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,28.5 - parent: 89 - - uid: 17361 + pos: 18.304749,-14.450155 + parent: 2 + - uid: 16141 components: - type: Transform - pos: -137.5,28.5 - parent: 89 - - uid: 17364 + rot: 1.5707963267948966 rad + pos: 21.382874,-14.43453 + parent: 2 + - uid: 16142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -136.5,28.5 - parent: 89 - - uid: 17368 + pos: 24.384485,-14.40328 + parent: 2 + - uid: 16143 components: - type: Transform - pos: -138.5,23.5 - parent: 89 - - uid: 17382 + rot: 1.5707963267948966 rad + pos: 27.308783,-14.43453 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 16144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -137.5,24.5 - parent: 89 - - uid: 17395 + pos: 42.759346,10.398721 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 16145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -138.5,18.5 - parent: 89 - - uid: 17403 + pos: -115.5242,13.621173 + parent: 2 + - uid: 16146 components: - type: Transform - pos: -16.5,38.5 - parent: 89 - - uid: 17406 + pos: 8.49539,-21.442284 + parent: 2 + - uid: 16147 components: - type: Transform - pos: -138.5,14.5 - parent: 89 - - uid: 17430 + pos: -115.3367,13.793048 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 16148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,32.5 - parent: 89 - - uid: 17431 + pos: -15.444581,-15.227853 + parent: 2 + - uid: 16149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,26.5 - parent: 89 - - uid: 17437 + pos: -15.257081,-15.509103 + parent: 2 + - uid: 16150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,26.5 - parent: 89 - - uid: 17439 + pos: -98.65939,-7.6130424 + parent: 2 + - uid: 16151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,25.5 - parent: 89 - - uid: 17460 + pos: -98.51877,-7.2849174 + parent: 2 + - uid: 16152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,31.5 - parent: 89 - - uid: 17466 + pos: -98.28439,-7.5505424 + parent: 2 +- proto: Mattress + entities: + - uid: 16153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,49.5 - parent: 89 - - uid: 17473 + pos: 36.5,-19.5 + parent: 2 + - uid: 16154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 89 - - uid: 17474 + pos: 54.5,-23.5 + parent: 2 + - uid: 16155 components: - type: Transform - pos: -45.5,49.5 - parent: 89 - - uid: 17476 + pos: 54.5,-19.5 + parent: 2 + - uid: 16156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,37.5 - parent: 89 - - uid: 17477 + pos: 54.5,-22.5 + parent: 2 + - uid: 16157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,36.5 - parent: 89 - - uid: 17478 + pos: 54.5,-25.5 + parent: 2 + - uid: 16158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,38.5 - parent: 89 - - uid: 17479 + pos: 54.5,-20.5 + parent: 2 + - uid: 16159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,38.5 - parent: 89 - - uid: 17480 + pos: 54.5,-26.5 + parent: 2 + - uid: 26485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 89 - - uid: 17481 + pos: -14.5,-21.5 + parent: 24450 + - uid: 26486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,38.5 - parent: 89 - - uid: 17482 + pos: -12.5,-21.5 + parent: 24450 + - uid: 26487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,38.5 - parent: 89 - - uid: 17483 + pos: 11.5,12.5 + parent: 24450 + - uid: 26488 components: - type: Transform - pos: -13.5,38.5 - parent: 89 - - uid: 17485 + pos: 11.5,8.5 + parent: 24450 + - uid: 26489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 89 - - uid: 17486 + pos: 11.5,6.5 + parent: 24450 + - uid: 26490 components: - type: Transform - pos: -13.5,47.5 - parent: 89 - - uid: 17488 + pos: -35.5,8.5 + parent: 24450 + - uid: 26491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,48.5 - parent: 89 - - uid: 17635 + pos: -35.5,6.5 + parent: 24450 + - uid: 26492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,35.5 - parent: 89 - - uid: 17666 + pos: -35.5,12.5 + parent: 24450 +- proto: MedicalBed + entities: + - uid: 16160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 89 - - uid: 17674 + pos: 15.5,-3.5 + parent: 2 + - uid: 16161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 - parent: 89 - - uid: 17675 + pos: 3.5,15.5 + parent: 2 + - uid: 16162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,51.5 - parent: 89 - - uid: 17676 + pos: 3.5,19.5 + parent: 2 + - uid: 16163 components: - type: Transform - pos: 8.5,49.5 - parent: 89 - - uid: 17677 + pos: 3.5,17.5 + parent: 2 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,51.5 - parent: 89 - - uid: 17688 + pos: 3.5,21.5 + parent: 2 + - uid: 24180 components: - type: Transform - pos: 16.5,40.5 - parent: 89 - - uid: 17697 + pos: 6.5,-5.5 + parent: 23919 + - uid: 24181 components: - type: Transform - pos: 35.5,34.5 - parent: 89 - - uid: 17748 + pos: 6.5,-4.5 + parent: 23919 + - uid: 27807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17749 + pos: -5.5,-8.5 + parent: 27260 +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 16165 components: - type: Transform - pos: 60.5,26.5 - parent: 89 - - uid: 17750 + pos: 22.465963,36.494637 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 16166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,26.5 - parent: 89 - - uid: 17757 + pos: 35.5,20.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 16167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,2.5 - parent: 89 - - uid: 17758 + pos: 10.448055,-0.43033665 + parent: 2 + - uid: 16168 components: - type: Transform - pos: 70.5,6.5 - parent: 89 - - uid: 17759 + pos: -18.990215,-23.36074 + parent: 2 + - uid: 16169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,4.5 - parent: 89 - - uid: 17772 + pos: 34.44323,20.619473 + parent: 2 + - uid: 27808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,7.5 - parent: 89 - - uid: 17787 + pos: -5.3487854,-10.439423 + parent: 27260 +- proto: MedkitBruteFilled + entities: + - uid: 16170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 89 - - uid: 17788 + pos: 12.375316,-3.499538 + parent: 2 + - uid: 16171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 89 - - uid: 17789 + pos: 31.543634,18.579988 + parent: 2 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 89 - - uid: 17790 + pos: 18.821274,23.624659 + parent: 2 + - uid: 16173 components: - type: Transform - pos: 60.5,-9.5 - parent: 89 - - uid: 17791 + pos: 31.480804,18.7342 + parent: 2 + - uid: 24182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-11.5 - parent: 89 - - uid: 17792 + pos: 6.404312,-3.1273499 + parent: 23919 +- proto: MedkitBurnFilled + entities: + - uid: 16174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 89 - - uid: 17793 + pos: 12.635732,-3.2599547 + parent: 2 + - uid: 16175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-11.5 - parent: 89 - - uid: 17794 + pos: 32.50263,18.744473 + parent: 2 + - uid: 16176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 89 - - uid: 17795 + pos: 32.53388,18.572598 + parent: 2 + - uid: 24183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 89 - - uid: 17796 + pos: 6.716812,-3.2679749 + parent: 23919 +- proto: MedkitCombatFilled + entities: + - uid: 16177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 89 - - uid: 17797 + pos: 12.919604,-3.4879332 + parent: 2 + - uid: 16178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 89 - - uid: 17798 + pos: 3.5065022,37.602577 + parent: 2 + - uid: 16179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 89 - - uid: 17800 + pos: -46.42974,-10.583627 + parent: 2 + - uid: 24184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 89 - - uid: 17801 + pos: 6.388687,-3.4085999 + parent: 23919 + - uid: 27809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 89 - - uid: 17802 + pos: -5.570999,-10.550507 + parent: 27260 +- proto: MedkitFilled + entities: + - uid: 16180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-1.5 - parent: 89 - - uid: 17803 + pos: -5.4384103,-15.26897 + parent: 2 + - uid: 16181 components: - type: Transform - pos: 68.5,-4.5 - parent: 89 - - uid: 17804 + pos: 13.437702,-3.4645877 + parent: 2 + - uid: 16182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 89 - - uid: 18116 + pos: 1.5690022,37.586952 + parent: 2 + - uid: 16183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 89 - - uid: 18169 + pos: -32.37581,21.539759 + parent: 2 + - uid: 16184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 89 - - uid: 18200 + pos: -2.4789925,19.583319 + parent: 2 + - uid: 16185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 89 - - uid: 18203 + pos: 26.51709,20.479082 + parent: 2 + - uid: 16186 components: - type: Transform - pos: 13.5,-27.5 - parent: 89 - - uid: 18204 + pos: 34.64928,20.525723 + parent: 2 + - uid: 16187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 89 - - uid: 18206 + pos: 19.458591,23.716438 + parent: 2 + - uid: 16188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 - parent: 89 - - uid: 18207 + pos: 19.458591,23.575813 + parent: 2 + - uid: 16189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 89 - - uid: 18208 + pos: 63.486095,3.6539416 + parent: 2 + - uid: 16190 components: - type: Transform - pos: 7.5,-41.5 - parent: 89 - - uid: 18209 + pos: 53.514782,15.551919 + parent: 2 + - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 89 - - uid: 18210 + pos: 65.42551,10.507832 + parent: 2 + - uid: 26493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 89 - - uid: 18213 + pos: -9.375939,7.591918 + parent: 24450 +- proto: MedkitOxygenFilled + entities: + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-46.5 - parent: 89 - - uid: 18214 + pos: 32.02969,18.572598 + parent: 2 + - uid: 16193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 89 - - uid: 18215 + pos: 33.660248,20.626863 + parent: 2 + - uid: 16194 components: - type: Transform - pos: -12.5,-47.5 - parent: 89 - - uid: 18216 + pos: 31.99844,18.744473 + parent: 2 + - uid: 16195 components: - type: Transform - pos: -17.5,-39.5 - parent: 89 - - uid: 18217 + pos: 33.660248,20.720613 + parent: 2 + - uid: 16196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 89 - - uid: 18218 + pos: 18.821274,23.765284 + parent: 2 + - uid: 27810 components: - type: Transform - pos: -12.5,-41.5 - parent: 89 - - uid: 18219 + pos: -5.5953827,-10.361389 + parent: 27260 +- proto: MedkitRadiationFilled + entities: + - uid: 16197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 89 - - uid: 18220 + pos: 13.169604,-3.2535582 + parent: 2 + - uid: 16198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 - parent: 89 - - uid: 18221 + pos: 30.458956,18.57795 + parent: 2 + - uid: 16199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 89 - - uid: 18222 + pos: 30.41208,18.718575 + parent: 2 +- proto: MedkitToxin + entities: + - uid: 16200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-32.5 - parent: 89 - - uid: 18223 + pos: 30.942322,18.7342 + parent: 2 + - uid: 16201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-27.5 - parent: 89 - - uid: 18224 + pos: 30.989197,18.57795 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 16202 components: - type: Transform - pos: -31.5,-29.5 - parent: 89 - - uid: 19957 + pos: 13.700854,-3.2535582 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 16203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,47.5 - parent: 89 - - uid: 19958 + pos: -14.616456,-15.352853 + parent: 2 + - uid: 16204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,47.5 - parent: 89 - - uid: 19959 + pos: -14.555504,-15.680248 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 16205 components: - type: Transform - pos: 27.5,47.5 - parent: 89 - - uid: 20208 + pos: -23.645575,9.285421 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 599 components: - type: Transform - pos: 43.5,32.5 - parent: 89 - - uid: 20218 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,41.5 - parent: 89 - - uid: 20230 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MinimoogInstrument + entities: + - uid: 16206 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,29.5 - parent: 89 - - uid: 20237 - components: - - type: Transform - pos: 55.5,42.5 - parent: 89 - - uid: 20264 + pos: 30.5,-5.5 + parent: 2 +- proto: MiningDrill + entities: + - uid: 16207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-15.5 - parent: 89 - - uid: 20777 + pos: -27.485138,27.681524 + parent: 2 +- proto: MiningWindow + entities: + - uid: 26494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,41.5 - parent: 89 - - uid: 20783 + pos: -5.5,-2.5 + parent: 24450 + - uid: 26495 components: - type: Transform - pos: 63.5,36.5 - parent: 89 - - uid: 20784 + pos: 12.5,11.5 + parent: 24450 + - uid: 26496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,41.5 - parent: 89 - - uid: 20785 + pos: -28.5,2.5 + parent: 24450 + - uid: 26497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,41.5 - parent: 89 - - uid: 20786 + pos: -28.5,1.5 + parent: 24450 + - uid: 26498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,45.5 - parent: 89 - - uid: 20787 + pos: -18.5,-2.5 + parent: 24450 + - uid: 26499 components: - type: Transform - pos: 51.5,44.5 - parent: 89 - - uid: 20789 + pos: -4.5,-2.5 + parent: 24450 + - uid: 26500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,41.5 - parent: 89 - - uid: 20792 + pos: -19.5,19.5 + parent: 24450 + - uid: 26501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 89 - - uid: 20793 + pos: -24.5,19.5 + parent: 24450 + - uid: 26502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,32.5 - parent: 89 - - uid: 20795 + pos: -2.5,26.5 + parent: 24450 + - uid: 26503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,41.5 - parent: 89 - - uid: 20796 + pos: 0.5,19.5 + parent: 24450 + - uid: 26504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,43.5 - parent: 89 - - uid: 20800 + pos: -4.5,19.5 + parent: 24450 + - uid: 26505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,34.5 - parent: 89 - - uid: 21059 + pos: -15.5,11.5 + parent: 24450 + - uid: 26506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,26.5 - parent: 89 - - uid: 21070 + pos: -14.5,11.5 + parent: 24450 + - uid: 26507 components: - type: Transform - pos: 33.5,42.5 - parent: 89 - - uid: 21071 + pos: -12.5,11.5 + parent: 24450 + - uid: 26508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,42.5 - parent: 89 - - uid: 21072 + pos: -9.5,11.5 + parent: 24450 + - uid: 26509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,42.5 - parent: 89 - - uid: 21073 + pos: -7.5,11.5 + parent: 24450 + - uid: 26510 components: - type: Transform - pos: 30.5,42.5 - parent: 89 - - uid: 21074 + pos: -1.5,26.5 + parent: 24450 + - uid: 26511 components: - type: Transform - pos: 31.5,42.5 - parent: 89 - - uid: 21075 + pos: -16.5,11.5 + parent: 24450 + - uid: 26512 components: - type: Transform - pos: 44.5,42.5 - parent: 89 - - uid: 21076 + pos: -19.5,-2.5 + parent: 24450 + - uid: 26513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,42.5 - parent: 89 - - uid: 21077 + pos: 0.5,-1.5 + parent: 24450 + - uid: 26514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,42.5 - parent: 89 - - uid: 21190 + pos: -11.5,8.5 + parent: 24450 + - uid: 26515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,25.5 - parent: 89 - - uid: 21197 + pos: -12.5,8.5 + parent: 24450 + - uid: 26516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,26.5 - parent: 89 - - uid: 21198 + pos: -12.5,3.5 + parent: 24450 + - uid: 26517 components: - type: Transform - pos: 54.5,27.5 - parent: 89 - - uid: 21576 + pos: -11.5,3.5 + parent: 24450 + - uid: 26518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,45.5 - parent: 89 - - uid: 21578 + pos: -8.5,6.5 + parent: 24450 + - uid: 26519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,47.5 - parent: 89 - - uid: 21941 + pos: -8.5,5.5 + parent: 24450 + - uid: 26520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-16.5 - parent: 89 - - uid: 21953 + pos: -15.5,6.5 + parent: 24450 + - uid: 26521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 89 - - uid: 21955 + pos: -15.5,5.5 + parent: 24450 + - uid: 26522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-17.5 - parent: 89 - - uid: 21964 + pos: -11.5,11.5 + parent: 24450 + - uid: 26523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21965 + pos: -22.5,26.5 + parent: 24450 + - uid: 26524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21968 + pos: -21.5,26.5 + parent: 24450 + - uid: 26525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21971 + pos: 6.5,13.5 + parent: 24450 + - uid: 26526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21974 + pos: 12.5,8.5 + parent: 24450 + - uid: 26527 components: - type: Transform - pos: 54.5,-37.5 - parent: 89 - - uid: 22004 + pos: 12.5,12.5 + parent: 24450 + - uid: 26528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22006 + pos: -8.5,11.5 + parent: 24450 + - uid: 26529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22007 + pos: 12.5,6.5 + parent: 24450 + - uid: 26530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22008 + pos: -36.5,9.5 + parent: 24450 + - uid: 26531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22136 + pos: -36.5,5.5 + parent: 24450 + - uid: 26532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22138 + pos: -36.5,6.5 + parent: 24450 + - uid: 26533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22140 + pos: -36.5,8.5 + parent: 24450 + - uid: 26534 components: - type: Transform - pos: 48.5,-37.5 - parent: 89 - - uid: 22141 + pos: -36.5,12.5 + parent: 24450 + - uid: 26535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22345 + pos: -36.5,11.5 + parent: 24450 + - uid: 26536 components: - type: Transform - pos: 55.5,-15.5 - parent: 89 - - uid: 24528 + pos: -23.5,-1.5 + parent: 24450 + - uid: 26537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 22565 - - uid: 24529 + pos: 12.5,9.5 + parent: 24450 + - uid: 26538 components: - type: Transform - pos: -4.5,-19.5 - parent: 22565 - - uid: 24530 + pos: -24.5,-1.5 + parent: 24450 + - uid: 26539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 22565 - - uid: 24531 + pos: -25.5,-1.5 + parent: 24450 + - uid: 26540 components: - type: Transform - pos: -20.5,-19.5 - parent: 22565 - - uid: 24532 + pos: -31.5,13.5 + parent: 24450 + - uid: 26541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 22565 - - uid: 24533 + pos: 7.5,13.5 + parent: 24450 + - uid: 26542 components: - type: Transform - pos: -22.5,-18.5 - parent: 22565 - - uid: 24534 + pos: -28.5,3.5 + parent: 24450 + - uid: 26543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-17.5 - parent: 22565 - - uid: 24535 + pos: -0.5,-1.5 + parent: 24450 + - uid: 26544 components: - type: Transform - pos: -24.5,-17.5 - parent: 22565 - - uid: 24536 + pos: -30.5,13.5 + parent: 24450 + - uid: 26545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 22565 - - uid: 24537 + pos: 12.5,5.5 + parent: 24450 + - uid: 26546 components: - type: Transform - pos: -25.5,-16.5 - parent: 22565 - - uid: 24538 + pos: 1.5,-1.5 + parent: 24450 + - uid: 26547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 22565 - - uid: 24539 + pos: 4.5,1.5 + parent: 24450 + - uid: 26548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 22565 - - uid: 24540 + pos: 4.5,3.5 + parent: 24450 + - uid: 26549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-19.5 - parent: 22565 - - uid: 24541 + pos: 4.5,2.5 + parent: 24450 +- proto: Mirror + entities: + - uid: 16208 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 22565 - - uid: 24542 + pos: -30.5,-2.5 + parent: 2 + - uid: 16209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 22565 - - uid: 24543 + pos: -35.5,32.5 + parent: 2 + - uid: 16210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 22565 - - uid: 24544 + pos: -21.5,32.5 + parent: 2 + - uid: 16211 components: - type: Transform - pos: -6.5,-20.5 - parent: 22565 - - uid: 24545 + pos: -24.5,15.5 + parent: 2 + - uid: 16212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 22565 - - uid: 24546 + pos: -25.5,15.5 + parent: 2 + - uid: 16213 components: - type: Transform - pos: -0.5,-17.5 - parent: 22565 - - uid: 24547 + pos: -23.5,15.5 + parent: 2 + - uid: 16214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 22565 - - uid: 24548 + pos: -22.5,15.5 + parent: 2 + - uid: 16215 components: - type: Transform - pos: 0.5,-16.5 - parent: 22565 - - uid: 24549 + pos: -21.5,15.5 + parent: 2 + - uid: 16216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24550 + rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - uid: 16217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24551 + pos: 27.5,27.5 + parent: 2 + - uid: 16218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24552 + pos: 28.5,27.5 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 16219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 22565 -- proto: GrilleDiagonal - entities: - - uid: 5317 + pos: -5.5569973,-18.252968 + parent: 2 + - uid: 16220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-34.5 - parent: 89 - - uid: 13726 + pos: -5.2680063,-18.252968 + parent: 2 + - uid: 16221 components: - type: Transform - pos: -0.5,0.5 - parent: 21627 - - uid: 13727 + pos: -5.532914,-15.331863 + parent: 2 + - uid: 16222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 21627 - - uid: 13934 + pos: -5.629245,-15.789328 + parent: 2 + - uid: 16223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 21627 - - uid: 13935 + pos: -5.821905,-18.277044 + parent: 2 + - uid: 16224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 21627 - - uid: 17889 + pos: -5.2680063,-15.789328 + parent: 2 + - uid: 26550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 89 - - uid: 17907 + pos: 4.3521523,11.690499 + parent: 24450 + - uid: 26551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 89 - - uid: 20912 + pos: 4.0865273,11.690499 + parent: 24450 + - uid: 27811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,27.5 - parent: 89 - - uid: 21153 + pos: -3.6557312,-13.251007 + parent: 27260 + - uid: 27812 components: - type: Transform - pos: 57.5,-33.5 - parent: 89 - - uid: 21269 + pos: -3.699524,-13.221802 + parent: 27260 + - uid: 27813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-33.5 - parent: 89 - - uid: 21270 + pos: -3.728714,-13.411652 + parent: 27260 +- proto: MonkeyCubeWrapped + entities: + - uid: 16225 components: - type: Transform - pos: 58.5,-32.5 - parent: 89 - - uid: 21272 + pos: -29.972765,0.6645479 + parent: 2 +- proto: MopBucket + entities: + - uid: 16226 components: - type: Transform - pos: 57.5,-34.5 - parent: 89 - - uid: 21273 + pos: -38.70507,7.3472652 + parent: 2 + - uid: 16227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,49.5 - parent: 89 - - uid: 21275 + pos: -43.256332,14.594401 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 16228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-14.5 - parent: 89 - - uid: 21279 + pos: 11.719251,41.365593 + parent: 2 + - uid: 16229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 89 - - uid: 21296 + pos: 23.496418,22.463985 + parent: 2 + - uid: 16230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,38.5 - parent: 89 - - uid: 21392 + pos: 45.58958,-33.533894 + parent: 2 +- proto: MopItem + entities: + - uid: 16231 components: - type: Transform - pos: 7.5,43.5 - parent: 89 - - uid: 21545 + pos: 11.609876,41.537468 + parent: 2 + - uid: 16232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,43.5 - parent: 89 - - uid: 25744 + pos: -39.01757,7.4410152 + parent: 2 + - uid: 16233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 18153 - - uid: 25745 + pos: 5.658451,9.575063 + parent: 2 + - uid: 16234 components: - type: Transform - pos: 1.5,-0.5 - parent: 18153 -- proto: GunSafe - entities: - - uid: 523 + pos: -44.568832,14.563151 + parent: 2 + - uid: 16235 components: - type: Transform - pos: 39.5,-2.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.8744951 - - 7.051672 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 713 - - 533 - - 532 - - 531 - - 530 - - 529 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22447 + rot: 1.5707963267948966 rad + pos: 23.465168,22.526485 + parent: 2 + - uid: 16236 components: - type: Transform - pos: 42.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - 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: - - 22448 - - 22450 - - 22451 - - 22452 - - 22453 - - 22454 - - 8913 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22455 + rot: 1.5707963267948966 rad + pos: 45.40208,-32.73702 + parent: 2 +- proto: Morgue + entities: + - uid: 16237 components: - type: Transform - pos: 43.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - 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: - - 22456 - - 22457 - - 22458 - - 22459 - - 22460 - - 22461 - - 22462 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22641 + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 16238 components: - type: Transform - pos: -11.5,4.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - 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: - - 22660 - - 22662 - - 22651 - - 22650 - - 22654 - - 22653 - - 22652 - - 22657 - - 22645 - - 22665 - - 22646 - - 22642 - - 22644 - - 22649 - - 22655 - - 22656 - - 22643 - - 22658 - - 22663 - - 22648 - - 22661 - - 22659 - - 22664 - - 22647 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Gyroscope - entities: - - uid: 21701 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 16239 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 21627 - - type: Visibility - layer: 15 - - uid: 24553 + pos: 5.5,8.5 + parent: 2 + - uid: 16240 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,25.5 - parent: 22565 - - uid: 25549 + pos: 6.5,5.5 + parent: 2 + - uid: 16241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 18153 -- proto: Handcuffs - entities: - - uid: 6195 + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 16242 components: - type: Transform - pos: -20.509203,7.4855614 - parent: 89 - - uid: 8120 + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - uid: 16243 components: - type: Transform - pos: -86.700455,14.60647 - parent: 89 - - uid: 8131 + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 16244 components: - type: Transform - pos: -45.6171,0.5859333 - parent: 89 - - uid: 8170 + rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 16245 components: - type: Transform - pos: -59.432873,7.5281296 - parent: 89 - - uid: 8268 + pos: -23.5,-11.5 + parent: 2 +- proto: MousetrapArmed + entities: + - uid: 16246 components: - type: Transform - pos: -60.46638,22.582329 - parent: 89 -- proto: HandLabeler + pos: -124.52778,3.4515061 + parent: 2 + - type: StepTriggerActive + - uid: 16247 + components: + - type: Transform + pos: -124.38715,4.451506 + parent: 2 + - type: StepTriggerActive +- proto: Multitool entities: - - uid: 5381 + - uid: 16248 components: - type: Transform - pos: 44.527477,6.704564 - parent: 89 - - uid: 10435 + pos: -93.639496,17.646248 + parent: 2 + - uid: 16249 components: - type: Transform - pos: 20.515057,6.879887 - parent: 89 - - uid: 15896 + pos: -26.66166,-23.33507 + parent: 2 + - uid: 16250 components: - type: Transform - pos: 7.5071297,-2.407922 - parent: 89 - - type: HandLabeler - assignedLabel: Успокоительное -- proto: HappyHonkNukieSnacks + pos: 56.673943,-1.3626473 + parent: 2 +- proto: MusicBoxInstrument entities: - - uid: 25679 + - uid: 16251 components: - type: Transform - pos: 21.487997,-17.439909 - parent: 89 -- proto: HarpInstrument + pos: -35.559135,-5.5539656 + parent: 2 +- proto: NitrogenCanister entities: - - uid: 4078 + - uid: 16252 components: - type: Transform - pos: -29.5,-9.5 - parent: 89 -- proto: HeadBorgJanitor - entities: - - uid: 20859 + pos: -35.5,-17.5 + parent: 2 + - uid: 16253 components: - type: Transform - pos: -35.29812,9.790613 - parent: 89 -- proto: HeadSkeleton - entities: - - uid: 24554 + pos: -98.5,-23.5 + parent: 2 + - uid: 16254 components: - type: Transform - pos: 3.9304833,10.600748 - parent: 22565 -- proto: HeatExchanger - entities: - - uid: 7416 + pos: -48.5,-16.5 + parent: 2 + - uid: 16255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7417 + pos: 0.5,29.5 + parent: 2 + - uid: 16256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: HelicopterInstrument - entities: - - uid: 15029 + pos: -93.5,29.5 + parent: 2 + - uid: 16257 components: - type: Transform - pos: 17.650578,25.636961 - parent: 89 - - uid: 18357 + pos: -70.5,21.5 + parent: 2 + - uid: 16258 components: - type: Transform - pos: -61.430115,47.965298 - parent: 89 -- proto: Hemostat - entities: - - uid: 15439 + pos: -42.5,14.5 + parent: 2 + - uid: 16259 components: - type: Transform - pos: -11.463182,21.549883 - parent: 89 -- proto: HighSecArmoryLocked - entities: - - uid: 4919 + pos: -31.5,37.5 + parent: 2 + - uid: 16260 components: - type: Transform - pos: 38.5,-5.5 - parent: 89 - - uid: 4920 + pos: 37.5,18.5 + parent: 2 + - uid: 16261 components: - type: Transform - pos: 38.5,-6.5 - parent: 89 -- proto: HighSecCommandLocked - entities: - - uid: 968 + pos: -97.5,15.5 + parent: 2 + - uid: 16262 components: - type: Transform - pos: 56.5,4.5 - parent: 89 - - uid: 3141 + pos: 9.5,-16.5 + parent: 2 + - uid: 16263 components: - type: Transform - pos: 49.5,-2.5 - parent: 89 - - uid: 15631 + pos: 25.5,9.5 + parent: 2 + - uid: 16264 components: - type: Transform - pos: -113.5,-15.5 - parent: 89 -- proto: HolofanProjector - entities: - - uid: 8208 + pos: -84.5,-6.5 + parent: 2 + - uid: 26552 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 24450 + - uid: 26553 components: - type: Transform - pos: 1.0469074,27.745178 - parent: 89 -- proto: HospitalCurtains + pos: -17.5,-1.5 + parent: 24450 +- proto: NitrogenTankFilled entities: - - uid: 37 + - uid: 24540 components: - type: Transform - pos: -20.5,-22.5 - parent: 89 - - uid: 10297 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25075 components: - type: Transform - pos: -36.5,33.5 - parent: 89 - - type: Occluder - enabled: False - - type: Door - state: Open + parent: 25070 - type: Physics canCollide: False - - uid: 10351 + - type: InsideEntityStorage + - uid: 25083 components: - type: Transform - pos: -23.5,33.5 - parent: 89 - - uid: 15277 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25090 components: - type: Transform - pos: 1.5,21.5 - parent: 89 - - uid: 15293 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25097 components: - type: Transform - pos: 1.5,19.5 - parent: 89 - - uid: 15311 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25105 components: - type: Transform - pos: 1.5,15.5 - parent: 89 - - uid: 15375 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25113 components: - type: Transform - pos: 1.5,17.5 - parent: 89 - - uid: 17510 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 89 - - uid: 21017 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 89 - - uid: 21018 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 89 - - uid: 21019 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 89 - - uid: 21020 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 89 - - uid: 21864 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27586 components: - type: Transform - pos: 53.5,-33.5 - parent: 89 - - uid: 21865 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister + entities: + - uid: 16265 components: - type: Transform - pos: 51.5,-33.5 - parent: 89 - - uid: 21866 + pos: -130.5,0.5 + parent: 2 + - uid: 16266 components: - type: Transform - pos: 49.5,-33.5 - parent: 89 - - uid: 21867 + pos: -87.5,-5.5 + parent: 2 + - uid: 16267 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 -- proto: HospitalCurtainsOpen - entities: - - uid: 39 + pos: 2.5,-39.5 + parent: 2 + - uid: 16268 components: - type: Transform - pos: -27.5,-4.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 40 + pos: -90.5,-23.5 + parent: 2 + - uid: 16269 components: - type: Transform - pos: -27.5,-5.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 718 + pos: -0.5,29.5 + parent: 2 + - uid: 16270 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - uid: 4280 + pos: -9.5,21.5 + parent: 2 + - uid: 26554 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 - - uid: 4288 + pos: -13.5,-9.5 + parent: 24450 +- proto: NitrousOxideTankFilled + entities: + - uid: 16271 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 4289 + pos: -8.449858,17.576614 + parent: 2 + - uid: 16272 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 - - uid: 4291 + pos: -8.590483,17.62349 + parent: 2 +- proto: NodeScanner + entities: + - uid: 16273 components: - type: Transform - pos: -27.5,-6.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 5826 + pos: -7.3921776,-38.40237 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 16274 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - uid: 6041 + rot: -1.5707963267948966 rad + pos: -71.5,-6.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 16275 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 - - uid: 6109 + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 +- proto: Ointment + entities: + - uid: 24350 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 8845 + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Omnitool + entities: + - uid: 16276 components: - type: Transform - pos: -27.5,-7.5 - parent: 89 - - uid: 9188 + pos: 54.688084,6.5938244 + parent: 2 +- proto: OperatingTable + entities: + - uid: 16277 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 - - uid: 10296 + pos: -11.5,19.5 + parent: 2 + - uid: 16278 components: - type: Transform - pos: -37.5,33.5 - parent: 89 - - uid: 10350 + pos: 8.5,8.5 + parent: 2 + - uid: 16279 components: - type: Transform - pos: -22.5,33.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True + pos: -22.5,-22.5 + parent: 2 +- proto: OreBag + entities: + - uid: 25653 + components: + - type: Transform + parent: 25649 - type: Physics - canCollide: True - - uid: 11376 + canCollide: False + - type: InsideEntityStorage + - uid: 25654 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 15255 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25655 components: - type: Transform - pos: 1.5,20.5 - parent: 89 - - uid: 15265 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25663 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 15267 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25664 components: - type: Transform - pos: 3.5,21.5 - parent: 89 - - uid: 15272 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25665 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 15309 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 26555 components: - type: Transform - pos: 1.5,16.5 - parent: 89 - - uid: 15592 + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 24450 + - uid: 26556 components: - type: Transform - pos: 21.5,23.5 - parent: 89 - - uid: 16179 + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 24450 +- proto: OreProcessor + entities: + - uid: 16280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,37.5 - parent: 89 - - uid: 16187 + pos: -57.5,-8.5 + parent: 2 + - uid: 26557 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 16188 + pos: 5.5,8.5 + parent: 24450 + - uid: 26558 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16193 + pos: -29.5,8.5 + parent: 24450 +- proto: OxygenCanister + entities: + - uid: 16281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 89 - - uid: 17239 + pos: -48.5,-15.5 + parent: 2 + - uid: 16282 components: - type: Transform - pos: -27.5,-8.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 20810 + pos: 9.5,-14.5 + parent: 2 + - uid: 16283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 89 - - uid: 20811 + pos: -36.5,-17.5 + parent: 2 + - uid: 16284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 89 - - uid: 20957 + pos: -100.5,-23.5 + parent: 2 + - uid: 16285 components: - type: Transform - pos: 40.5,17.5 - parent: 89 - - uid: 21493 + pos: -93.5,27.5 + parent: 2 + - uid: 16286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 89 - - uid: 21494 + pos: -6.5,29.5 + parent: 2 + - uid: 16287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,25.5 - parent: 89 - - uid: 21495 + pos: -5.5,29.5 + parent: 2 + - uid: 16288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,25.5 - parent: 89 - - uid: 21496 + pos: 24.5,9.5 + parent: 2 + - uid: 16289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 89 - - uid: 21497 + pos: -78.5,18.5 + parent: 2 + - uid: 16290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,25.5 - parent: 89 -- proto: hydroponicsSoil - entities: - - uid: 5342 + pos: -71.5,21.5 + parent: 2 + - uid: 16291 components: - type: Transform - pos: 31.5,-5.5 - parent: 89 - - uid: 8057 + pos: -41.5,14.5 + parent: 2 + - uid: 16292 components: - type: Transform - pos: -8.5,37.5 - parent: 89 - - uid: 8058 + pos: -31.5,36.5 + parent: 2 + - uid: 16293 components: - type: Transform - pos: -8.5,36.5 - parent: 89 - - uid: 8059 + pos: 35.5,-17.5 + parent: 2 + - uid: 16294 components: - type: Transform - pos: -8.5,35.5 - parent: 89 - - uid: 15339 + pos: -85.5,-6.5 + parent: 2 + - uid: 16295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 89 - - uid: 20387 + pos: 36.5,27.5 + parent: 2 + - uid: 26559 components: - type: Transform - pos: 40.5,-31.5 - parent: 89 - - uid: 21289 + pos: -15.5,-9.5 + parent: 24450 + - uid: 26560 components: - type: Transform - pos: 43.5,-29.5 - parent: 89 - - uid: 21290 + pos: -6.5,-1.5 + parent: 24450 +- proto: OxygenTankFilled + entities: + - uid: 16296 components: - type: Transform - pos: 40.5,-29.5 - parent: 89 - - uid: 21340 + pos: -98.50578,20.543215 + parent: 2 + - uid: 24541 components: - type: Transform - pos: 43.5,-31.5 - parent: 89 - - uid: 21341 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25076 components: - type: Transform - pos: 43.5,-32.5 - parent: 89 - - uid: 21615 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25084 components: - type: Transform - pos: 40.5,-28.5 - parent: 89 -- proto: HydroponicsToolClippers - entities: - - uid: 2918 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25091 components: - type: Transform - pos: 30.583954,-6.477442 - parent: 89 - - uid: 21357 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25098 components: - type: Transform - pos: 41.537804,-33.535225 - parent: 89 - - uid: 21834 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25106 components: - type: Transform - pos: 41.45968,-31.300852 - parent: 89 - - uid: 21835 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25114 components: - type: Transform - pos: 42.64718,-30.191477 - parent: 89 -- proto: HydroponicsToolHatchet - entities: - - uid: 14739 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.4907417,-25.471716 - parent: 89 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 8056 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27564 components: - type: Transform - pos: -5.3726068,37.559914 - parent: 89 - - uid: 21838 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27570 components: - type: Transform - pos: 42.58468,-31.003977 - parent: 89 - - uid: 21839 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27576 components: - type: Transform - pos: 41.45968,-32.80085 - parent: 89 - - uid: 21859 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.261623,-31.969624 - parent: 89 - - uid: 21860 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.636623,-33.6415 - parent: 89 -- proto: HydroponicsToolSpade + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PackPaperRollingFilters entities: - - uid: 21021 + - uid: 16297 components: - type: Transform - pos: 30.582584,-5.9352856 - parent: 89 - - uid: 21853 + pos: -5.801279,-7.293356 + parent: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 16298 components: - type: Transform - pos: 42.706074,-32.85235 - parent: 89 - - uid: 21854 + pos: -90.5,23.5 + parent: 2 + - uid: 16299 components: - type: Transform - pos: 41.424824,-28.586721 - parent: 89 - - uid: 21857 + pos: 10.5,43.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 16300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.355373,-30.110249 - parent: 89 - - uid: 21858 + pos: -27.5,-0.5 + parent: 2 + - uid: 16301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.917873,-29.141499 - parent: 89 -- proto: hydroponicsTray + pos: 37.5,-0.5 + parent: 2 +- proto: PaintingPersistenceOfMemory entities: - - uid: 19 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 89 - - uid: 20 + - uid: 16302 components: - type: Transform - pos: -7.5,-2.5 - parent: 89 - - uid: 22 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 16303 components: - type: Transform - pos: -6.5,-2.5 - parent: 89 - - uid: 25 + pos: -76.5,-4.5 + parent: 2 +- proto: PaintingTheGreatWave + entities: + - uid: 16304 components: - type: Transform - pos: -6.5,-4.5 - parent: 89 - - uid: 26 + pos: 51.5,12.5 + parent: 2 +- proto: Paper + entities: + - uid: 1152 components: - type: Transform - pos: -7.5,-4.5 - parent: 89 - - uid: 30 + parent: 1151 + - type: Physics + canCollide: False + - uid: 1153 components: - type: Transform - pos: -6.5,-0.5 - parent: 89 - - uid: 14862 + parent: 1151 + - type: Physics + canCollide: False + - uid: 1154 components: - type: Transform - pos: -8.5,-0.5 - parent: 89 - - uid: 19911 + parent: 1151 + - type: Physics + canCollide: False + - uid: 16050 components: + - type: MetaData + name: Важные протоколы NT - type: Transform - pos: -8.5,-2.5 - parent: 89 - - uid: 19912 + parent: 16049 + - type: Paper + stampState: paper_stamp-rd + stampedBy: + - stampedColor: '#6D0091FF' + stampedName: BoyKisser + content: >2 + ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ + + ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ + + ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ + + ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ + + ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ + + ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ + + ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ + + ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ + + ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ + + ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀ + - 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: InsideEntityStorage + - uid: 16305 components: - type: Transform - pos: -8.5,-4.5 - parent: 89 - - uid: 21339 + pos: -23.2862,9.801046 + parent: 2 + - uid: 16306 components: - type: Transform - pos: 40.5,-30.5 - parent: 89 - - uid: 21360 + pos: -23.676825,9.660421 + parent: 2 + - uid: 16307 components: - type: Transform - pos: 43.5,-30.5 - parent: 89 - - uid: 21373 + pos: -104.52547,0.4284501 + parent: 2 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + content: >- + Коллеги, я очень рад что вы привезли эту чудесную вещь сюда. Я неплохо отдохнул после сбежавшей сингулярности. + + Жаль всё опустело, эх... + + - С уважением, Старший Инженер смены №19840 + - uid: 16308 components: - type: Transform - pos: 40.5,-33.5 - parent: 89 - - uid: 21508 + rot: 1.5707963267948966 rad + pos: 44.663654,5.4828796 + parent: 2 + - uid: 16309 components: - type: Transform - pos: 43.5,-33.5 - parent: 89 - - uid: 21813 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16310 components: - type: Transform - pos: 40.5,-32.5 - parent: 89 -- proto: IgniteRune - entities: - - uid: 24555 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16311 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 -- proto: InflatableDoorStack - entities: - - uid: 2726 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16312 components: - type: Transform - pos: -88.41873,-13.149558 - parent: 89 - - uid: 2727 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16313 components: - type: Transform - pos: -88.43436,-13.524558 - parent: 89 - - uid: 9308 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16314 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 9309 + pos: -102.8867,-2.4524355 + parent: 2 + - uid: 16315 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 9310 + pos: -101.15233,-2.3430603 + parent: 2 + - uid: 16316 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 14765 + pos: -100.5117,-2.483685 + parent: 2 + - uid: 16317 components: - type: Transform - pos: -75.44624,12.53618 - parent: 89 -- proto: InflatableWall - entities: - - uid: 10270 + pos: 12.287061,-1.5694923 + parent: 2 + - uid: 16318 components: - type: Transform - pos: -41.5,28.5 - parent: 89 - - uid: 10271 + pos: -104.68759,21.491177 + parent: 2 + - uid: 16319 components: - type: Transform - pos: -41.5,29.5 - parent: 89 - - uid: 14577 + pos: 34.586002,-2.6114135 + parent: 2 + - uid: 16320 components: - type: Transform - pos: -131.5,24.5 - parent: 89 - - uid: 14583 + pos: -50.26616,9.653446 + parent: 2 + - uid: 16321 components: - type: Transform - pos: -130.5,24.5 - parent: 89 - - uid: 14639 + pos: -50.35991,9.653446 + parent: 2 + - uid: 16322 components: - type: Transform - pos: -133.5,21.5 - parent: 89 -- proto: InflatableWallStack - entities: - - uid: 2724 + pos: -50.48491,9.637821 + parent: 2 + - uid: 16323 components: - type: Transform - pos: -88.82498,-13.212058 - parent: 89 - - uid: 2725 + pos: -50.57866,9.622196 + parent: 2 + - uid: 16324 components: - type: Transform - pos: -88.82498,-13.540183 - parent: 89 - - uid: 9305 + pos: -20.556078,5.7980614 + parent: 2 + - uid: 16325 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 9306 + pos: -20.556078,5.6574364 + parent: 2 + - uid: 16326 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 9307 + pos: -20.493578,5.5168114 + parent: 2 + - uid: 16327 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 14764 + pos: 48.40206,10.724899 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + [color=#006400]███░███░░░░██░░░░[/color] + + [color=#006400]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#006400]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#006400]░░░░██░░██░██░██░[/color] [bold]USG Ishimura Station ЦК - КОМ[/bold] + + [color=#006400]░░░░██░░░████░███[/color] + + =================================================== + [head=3]Указание Секторального Штаба ЦК[/head] + =================================================== + + [bold]Дата отправки:[/bold] + 24.01.3024 + [bold]Составитель документа:[/bold] + + [color=Red] Доулсон-Младший Кристофор[/color] + + [bold]Должность составителя:[/bold] + + [color=Red] Оператор ЦК[/color] + + ───────────────────────────────────────── + + [bold][italic] Приветствуем, уважаемое Командование Станции.[/italic][/bold] В связи с долгой не эксплуатацией станций данного типа, а так-же несоблюдении СанПиН - на ней было замечено много биологических факторов жизнедеятельности, поражающие некоторые части станций этого типа. Грызуны, тараканы и многие другие. В связи с этой проблемой, нами было решено прийти к самому логичному, здравому и правильному смыслу решения проблемы - [bold]установка мин.[/bold] Предупредите свой персонал, и не ходите лишний раз по техническим тоннелям. Слава НТ! + + =================================================== + Подпись: Оператор ЦК, Доулсон-Младший + [italic]место для печатей:[/italic] + - uid: 16328 components: - type: Transform - pos: -75.46187,13.06743 - parent: 89 -- proto: IngotGold - entities: - - uid: 8155 + pos: -104.50009,21.647427 + parent: 2 + - uid: 16329 components: - type: Transform - pos: -8.470213,28.527115 - parent: 89 - - uid: 8968 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16330 components: - type: Transform - pos: 48.42294,-1.3874803 - parent: 89 -- proto: IngotSilver - entities: - - uid: 2637 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16331 components: - type: Transform - pos: 47.562244,-1.3937248 - parent: 89 -- proto: IntercomCommand - entities: - - uid: 5347 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 89 - - uid: 6242 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 89 - - uid: 7372 + pos: -87.762955,14.70022 + parent: 2 + - uid: 16334 components: - type: Transform - pos: 61.5,14.5 - parent: 89 - - uid: 17865 + pos: -87.669205,14.66897 + parent: 2 + - uid: 16335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 89 - - uid: 19895 + pos: -87.606705,14.51272 + parent: 2 + - uid: 16336 components: - type: Transform - pos: 25.5,38.5 - parent: 89 -- proto: IntercomCommon - entities: - - uid: 5741 + pos: -45.6796,1.7421833 + parent: 2 + - uid: 16337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 89 -- proto: IntercomElectronics - entities: - - uid: 13594 + pos: -45.46085,1.6796833 + parent: 2 + - uid: 16338 components: - type: Transform - pos: -104.34865,-10.52207 - parent: 89 - - uid: 13609 + pos: -45.2421,1.6171833 + parent: 2 + - uid: 16339 components: - type: Transform - pos: -104.6299,-10.24082 - parent: 89 -- proto: IntercomMedical - entities: - - uid: 10953 + pos: -58.789448,7.5664344 + parent: 2 + - uid: 16340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,35.5 - parent: 89 - - uid: 15698 + pos: -58.664448,7.5039344 + parent: 2 + - uid: 16341 components: - type: Transform - pos: -13.5,10.5 - parent: 89 - - uid: 15716 + pos: -58.914448,7.6601844 + parent: 2 + - uid: 16342 components: - type: Transform - pos: 16.5,16.5 - parent: 89 -- proto: IntercomScience - entities: - - uid: 1798 + pos: -59.65388,22.738579 + parent: 2 + - uid: 16343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 89 - - uid: 10939 + pos: -59.31013,22.738579 + parent: 2 + - uid: 16344 components: - type: Transform - pos: -3.5,-37.5 - parent: 89 - - uid: 16865 + pos: -59.46638,22.519829 + parent: 2 + - uid: 16345 components: - type: Transform - pos: -6.5,-19.5 - parent: 89 - - uid: 16922 + pos: -113.752426,-7.604034 + parent: 2 + - uid: 16346 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 89 -- proto: IntercomSecurity - entities: - - uid: 4686 + pos: 19.527187,17.750849 + parent: 2 + - uid: 16347 components: - type: Transform - pos: 30.5,-0.5 - parent: 89 - - uid: 10453 + pos: 12.297477,-1.548659 + parent: 2 + - uid: 16348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 89 -- proto: IntercomService - entities: - - uid: 5742 + pos: -84.94473,17.782911 + parent: 2 + - uid: 16349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 89 - - uid: 5743 + pos: -84.74161,17.595411 + parent: 2 + - uid: 16350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 89 -- proto: IronRock - entities: - - uid: 24556 + pos: -84.92911,17.579786 + parent: 2 + - uid: 16351 components: - type: Transform - pos: -26.5,-8.5 - parent: 22565 - - uid: 24557 + pos: 25.21598,13.571265 + parent: 2 + - uid: 16352 components: - type: Transform - pos: -26.5,-7.5 - parent: 22565 - - uid: 24558 + pos: 25.545303,29.599596 + parent: 2 + - uid: 16353 components: - type: Transform - pos: -25.5,-7.5 - parent: 22565 -- proto: IronRockMining - entities: - - uid: 24559 + pos: -100.76776,-2.4943435 + parent: 2 + - uid: 16354 components: - type: Transform - pos: -1.5,-8.5 - parent: 22565 - - uid: 24560 + pos: -104.88585,9.505048 + parent: 2 + - uid: 16355 components: - type: Transform - pos: 2.5,-7.5 - parent: 22565 - - uid: 24561 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16356 components: - type: Transform - pos: 0.5,-4.5 - parent: 22565 -- proto: JanitorialTrolley - entities: - - uid: 9505 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 89 - - uid: 12770 + pos: -85.35823,1.6586027 + parent: 2 + - uid: 16358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 89 - - uid: 20863 + pos: -85.29573,1.5023527 + parent: 2 + - uid: 16359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 89 -- proto: JetpackBlueFilled - entities: - - uid: 9315 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16360 components: - type: Transform - pos: 26.483028,5.643202 - parent: 89 - - uid: 9316 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16361 components: - type: Transform - pos: 26.54969,5.523116 - parent: 89 -- proto: JetpackMini - entities: - - uid: 9311 + pos: 25.508556,29.617373 + parent: 2 + - uid: 16362 components: - type: Transform - pos: 28.545528,5.6275773 - parent: 89 - - uid: 9312 + pos: -105.05744,9.610588 + parent: 2 + - uid: 16363 components: - type: Transform - pos: 28.545528,5.6275773 - parent: 89 - - uid: 9313 + pos: 26.798138,13.448929 + parent: 2 + - uid: 16364 components: - type: Transform - pos: 27.498653,5.6588273 - parent: 89 - - uid: 9314 + pos: 24.909904,13.689699 + parent: 2 + - uid: 16365 components: - type: Transform - pos: 27.498653,5.6588273 - parent: 89 -- proto: JetpackMiniFilled - entities: - - uid: 2144 + rot: 3.141592653589793 rad + pos: 11.763542,5.72961 + parent: 2 + - uid: 16366 components: - type: Transform - parent: 7129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2217 + rot: -1.5707963267948966 rad + pos: -8.523125,13.107367 + parent: 2 + - uid: 16367 components: - type: Transform - parent: 2332 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2326 + pos: -11.461197,10.5552 + parent: 2 + - uid: 16368 components: - type: Transform - parent: 7132 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2330 + rot: 3.141592653589793 rad + pos: 11.715376,5.512917 + parent: 2 + - uid: 16369 components: - type: Transform - parent: 7131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2333 + rot: 3.141592653589793 rad + pos: 11.66721,5.6573787 + parent: 2 + - uid: 16370 components: - type: Transform - parent: 7133 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3362 + pos: -113.68643,-7.326989 + parent: 2 + - uid: 16371 components: - type: Transform - pos: -88.53448,26.530077 - parent: 89 - - uid: 21046 + pos: -113.68614,-7.970252 + parent: 2 + - uid: 16372 components: - type: Transform - pos: 51.38522,-8.203977 - parent: 89 -- proto: KitchenElectricGrill - entities: - - uid: 7633 + pos: -113.68614,-8.360877 + parent: 2 + - uid: 16373 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 20253 + pos: -113.52989,-8.423377 + parent: 2 + - uid: 16374 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 -- proto: KitchenMicrowave - entities: - - uid: 314 + pos: -113.49864,-8.235877 + parent: 2 + - uid: 16375 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 315 + pos: 12.318311,-1.548659 + parent: 2 + - uid: 16376 components: - type: Transform - pos: -12.5,-0.5 - parent: 89 - - uid: 7158 + pos: 14.374804,6.3901353 + parent: 2 + - type: Paper + content: > + ЖУРНАЛ СМЕРТЕЙ НА БОРТУ + + ДАЛЛАС, A. (СТАРШИЙ МЕДИЦИНСКИЙ ОФИЦЕР) + + Число погибших растет. Пока достоверно известно о смерти: + + Аврора Р. + + Олег Х. + + Джессика Х. + + Шарлота Х. + + Калле А. + + Айси Р. + + Сакипу-Каи + + Ебашата Б. + + Фердинант Д. + - uid: 16377 components: - type: Transform - pos: -119.5,-15.5 - parent: 89 - - uid: 8080 + pos: 32.68014,14.60166 + parent: 2 + - uid: 16378 components: - type: Transform - pos: -5.5,32.5 - parent: 89 - - uid: 20296 + pos: 32.570766,14.336035 + parent: 2 + - uid: 16379 components: - type: Transform - pos: 46.5,-28.5 - parent: 89 - - uid: 21454 + pos: 36.664516,13.72666 + parent: 2 + - uid: 16380 components: - type: Transform - pos: 46.5,-24.5 - parent: 89 - - uid: 24562 + pos: 36.39889,13.586035 + parent: 2 + - uid: 16381 components: - type: Transform - pos: -14.5,-24.5 - parent: 22565 -- proto: KitchenReagentGrinder - entities: - - uid: 316 + rot: 1.5707963267948966 rad + pos: 19.480312,17.735224 + parent: 2 + - uid: 16382 components: - type: Transform - pos: -11.5,-0.5 - parent: 89 - - uid: 4229 + rot: 1.5707963267948966 rad + pos: 19.560575,18.307178 + parent: 2 + - uid: 16383 components: - type: Transform - pos: -29.5,0.5 - parent: 89 - - uid: 6931 + pos: 53.277283,-6.2131367 + parent: 2 + - uid: 16384 components: - type: Transform - pos: -13.5,-0.5 - parent: 89 - - uid: 8079 + pos: 53.355408,-6.4318867 + parent: 2 + - uid: 16385 components: - type: Transform - pos: -5.5,33.5 - parent: 89 - - uid: 20295 + pos: 53.589783,-6.1662617 + parent: 2 + - uid: 16386 components: - type: Transform - pos: 47.5,-28.5 - parent: 89 - - uid: 21443 + pos: 53.683533,-6.4787617 + parent: 2 + - uid: 16387 components: - type: Transform - pos: 46.5,-27.5 - parent: 89 - - uid: 21548 + pos: 58.621033,-6.2756367 + parent: 2 + - uid: 16388 components: - type: Transform - pos: -3.5,6.5 - parent: 89 -- proto: KitchenSpike - entities: - - uid: 3561 + pos: 58.636658,-6.4631367 + parent: 2 + - uid: 16389 components: - type: Transform - pos: -12.5,-9.5 - parent: 89 -- proto: KnifePlastic - entities: - - uid: 14959 + pos: 58.402283,-6.3225117 + parent: 2 + - uid: 16390 components: - type: Transform - pos: -12.095051,-31.779919 - parent: 89 - - uid: 22564 + pos: 59.277206,5.651163 + parent: 2 + - type: Paper + content: > + ДИРЕКТИВА ЦЕНТРАЛЬНОГО КОМАНДОВАНИЯ НАНОТРЕЙЗЕН + + ДЖЕССИКА, Х. (2-ОЙ КАПИТАН ФЛОТА НТ) + + Приказ о разоружении корабля USG Ishimura от 25.07.13 + + Требуется снять все бортовые пушки и БСА с корабля для перевода в гражданские структуры. + + Слава НаноТрейзен! + - uid: 16391 components: - type: Transform - pos: 46.707172,-27.829277 - parent: 89 -- proto: KukriKnife - entities: - - uid: 11596 + pos: -104.701065,9.571011 + parent: 2 + - uid: 16392 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11597 + rot: 3.141592653589793 rad + pos: -46.56842,24.176943 + parent: 2 + - type: Paper + content: Не роняй мыло........ + - uid: 16393 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11598 + rot: -1.5707963267948966 rad + pos: 57.45179,-31.312603 + parent: 2 + - uid: 16394 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Lamp - entities: - - uid: 2260 + rot: -1.5707963267948966 rad + pos: 57.467415,-31.328228 + parent: 2 + - uid: 16395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.93759,21.725552 - parent: 89 - - uid: 5503 + rot: -1.5707963267948966 rad + pos: 57.38929,-31.437603 + parent: 2 + - uid: 16396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.446922,-5.000888 - parent: 89 - - uid: 8137 + pos: 57.811165,-31.718853 + parent: 2 + - uid: 16397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.501057,6.3397737 - parent: 89 - - uid: 10436 + pos: 57.60804,-31.546978 + parent: 2 + - uid: 16398 components: - type: Transform - pos: 20.482098,5.6791444 - parent: 89 - - uid: 12853 + rot: -1.5707963267948966 rad + pos: 57.529915,-31.515728 + parent: 2 + - uid: 16399 components: - type: Transform - pos: 8.682205,9.82186 - parent: 89 - - uid: 17937 + rot: -1.5707963267948966 rad + pos: 59.284332,4.4924917 + parent: 2 + - type: Paper + content: СДЕЛАЙ НАС ЕДИНЫМИ!!! + - uid: 16400 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.549576,9.8738165 - parent: 89 - - uid: 19584 + pos: 58.559803,-31.989944 + parent: 2 + - uid: 16401 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5588393,19.764381 - parent: 89 - - uid: 19974 + pos: 58.169178,-32.34932 + parent: 2 + - uid: 16402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.538666,40.34335 - parent: 89 - - uid: 21832 + rot: 3.141592653589793 rad + pos: 58.247303,-32.583694 + parent: 2 + - uid: 16403 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.432224,-31.40483 - parent: 89 -- proto: LampBanana - entities: - - uid: 7432 + pos: 58.419178,-32.614944 + parent: 2 + - uid: 16404 components: - type: Transform - pos: -35.397045,-3.1333203 - parent: 89 -- proto: LampGold - entities: - - uid: 5782 + rot: 3.141592653589793 rad + pos: 58.559803,-32.396194 + parent: 2 + - uid: 16405 components: - type: Transform - pos: -27.461552,25.006954 - parent: 89 - - uid: 7562 + rot: 3.141592653589793 rad + pos: 57.028553,-33.364944 + parent: 2 + - uid: 16406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.895138,9.879225 - parent: 89 - - uid: 10212 + rot: 3.141592653589793 rad + pos: 57.716053,-33.31807 + parent: 2 + - uid: 16407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.3404,-1.379747 - parent: 89 - - uid: 21833 + rot: 3.141592653589793 rad + pos: 56.544178,-33.44307 + parent: 2 + - uid: 16408 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.557224,-33.389206 - parent: 89 - - uid: 25801 + pos: 56.450428,-33.427444 + parent: 2 + - uid: 16409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.66362,-1.3675164 - parent: 89 -- proto: LampInterrogator - entities: - - uid: 15285 + pos: -23.739325,9.301046 + parent: 2 + - uid: 16410 components: - type: Transform - pos: 18.405268,11.867744 - parent: 89 - - uid: 25702 + pos: -23.301825,9.332296 + parent: 2 + - uid: 24185 components: - type: Transform - pos: 3.9796157,-0.92675114 - parent: 89 -- proto: LandMineExplosive - entities: - - uid: 6139 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24186 components: - type: Transform - pos: -4.4686537,40.2199 - parent: 89 - - uid: 6952 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24187 components: - type: Transform - pos: 34.688606,-35.510906 - parent: 89 - - uid: 7051 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24188 components: - type: Transform - pos: 45.455486,-39.604183 - parent: 89 - - uid: 8030 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24189 components: - type: Transform - pos: 0.68342876,35.56857 - parent: 89 - - uid: 8478 + pos: 4.9558105,3.4869156 + parent: 23919 +- proto: PaperBin10 + entities: + - uid: 16411 components: - type: Transform - pos: -22.0184,28.013847 - parent: 89 - - uid: 8682 + pos: -102.5,21.5 + parent: 2 + - uid: 16412 components: - type: Transform - pos: -37.92106,27.596144 - parent: 89 - - uid: 8928 + rot: 0.00040875888862988013 rad + pos: -9.212771,-16.376884 + parent: 2 + - uid: 16413 components: - type: Transform - pos: 51.694767,-39.464676 - parent: 89 - - uid: 9779 + pos: 25.5,40.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 16414 components: - type: Transform - pos: 37.066868,-39.541683 - parent: 89 - - uid: 14076 + pos: 31.5,-12.5 + parent: 2 + - uid: 16415 components: - type: Transform - pos: -43.77981,-11.425076 - parent: 89 - - uid: 15325 + pos: 33.5,-12.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 16416 components: - type: Transform - pos: -21.231293,17.468136 - parent: 89 - - uid: 17914 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 16417 components: - type: Transform - pos: -20.449375,23.433443 - parent: 89 - - uid: 20270 + rot: 3.141592653589793 rad + pos: -1.9534917,19.498787 + parent: 2 + - uid: 16418 components: - type: Transform - pos: -14.347334,33.5509 - parent: 89 - - uid: 20855 + rot: 3.141592653589793 rad + pos: -1.8909917,19.561287 + parent: 2 +- proto: PaperRolling1 + entities: + - uid: 16419 components: + - type: MetaData + name: Использованная бумага - type: Transform - pos: -37.611073,13.366797 - parent: 89 - - uid: 21723 + pos: 36.221523,-19.722937 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 8771 components: - type: Transform - pos: 6.586074,-21.640778 - parent: 89 - - uid: 21878 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8778 components: - type: Transform - pos: 60.424446,-26.467558 - parent: 89 - - uid: 21906 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8785 components: - type: Transform - pos: 54.420834,-11.5585 - parent: 89 - - uid: 21919 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16420 components: - type: Transform - pos: 57.227066,-15.518201 - parent: 89 - - uid: 21975 + pos: 19.319859,-1.4254802 + parent: 2 + - uid: 16421 components: - type: Transform - pos: 65.5428,-24.867735 - parent: 89 - - uid: 21977 + pos: -91.52402,24.379433 + parent: 2 + - uid: 16422 components: - type: Transform - pos: 55.81865,-39.589676 - parent: 89 - - uid: 21979 + pos: 19.429234,-1.4254802 + parent: 2 + - uid: 16423 components: - type: Transform - pos: 60.473576,-39.495926 - parent: 89 - - uid: 21980 + pos: 19.585484,-1.4254802 + parent: 2 + - uid: 16424 components: - type: Transform - pos: 64.45394,-36.5428 - parent: 89 - - uid: 21981 + pos: 19.710484,-1.4254802 + parent: 2 + - uid: 16425 components: - type: Transform - pos: 64.40707,-30.985271 - parent: 89 - - uid: 21982 + pos: 19.804234,-1.4254802 + parent: 2 + - uid: 16426 components: - type: Transform - pos: 63.5428,-18.87275 - parent: 89 - - uid: 22009 + pos: 19.507359,-1.4254802 + parent: 2 + - uid: 16427 components: - type: Transform - pos: 41.560143,-39.416103 - parent: 89 - - uid: 22013 + pos: 15.522182,-16.495586 + parent: 2 + - uid: 16428 components: - type: Transform - pos: 43.74965,-37.534115 - parent: 89 - - uid: 22015 + pos: 32.602047,7.415881 + parent: 2 + - uid: 27814 components: - type: Transform - pos: 39.814507,-36.159115 - parent: 89 - - uid: 22016 + pos: -1.4355316,-7.3322144 + parent: 27260 +- proto: Pen + entities: + - uid: 16429 components: - type: Transform - pos: 38.543976,-29.734673 - parent: 89 - - uid: 22018 + pos: 34.751617,-3.0509233 + parent: 2 + - uid: 16430 components: - type: Transform - pos: 56.296066,-36.560616 - parent: 89 - - uid: 22019 + rot: 1.5707963267948966 rad + pos: 44.663654,5.2641296 + parent: 2 + - uid: 16431 components: - type: Transform - pos: 60.94568,-35.466866 - parent: 89 - - uid: 22020 + pos: -102.442795,-2.4083269 + parent: 2 + - uid: 16432 components: - type: Transform - pos: 59.486946,-18.90871 - parent: 89 - - uid: 25354 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16433 components: - type: Transform - pos: 34.571785,-30.9184 - parent: 89 -- proto: LandMineModular - entities: - - uid: 22469 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16434 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 47.278114,-15.313954 - parent: 89 - - uid: 22476 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16435 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 50.23124,-13.423328 - parent: 89 - - uid: 22478 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16436 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 50.621864,-15.595203 - parent: 89 -- proto: Lantern - entities: - - uid: 14729 + pos: 12.755811,-1.5278256 + parent: 2 + - uid: 16437 components: - type: Transform - pos: 8.490026,-20.236387 - parent: 89 - - uid: 14937 + pos: -52.531784,9.387821 + parent: 2 + - uid: 16438 components: - type: Transform - pos: -12.79487,-35.70387 - parent: 89 - - uid: 24563 + pos: -20.149828,5.6105614 + parent: 2 + - uid: 16439 components: - type: Transform - pos: 4.397705,10.767603 - parent: 22565 - - uid: 24564 + rot: 3.141592653589793 rad + pos: -104.28134,21.428677 + parent: 2 + - uid: 16440 components: - type: Transform - pos: 3.5099854,10.626978 - parent: 22565 -- proto: LargeBeaker - entities: - - uid: 10010 + pos: -87.356705,14.63772 + parent: 2 + - uid: 16441 components: - type: Transform - pos: 46.36333,-26.008604 - parent: 89 - - uid: 20271 + pos: -58.383198,7.6601844 + parent: 2 + - uid: 16442 components: - type: Transform - pos: 46.597706,-25.99298 - parent: 89 - - uid: 21551 + pos: -45.58585,1.1796833 + parent: 2 + - uid: 16443 components: - type: Transform - pos: -1.9276239,5.7597456 - parent: 89 -- proto: LeavesCannabisDried - entities: - - uid: 5458 + pos: -59.96638,22.644829 + parent: 2 + - uid: 16444 components: - type: Transform - parent: 5392 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Lighter - entities: - - uid: 23750 + pos: -84.42911,17.611036 + parent: 2 + - uid: 16445 components: - type: Transform - parent: 23748 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LightReplacer - entities: - - uid: 14705 + rot: -1.5707963267948966 rad + pos: -1.0206444,19.64295 + parent: 2 + - uid: 16446 components: - type: Transform - pos: -78.464035,-6.370775 - parent: 89 - - uid: 14706 + pos: -85.748856,1.5023527 + parent: 2 + - uid: 16447 components: - type: Transform - pos: -95.46373,16.583893 - parent: 89 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 6324 + pos: 25.171398,29.545141 + parent: 2 + - uid: 16448 components: - type: Transform - pos: -91.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LiquidNitrogenCanister - entities: - - uid: 993 + rot: 3.141592653589793 rad + pos: 5.608939,16.567434 + parent: 2 + - uid: 16449 components: - type: Transform - pos: -91.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17208 + rot: 1.5707963267948966 rad + pos: 5.410079,32.462254 + parent: 2 + - uid: 16450 components: - type: Transform - pos: -98.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LiquidOxygenCanister - entities: - - uid: 6323 + pos: -113.32677,-7.642127 + parent: 2 + - uid: 16451 components: - type: Transform - pos: -91.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17101 + rot: -1.5707963267948966 rad + pos: 32.477016,14.60166 + parent: 2 + - uid: 16452 components: - type: Transform - pos: -100.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LockableButtonResearch - entities: - - uid: 15006 + rot: -1.5707963267948966 rad + pos: 36.477016,14.03916 + parent: 2 + - uid: 16453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10765: - - Pressed: Toggle - 10764: - - Pressed: Toggle - 10763: - - Pressed: Toggle - - uid: 15027 + pos: 19.62081,18.746508 + parent: 2 + - uid: 16454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10763: - - Pressed: Toggle - 10764: - - Pressed: Toggle - 10765: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 18178 + pos: 54.058533,-6.2912617 + parent: 2 + - uid: 16455 components: - type: Transform - pos: -104.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25622 - - 17429 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18179 + pos: 54.089783,-6.4475117 + parent: 2 + - uid: 16456 components: - type: Transform - pos: -104.5,-17.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25623 - - 25624 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18180 + pos: 57.917908,-6.3225117 + parent: 2 + - uid: 16457 components: - type: Transform - pos: -104.5,-18.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25626 - - 25625 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 14623 + pos: 26.263317,37.09462 + parent: 2 + - uid: 16458 components: - type: Transform - pos: 3.5,46.5 - parent: 89 - - uid: 21457 + pos: -43.521545,30.07248 + parent: 2 + - uid: 16459 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 -- proto: LockerBotanistFilled - entities: - - uid: 14624 + pos: 58.637928,-32.958694 + parent: 2 + - uid: 16460 components: - type: Transform - pos: -10.5,-9.5 - parent: 89 - - uid: 21385 + pos: 34.030506,-12.405725 + parent: 2 + - uid: 16461 components: - type: Transform - pos: -10.5,-8.5 - parent: 89 -- proto: LockerCaptainFilled - entities: - - uid: 3091 + pos: 30.889881,-12.5151 + parent: 2 + - uid: 16462 components: - type: Transform - pos: 46.5,14.5 - parent: 89 -- proto: LockerChemistryFilled + pos: -23.301825,9.129171 + parent: 2 +- proto: PersonalAI entities: - - uid: 15376 + - uid: 16463 components: - type: Transform - pos: 2.5,9.5 - parent: 89 - - uid: 15384 + pos: 1.571759,-29.847042 + parent: 2 + - uid: 16464 components: - type: Transform - pos: 3.5,9.5 - parent: 89 -- proto: LockerChiefEngineerFilled - entities: - - uid: 21401 + pos: -91.45784,6.461441 + parent: 2 + - uid: 16465 components: - type: Transform - pos: -102.5,11.5 - parent: 89 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 14767 + pos: 30.522495,-3.4520006 + parent: 2 + - uid: 16466 components: - type: Transform - pos: 23.5,43.5 - parent: 89 -- proto: LockerDetective - entities: - - uid: 4858 + pos: -19.416168,-6.4855185 + parent: 2 + - uid: 16467 components: - - type: MetaData - name: шкаф - type: Transform - pos: 11.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.9938449 - - 7.5006547 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14044 - - 14042 - - 14047 - - 14041 - - 14046 - - 14040 - - 14045 - - 14043 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled - entities: - - uid: 14769 + pos: -57.471027,12.576777 + parent: 2 + - uid: 16468 components: - type: Transform - pos: 17.5,8.5 - parent: 89 -- proto: LockerEngineerFilled - entities: - - uid: 14770 + pos: -41.42999,-10.450936 + parent: 2 + - uid: 16469 components: - type: Transform - pos: -112.5,14.5 - parent: 89 - - uid: 18182 + pos: -4.533154,-20.272491 + parent: 2 + - uid: 16470 components: - type: Transform - pos: -100.5,0.5 - parent: 89 - - uid: 18183 + pos: -18.454983,-23.222599 + parent: 2 + - uid: 16471 components: - type: Transform - pos: -101.5,0.5 - parent: 89 - - uid: 18184 + pos: -18.531723,12.537066 + parent: 2 + - uid: 16472 components: - type: Transform - pos: -105.5,-0.5 - parent: 89 - - uid: 18189 + pos: -61.45272,5.614086 + parent: 2 + - uid: 16473 components: - type: Transform - pos: -103.5,0.5 - parent: 89 - - uid: 18190 + pos: -36.49227,27.653912 + parent: 2 + - uid: 16474 components: - type: Transform - pos: -102.5,0.5 - parent: 89 - - uid: 18191 + pos: -103.92291,9.576194 + parent: 2 + - uid: 16475 components: - type: Transform - pos: -98.5,-1.5 - parent: 89 - - uid: 18192 + pos: -69.48751,-17.338394 + parent: 2 + - uid: 16476 components: - type: Transform - pos: -98.5,-2.5 - parent: 89 - - uid: 18193 + pos: 44.26809,5.7978077 + parent: 2 + - uid: 16477 components: - type: Transform - pos: -98.5,-3.5 - parent: 89 - - uid: 21348 + pos: 56.51628,10.546991 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 16478 components: - type: Transform - pos: -105.5,-1.5 - parent: 89 -- proto: LockerEvidence + pos: -105.45816,21.652794 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 34.35128,-2.1720636 + parent: 2 +- proto: PianoInstrument entities: - - uid: 10170 + - uid: 16480 components: - type: Transform - pos: -80.5,-3.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15048 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 16481 components: - type: Transform - pos: 26.5,-10.5 - parent: 89 - - uid: 15051 + pos: -25.454777,28.449745 + parent: 2 + - uid: 16482 components: - type: Transform - pos: 23.5,-10.5 - parent: 89 - - uid: 15078 + pos: 25.395391,-12.3433895 + parent: 2 + - uid: 25656 components: - type: Transform - pos: 20.5,-10.5 - parent: 89 - - uid: 15081 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25657 components: - type: Transform - pos: 17.5,-10.5 - parent: 89 - - uid: 15104 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25658 components: - type: Transform - pos: -54.5,39.5 - parent: 89 - - uid: 15128 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25666 components: - type: Transform - pos: -54.5,45.5 - parent: 89 - - uid: 16875 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25667 components: - type: Transform - pos: 21.5,12.5 - parent: 89 - - uid: 17052 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25668 components: - type: Transform - pos: 40.5,-25.5 - parent: 89 - - uid: 17055 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanister + entities: + - uid: 16483 components: - type: Transform - pos: 38.5,-25.5 - parent: 89 - - uid: 17205 + pos: -1.629554,10.697055 + parent: 2 + - uid: 16484 components: - type: Transform - pos: 40.5,-26.5 - parent: 89 - - uid: 20419 + pos: -2.9211035,5.53437 + parent: 2 +- proto: PillCanisterBicaridine + entities: + - uid: 23947 components: - type: Transform - pos: 38.5,-26.5 - parent: 89 - - uid: 21780 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanisterDermaline + entities: + - uid: 23948 components: - type: Transform - pos: 40.5,-23.5 - parent: 89 - - uid: 21781 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanisterIron + entities: + - uid: 23949 components: - type: Transform - pos: 40.5,-24.5 - parent: 89 - - uid: 21783 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillSpaceDrugs + entities: + - uid: 10521 components: - type: Transform - pos: 38.5,-23.5 - parent: 89 - - uid: 21784 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10522 components: - type: Transform - pos: 38.5,-24.5 - parent: 89 -- proto: LockerFreezer - entities: - - uid: 21471 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10523 components: - type: Transform - pos: -12.5,-8.5 - parent: 89 -- proto: LockerFreezerBase - entities: - - uid: 21393 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10524 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 23953 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10525 components: - type: Transform - pos: -12.5,-24.5 - parent: 22565 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23958 - - 23959 - - 23957 - - 23960 - - 23962 - - 23956 - - 23955 - - 23961 - - 23954 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PinpointerNuclear entities: - - uid: 12621 + - uid: 16485 components: - type: Transform - pos: 44.5,14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerHeadOfSecurityFilled + pos: 48.625,-2.545616 + parent: 2 +- proto: PlaqueAtmos entities: - - uid: 15692 + - uid: 16486 components: + - type: MetaData + desc: Старая доска почета, жаль, что доска слишком изношена, чтобы можно было её прочитать, кроме нескольких слов "no_mad" "OopsieDoopsie" "tUndra" "Bebushka" "_CyreX_" "Bollo" "lapatison" "kevicky9" "vasalomka", вот только что означают эти слова, вы никогда не узнаете. Похоже кто-то наклеил поверх таблички фотку "Робастер, древний." + name: старая доска почета - type: Transform - pos: 30.5,-2.5 - parent: 89 -- proto: LockerMedical + pos: 14.5,-14.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-5.5 + parent: 2 +- proto: PlasmaCanister entities: - - uid: 11201 + - uid: 16488 components: - type: Transform - pos: 27.5,29.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11303 - - 11302 - - 11301 - - 11224 - - 11211 - - 11206 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11304 + pos: -88.5,-4.5 + parent: 2 + - uid: 16489 components: - type: Transform - pos: 21.5,29.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11310 - - 11309 - - 11308 - - 11307 - - 11306 - - 11305 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled - entities: - - uid: 15693 + pos: -123.5,7.5 + parent: 2 + - uid: 16490 components: - type: Transform - pos: 11.5,16.5 - parent: 89 - - uid: 17906 + pos: -123.5,0.5 + parent: 2 + - uid: 16491 components: - type: Transform - pos: 35.5,18.5 - parent: 89 - - uid: 17908 + pos: -92.5,-23.5 + parent: 2 + - uid: 16492 components: - type: Transform - pos: 31.5,20.5 - parent: 89 -- proto: LockerMedicine - entities: - - uid: 12190 + pos: 1.5,-38.5 + parent: 2 + - uid: 26561 components: - type: Transform - pos: 22.5,19.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12599 - - 12600 - - 12602 - - 12605 - - 12608 - - 12610 - - 12611 - - 12800 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicineFilled + pos: -13.5,-8.5 + parent: 24450 +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 15548 + - uid: 16493 components: - type: Transform - pos: -11.5,15.5 - parent: 89 - - uid: 15581 + pos: -122.5,15.5 + parent: 2 + - uid: 16494 components: - type: Transform - pos: -12.5,15.5 - parent: 89 - - uid: 16417 + pos: -124.5,15.5 + parent: 2 + - uid: 16495 components: - type: Transform - pos: 34.5,18.5 - parent: 89 - - uid: 16458 + pos: -125.5,15.5 + parent: 2 + - uid: 16496 components: - type: Transform - pos: 5.5,14.5 - parent: 89 - - uid: 19642 + pos: -121.5,15.5 + parent: 2 + - uid: 16497 components: - type: Transform - pos: 33.5,18.5 - parent: 89 -- proto: LockerParamedicFilled - entities: - - uid: 8204 + rot: -1.5707963267948966 rad + pos: -110.5,20.5 + parent: 2 + - uid: 16498 components: - type: Transform - pos: 16.5,21.5 - parent: 89 -- proto: LockerQuarterMasterFilled - entities: - - uid: 16459 + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - uid: 16499 components: - type: Transform - pos: -73.5,-17.5 - parent: 89 -- proto: LockerResearchDirectorFilled - entities: - - uid: 3090 + rot: 1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16500 components: - type: Transform - pos: 3.5,-31.5 - parent: 89 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 21461 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16501 components: - type: Transform - pos: -49.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25627 - - 25628 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21463 + rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16502 components: - type: Transform - pos: -48.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25630 - - 25629 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21465 + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16503 components: - type: Transform - pos: -47.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25631 - - 25632 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerScienceFilled - entities: - - uid: 3089 + rot: 1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16508 components: - type: Transform - pos: -6.5,-25.5 - parent: 89 - - uid: 3558 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16509 components: - type: Transform - pos: -7.5,-25.5 - parent: 89 -- proto: LockerSecurityFilled - entities: - - uid: 4330 + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16510 components: - type: Transform - pos: 19.5,-6.5 - parent: 89 - - uid: 5315 + pos: 2.5,-42.5 + parent: 2 + - uid: 16511 components: - type: Transform - pos: 21.5,-1.5 - parent: 89 - - uid: 15342 + pos: -7.5,-41.5 + parent: 2 + - uid: 16512 components: - type: Transform - pos: 18.5,-6.5 - parent: 89 - - uid: 17196 + pos: -5.5,-41.5 + parent: 2 + - uid: 16513 components: - type: Transform - pos: -88.5,12.5 - parent: 89 - - uid: 17206 + pos: 0.5,-41.5 + parent: 2 + - uid: 16514 components: - type: Transform - pos: 20.5,-6.5 - parent: 89 - - uid: 17233 + pos: 2.5,-41.5 + parent: 2 + - uid: 16515 components: - type: Transform - pos: 17.5,-6.5 - parent: 89 - - uid: 17252 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 16516 components: - type: Transform - pos: 21.5,-6.5 - parent: 89 -- proto: LockerWardenFilled - entities: - - uid: 21448 + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - uid: 16517 components: - type: Transform - pos: 9.5,-8.5 - parent: 89 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 17211 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 16518 components: - type: Transform - pos: -39.5,-17.5 - parent: 89 - - uid: 17301 + rot: 3.141592653589793 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16519 components: - type: Transform - pos: 48.5,5.5 - parent: 89 - - uid: 17302 + rot: 3.141592653589793 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16520 components: - type: Transform - pos: -5.5,25.5 - parent: 89 - - uid: 17379 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16521 components: - type: Transform - pos: -16.5,13.5 - parent: 89 -- proto: Log - entities: - - uid: 14740 + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16522 components: - type: Transform - pos: 7.479765,-25.628338 - parent: 89 - - uid: 14741 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16523 components: - type: Transform - pos: 7.015009,-25.861204 - parent: 89 -- proto: Machete - entities: - - uid: 3275 + pos: 54.5,4.5 + parent: 2 + - uid: 16524 components: - type: Transform - pos: 36.507298,-14.4976635 - parent: 89 -- proto: MachineAnomalyGenerator - entities: - - uid: 5432 + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16525 components: - type: Transform - pos: -8.5,-28.5 - parent: 89 -- proto: MachineAnomalyVessel - entities: - - uid: 20076 + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 16526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 89 - - uid: 20079 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 + - uid: 16527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 89 - - uid: 20081 + pos: -7.5,-29.5 + parent: 2 + - uid: 16528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 89 -- proto: MachineAPE - entities: - - uid: 122 + pos: -9.5,-29.5 + parent: 2 + - uid: 16529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 89 - - uid: 8533 + pos: -7.5,-29.5 + parent: 2 + - uid: 16530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 89 - - uid: 19580 + pos: -7.5,-28.5 + parent: 2 + - uid: 16531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 89 -- proto: MachineArtifactAnalyzer - entities: - - uid: 1435 + pos: -7.5,-27.5 + parent: 2 + - uid: 16532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 89 - - uid: 3262 + pos: -126.5,15.5 + parent: 2 + - uid: 16533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-44.5 - parent: 89 -- proto: MachineCentrifuge + pos: -135.5,-8.5 + parent: 2 +- proto: PlasmaShiv entities: - - uid: 21099 + - uid: 16534 components: - type: Transform - pos: -0.5,9.5 - parent: 89 -- proto: MachineElectrolysisUnit + pos: 53.479996,-33.581047 + parent: 2 + - uid: 25077 + components: + - type: Transform + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaWindoorSecureCommandLocked entities: - - uid: 5240 + - uid: 16535 components: - type: Transform - pos: -0.5,8.5 - parent: 89 -- proto: MachineFrameDestroyed + pos: 49.5,-2.5 + parent: 2 +- proto: PlasmaWindoorSecureEngineeringLocked entities: - - uid: 21105 + - uid: 16536 components: - type: Transform - pos: 38.5,39.5 - parent: 89 - - uid: 21106 + pos: -123.5,15.5 + parent: 2 + - uid: 16537 components: - type: Transform - pos: 39.5,39.5 - parent: 89 - - uid: 24565 + rot: -1.5707963267948966 rad + pos: -110.5,21.5 + parent: 2 + - uid: 16538 components: - type: Transform - pos: 1.5,9.5 - parent: 22565 -- proto: MagazineBoxPistolPractice - entities: - - uid: 22458 + rot: -1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - uid: 16539 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineLightRifle - entities: - - uid: 17722 + rot: -1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - uid: 16540 components: - type: Transform - pos: 37.304096,-2.5230527 - parent: 89 - - uid: 17723 + rot: -1.5707963267948966 rad + pos: -134.5,-11.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-9.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-5.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-3.5 + parent: 2 + - uid: 16544 components: - type: Transform - pos: 37.60097,-2.5230527 - parent: 89 -- proto: MagazineLightRiflePractice + rot: -1.5707963267948966 rad + pos: -134.5,-2.5 + parent: 2 +- proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 3251 + - uid: 16545 components: - type: Transform - pos: 37.491753,-1.4167659 - parent: 89 - - uid: 17662 + pos: -8.5,-29.5 + parent: 2 +- proto: PlasmaWindowDirectional + entities: + - uid: 16546 components: - type: Transform - pos: 37.757378,-1.4011409 - parent: 89 - - uid: 17667 + rot: 1.5707963267948966 rad + pos: -93.5,-14.5 + parent: 2 + - uid: 16547 components: - type: Transform - pos: 37.257378,-1.4167659 - parent: 89 - - uid: 18454 + pos: -92.5,-13.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -91.5,-13.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: -90.5,-13.5 + parent: 2 + - uid: 16550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.507378,-1.5573909 - parent: 89 -- proto: MagazinePistol - entities: - - uid: 1069 + pos: -89.5,-14.5 + parent: 2 + - uid: 16551 components: - type: Transform - pos: 43.177917,-9.356591 - parent: 89 - - uid: 17093 + rot: 3.141592653589793 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 16552 components: - type: Transform - pos: 43.631042,-9.372216 - parent: 89 - - uid: 17094 + rot: 3.141592653589793 rad + pos: -91.5,-15.5 + parent: 2 + - uid: 16553 components: - type: Transform - pos: 43.412292,-9.356591 - parent: 89 - - uid: 17154 + rot: 3.141592653589793 rad + pos: -92.5,-15.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 16554 components: - type: Transform - pos: 43.865417,-9.372216 - parent: 89 - - uid: 17155 + pos: -63.5,-21.5 + parent: 2 + - uid: 16555 components: - type: Transform - pos: 43.865417,-9.231591 - parent: 89 - - uid: 17156 + pos: -59.5,-21.5 + parent: 2 + - uid: 16556 components: - type: Transform - pos: 43.693542,-9.215966 - parent: 89 - - uid: 17157 + pos: -59.5,-18.5 + parent: 2 + - uid: 16557 components: - type: Transform - pos: 43.459167,-9.200341 - parent: 89 - - uid: 17158 + pos: -63.5,-18.5 + parent: 2 + - uid: 16558 components: - type: Transform - pos: 43.209167,-9.184716 - parent: 89 -- proto: MagazinePistolPractice + pos: -101.5,29.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,29.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 23919 +- proto: PlasticFlapsAirtightOpaque entities: - - uid: 22456 + - uid: 16560 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22460 + rot: 3.141592653589793 rad + pos: -92.5,-3.5 + parent: 2 + - uid: 16561 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22462 + pos: -59.5,-3.5 + parent: 2 + - uid: 16562 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineRifle + pos: -66.5,-3.5 + parent: 2 +- proto: PlushieAtmosian entities: - - uid: 529 + - uid: 16563 components: + - type: MetaData + name: плюшевый TiFeRi - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaintenanceFluffSpawner + pos: -90.946205,-14.580009 + parent: 2 +- proto: PlushieCarp entities: - - uid: 7006 + - uid: 16564 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - uid: 14697 + pos: -25.532013,29.75965 + parent: 2 + - uid: 16565 components: - type: Transform - pos: -81.5,5.5 - parent: 89 - - uid: 14777 + pos: 1.5285358,-48.382328 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 16566 components: - type: Transform - pos: -72.5,21.5 - parent: 89 - - uid: 14858 + pos: 24.491402,43.610085 + parent: 2 + - uid: 16567 components: - type: Transform - pos: -38.5,23.5 - parent: 89 - - uid: 16282 + pos: -105.51431,9.84532 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 16568 components: - type: Transform - pos: 7.5,27.5 - parent: 89 - - uid: 19610 + pos: -89.61875,29.811512 + parent: 2 + - uid: 16569 components: - type: Transform - pos: -26.5,-23.5 - parent: 89 - - uid: 24567 + pos: 49.59375,-3.342491 + parent: 2 +- proto: PlushieNar + entities: + - uid: 16570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 22565 -- proto: MaintenanceToolSpawner + pos: 3.4692783,30.507156 + parent: 2 +- proto: PlushieNuke entities: - - uid: 92 + - uid: 16571 components: + - type: MetaData + name: плюшевая коммандер аврора - type: Transform - pos: -24.5,-15.5 - parent: 89 - - uid: 3387 + pos: 0.49973202,32.523396 + parent: 2 + - uid: 16572 components: + - type: MetaData + name: плюшевая коммандер аврора - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 3391 + pos: 59.524296,6.726757 + parent: 2 +- proto: PlushieSharkPink + entities: + - uid: 16573 components: - type: Transform - pos: -18.5,-23.5 - parent: 89 - - uid: 7483 + pos: 3.484107,32.50777 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 16574 components: + - type: MetaData + desc: Добрый и маленький слаймик нурка + name: слаймик Нурану - type: Transform - pos: -76.5,-15.5 - parent: 89 - - uid: 7639 + pos: 1.4425585,-31.546919 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 16575 components: - type: Transform - pos: -85.5,-4.5 - parent: 89 - - uid: 7733 + pos: 59.412067,2.6890216 + parent: 2 + - uid: 16576 components: - type: Transform - pos: -82.5,-1.5 - parent: 89 - - uid: 14698 + pos: 19.486435,38.771248 + parent: 2 +- proto: PonderingOrb + entities: + - uid: 16577 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - uid: 14778 + pos: 11.506685,-21.496483 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 16578 components: - type: Transform - pos: -73.5,21.5 - parent: 89 - - uid: 14859 + pos: -53.5,36.5 + parent: 2 + - uid: 16579 components: - type: Transform - pos: -38.5,24.5 - parent: 89 - - uid: 16281 + pos: -53.5,34.5 + parent: 2 + - uid: 16580 components: - type: Transform - pos: 8.5,27.5 - parent: 89 - - uid: 16400 + pos: 43.5,-2.5 + parent: 2 + - uid: 16581 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 19616 + pos: 43.5,-3.5 + parent: 2 + - uid: 16582 components: - type: Transform - pos: -26.5,-25.5 - parent: 89 -- proto: MaintenanceWeaponSpawner + pos: 42.5,-2.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 +- proto: PortableGeneratorJrPacman entities: - - uid: 106 + - uid: 16584 components: - type: Transform - pos: -43.5,-3.5 - parent: 89 - - uid: 6553 + pos: -53.5,32.5 + parent: 2 + - uid: 16585 components: - type: Transform - pos: -33.5,-1.5 - parent: 89 - - uid: 14696 + pos: -35.5,13.5 + parent: 2 + - uid: 16586 components: - type: Transform - pos: -82.5,5.5 - parent: 89 - - uid: 14775 + pos: -40.5,-15.5 + parent: 2 + - uid: 16587 components: - type: Transform - pos: -69.5,21.5 - parent: 89 - - uid: 14776 + pos: -38.5,21.5 + parent: 2 + - uid: 16588 components: - type: Transform - pos: -68.5,21.5 - parent: 89 - - uid: 14783 + pos: 7.5,-19.5 + parent: 2 + - uid: 16589 components: - type: Transform - pos: -51.5,32.5 - parent: 89 -- proto: Matchbox - entities: - - uid: 15639 + pos: -19.5,-27.5 + parent: 2 + - uid: 16590 components: - type: Transform - pos: -117.26836,-14.507084 - parent: 89 -- proto: MaterialBiomass + pos: 37.5,-14.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 +- proto: PortableGeneratorPacman entities: - - uid: 16546 + - uid: 16592 components: - type: Transform - pos: 6.434067,16.596329 - parent: 89 - - uid: 20807 + pos: -129.5,11.5 + parent: 2 + - uid: 16593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.7399516,16.784958 - parent: 89 -- proto: MaterialBones1 + pos: -130.5,11.5 + parent: 2 +- proto: PortableGeneratorSuperPacman entities: - - uid: 24568 + - uid: 16594 components: - type: Transform - pos: -4.2203536,4.4322076 - parent: 22565 - - uid: 24569 + pos: -132.5,11.5 + parent: 2 + - uid: 16595 components: - type: Transform - pos: -4.5484786,1.7447076 - parent: 22565 - - uid: 24570 + pos: -131.5,11.5 + parent: 2 + - uid: 16596 components: - type: Transform - pos: 0.7796464,3.0103326 - parent: 22565 - - uid: 24571 + pos: 16.5,-13.5 + parent: 2 + - uid: 16597 components: - type: Transform - pos: 0.9515214,5.5455093 - parent: 22565 - - uid: 24572 + pos: -10.5,-25.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 16598 components: - type: Transform - pos: -5.2984786,6.4673843 - parent: 22565 - - uid: 24573 + pos: -103.5,-12.5 + parent: 2 + - uid: 16599 components: - type: Transform - pos: -4.5328536,8.436134 - parent: 22565 -- proto: MaterialCloth - entities: - - uid: 2023 + pos: -102.5,-12.5 + parent: 2 + - uid: 16600 components: - type: Transform - pos: 42.415596,10.695596 - parent: 89 - - uid: 24574 + pos: -104.5,-12.5 + parent: 2 + - uid: 16601 components: - type: Transform - pos: -31.50148,1.603975 - parent: 22565 - - uid: 24575 + pos: -90.5,-2.5 + parent: 2 + - uid: 16602 components: - type: Transform - pos: 7.401089,1.572725 - parent: 22565 -- proto: MaterialCloth10 - entities: - - uid: 21023 + pos: -91.5,9.5 + parent: 2 + - uid: 16603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.304749,-14.450155 - parent: 89 - - uid: 21024 + pos: -91.5,8.5 + parent: 2 + - uid: 16604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.382874,-14.43453 - parent: 89 - - uid: 21025 + pos: 0.5,25.5 + parent: 2 + - uid: 16605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.384485,-14.40328 - parent: 89 - - uid: 21026 + pos: -92.5,19.5 + parent: 2 + - uid: 16606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.308783,-14.43453 - parent: 89 -- proto: MaterialDurathread - entities: - - uid: 2024 + pos: -91.5,-2.5 + parent: 2 + - uid: 16607 components: - type: Transform - pos: 42.759346,10.398721 - parent: 89 -- proto: MaterialWoodPlank + pos: -91.5,10.5 + parent: 2 +- proto: PortableScrubberMachineCircuitBoard entities: - - uid: 11049 + - uid: 16608 components: - type: Transform - pos: -115.5242,13.621173 - parent: 89 - - uid: 14727 + pos: -105.3799,-10.45957 + parent: 2 + - uid: 16609 components: - type: Transform - pos: 8.49539,-21.442284 - parent: 89 - - uid: 14879 + pos: -105.61427,-10.20957 + parent: 2 +- proto: PosterBroken + entities: + - uid: 16610 components: - type: Transform - pos: -115.3367,13.793048 - parent: 89 -- proto: MatterBinStockPart + pos: -35.5,22.5 + parent: 2 +- proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 93 + - uid: 16611 components: - type: Transform - pos: -15.444581,-15.227853 - parent: 89 - - uid: 94 + pos: -10.5,-5.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 16612 components: - type: Transform - pos: -15.257081,-15.509103 - parent: 89 - - uid: 7053 + pos: -90.5,-3.5 + parent: 2 +- proto: PosterContrabandCC64KAd + entities: + - uid: 16613 components: - type: Transform - pos: -98.65939,-7.6130424 - parent: 89 - - uid: 7054 + pos: -3.5,4.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 16614 components: - type: Transform - pos: -98.51877,-7.2849174 - parent: 89 - - uid: 7055 + pos: -94.5,18.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 16615 components: - type: Transform - pos: -98.28439,-7.5505424 - parent: 89 -- proto: Mattress + pos: -16.5,-0.5 + parent: 2 +- proto: PosterContrabandFreeDrone entities: - - uid: 21785 + - uid: 16616 components: - type: Transform - pos: 36.5,-19.5 - parent: 89 - - uid: 21868 + pos: 17.5,0.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 16617 components: - type: Transform - pos: 54.5,-23.5 - parent: 89 - - uid: 21869 + pos: -73.5,-7.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 16618 components: - type: Transform - pos: 54.5,-19.5 - parent: 89 - - uid: 21870 + pos: -1.5,33.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 16619 components: - type: Transform - pos: 54.5,-22.5 - parent: 89 - - uid: 21872 + pos: 2.5,33.5 + parent: 2 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 16620 components: - type: Transform - pos: 54.5,-25.5 - parent: 89 - - uid: 21876 + pos: -6.5,34.5 + parent: 2 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 16621 components: - type: Transform - pos: 54.5,-20.5 - parent: 89 - - uid: 21879 + pos: -9.5,32.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 16622 components: - type: Transform - pos: 54.5,-26.5 - parent: 89 - - uid: 24576 + pos: -89.5,13.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 16623 components: - type: Transform - pos: -14.5,-21.5 - parent: 22565 - - uid: 24577 + pos: 0.5,38.5 + parent: 2 +- proto: PosterContrabandRevolver + entities: + - uid: 16624 components: - type: Transform - pos: -12.5,-21.5 - parent: 22565 - - uid: 24578 + pos: 17.5,10.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 16625 components: - type: Transform - pos: 11.5,12.5 - parent: 22565 - - uid: 24579 + pos: -1.5,37.5 + parent: 2 +- proto: PosterContrabandSpaceCola + entities: + - uid: 16626 components: - type: Transform - pos: 11.5,8.5 - parent: 22565 - - uid: 24580 + pos: -5.5,47.5 + parent: 2 +- proto: PosterContrabandSunkist + entities: + - uid: 16627 components: - type: Transform - pos: 11.5,6.5 - parent: 22565 - - uid: 24581 + pos: -1.5,47.5 + parent: 2 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 16628 components: - type: Transform - pos: -35.5,8.5 - parent: 22565 - - uid: 24582 + pos: 1.5,38.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 16629 components: - type: Transform - pos: -35.5,6.5 - parent: 22565 - - uid: 24583 + pos: -6.5,38.5 + parent: 2 + - uid: 16630 components: - type: Transform - pos: -35.5,12.5 - parent: 22565 -- proto: MedicalBed + pos: -89.5,30.5 + parent: 2 +- proto: PosterContrabandTools entities: - - uid: 11157 + - uid: 16631 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 12570 + pos: -94.5,11.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 16632 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 14823 + pos: 6.5,-3.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 16633 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 15377 + pos: -13.5,20.5 + parent: 2 + - uid: 16634 components: - type: Transform - pos: 3.5,21.5 - parent: 89 -- proto: MedicalScanner + pos: -3.5,17.5 + parent: 2 +- proto: PosterLegitBlessThisSpess entities: - - uid: 17830 + - uid: 16635 components: - type: Transform - pos: 11.5,18.5 - parent: 89 -- proto: MedicalScannerMachineCircuitboard + pos: -46.5,-1.5 + parent: 2 +- proto: PosterLegitDickGumshue entities: - - uid: 15380 + - uid: 16636 components: - type: Transform - pos: 22.465963,36.494637 - parent: 89 -- proto: MedicalTechFab + pos: -45.5,12.5 + parent: 2 +- proto: PosterLegitDoNotQuestion entities: - - uid: 21451 + - uid: 16637 components: - type: Transform - pos: 35.5,20.5 - parent: 89 -- proto: MedicatedSuture + pos: -53.5,-2.5 + parent: 2 +- proto: PosterLegitHereForYourSafety entities: - - uid: 9190 + - uid: 16638 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11593 + pos: 2.5,-5.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 16639 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11599 + pos: -35.5,28.5 + parent: 2 + - uid: 16640 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MedkitAdvancedFilled + pos: -35.5,29.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo entities: - - uid: 3935 + - uid: 27815 components: - type: Transform - pos: 10.448055,-0.43033665 - parent: 89 - - uid: 18205 + pos: -2.5,-10.5 + parent: 27260 + - uid: 27816 components: - type: Transform - pos: -18.990215,-23.36074 - parent: 89 - - uid: 21459 + pos: 5.5,-7.5 + parent: 27260 + - uid: 27817 components: - type: Transform - pos: 34.44323,20.619473 - parent: 89 -- proto: MedkitBruteFilled + pos: 2.5,-3.5 + parent: 27260 +- proto: PosterLegitNoERP entities: - - uid: 12598 + - uid: 16642 components: - type: Transform - pos: 31.543634,18.579988 - parent: 89 - - uid: 16883 + pos: -26.5,19.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 16643 components: - type: Transform - pos: 18.821274,23.624659 - parent: 89 - - uid: 17894 + pos: -0.5,10.5 + parent: 2 +- proto: PosterLegitReportCrimes + entities: + - uid: 16644 components: - type: Transform - pos: 31.480804,18.7342 - parent: 89 -- proto: MedkitBurnFilled + pos: 2.5,-6.5 + parent: 2 +- proto: PosterLegitSafetyInternals entities: - - uid: 17210 + - uid: 16645 components: - type: Transform - pos: 32.50263,18.744473 - parent: 89 - - uid: 21449 + pos: -86.5,-3.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 16646 components: - type: Transform - pos: 32.53388,18.572598 - parent: 89 -- proto: MedkitCombatFilled + pos: 1.5,33.5 + parent: 2 +- proto: PotatoAIChip entities: - - uid: 2952 + - uid: 16647 components: - type: Transform - pos: 12.919604,-3.4879332 - parent: 89 - - uid: 8039 + pos: -15.97848,-15.454903 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 16648 components: - type: Transform - pos: 3.5065022,37.602577 - parent: 89 -- proto: MedkitFilled + pos: 14.5,5.5 + parent: 2 +- proto: PottedPlant15 entities: - - uid: 155 + - uid: 16649 components: - type: Transform - pos: -5.4384103,-15.26897 - parent: 89 - - uid: 6151 + pos: 22.5,8.5 + parent: 2 + - uid: 16650 components: - type: Transform - pos: 13.437702,-3.4645877 - parent: 89 - - uid: 8040 + pos: 5.5,5.5 + parent: 2 + - uid: 16651 components: - type: Transform - pos: 1.5690022,37.586952 - parent: 89 - - uid: 10159 + pos: 16.5,11.5 + parent: 2 + - uid: 16652 components: - type: Transform - pos: -32.37581,21.539759 - parent: 89 - - uid: 10771 + pos: -12.5,-19.5 + parent: 2 + - uid: 16653 components: - type: Transform - pos: -2.4789925,19.583319 - parent: 89 - - uid: 14822 + pos: 1.5,-30.5 + parent: 2 + - uid: 16654 components: - type: Transform - pos: 26.51709,20.479082 - parent: 89 - - uid: 15333 + pos: -14.5,-21.5 + parent: 2 + - uid: 16655 components: - type: Transform - pos: 34.64928,20.525723 - parent: 89 - - uid: 15687 + pos: 28.5,13.5 + parent: 2 + - uid: 16656 components: - type: Transform - pos: 19.458591,23.716438 - parent: 89 - - uid: 16169 + pos: 24.5,13.5 + parent: 2 + - uid: 16657 components: - type: Transform - pos: 19.458591,23.575813 - parent: 89 - - uid: 19490 + pos: 26.5,36.5 + parent: 2 +- proto: PottedPlant16 + entities: + - uid: 16658 components: - type: Transform - pos: 63.486095,3.6539416 - parent: 89 - - uid: 19500 + pos: -91.5,-14.5 + parent: 2 +- proto: PottedPlant2 + entities: + - uid: 16659 components: - type: Transform - pos: 53.514782,15.551919 - parent: 89 - - uid: 19513 + pos: -69.5,-15.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 16660 components: - type: Transform - pos: 65.42551,10.507832 - parent: 89 - - uid: 24584 + pos: 42.5,5.5 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 16661 components: - type: Transform - pos: -9.375939,7.591918 - parent: 22565 -- proto: MedkitOxygenFilled + pos: -64.5,1.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 +- proto: PottedPlant26 entities: - - uid: 55 + - uid: 16663 components: - type: Transform - pos: 32.02969,18.572598 - parent: 89 - - uid: 14972 + pos: 13.5,37.5 + parent: 2 +- proto: PottedPlant27 + entities: + - uid: 16664 components: - type: Transform - pos: 33.660248,20.626863 - parent: 89 - - uid: 15469 + pos: 5.5,34.5 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 16665 components: - type: Transform - pos: 31.99844,18.744473 - parent: 89 - - uid: 15479 + pos: 6.5,37.5 + parent: 2 +- proto: PottedPlant3 + entities: + - uid: 16666 components: - type: Transform - pos: 33.660248,20.720613 - parent: 89 - - uid: 16786 + pos: -105.5,7.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 16667 components: - type: Transform - pos: 18.821274,23.765284 - parent: 89 -- proto: MedkitRadiationFilled + pos: -90.5,-14.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 +- proto: PottedPlantRandom entities: - - uid: 15737 + - uid: 16669 components: - type: Transform - pos: 13.169604,-3.2535582 - parent: 89 - - uid: 21518 + pos: -17.5,-8.5 + parent: 2 + - uid: 16670 components: - type: Transform - pos: 30.458956,18.57795 - parent: 89 - - uid: 21519 + pos: -22.5,9.5 + parent: 2 + - uid: 16671 components: - type: Transform - pos: 30.41208,18.718575 - parent: 89 -- proto: MedkitToxin - entities: - - uid: 18343 + pos: -24.5,5.5 + parent: 2 + - uid: 16672 components: - type: Transform - pos: 30.942322,18.7342 - parent: 89 - - uid: 18344 + pos: -67.5,-15.5 + parent: 2 + - uid: 16673 components: - type: Transform - pos: 30.989197,18.57795 - parent: 89 -- proto: MedkitToxinFilled - entities: - - uid: 19670 + pos: 3.5,-0.5 + parent: 2 + - uid: 16674 components: - type: Transform - pos: 13.700854,-3.2535582 - parent: 89 -- proto: MicroManipulatorStockPart - entities: - - uid: 102 + pos: 30.5,-7.5 + parent: 2 + - uid: 16675 components: - type: Transform - pos: -14.616456,-15.352853 - parent: 89 - - uid: 103 + pos: -1.5,-0.5 + parent: 2 + - uid: 16676 components: - type: Transform - pos: -14.555504,-15.680248 - parent: 89 -- proto: MicrophoneInstrument - entities: - - uid: 19117 + pos: -1.5,-3.5 + parent: 2 + - uid: 16677 components: - type: Transform - pos: -22.387377,8.5858 - parent: 89 -- proto: MiningDrill - entities: - - uid: 10204 + pos: -4.5,-23.5 + parent: 2 + - uid: 16678 components: - type: Transform - pos: -27.485138,27.681524 - parent: 89 -- proto: MiningWindow - entities: - - uid: 25746 + pos: 0.5,0.5 + parent: 2 + - uid: 16679 components: - type: Transform - pos: -5.5,-2.5 - parent: 22565 - - uid: 25747 + pos: -14.5,4.5 + parent: 2 + - uid: 16680 components: - type: Transform - pos: 12.5,11.5 - parent: 22565 - - uid: 25748 + pos: 34.5,16.5 + parent: 2 + - uid: 16681 components: - type: Transform - pos: -28.5,2.5 - parent: 22565 - - uid: 25749 + pos: 38.5,14.5 + parent: 2 + - uid: 16682 components: - type: Transform - pos: -28.5,1.5 - parent: 22565 - - uid: 25750 + pos: 30.5,13.5 + parent: 2 + - uid: 16683 components: - type: Transform - pos: -18.5,-2.5 - parent: 22565 - - uid: 25751 + pos: 41.5,3.5 + parent: 2 + - uid: 16684 components: - type: Transform - pos: -4.5,-2.5 - parent: 22565 - - uid: 25752 + pos: -1.5,13.5 + parent: 2 + - uid: 16685 components: - type: Transform - pos: -19.5,19.5 - parent: 22565 - - uid: 25753 + pos: -6.5,21.5 + parent: 2 + - uid: 16686 components: - type: Transform - pos: -24.5,19.5 - parent: 22565 - - uid: 25754 + pos: -73.5,0.5 + parent: 2 + - uid: 16687 components: - type: Transform - pos: -2.5,26.5 - parent: 22565 - - uid: 25755 + pos: -58.5,38.5 + parent: 2 + - uid: 16688 components: - type: Transform - pos: 0.5,19.5 - parent: 22565 - - uid: 25756 + pos: -31.5,-9.5 + parent: 2 + - uid: 16689 components: - type: Transform - pos: -4.5,19.5 - parent: 22565 - - uid: 25757 + pos: -67.5,32.5 + parent: 2 + - uid: 16690 components: - type: Transform - pos: -15.5,11.5 - parent: 22565 - - uid: 25758 + pos: -67.5,36.5 + parent: 2 + - uid: 16691 components: - type: Transform - pos: -14.5,11.5 - parent: 22565 - - uid: 25759 + pos: -64.5,28.5 + parent: 2 + - uid: 16692 components: - type: Transform - pos: -12.5,11.5 - parent: 22565 - - uid: 25760 + pos: -59.5,45.5 + parent: 2 + - uid: 16693 components: - type: Transform - pos: -9.5,11.5 - parent: 22565 - - uid: 25761 + pos: -55.5,30.5 + parent: 2 + - uid: 16694 components: - type: Transform - pos: -7.5,11.5 - parent: 22565 - - uid: 25762 + pos: -79.5,0.5 + parent: 2 + - uid: 16695 components: - type: Transform - pos: -1.5,26.5 - parent: 22565 - - uid: 25763 + pos: 19.5,10.5 + parent: 2 + - uid: 16696 components: - type: Transform - pos: -16.5,11.5 - parent: 22565 - - uid: 25764 + pos: 16.5,5.5 + parent: 2 + - uid: 16697 components: - type: Transform - pos: -19.5,-2.5 - parent: 22565 - - uid: 25765 + pos: 13.5,9.5 + parent: 2 + - uid: 16698 components: - type: Transform - pos: 0.5,-1.5 - parent: 22565 - - uid: 25766 + pos: -9.5,4.5 + parent: 2 + - uid: 16699 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 25767 + pos: -67.5,5.5 + parent: 2 + - uid: 16700 components: - type: Transform - pos: -12.5,8.5 - parent: 22565 - - uid: 25768 + pos: -64.5,5.5 + parent: 2 + - uid: 16701 components: - type: Transform - pos: -12.5,3.5 - parent: 22565 - - uid: 25769 + pos: -14.5,6.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 16709 components: - type: Transform - pos: -11.5,3.5 - parent: 22565 - - uid: 25770 + pos: 25.5,20.5 + parent: 2 + - uid: 16710 components: - type: Transform - pos: -8.5,6.5 - parent: 22565 - - uid: 25771 + pos: -80.5,7.5 + parent: 2 + - uid: 16711 components: - type: Transform - pos: -8.5,5.5 - parent: 22565 - - uid: 25772 + pos: 12.5,34.5 + parent: 2 + - uid: 16712 components: - type: Transform - pos: -15.5,6.5 - parent: 22565 - - uid: 25773 + pos: 7.5,34.5 + parent: 2 + - uid: 16713 components: - type: Transform - pos: -15.5,5.5 - parent: 22565 - - uid: 25774 + pos: -102.5,2.5 + parent: 2 + - uid: 16714 components: - type: Transform - pos: -11.5,11.5 - parent: 22565 - - uid: 25775 + pos: -13.5,-19.5 + parent: 2 + - uid: 16715 components: - type: Transform - pos: -22.5,26.5 - parent: 22565 - - uid: 25776 + pos: -7.5,-18.5 + parent: 2 + - uid: 16716 components: - type: Transform - pos: -21.5,26.5 - parent: 22565 - - uid: 25777 + pos: -9.5,-18.5 + parent: 2 + - uid: 16717 components: - type: Transform - pos: 6.5,13.5 - parent: 22565 - - uid: 25778 + pos: -2.5,-31.5 + parent: 2 + - uid: 16718 components: - type: Transform - pos: 12.5,8.5 - parent: 22565 - - uid: 25779 + pos: -0.5,-31.5 + parent: 2 + - uid: 16719 components: - type: Transform - pos: 12.5,12.5 - parent: 22565 - - uid: 25780 + pos: -16.5,-21.5 + parent: 2 + - uid: 16720 components: - type: Transform - pos: -8.5,11.5 - parent: 22565 - - uid: 25781 + pos: -18.5,-18.5 + parent: 2 + - uid: 16721 components: - type: Transform - pos: 12.5,6.5 - parent: 22565 - - uid: 25782 + pos: 3.5,-22.5 + parent: 2 + - uid: 16722 components: - type: Transform - pos: -36.5,9.5 - parent: 22565 - - uid: 25783 + pos: 2.5,-13.5 + parent: 2 + - uid: 16723 components: - type: Transform - pos: -36.5,5.5 - parent: 22565 - - uid: 25784 + pos: 5.5,-13.5 + parent: 2 + - uid: 16724 components: - type: Transform - pos: -36.5,6.5 - parent: 22565 - - uid: 25785 + pos: 3.5,-4.5 + parent: 2 + - uid: 16725 components: - type: Transform - pos: -36.5,8.5 - parent: 22565 - - uid: 25786 + pos: 4.5,-8.5 + parent: 2 + - uid: 16726 components: - type: Transform - pos: -36.5,12.5 - parent: 22565 - - uid: 25787 + pos: 38.5,-8.5 + parent: 2 + - uid: 16727 components: - type: Transform - pos: -36.5,11.5 - parent: 22565 - - uid: 25788 + pos: -65.5,-2.5 + parent: 2 + - uid: 16728 components: - type: Transform - pos: -23.5,-1.5 - parent: 22565 - - uid: 25789 + pos: -60.5,-2.5 + parent: 2 + - uid: 16729 components: - type: Transform - pos: 12.5,9.5 - parent: 22565 - - uid: 25790 + pos: 16.5,17.5 + parent: 2 + - uid: 16730 components: - type: Transform - pos: -24.5,-1.5 - parent: 22565 - - uid: 25791 + pos: 22.5,17.5 + parent: 2 + - uid: 16731 components: - type: Transform - pos: -25.5,-1.5 - parent: 22565 - - uid: 25792 + pos: 10.5,11.5 + parent: 2 + - uid: 16732 components: - type: Transform - pos: -31.5,13.5 - parent: 22565 - - uid: 25793 + pos: 28.5,14.5 + parent: 2 + - uid: 16733 components: - type: Transform - pos: 7.5,13.5 - parent: 22565 - - uid: 25794 + pos: 26.5,34.5 + parent: 2 + - uid: 16734 components: - type: Transform - pos: -28.5,3.5 - parent: 22565 - - uid: 25795 + pos: 25.5,32.5 + parent: 2 + - uid: 16735 components: - type: Transform - pos: -0.5,-1.5 - parent: 22565 - - uid: 25796 + pos: 23.5,32.5 + parent: 2 + - uid: 16736 components: - type: Transform - pos: -30.5,13.5 - parent: 22565 - - uid: 25797 + pos: 23.5,39.5 + parent: 2 + - uid: 16737 components: - type: Transform - pos: 12.5,5.5 - parent: 22565 - - uid: 25798 + pos: 35.5,-27.5 + parent: 2 + - uid: 16738 components: - type: Transform - pos: 1.5,-1.5 - parent: 22565 -- proto: Mirror - entities: - - uid: 4186 + pos: 34.5,-22.5 + parent: 2 + - uid: 16739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 89 - - uid: 10295 + pos: 34.5,-5.5 + parent: 2 + - uid: 16740 components: - type: Transform - pos: -35.5,32.5 - parent: 89 - - uid: 10353 + pos: 40.5,-11.5 + parent: 2 + - uid: 16741 components: - type: Transform - pos: -21.5,32.5 - parent: 89 - - uid: 10357 + pos: 30.5,-11.5 + parent: 2 + - uid: 16742 components: - type: Transform - pos: -24.5,15.5 - parent: 89 - - uid: 10358 + pos: 14.5,-10.5 + parent: 2 + - uid: 16743 components: - type: Transform - pos: -25.5,15.5 - parent: 89 - - uid: 10359 + pos: 13.5,-5.5 + parent: 2 + - uid: 16744 components: - type: Transform - pos: -23.5,15.5 - parent: 89 - - uid: 10360 + pos: 42.5,-11.5 + parent: 2 + - uid: 16745 components: - type: Transform - pos: -22.5,15.5 - parent: 89 - - uid: 10361 + pos: 7.5,-4.5 + parent: 2 + - uid: 16746 components: - type: Transform - pos: -21.5,15.5 - parent: 89 - - uid: 15411 + pos: -58.5,-15.5 + parent: 2 + - uid: 16747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,29.5 - parent: 89 - - uid: 15892 + pos: -67.5,-5.5 + parent: 2 + - uid: 16748 components: - type: Transform - pos: 27.5,27.5 - parent: 89 - - uid: 19249 + pos: -89.5,3.5 + parent: 2 + - uid: 16749 components: - type: Transform - pos: 28.5,27.5 - parent: 89 -- proto: ModularGrenade - entities: - - uid: 16970 + pos: -28.5,-4.5 + parent: 2 + - uid: 26562 components: - type: Transform - pos: -5.5569973,-18.252968 - parent: 89 - - uid: 16971 + pos: 7.5,6.5 + parent: 24450 + - uid: 26563 components: - type: Transform - pos: -5.2680063,-18.252968 - parent: 89 - - uid: 16973 + pos: -29.5,7.5 + parent: 24450 +- proto: PottedPlantRandomPlastic + entities: + - uid: 16750 components: - type: Transform - pos: -5.532914,-15.331863 - parent: 89 - - uid: 16974 + pos: -17.5,-23.5 + parent: 2 + - uid: 16751 components: - type: Transform - pos: -5.629245,-15.789328 - parent: 89 - - uid: 16975 + pos: -14.5,-23.5 + parent: 2 + - uid: 16752 components: - type: Transform - pos: -5.821905,-18.277044 - parent: 89 - - uid: 16976 + pos: -27.5,-10.5 + parent: 2 + - uid: 16753 components: - type: Transform - pos: -5.2680063,-15.789328 - parent: 89 - - uid: 24585 + pos: -17.5,-10.5 + parent: 2 + - uid: 16754 components: - type: Transform - pos: 4.3521523,11.690499 - parent: 22565 - - uid: 24586 + pos: 30.5,-2.5 + parent: 2 + - uid: 26564 components: - type: Transform - pos: 4.0865273,11.690499 - parent: 22565 -- proto: MonkeyCubeWrapped - entities: - - uid: 21090 + pos: -17.5,7.5 + parent: 24450 + - uid: 26565 components: - type: Transform - pos: -29.972765,0.6645479 - parent: 89 -- proto: MopBucket + pos: -2.5,7.5 + parent: 24450 +- proto: PottedPlantRD entities: - - uid: 9538 + - uid: 16755 components: - type: Transform - pos: -38.70507,7.3472652 - parent: 89 - - uid: 14805 + pos: 4.5,-30.5 + parent: 2 +- proto: PowerCageHigh + entities: + - uid: 24094 components: - type: Transform - pos: -43.256332,14.594401 - parent: 89 -- proto: MopBucketFull - entities: - - uid: 8198 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24095 components: - type: Transform - pos: 11.719251,41.365593 - parent: 89 - - uid: 17913 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24096 components: - type: Transform - pos: 23.496418,22.463985 - parent: 89 - - uid: 25383 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24097 components: - type: Transform - pos: 45.58958,-33.533894 - parent: 89 -- proto: MopItem - entities: - - uid: 8197 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24098 components: - type: Transform - pos: 11.609876,41.537468 - parent: 89 - - uid: 9539 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24099 components: - type: Transform - pos: -39.01757,7.4410152 - parent: 89 - - uid: 12771 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24100 components: - type: Transform - pos: 5.658451,9.575063 - parent: 89 - - uid: 14806 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24101 components: - type: Transform - pos: -44.568832,14.563151 - parent: 89 - - uid: 18336 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.465168,22.526485 - parent: 89 - - uid: 25384 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.40208,-32.73702 - parent: 89 -- proto: Morgue + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PowerCageRecharger entities: - - uid: 25799 + - uid: 24191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 89 - - uid: 25839 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 23919 + - type: PointLight + enabled: False +- proto: PowerCellMicroreactor + entities: + - uid: 16756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 89 - - uid: 25840 + pos: -22.450647,-22.528088 + parent: 2 +- proto: PowerCellPotato + entities: + - uid: 16757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 89 - - uid: 25841 + pos: -5.129404,-6.652731 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 16758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 89 - - uid: 25842 + pos: -96.5,-2.5 + parent: 2 + - uid: 16759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 89 - - uid: 25843 + pos: -94.5,17.5 + parent: 2 + - uid: 16760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 89 - - uid: 25844 + pos: -31.5,21.5 + parent: 2 + - uid: 16761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 89 -- proto: MouseTimedSpawner - entities: - - uid: 10337 + pos: -10.5,-16.5 + parent: 2 + - uid: 16762 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - uid: 14995 + pos: -15.5,-23.5 + parent: 2 + - uid: 16763 components: - type: Transform - pos: -88.5,18.5 - parent: 89 - - uid: 15011 + pos: -50.5,-16.5 + parent: 2 + - uid: 16764 components: - type: Transform - pos: -108.5,26.5 - parent: 89 - - uid: 15030 + pos: -71.5,-12.5 + parent: 2 + - uid: 16765 components: - type: Transform - pos: -33.5,23.5 - parent: 89 - - uid: 16912 + pos: 25.5,-3.5 + parent: 2 + - uid: 16766 components: - type: Transform - pos: 24.5,32.5 - parent: 89 - - uid: 16978 + pos: 15.5,-6.5 + parent: 2 + - uid: 16767 components: - type: Transform - pos: 7.5,32.5 - parent: 89 - - uid: 19648 + pos: 33.5,-13.5 + parent: 2 + - uid: 16768 components: - type: Transform - pos: -26.5,24.5 - parent: 89 - - uid: 25691 + pos: 44.5,-16.5 + parent: 2 + - uid: 26566 components: - type: Transform - pos: -61.5,21.5 - parent: 89 - - uid: 25694 + pos: -9.5,7.5 + parent: 24450 + - uid: 26567 components: - type: Transform - pos: -50.5,-7.5 - parent: 89 - - uid: 25699 + pos: 5.5,2.5 + parent: 24450 + - uid: 26568 components: - type: Transform - pos: -23.5,-11.5 - parent: 89 - - uid: 25703 + pos: -29.5,2.5 + parent: 24450 +- proto: PowerComputerCircuitboard + entities: + - uid: 16769 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - uid: 25741 + pos: -103.65402,-10.274773 + parent: 2 +- proto: PowerDrill + entities: + - uid: 16770 components: - type: Transform - pos: -25.5,2.5 - parent: 89 -- proto: MousetrapArmed + pos: 3.5,-27.5 + parent: 2 +- proto: Poweredlight entities: - - uid: 8454 + - uid: 16771 components: - type: Transform - pos: -124.52778,3.4515061 - parent: 89 - - type: StepTriggerActive - - uid: 25301 + rot: 3.141592653589793 rad + pos: -52.5,-17.5 + parent: 2 + - uid: 16772 components: - type: Transform - pos: -124.38715,4.451506 - parent: 89 - - type: StepTriggerActive -- proto: Multitool - entities: - - uid: 7090 + rot: -1.5707963267948966 rad + pos: -128.5,-11.5 + parent: 2 + - uid: 16773 components: - type: Transform - pos: -93.639496,17.646248 - parent: 89 - - uid: 10669 + pos: -107.5,-23.5 + parent: 2 + - uid: 16774 components: - type: Transform - pos: -26.66166,-23.33507 - parent: 89 - - uid: 19515 + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 16775 components: - type: Transform - pos: 56.673943,-1.3626473 - parent: 89 -- proto: MusicBoxInstrument - entities: - - uid: 4272 + pos: 33.5,-8.5 + parent: 2 + - uid: 16776 components: - type: Transform - pos: -35.559135,-5.5539656 - parent: 89 -- proto: NitrogenCanister - entities: - - uid: 98 + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 16777 components: - type: Transform - pos: -35.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 990 + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - uid: 16778 components: - type: Transform - pos: -90.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1138 + pos: 22.5,-1.5 + parent: 2 + - uid: 16779 components: - type: Transform - pos: -98.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3084 + rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 16780 components: - type: Transform - pos: -3.5,-38.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5114 + rot: 1.5707963267948966 rad + pos: -109.5,-5.5 + parent: 2 + - uid: 16781 components: - type: Transform - pos: -48.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8128 + pos: 47.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16782 components: - type: Transform - pos: 0.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8905 + rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16783 components: - type: Transform - pos: -130.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8906 + pos: -21.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16784 components: - type: Transform - pos: -130.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14558 + rot: 1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16785 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14744 + rot: 1.5707963267948966 rad + pos: 60.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16786 components: - type: Transform - pos: 11.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14780 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16787 components: - type: Transform - pos: -70.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14802 + pos: -22.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16788 components: - type: Transform - pos: -42.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15331 + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16789 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16881 + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16790 components: - type: Transform - pos: 37.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20260 + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16791 components: - type: Transform - pos: -97.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24587 + pos: -3.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16792 components: - type: Transform - pos: -14.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24588 + pos: -7.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16793 components: - type: Transform - pos: -17.5,-1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: NitrogenTankFilled - entities: - - uid: 22655 + pos: -3.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16794 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23182 + rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16795 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23190 + pos: 0.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16796 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23197 + pos: -5.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16797 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23204 + pos: -8.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16798 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23212 + pos: 0.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16799 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23220 + pos: 51.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16800 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NitrousOxideCanister - entities: - - uid: 994 + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16801 components: - type: Transform - pos: -90.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2035 + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16802 components: - type: Transform - pos: -90.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8129 + pos: 3.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16803 components: - type: Transform - pos: -0.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17702 + rot: 1.5707963267948966 rad + pos: 50.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16804 components: - type: Transform - pos: -9.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24589 + rot: 1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16805 components: - type: Transform - pos: -13.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: NitrousOxideTankFilled - entities: - - uid: 16381 + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16806 components: - type: Transform - pos: -8.449858,17.576614 - parent: 89 - - uid: 16509 + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16807 components: - type: Transform - pos: -8.590483,17.62349 - parent: 89 -- proto: NodeScanner - entities: - - uid: 16894 + pos: 60.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16808 components: - type: Transform - pos: -7.3921776,-38.40237 - parent: 89 -- proto: NoticeBoard - entities: - - uid: 14533 + rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-6.5 - parent: 89 -- proto: NuclearBomb - entities: - - uid: 3108 + rot: 3.141592653589793 rad + pos: 0.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16810 components: - type: Transform - pos: 48.5,-5.5 - parent: 89 -- proto: Ointment - entities: - - uid: 21637 + rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16811 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Omnitool - entities: - - uid: 3367 + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16812 components: - type: Transform - pos: 54.688084,6.5938244 - parent: 89 -- proto: OperatingTable - entities: - - uid: 9330 + rot: 3.141592653589793 rad + pos: 64.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16813 components: - type: Transform - pos: -11.5,19.5 - parent: 89 - - uid: 15056 + pos: 55.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16814 components: - type: Transform - pos: 8.5,8.5 - parent: 89 - - uid: 19565 + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16815 components: - type: Transform - pos: -22.5,-22.5 - parent: 89 -- proto: OreBag - entities: - - uid: 23757 + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16816 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23758 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16817 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23759 + rot: -1.5707963267948966 rad + pos: 45.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16818 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23767 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16819 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23768 + rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16820 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23769 + pos: 31.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16821 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OreBox - entities: - - uid: 24590 + pos: 37.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 22565 - - uid: 24591 + rot: 3.141592653589793 rad + pos: 31.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 22565 -- proto: OreProcessor - entities: - - uid: 6172 + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16824 components: - type: Transform - pos: -51.5,-9.5 - parent: 89 - - uid: 24592 + pos: 39.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16825 components: - type: Transform - pos: 5.5,8.5 - parent: 22565 - - uid: 24593 + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16826 components: - type: Transform - pos: -29.5,8.5 - parent: 22565 -- proto: OxygenCanister - entities: - - uid: 96 + rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16827 components: - type: Transform - pos: -36.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 992 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16828 components: - type: Transform - pos: -90.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1081 + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16829 components: - type: Transform - pos: -100.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3548 + rot: 1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16830 components: - type: Transform - pos: -93.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5521 + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 16831 components: - type: Transform - pos: -48.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8125 + rot: -1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16832 components: - type: Transform - pos: -6.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8126 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16833 components: - type: Transform - pos: -5.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9317 + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16834 components: - type: Transform - pos: 24.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 13203 + rot: 3.141592653589793 rad + pos: 33.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16835 components: - type: Transform - pos: 0.5,-38.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14743 + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16836 components: - type: Transform - pos: 12.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14760 + pos: 27.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16837 components: - type: Transform - pos: -78.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14779 + pos: 22.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16838 components: - type: Transform - pos: -71.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14801 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16839 components: - type: Transform - pos: -41.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15332 + pos: 18.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16840 components: - type: Transform - pos: -31.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24594 + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16841 components: - type: Transform - pos: -15.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24595 + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16842 components: - type: Transform - pos: -6.5,-1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25674 + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16843 components: - type: Transform - pos: 35.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: OxygenTankFilled - entities: - - uid: 14607 + rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16844 components: - type: Transform - pos: -98.50578,20.543215 - parent: 89 - - uid: 22656 + pos: 15.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16845 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23183 + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16846 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23191 + pos: 31.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16847 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23198 + pos: -60.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16848 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23205 + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16849 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23213 + rot: 1.5707963267948966 rad + pos: -67.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16850 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23221 + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16851 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PackPaperRollingFilters - entities: - - uid: 5618 + pos: -65.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16852 components: - type: Transform - pos: -8.482672,-8.429665 - parent: 89 -- proto: PaintingAmogusTriptych - entities: - - uid: 14635 + rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16853 components: - type: Transform - pos: -90.5,23.5 - parent: 89 - - uid: 15437 + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16854 components: - type: Transform - pos: 10.5,43.5 - parent: 89 -- proto: PaintingMonkey - entities: - - uid: 3878 + rot: 1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 16855 components: - type: Transform - pos: -27.5,-0.5 - parent: 89 - - uid: 19488 + pos: -67.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16856 components: - type: Transform - pos: 37.5,-0.5 - parent: 89 -- proto: PaintingPersistenceOfMemory - entities: - - uid: 17254 + pos: -58.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16857 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 89 -- proto: PaintingSaturn - entities: - - uid: 10256 - components: - - type: Transform - pos: -76.5,-4.5 - parent: 89 -- proto: PaintingTheGreatWave - entities: - - uid: 19517 + pos: -54.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16858 components: - type: Transform - pos: 51.5,12.5 - parent: 89 -- proto: Paper - entities: - - uid: 31 + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16859 components: - type: Transform - pos: -104.52547,0.4284501 - parent: 89 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: stamp-component-stamped-name-ce - content: >- - Коллеги, я очень рад что вы привезли эту чудесную вещь сюда. Я неплохо отдохнул после сбежавшей сингулярности. - - Жаль всё опустело, эх... - - - С уважением, Старший Инженер смены №19840 - - uid: 2015 + rot: -1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.663654,5.4828796 - parent: 89 - - uid: 2065 + pos: -40.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16861 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2066 + rot: 1.5707963267948966 rad + pos: -60.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16862 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2067 + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - uid: 16863 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2068 + rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16864 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2069 + rot: 3.141592653589793 rad + pos: -51.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16865 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2077 + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16866 components: - type: Transform - pos: -102.8867,-2.4524355 - parent: 89 - - uid: 2078 + rot: 1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16867 components: - type: Transform - pos: -101.15233,-2.3430603 - parent: 89 - - uid: 2079 + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16868 components: - type: Transform - pos: -100.5117,-2.483685 - parent: 89 - - uid: 2263 + pos: -101.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16869 components: - type: Transform - pos: -104.68759,21.491177 - parent: 89 - - uid: 3972 + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 2 + - uid: 16870 components: - type: Transform - pos: 34.586002,-2.6114135 - parent: 89 - - uid: 4324 + rot: 3.141592653589793 rad + pos: -54.5,38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16871 components: - type: Transform - pos: 8.430142,-0.42598736 - parent: 89 - - type: Paper - content: Покойся с миром, Шишимура.... - - uid: 4325 + rot: -1.5707963267948966 rad + pos: -54.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16872 components: - type: Transform - pos: 21.248468,-8.74424 - parent: 89 - - type: Paper - content: >- - Маляры злоебучие, как перестали проводить смене на этой прекрасной посудине так сразу бросили всё к хуям и не докрасив бриг съебались. - - - Ну ничё, всегда есть клоун, а если клоун будет плохо рисовать, то буду учить на нём кадетов стрелять! - - uid: 6126 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16873 components: - type: Transform - pos: -50.26616,9.653446 - parent: 89 - - uid: 6127 + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16874 components: - type: Transform - pos: -50.35991,9.653446 - parent: 89 - - uid: 6128 + pos: -45.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16875 components: - type: Transform - pos: -50.48491,9.637821 - parent: 89 - - uid: 6129 + pos: -50.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16876 components: - type: Transform - pos: -50.57866,9.622196 - parent: 89 - - uid: 6178 + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16877 components: - type: Transform - pos: -20.556078,5.7980614 - parent: 89 - - uid: 6179 + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16878 components: - type: Transform - pos: -20.556078,5.6574364 - parent: 89 - - uid: 6180 + rot: 3.141592653589793 rad + pos: -47.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16879 components: - type: Transform - pos: -20.493578,5.5168114 - parent: 89 - - uid: 6978 + pos: -33.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16880 components: - type: Transform - pos: 57.52295,6.650191 - parent: 89 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - [color=#006400]███░███░░░░██░░░░[/color] - - [color=#006400]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#006400]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#006400]░░░░██░░██░██░██░[/color] [bold]USG Ishimura Station ЦК - КОМ[/bold] - - [color=#006400]░░░░██░░░████░███[/color] - - =================================================== - [head=3]Указание Секторального Штаба ЦК[/head] - =================================================== - - [bold]Дата отправки:[/bold] - 24.01.3024 - [bold]Составитель документа:[/bold] - - [color=Red] Доулсон-Младший Кристофор[/color] - - [bold]Должность составителя:[/bold] - - [color=Red] Оператор ЦК[/color] - - ───────────────────────────────────────── - - [bold][italic] Приветствуем, уважаемое Командование Станции.[/italic][/bold] В связи с долгой не эксплуатацией станций данного типа, а так-же несоблюдении СанПиН - на ней было замечено много биологических факторов жизнедеятельности, поражающие некоторые части станций этого типа. Грызуны, тараканы и многие другие. В связи с этой проблемой, нами было решено прийти к самому логичному, здравому и правильному смыслу решения проблемы - [bold]установка мин.[/bold] Предупредите свой персонал, и не ходите лишний раз по техническим тоннелям. Слава НТ! - - =================================================== - Подпись: Оператор ЦК, Доулсон-Младший - [italic]место для печатей:[/italic] - - uid: 7239 + rot: 3.141592653589793 rad + pos: -35.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16881 components: - type: Transform - pos: -104.50009,21.647427 - parent: 89 - - uid: 8111 + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16882 components: - type: Transform - pos: -87.762955,14.70022 - parent: 89 - - uid: 8115 + pos: -30.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16883 components: - type: Transform - pos: -87.669205,14.66897 - parent: 89 - - uid: 8117 + rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16884 components: - type: Transform - pos: -87.606705,14.51272 - parent: 89 - - uid: 8132 + rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16885 components: - type: Transform - pos: -45.6796,1.7421833 - parent: 89 - - uid: 8133 + rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16886 components: - type: Transform - pos: -45.46085,1.6796833 - parent: 89 - - uid: 8134 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16887 components: - type: Transform - pos: -45.2421,1.6171833 - parent: 89 - - uid: 8169 + pos: -21.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16888 components: - type: Transform - pos: -58.789448,7.5664344 - parent: 89 - - uid: 8172 + pos: -25.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16889 components: - type: Transform - pos: -58.664448,7.5039344 - parent: 89 - - uid: 8174 + rot: 1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16890 components: - type: Transform - pos: -58.914448,7.6601844 - parent: 89 - - uid: 8337 + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16891 components: - type: Transform - pos: -59.65388,22.738579 - parent: 89 - - uid: 8338 + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16892 components: - type: Transform - pos: -59.31013,22.738579 - parent: 89 - - uid: 8339 + pos: -37.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16893 components: - type: Transform - pos: -59.46638,22.519829 - parent: 89 - - uid: 8528 + pos: -1.5,21.5 + parent: 2 + - uid: 16894 components: - type: Transform - pos: -113.752426,-7.604034 - parent: 89 - - uid: 9138 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 16895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.527187,17.750849 - parent: 89 - - uid: 10551 + pos: 27.5,29.5 + parent: 2 + - uid: 16896 components: - type: Transform - pos: -84.94473,17.782911 - parent: 89 - - uid: 10552 + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16897 components: - type: Transform - pos: -84.74161,17.595411 - parent: 89 - - uid: 10553 + rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16898 components: - type: Transform - pos: -84.92911,17.579786 - parent: 89 - - uid: 11082 + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16899 components: - type: Transform - pos: 25.21598,13.571265 - parent: 89 - - uid: 11910 + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16900 components: - type: Transform - pos: 25.545303,29.599596 - parent: 89 - - uid: 11913 + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16901 components: - type: Transform - pos: -100.76776,-2.4943435 - parent: 89 - - uid: 12317 + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16902 components: - type: Transform - pos: -104.88585,9.505048 - parent: 89 - - uid: 15462 + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15466 + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15501 + pos: -1.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16905 components: - type: Transform - pos: -85.35823,1.6586027 - parent: 89 - - uid: 15502 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16906 components: - type: Transform - pos: -85.29573,1.5023527 - parent: 89 - - uid: 15521 + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15627 + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16908 components: - type: Transform - pos: 25.508556,29.617373 - parent: 89 - - uid: 15746 + rot: 3.141592653589793 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 16909 components: - type: Transform - pos: -105.05744,9.610588 - parent: 89 - - uid: 15861 + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16910 components: - type: Transform - pos: 26.798138,13.448929 - parent: 89 - - uid: 15862 + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16911 components: - type: Transform - pos: 24.909904,13.689699 - parent: 89 - - uid: 15877 + pos: -36.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.763542,5.72961 - parent: 89 - - uid: 15889 + rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.523125,13.107367 - parent: 89 - - uid: 15890 + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16914 components: - type: Transform - pos: -11.461197,10.5552 - parent: 89 - - uid: 15893 + rot: 3.141592653589793 rad + pos: -46.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16915 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.715376,5.512917 - parent: 89 - - uid: 15894 + pos: -53.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16916 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.66721,5.6573787 - parent: 89 - - uid: 16440 + pos: -57.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16917 components: - type: Transform - pos: -113.68643,-7.326989 - parent: 89 - - uid: 16442 + rot: 3.141592653589793 rad + pos: -68.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16918 components: - type: Transform - pos: -113.68614,-7.970252 - parent: 89 - - uid: 16443 + rot: 1.5707963267948966 rad + pos: -78.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16919 components: - type: Transform - pos: -113.68614,-8.360877 - parent: 89 - - uid: 16444 + rot: 1.5707963267948966 rad + pos: -79.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16920 components: - type: Transform - pos: -113.52989,-8.423377 - parent: 89 - - uid: 16445 + rot: -1.5707963267948966 rad + pos: -73.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16921 components: - type: Transform - pos: -113.49864,-8.235877 - parent: 89 - - uid: 16879 + pos: -75.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16922 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16880 + rot: 3.141592653589793 rad + pos: -67.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16923 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16882 + rot: 3.141592653589793 rad + pos: -64.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16924 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16896 + pos: -66.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16925 components: - type: Transform - pos: 14.374804,6.3901353 - parent: 89 - - type: Paper - content: > - ЖУРНАЛ СМЕРТЕЙ НА БОРТУ - - ДАЛЛАС, A. (СТАРШИЙ МЕДИЦИНСКИЙ ОФИЦЕР) - - Число погибших растет. Пока достоверно известно о смерти: - - Аврора Р. - - Олег Х. - - Джессика Х. - - Шарлота Х. - - Калле А. - - Айси Р. - - Сакипу-Каи - - Ебашата Б. - - Фердинант Д. - - uid: 17216 + pos: -56.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16926 components: - type: Transform - pos: 32.68014,14.60166 - parent: 89 - - uid: 17217 + rot: -1.5707963267948966 rad + pos: -47.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16927 components: - type: Transform - pos: 32.570766,14.336035 - parent: 89 - - uid: 17218 + pos: -53.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16928 components: - type: Transform - pos: 36.664516,13.72666 - parent: 89 - - uid: 17219 + pos: -61.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16929 components: - type: Transform - pos: 36.39889,13.586035 - parent: 89 - - uid: 17597 + pos: -68.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.480312,17.735224 - parent: 89 - - uid: 17602 + pos: -73.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.560575,18.307178 - parent: 89 - - uid: 17933 + rot: 3.141592653589793 rad + pos: -79.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16932 components: - type: Transform - pos: -22.63116,9.583739 - parent: 89 - - uid: 17947 + rot: 3.141592653589793 rad + pos: -72.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16933 components: - type: Transform - pos: -22.28741,8.989989 - parent: 89 - - uid: 17954 + rot: 1.5707963267948966 rad + pos: -82.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16934 components: - type: Transform - pos: -22.646786,9.193114 - parent: 89 - - uid: 19485 + rot: -1.5707963267948966 rad + pos: -84.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16935 components: - type: Transform - pos: -22.271786,9.427489 - parent: 89 - - uid: 19501 + rot: -1.5707963267948966 rad + pos: -80.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16936 components: - type: Transform - pos: 53.277283,-6.2131367 - parent: 89 - - uid: 19502 + rot: 1.5707963267948966 rad + pos: -88.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16937 components: - type: Transform - pos: 53.355408,-6.4318867 - parent: 89 - - uid: 19503 + rot: 1.5707963267948966 rad + pos: -89.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16938 components: - type: Transform - pos: 53.589783,-6.1662617 - parent: 89 - - uid: 19504 + rot: 1.5707963267948966 rad + pos: -89.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16939 components: - type: Transform - pos: 53.683533,-6.4787617 - parent: 89 - - uid: 19505 + rot: -1.5707963267948966 rad + pos: -84.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16940 components: - type: Transform - pos: 58.621033,-6.2756367 - parent: 89 - - uid: 19506 + rot: -1.5707963267948966 rad + pos: -87.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16941 components: - type: Transform - pos: 58.636658,-6.4631367 - parent: 89 - - uid: 19507 + rot: 1.5707963267948966 rad + pos: -95.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16942 components: - type: Transform - pos: 58.402283,-6.3225117 - parent: 89 - - uid: 19568 + pos: -92.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16943 components: - type: Transform - pos: -133.29323,-2.538804 - parent: 89 - - type: Paper - content: > - ДИРЕКТИВА ЦЕНТРАЛЬНОГО КОМАНДОВАНИЯ НАНОТРЕЙЗЕН - - ДЖЕССИКА, Х. (2-ОЙ КАПИТАН ФЛОТА НТ) - - Приказ о разоружении корабля USG Ishimura от 25.07.13 - - Требуется снять все бортовые пушки и БСА с корабля для перевода в гражданские структуры. - - Слава НаноТрейзен! - - uid: 19637 + rot: 3.141592653589793 rad + pos: -92.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16944 components: - type: Transform - pos: -104.701065,9.571011 - parent: 89 - - uid: 21286 + pos: -93.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16946 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.56842,24.176943 - parent: 89 - - type: Paper - content: Не роняй мыло........ - - uid: 21842 + pos: -101.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.45179,-31.312603 - parent: 89 - - uid: 21843 + rot: 3.141592653589793 rad + pos: -106.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.467415,-31.328228 - parent: 89 - - uid: 21844 + pos: -101.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.38929,-31.437603 - parent: 89 - - uid: 21845 + pos: -104.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.811165,-31.718853 - parent: 89 - - uid: 21846 + pos: -107.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.60804,-31.546978 - parent: 89 - - uid: 21847 + pos: -107.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.529915,-31.515728 - parent: 89 - - uid: 21848 + rot: 1.5707963267948966 rad + pos: -112.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.48304,-32.359478 - parent: 89 - - uid: 21849 + rot: 1.5707963267948966 rad + pos: -112.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.623665,-32.390728 - parent: 89 - - uid: 21850 + pos: -113.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16955 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.38929,-32.406353 - parent: 89 - - uid: 21851 + pos: -113.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.529915,-32.468853 - parent: 89 - - uid: 21852 + pos: -117.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.498665,-32.468853 - parent: 89 -- proto: PaperBin10 - entities: - - uid: 7241 + pos: -117.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16958 components: - type: Transform - pos: -102.5,21.5 - parent: 89 - - uid: 8511 + rot: -1.5707963267948966 rad + pos: -107.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16959 components: - type: Transform - rot: 0.00040875888862988013 rad - pos: -9.212771,-16.376884 - parent: 89 - - uid: 19408 + rot: -1.5707963267948966 rad + pos: -107.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16960 components: - type: Transform - pos: 25.5,40.5 - parent: 89 -- proto: PaperBin5 - entities: - - uid: 11092 + pos: -105.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 89 -- proto: PaperOffice - entities: - - uid: 3792 + pos: -107.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16962 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.9534917,19.498787 - parent: 89 - - uid: 15904 + pos: -111.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16963 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.8909917,19.561287 - parent: 89 -- proto: PaperRolling1 - entities: - - uid: 21826 - components: - - type: MetaData - name: Использованная бумага - - type: Transform - pos: 36.221523,-19.722937 - parent: 89 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 1461 + pos: -103.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16964 components: - type: Transform - pos: -118.5,-7.5 - parent: 89 -- proto: PartRodMetal - entities: - - uid: 35 + rot: -1.5707963267948966 rad + pos: -119.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16965 components: - type: Transform - pos: 19.319859,-1.4254802 - parent: 89 - - uid: 2739 + rot: -1.5707963267948966 rad + pos: -119.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16966 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.47879,-13.314479 - parent: 89 - - uid: 2741 + pos: -117.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16967 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.494415,-13.595729 - parent: 89 - - uid: 14599 + rot: 1.5707963267948966 rad + pos: -126.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16968 components: - type: Transform - pos: -91.52402,24.379433 - parent: 89 - - uid: 14723 + rot: 1.5707963267948966 rad + pos: -126.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16969 components: - type: Transform - pos: 15.60869,-15.835364 - parent: 89 - - uid: 14883 + rot: -1.5707963267948966 rad + pos: -131.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16970 components: - type: Transform - pos: 19.429234,-1.4254802 - parent: 89 - - uid: 19674 + rot: 3.141592653589793 rad + pos: -130.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16971 components: - type: Transform - pos: 19.585484,-1.4254802 - parent: 89 - - uid: 19692 + pos: -129.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16972 components: - type: Transform - pos: 19.710484,-1.4254802 - parent: 89 - - uid: 19693 + rot: 1.5707963267948966 rad + pos: -125.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16973 components: - type: Transform - pos: 19.804234,-1.4254802 - parent: 89 - - uid: 19694 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16974 components: - type: Transform - pos: 19.507359,-1.4254802 - parent: 89 -- proto: PartRodMetal1 - entities: - - uid: 9173 + pos: -130.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16975 components: - type: Transform - pos: -115.50935,23.444849 - parent: 89 -- proto: Pen - entities: - - uid: 2017 + rot: 3.141592653589793 rad + pos: -130.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.663654,5.2641296 - parent: 89 - - uid: 2083 + pos: -82.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16977 components: - type: Transform - pos: -102.442795,-2.4083269 - parent: 89 - - uid: 2099 + rot: -1.5707963267948966 rad + pos: -83.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16978 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2100 + rot: -1.5707963267948966 rad + pos: -83.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16979 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2101 + rot: -1.5707963267948966 rad + pos: -83.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16980 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2102 + rot: -1.5707963267948966 rad + pos: -83.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16981 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 4352 + rot: -1.5707963267948966 rad + pos: -83.5,40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16982 components: - type: Transform - pos: 34.461002,-3.4239135 - parent: 89 - - uid: 6103 + rot: -1.5707963267948966 rad + pos: -83.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16983 components: - type: Transform - pos: -52.531784,9.387821 - parent: 89 - - uid: 6176 + rot: 1.5707963267948966 rad + pos: -85.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16984 components: - type: Transform - pos: -20.149828,5.6105614 - parent: 89 - - uid: 7253 + rot: 1.5707963267948966 rad + pos: -105.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.28134,21.428677 - parent: 89 - - uid: 8118 + rot: 1.5707963267948966 rad + pos: -105.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16986 components: - type: Transform - pos: -87.356705,14.63772 - parent: 89 - - uid: 8119 + rot: -1.5707963267948966 rad + pos: -98.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16987 components: - type: Transform - pos: -58.383198,7.6601844 - parent: 89 - - uid: 8135 + rot: -1.5707963267948966 rad + pos: -98.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16988 components: - type: Transform - pos: -45.58585,1.1796833 - parent: 89 - - uid: 8310 + rot: 3.141592653589793 rad + pos: -99.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16989 components: - type: Transform - pos: -59.96638,22.644829 - parent: 89 - - uid: 10550 + rot: 3.141592653589793 rad + pos: -104.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16990 components: - type: Transform - pos: -84.42911,17.611036 - parent: 89 - - uid: 10954 + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.0206444,19.64295 - parent: 89 - - uid: 15496 + rot: 3.141592653589793 rad + pos: -63.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16992 components: - type: Transform - pos: -85.748856,1.5023527 - parent: 89 - - uid: 15603 + rot: 3.141592653589793 rad + pos: -58.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16993 components: - type: Transform - pos: -22.740536,8.497745 - parent: 89 - - uid: 15628 + rot: 3.141592653589793 rad + pos: -63.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16994 components: - type: Transform - pos: 25.171398,29.545141 - parent: 89 - - uid: 15874 + rot: 1.5707963267948966 rad + pos: -67.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.608939,16.567434 - parent: 89 - - uid: 16147 + rot: 1.5707963267948966 rad + pos: -67.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.410079,32.462254 - parent: 89 - - uid: 16446 + pos: -67.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16997 components: - type: Transform - pos: -113.32677,-7.642127 - parent: 89 - - uid: 17214 + rot: 1.5707963267948966 rad + pos: -67.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.477016,14.60166 - parent: 89 - - uid: 17215 + pos: -63.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.477016,14.03916 - parent: 89 - - uid: 17601 + pos: -59.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17000 components: - type: Transform - pos: 19.62081,18.746508 - parent: 89 - - uid: 19509 + rot: -1.5707963267948966 rad + pos: -59.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17001 components: - type: Transform - pos: 54.058533,-6.2912617 - parent: 89 - - uid: 19510 + rot: -1.5707963267948966 rad + pos: -59.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17002 components: - type: Transform - pos: 54.089783,-6.4475117 - parent: 89 - - uid: 19511 + rot: 3.141592653589793 rad + pos: -61.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17003 components: - type: Transform - pos: 57.917908,-6.3225117 - parent: 89 - - uid: 19902 + rot: 3.141592653589793 rad + pos: -56.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17004 components: - type: Transform - pos: 26.263317,37.09462 - parent: 89 - - uid: 21474 + rot: -1.5707963267948966 rad + pos: -55.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17005 components: - type: Transform - pos: -43.521545,30.07248 - parent: 89 - - uid: 21855 + rot: -1.5707963267948966 rad + pos: -55.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17006 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.42054,-32.328228 - parent: 89 -- proto: PersonalAI - entities: - - uid: 166 - components: - - type: Transform - pos: 1.571759,-29.847042 - parent: 89 - - uid: 10816 + pos: -54.5,38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17007 components: - type: Transform - pos: -91.45784,6.461441 - parent: 89 - - uid: 12634 + pos: -54.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17008 components: - type: Transform - pos: 30.522495,-3.4520006 - parent: 89 - - uid: 17090 + rot: 1.5707963267948966 rad + pos: -58.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17009 components: - type: Transform - pos: -19.416168,-6.4855185 - parent: 89 - - uid: 17091 + rot: -1.5707963267948966 rad + pos: -64.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17010 components: - type: Transform - pos: -57.471027,12.576777 - parent: 89 - - uid: 19536 + rot: 1.5707963267948966 rad + pos: -66.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17011 components: - type: Transform - pos: -41.42999,-10.450936 - parent: 89 - - uid: 19576 + pos: -51.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17012 components: - type: Transform - pos: -4.533154,-20.272491 - parent: 89 - - uid: 19578 + pos: -51.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17013 components: - type: Transform - pos: -18.454983,-23.222599 - parent: 89 - - uid: 19579 + pos: -52.5,37.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17014 components: - type: Transform - pos: -18.531723,12.537066 - parent: 89 - - uid: 19599 + rot: 3.141592653589793 rad + pos: -51.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17015 components: - type: Transform - pos: -61.45272,5.614086 - parent: 89 - - uid: 19601 + pos: 46.5,15.5 + parent: 2 + - uid: 17016 components: - type: Transform - pos: -36.49227,27.653912 - parent: 89 - - uid: 19615 + rot: 3.141592653589793 rad + pos: 5.5,36.5 + parent: 2 + - uid: 17017 components: - type: Transform - pos: -103.92291,9.576194 - parent: 89 - - uid: 19617 + rot: -1.5707963267948966 rad + pos: -115.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 17018 components: - type: Transform - pos: -69.48751,-17.338394 - parent: 89 - - uid: 19619 + rot: 1.5707963267948966 rad + pos: -127.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17019 components: - type: Transform - pos: 44.26809,5.7978077 - parent: 89 - - uid: 19621 + rot: 1.5707963267948966 rad + pos: -127.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17020 components: - type: Transform - pos: 56.51628,10.546991 - parent: 89 -- proto: PhoneInstrument - entities: - - uid: 4705 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17021 components: - type: Transform - pos: 32.644638,-0.45123816 - parent: 89 - - uid: 7249 + rot: 3.141592653589793 rad + pos: -69.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17022 components: - type: Transform - pos: -105.45816,21.652794 - parent: 89 -- proto: PianoInstrument - entities: - - uid: 16602 + pos: -71.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 89 -- proto: Pickaxe - entities: - - uid: 10263 + pos: -44.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17024 components: - type: Transform - pos: -25.454777,28.449745 - parent: 89 - - uid: 22546 + pos: -37.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17025 components: - type: Transform - pos: 25.395391,-12.3433895 - parent: 89 - - uid: 23760 + rot: 1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17026 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23761 + rot: 3.141592653589793 rad + pos: -32.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17027 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23762 + rot: 3.141592653589793 rad + pos: -27.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17028 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23770 + rot: 1.5707963267948966 rad + pos: -30.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17029 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23771 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17030 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23772 + pos: -33.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17031 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PillCanister - entities: - - uid: 15743 + pos: -33.5,29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17032 components: - type: Transform - pos: -1.629554,10.697055 - parent: 89 - - uid: 16198 + pos: -33.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17033 components: - type: Transform - pos: -2.9211035,5.53437 - parent: 89 -- proto: PillSpaceDrugs - entities: - - uid: 12599 + pos: -26.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17034 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12600 + pos: -26.5,29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17035 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12605 + pos: -26.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17036 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12608 + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17037 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12611 + rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17038 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PinpointerNuclear - entities: - - uid: 1466 + pos: 11.5,24.5 + parent: 2 + - uid: 17039 components: - type: Transform - pos: 48.41028,10.601509 - parent: 89 - - uid: 5989 + pos: 6.5,24.5 + parent: 2 + - uid: 17040 components: - type: Transform - pos: 47.677902,-5.481676 - parent: 89 -- proto: PlaqueAtmos - entities: - - uid: 3049 + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17041 components: - - type: MetaData - desc: Старая доска почета, жаль, что доска слишком изношена, чтобы можно было её прочитать, кроме нескольких слов "no_mad" "OopsieDoopsie" "tUndra" "Bebushka" "_CyreX_" "Bollo" "lapatison" "kevicky9" "vasalomka", вот только что означают эти слова, вы никогда не узнаете. Похоже кто-то наклеил поверх таблички фотку "Робастер, древний." - name: старая доска почета - type: Transform - pos: 14.5,-14.5 - parent: 89 -- proto: PlasmaCanister - entities: - - uid: 1142 + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17042 components: - type: Transform - pos: -92.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8853 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17043 components: - type: Transform - pos: -130.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24596 + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17044 components: - type: Transform - pos: -13.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 931 + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 17045 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 89 - - uid: 932 + pos: -79.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - uid: 933 + pos: -70.5,-6.5 + parent: 2 + - uid: 17047 components: - type: Transform - pos: 54.5,4.5 - parent: 89 - - uid: 935 + rot: 1.5707963267948966 rad + pos: -105.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - uid: 8489 + pos: 10.5,42.5 + parent: 2 + - uid: 17049 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 8490 + rot: 1.5707963267948966 rad + pos: 9.5,35.5 + parent: 2 + - type: Timer + - uid: 17050 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 8519 + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 17051 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,1.5 - parent: 89 - - uid: 8520 + pos: 14.5,36.5 + parent: 2 + - uid: 17052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,1.5 - parent: 89 - - uid: 8521 + pos: 5.5,30.5 + parent: 2 + - uid: 17053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,1.5 - parent: 89 - - uid: 8523 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - uid: 17054 components: - type: Transform - pos: -127.5,6.5 - parent: 89 -- proto: PlasmaShiv - entities: - - uid: 21863 + pos: -110.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17055 components: - type: Transform - pos: 53.479996,-33.581047 - parent: 89 - - uid: 23184 + rot: 3.141592653589793 rad + pos: -102.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17056 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1745 + rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - uid: 17057 components: - type: Transform - pos: -92.5,-6.5 - parent: 89 - - uid: 4474 + pos: 18.5,23.5 + parent: 2 + - uid: 17058 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - uid: 4475 + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - uid: 17059 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - uid: 4477 + pos: 6.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17060 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - uid: 4478 + pos: 16.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17061 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - uid: 10058 + pos: 27.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17062 components: - type: Transform - pos: -101.5,29.5 - parent: 89 -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 4410 + pos: 19.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17063 components: - type: Transform - pos: -59.5,-3.5 - parent: 89 - - uid: 4413 + rot: -1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17064 components: - type: Transform - pos: -66.5,-3.5 - parent: 89 -- proto: PlushieCarp - entities: - - uid: 4685 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17065 components: - type: Transform - pos: -25.532013,29.75965 - parent: 89 - - uid: 18123 + rot: 1.5707963267948966 rad + pos: -113.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17066 components: - type: Transform - pos: 1.5285358,-48.382328 - parent: 89 -- proto: PlushieLamp - entities: - - uid: 939 + rot: 1.5707963267948966 rad + pos: -113.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17067 components: - type: Transform - pos: 24.491402,43.610085 - parent: 89 - - uid: 6903 + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17068 components: - type: Transform - pos: -105.51431,9.84532 - parent: 89 -- proto: PlushieLizard - entities: - - uid: 5467 + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17069 components: - type: Transform - pos: 47.51918,-4.518338 - parent: 89 - - uid: 8372 + pos: -15.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17070 components: - type: Transform - pos: -89.61875,29.811512 - parent: 89 -- proto: PlushieNar - entities: - - uid: 15907 + pos: 27.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17071 components: - type: Transform - pos: 3.4692783,30.507156 - parent: 89 -- proto: PlushieNuke - entities: - - uid: 8121 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17072 components: - - type: MetaData - name: плюшевая коммандер аврора - type: Transform - pos: 0.49973202,32.523396 - parent: 89 - - uid: 16986 + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17073 components: - - type: MetaData - name: плюшевая коммандер аврора - type: Transform - pos: 59.524296,6.726757 - parent: 89 -- proto: PlushieSharkPink - entities: - - uid: 8122 + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17074 components: - type: Transform - pos: 3.484107,32.50777 - parent: 89 -- proto: PlushieSlime - entities: - - uid: 20790 + pos: 20.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17075 components: - - type: MetaData - desc: Добрый и маленький слаймик нурка - name: слаймик Нурану - type: Transform - pos: 1.4425585,-31.546919 - parent: 89 -- proto: PlushieSpaceLizard - entities: - - uid: 15697 + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17076 components: - type: Transform - pos: 59.412067,2.6890216 - parent: 89 - - uid: 18249 + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17077 components: - type: Transform - pos: 19.486435,38.771248 - parent: 89 -- proto: PonderingOrb - entities: - - uid: 18027 + rot: 3.141592653589793 rad + pos: 50.5,-25.5 + parent: 2 + - uid: 17078 components: - type: Transform - pos: 11.506685,-21.496483 - parent: 89 -- proto: PortableFlasher - entities: - - uid: 2243 + pos: 50.5,-27.5 + parent: 2 + - uid: 17079 components: - type: Transform - pos: 45.5,-4.5 - parent: 89 - - uid: 3394 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 17080 components: - type: Transform - pos: 44.5,-3.5 - parent: 89 - - uid: 7470 + rot: -1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - uid: 17081 components: - type: Transform - pos: 45.5,-3.5 - parent: 89 - - uid: 9789 + rot: 3.141592653589793 rad + pos: 46.5,-31.5 + parent: 2 + - uid: 17082 components: - type: Transform - pos: -53.5,36.5 - parent: 89 - - uid: 9872 + rot: 3.141592653589793 rad + pos: -31.5,35.5 + parent: 2 + - type: Timer + - uid: 17083 components: - type: Transform - pos: -53.5,34.5 - parent: 89 -- proto: PortableGeneratorJrPacman - entities: - - uid: 15341 + rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 2 + - uid: 17084 components: - type: Transform - pos: 4.5,-0.5 - parent: 89 -- proto: PortableGeneratorPacman - entities: - - uid: 4931 + rot: 3.141592653589793 rad + pos: 43.5,-33.5 + parent: 2 + - uid: 17085 components: - type: Transform - pos: -129.5,11.5 - parent: 89 - - uid: 4935 + pos: -50.5,48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17086 components: - type: Transform - pos: -130.5,11.5 - parent: 89 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 4890 + pos: 1.5,13.5 + parent: 2 + - uid: 17087 components: - type: Transform - pos: -132.5,11.5 - parent: 89 - - uid: 5460 + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 17088 components: - type: Transform - pos: -131.5,11.5 - parent: 89 -- proto: PortableScrubber - entities: - - uid: 980 + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + - uid: 17089 components: - type: Transform - pos: -90.5,-5.5 - parent: 89 - - uid: 982 + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 17090 components: - type: Transform - pos: -91.5,-5.5 - parent: 89 - - uid: 2561 + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 17091 components: - type: Transform - pos: -96.5,-15.5 - parent: 89 - - uid: 2562 + pos: 44.5,-27.5 + parent: 2 + - uid: 17092 components: - type: Transform - pos: -97.5,-15.5 - parent: 89 - - uid: 2563 + rot: -1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 17093 components: - type: Transform - pos: -98.5,-15.5 - parent: 89 - - uid: 7091 + pos: 41.5,-28.5 + parent: 2 + - uid: 17094 components: - type: Transform - pos: -91.5,15.5 - parent: 89 - - uid: 8203 + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 17095 components: - type: Transform - pos: 0.5,25.5 - parent: 89 - - uid: 9614 + rot: 1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - uid: 17096 components: - type: Transform - pos: -92.5,19.5 - parent: 89 -- proto: PortableScrubberMachineCircuitBoard - entities: - - uid: 7073 + rot: 1.5707963267948966 rad + pos: 48.5,-19.5 + parent: 2 + - uid: 17097 components: - type: Transform - pos: -105.3799,-10.45957 - parent: 89 - - uid: 9690 + rot: 3.141592653589793 rad + pos: 60.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17098 components: - type: Transform - pos: -105.61427,-10.20957 - parent: 89 -- proto: PosterBroken - entities: - - uid: 14873 + rot: -1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17099 components: - type: Transform - pos: -35.5,22.5 - parent: 89 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 4875 + pos: 64.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17100 components: - type: Transform - pos: -10.5,-5.5 - parent: 89 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 2588 + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-23.5 - parent: 89 - - uid: 7418 + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-12.5 - parent: 89 -- proto: PosterContrabandCC64KAd - entities: - - uid: 17229 + rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17103 components: - type: Transform - pos: -3.5,4.5 - parent: 89 -- proto: PosterContrabandCommunistState - entities: - - uid: 7286 + pos: 37.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17104 components: - type: Transform - pos: -94.5,18.5 - parent: 89 -- proto: PosterContrabandEAT - entities: - - uid: 4381 + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17105 components: - type: Transform - pos: -16.5,-0.5 - parent: 89 -- proto: PosterContrabandFreeDrone - entities: - - uid: 3999 + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17106 components: - type: Transform - pos: 17.5,0.5 - parent: 89 -- proto: PosterContrabandFunPolice - entities: - - uid: 14103 + rot: 1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17107 components: - type: Transform - pos: -73.5,-7.5 - parent: 89 -- proto: PosterContrabandGreyTide - entities: - - uid: 15773 + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17108 components: - type: Transform - pos: -1.5,33.5 - parent: 89 -- proto: PosterContrabandHackingGuide - entities: - - uid: 15780 + pos: -114.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17109 components: - type: Transform - pos: 2.5,33.5 - parent: 89 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 15586 + rot: 3.141592653589793 rad + pos: -110.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17110 components: - type: Transform - pos: -6.5,34.5 - parent: 89 -- proto: PosterContrabandKosmicheskayaStantsiya - entities: - - uid: 15774 + rot: 1.5707963267948966 rad + pos: -109.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17111 components: - type: Transform - pos: -9.5,32.5 - parent: 89 -- proto: PosterContrabandMissingGloves - entities: - - uid: 7234 + pos: -5.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17112 components: - type: Transform - pos: -89.5,13.5 - parent: 89 -- proto: PosterContrabandRebelsUnite - entities: - - uid: 15776 + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17113 components: - type: Transform - pos: 0.5,38.5 - parent: 89 -- proto: PosterContrabandRevolver - entities: - - uid: 16871 + pos: -6.5,21.5 + parent: 2 + - uid: 17114 components: - type: Transform - pos: 17.5,10.5 - parent: 89 -- proto: PosterContrabandRise - entities: - - uid: 15771 + pos: 43.5,-11.5 + parent: 2 + - uid: 17115 components: - type: Transform - pos: -1.5,37.5 - parent: 89 -- proto: PosterContrabandSpaceCola - entities: - - uid: 7976 + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 17116 components: - type: Transform - pos: -5.5,47.5 - parent: 89 -- proto: PosterContrabandSunkist - entities: - - uid: 15770 + rot: 3.141592653589793 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 17117 components: - type: Transform - pos: -1.5,47.5 - parent: 89 -- proto: PosterContrabandSyndicatePistol - entities: - - uid: 15777 + pos: 51.5,-11.5 + parent: 2 + - uid: 17118 components: - type: Transform - pos: 1.5,38.5 - parent: 89 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 9238 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 + parent: 2 + - uid: 17119 components: - type: Transform - pos: -88.5,30.5 - parent: 89 - - uid: 15584 + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 + - uid: 17120 components: - type: Transform - pos: -6.5,38.5 - parent: 89 -- proto: PosterContrabandTools - entities: - - uid: 7233 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 + parent: 2 + - type: Timer + - uid: 17121 components: - type: Transform - pos: -94.5,11.5 - parent: 89 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 21556 + rot: -1.5707963267948966 rad + pos: 48.5,19.5 + parent: 2 + - uid: 17122 components: - type: Transform - pos: -13.5,20.5 - parent: 89 - - uid: 21573 + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - uid: 17123 components: - type: Transform - pos: -3.5,17.5 - parent: 89 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 5510 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2 + - type: Timer + - uid: 17124 components: - type: Transform - pos: -46.5,-1.5 - parent: 89 -- proto: PosterLegitDickGumshue - entities: - - uid: 6132 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 17125 components: - type: Transform - pos: -45.5,12.5 - parent: 89 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 5479 + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 17126 components: - type: Transform - pos: -53.5,-2.5 - parent: 89 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 14113 + pos: -8.5,21.5 + parent: 2 + - uid: 17127 components: - type: Transform - pos: 2.5,-5.5 - parent: 89 -- proto: PosterLegitLoveIan - entities: - - uid: 10220 + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 2 + - uid: 17128 components: - type: Transform - pos: -35.5,28.5 - parent: 89 - - uid: 10257 + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 17129 components: - type: Transform - pos: -35.5,29.5 - parent: 89 - - uid: 10258 + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - uid: 17130 components: - type: Transform - pos: -35.5,27.5 - parent: 89 -- proto: PosterLegitNoERP - entities: - - uid: 25640 + rot: 1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - uid: 17131 components: - type: Transform - pos: -26.5,19.5 - parent: 89 -- proto: PosterLegitPeriodicTable - entities: - - uid: 2281 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 17132 components: - type: Transform - pos: -0.5,10.5 - parent: 89 -- proto: PosterLegitReportCrimes - entities: - - uid: 16869 + rot: -1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 17133 components: - type: Transform - pos: 2.5,-6.5 - parent: 89 -- proto: PosterLegitSafetyInternals - entities: - - uid: 15782 + pos: 42.5,-18.5 + parent: 2 + - uid: 17134 components: - type: Transform - pos: -89.5,-4.5 - parent: 89 -- proto: PosterLegitSecWatch - entities: - - uid: 15779 + rot: 3.141592653589793 rad + pos: 55.5,-33.5 + parent: 2 + - uid: 17135 components: - type: Transform - pos: 1.5,33.5 - parent: 89 -- proto: PotatoAIChip - entities: - - uid: 5243 + rot: 1.5707963267948966 rad + pos: 56.5,-22.5 + parent: 2 + - uid: 17136 components: - type: Transform - pos: -15.97848,-15.454903 - parent: 89 -- proto: PottedPlant11 - entities: - - uid: 12753 + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 17137 components: - type: Transform - pos: 14.5,5.5 - parent: 89 -- proto: PottedPlant15 - entities: - - uid: 7423 + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - uid: 17138 components: - type: Transform - pos: -33.5,-5.5 - parent: 89 - - uid: 10460 + rot: 3.141592653589793 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 17139 components: - type: Transform - pos: 22.5,8.5 - parent: 89 - - uid: 12748 + pos: -26.5,18.5 + parent: 2 + - uid: 17140 components: - type: Transform - pos: 5.5,5.5 - parent: 89 - - uid: 15757 + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 17141 components: - type: Transform - pos: 16.5,11.5 - parent: 89 - - uid: 16944 + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 17142 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 16945 + pos: 44.5,-2.5 + parent: 2 + - uid: 17143 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 16966 + pos: 40.5,-2.5 + parent: 2 + - uid: 17144 components: - type: Transform - pos: -14.5,-21.5 - parent: 89 - - uid: 19817 + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 17145 components: - type: Transform - pos: 28.5,13.5 - parent: 89 - - uid: 19818 + rot: 3.141592653589793 rad + pos: 44.5,0.5 + parent: 2 + - uid: 17146 components: - type: Transform - pos: 24.5,13.5 - parent: 89 - - uid: 19896 + pos: 48.5,8.5 + parent: 2 + - uid: 17147 components: - type: Transform - pos: 26.5,36.5 - parent: 89 -- proto: PottedPlant2 - entities: - - uid: 5823 + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 17148 components: - type: Transform - pos: -69.5,-15.5 - parent: 89 -- proto: PottedPlant20 - entities: - - uid: 5301 + rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 17149 components: - type: Transform - pos: 25.5,-0.5 - parent: 89 -- proto: PottedPlant21 - entities: - - uid: 1992 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 17150 components: - type: Transform - pos: 42.5,5.5 - parent: 89 -- proto: PottedPlant22 - entities: - - uid: 6100 + pos: -2.5,-11.5 + parent: 2 + - uid: 17151 components: - type: Transform - pos: -64.5,1.5 - parent: 89 - - uid: 6102 + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 2 + - uid: 17152 components: - type: Transform - pos: -61.5,1.5 - parent: 89 -- proto: PottedPlant26 - entities: - - uid: 16178 + pos: -11.5,-21.5 + parent: 2 + - uid: 17153 components: - type: Transform - pos: 13.5,37.5 - parent: 89 -- proto: PottedPlant27 - entities: - - uid: 16133 + pos: -110.5,-23.5 + parent: 2 + - uid: 17154 components: - type: Transform - pos: 5.5,34.5 - parent: 89 -- proto: PottedPlant29 - entities: - - uid: 16177 + pos: -23.5,18.5 + parent: 2 + - uid: 17155 components: - type: Transform - pos: 6.5,37.5 - parent: 89 -- proto: PottedPlant3 - entities: - - uid: 6697 + rot: -1.5707963267948966 rad + pos: -90.5,-6.5 + parent: 2 + - uid: 17156 components: - type: Transform - pos: -105.5,7.5 - parent: 89 -- proto: PottedPlantBioluminscent - entities: - - uid: 17296 + rot: 1.5707963267948966 rad + pos: -96.5,-6.5 + parent: 2 + - uid: 17157 components: - type: Transform - pos: 36.5,4.5 - parent: 89 -- proto: PottedPlantRandom - entities: - - uid: 205 + rot: 1.5707963267948966 rad + pos: -96.5,-2.5 + parent: 2 + - uid: 17158 components: - type: Transform - pos: -4.5,-23.5 - parent: 89 - - uid: 341 + rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - uid: 17159 components: - type: Transform - pos: 0.5,0.5 - parent: 89 - - uid: 1256 + rot: -1.5707963267948966 rad + pos: -87.5,44.5 + parent: 2 + - uid: 17160 components: - type: Transform - pos: -14.5,4.5 - parent: 89 - - uid: 3021 + rot: -1.5707963267948966 rad + pos: -87.5,41.5 + parent: 2 + - uid: 17161 components: - type: Transform - pos: -3.5,0.5 - parent: 89 - - uid: 3100 + rot: -1.5707963267948966 rad + pos: -88.5,35.5 + parent: 2 + - uid: 17162 components: - type: Transform - pos: 34.5,16.5 - parent: 89 - - uid: 3380 + rot: -1.5707963267948966 rad + pos: -88.5,32.5 + parent: 2 + - uid: 23848 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 3411 + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 23711 + - uid: 23849 components: - type: Transform - pos: 30.5,13.5 - parent: 89 - - uid: 3423 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 23711 + - uid: 23850 components: - type: Transform - pos: 41.5,3.5 - parent: 89 - - uid: 6321 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 23711 + - uid: 23851 components: - type: Transform - pos: -1.5,13.5 - parent: 89 - - uid: 8926 + pos: 1.5,-4.5 + parent: 23711 + - uid: 23852 components: - type: Transform - pos: -6.5,21.5 - parent: 89 - - uid: 9082 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 23711 + - uid: 23853 components: - type: Transform - pos: -73.5,0.5 - parent: 89 - - uid: 9780 + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 23711 + - uid: 23854 components: - type: Transform - pos: -58.5,38.5 - parent: 89 - - uid: 9877 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 23711 + - uid: 24192 components: - type: Transform - pos: -31.5,-9.5 - parent: 89 - - uid: 9970 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 23919 + - uid: 24193 components: - type: Transform - pos: -67.5,32.5 - parent: 89 - - uid: 9971 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 23919 + - uid: 24194 components: - type: Transform - pos: -67.5,36.5 - parent: 89 - - uid: 9990 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24195 components: - type: Transform - pos: -64.5,28.5 - parent: 89 - - uid: 9991 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 23919 + - uid: 24196 components: - type: Transform - pos: -59.5,45.5 - parent: 89 - - uid: 9992 + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 23919 + - uid: 24197 components: - type: Transform - pos: -55.5,30.5 - parent: 89 - - uid: 10103 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 23919 + - uid: 24198 components: - type: Transform - pos: -79.5,0.5 - parent: 89 - - uid: 10470 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 23919 + - uid: 24199 components: - type: Transform - pos: 19.5,10.5 - parent: 89 - - uid: 10472 + pos: 4.5,6.5 + parent: 23919 + - uid: 24200 components: - type: Transform - pos: 16.5,5.5 - parent: 89 - - uid: 10628 + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 23919 + - uid: 24414 components: - type: Transform - pos: 13.5,9.5 - parent: 89 - - uid: 10883 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 24340 + - uid: 24415 components: - type: Transform - pos: -9.5,4.5 - parent: 89 - - uid: 11025 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 24340 + - uid: 24416 components: - type: Transform - pos: -67.5,5.5 - parent: 89 - - uid: 11026 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 24340 + - uid: 26569 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 11067 + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 24450 + - uid: 26570 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 11074 + rot: 3.141592653589793 rad + pos: -16.5,-26.5 + parent: 24450 + - uid: 26571 components: - type: Transform - pos: -9.5,6.5 - parent: 89 - - uid: 11083 + pos: 10.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26730 + - uid: 26572 components: - type: Transform - pos: -9.5,9.5 - parent: 89 - - uid: 12003 + pos: -34.5,12.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26729 + - uid: 26573 components: - type: Transform - pos: -5.5,5.5 - parent: 89 - - uid: 12021 + pos: -34.5,6.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26728 + - uid: 26574 components: - type: Transform - pos: -5.5,10.5 - parent: 89 - - uid: 12862 + rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 24450 + - uid: 26575 components: - type: Transform - pos: 15.5,15.5 - parent: 89 - - uid: 14786 + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 24450 + - uid: 26576 components: - type: Transform - pos: 24.5,11.5 - parent: 89 - - uid: 15152 + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 24450 + - uid: 26577 components: - type: Transform - pos: -4.5,15.5 - parent: 89 - - uid: 15314 + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 24450 + - uid: 26578 components: - type: Transform - pos: 25.5,20.5 - parent: 89 - - uid: 15492 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 24450 + - uid: 26579 components: - type: Transform - pos: -84.5,3.5 - parent: 89 - - uid: 15506 + rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 24450 + - uid: 26580 components: - type: Transform - pos: -80.5,7.5 - parent: 89 - - uid: 15579 + pos: -13.5,10.5 + parent: 24450 + - uid: 26581 components: - type: Transform - pos: 12.5,34.5 - parent: 89 - - uid: 16138 + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 24450 + - uid: 26582 components: - type: Transform - pos: 7.5,34.5 - parent: 89 - - uid: 16467 + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 24450 + - uid: 26583 components: - type: Transform - pos: -102.5,2.5 - parent: 89 - - uid: 16907 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 24450 + - uid: 26584 components: - type: Transform - pos: -13.5,-19.5 - parent: 89 - - uid: 16909 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 24450 + - uid: 26585 components: - type: Transform - pos: -7.5,-18.5 - parent: 89 - - uid: 16910 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 24450 + - uid: 26586 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 - - uid: 16928 + pos: 10.5,6.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26724 + - uid: 26587 components: - type: Transform - pos: -2.5,-31.5 - parent: 89 - - uid: 16929 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 24450 + - uid: 26588 components: - type: Transform - pos: -0.5,-31.5 - parent: 89 - - uid: 16965 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 24450 + - uid: 26589 components: - type: Transform - pos: -16.5,-21.5 - parent: 89 - - uid: 16968 + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 24450 + - uid: 26590 components: - type: Transform - pos: -18.5,-18.5 - parent: 89 - - uid: 16969 + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 24450 + - uid: 26591 components: - type: Transform - pos: 3.5,-22.5 - parent: 89 - - uid: 16989 + pos: 2.5,6.5 + parent: 24450 + - uid: 26592 components: - type: Transform - pos: 2.5,-13.5 - parent: 89 - - uid: 16990 + pos: 10.5,12.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26731 + - uid: 26593 components: - type: Transform - pos: 5.5,-13.5 - parent: 89 - - uid: 16998 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 24450 + - uid: 26594 components: - type: Transform - pos: 3.5,-4.5 - parent: 89 - - uid: 16999 + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 24450 + - uid: 26595 components: - type: Transform - pos: 4.5,-8.5 - parent: 89 - - uid: 17003 + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 24450 + - uid: 26596 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 17114 + pos: -4.5,10.5 + parent: 24450 + - uid: 26597 components: - type: Transform - pos: -65.5,-2.5 - parent: 89 - - uid: 17141 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 24450 + - uid: 26598 components: - type: Transform - pos: -60.5,-2.5 - parent: 89 - - uid: 17142 + rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 24450 + - uid: 26599 components: - type: Transform - pos: -58.5,-17.5 - parent: 89 - - uid: 17143 + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 24450 + - uid: 26600 components: - type: Transform - pos: -67.5,-17.5 - parent: 89 - - uid: 17621 + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 24450 + - uid: 26601 components: - type: Transform - pos: 16.5,17.5 - parent: 89 - - uid: 17622 + rot: -1.5707963267948966 rad + pos: -20.5,24.5 + parent: 24450 + - uid: 26602 components: - type: Transform - pos: 22.5,17.5 - parent: 89 - - uid: 17713 + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 24450 + - uid: 26603 components: - type: Transform - pos: 10.5,11.5 - parent: 89 - - uid: 19810 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 24450 + - uid: 26604 components: - type: Transform - pos: 28.5,14.5 - parent: 89 - - uid: 19893 + pos: -25.5,8.5 + parent: 24450 + - uid: 26605 components: - type: Transform - pos: 26.5,34.5 - parent: 89 - - uid: 19904 + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 24450 + - uid: 26606 components: - type: Transform - pos: 25.5,32.5 - parent: 89 - - uid: 19905 + pos: -19.5,10.5 + parent: 24450 + - uid: 26607 components: - type: Transform - pos: 23.5,32.5 - parent: 89 - - uid: 19964 + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 24450 + - uid: 26608 components: - type: Transform - pos: 23.5,39.5 - parent: 89 - - uid: 24597 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 24450 + - uid: 26609 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 - - uid: 24598 + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 24450 + - uid: 26610 components: - type: Transform - pos: -29.5,7.5 - parent: 22565 - - uid: 25395 + pos: -34.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26727 + - uid: 26611 components: - type: Transform - pos: 35.5,-27.5 - parent: 89 - - uid: 25396 + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 24450 + - uid: 27818 components: - type: Transform - pos: 34.5,-22.5 - parent: 89 -- proto: PottedPlantRandomPlastic - entities: - - uid: 3382 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 27260 + - uid: 27819 components: - type: Transform - pos: -17.5,-23.5 - parent: 89 - - uid: 3383 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 27260 + - uid: 27820 components: - type: Transform - pos: -14.5,-23.5 - parent: 89 - - uid: 4865 + pos: 0.5,-4.5 + parent: 27260 + - uid: 27821 components: - type: Transform - pos: 37.5,-3.5 - parent: 89 - - uid: 6490 + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 27260 + - uid: 27822 components: - type: Transform - pos: -27.5,-10.5 - parent: 89 - - uid: 9878 + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 27260 + - uid: 27823 components: - type: Transform - pos: -17.5,-10.5 - parent: 89 - - uid: 24599 + pos: -4.5,-8.5 + parent: 27260 + - uid: 27824 components: - type: Transform - pos: -17.5,7.5 - parent: 22565 - - uid: 24600 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 27260 + - uid: 27825 components: - type: Transform - pos: -2.5,7.5 - parent: 22565 -- proto: PottedPlantRD - entities: - - uid: 203 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 27260 + - uid: 27826 components: - type: Transform - pos: 4.5,-30.5 - parent: 89 -- proto: PowerCellMicroreactor + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 27260 +- proto: PoweredlightBlue entities: - - uid: 5726 + - uid: 17163 components: - type: Transform - pos: -22.450647,-22.528088 - parent: 89 -- proto: PowerCellPotato - entities: - - uid: 17893 + rot: 3.141592653589793 rad + pos: -112.5,23.5 + parent: 2 + - uid: 17164 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.590219,-8.506684 - parent: 89 -- proto: PowerCellRecharger - entities: - - uid: 6932 + pos: -117.5,23.5 + parent: 2 + - uid: 17165 components: - type: Transform - pos: -96.5,-2.5 - parent: 89 - - uid: 7075 + rot: -1.5707963267948966 rad + pos: -114.5,23.5 + parent: 2 + - uid: 17166 components: - type: Transform - pos: -94.5,17.5 - parent: 89 - - uid: 10158 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 + parent: 2 + - uid: 17167 components: - type: Transform - pos: -31.5,21.5 - parent: 89 - - uid: 16942 + pos: -104.5,27.5 + parent: 2 + - uid: 17168 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 19519 + pos: -110.5,27.5 + parent: 2 + - uid: 17169 components: - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 19520 + pos: 48.5,-5.5 + parent: 2 + - uid: 17170 components: - type: Transform - pos: -50.5,-16.5 - parent: 89 - - uid: 19521 + pos: 46.5,-5.5 + parent: 2 + - uid: 24201 components: - type: Transform - pos: -71.5,-12.5 - parent: 89 - - uid: 24601 + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 23919 + - uid: 24202 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 24602 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 23919 + - uid: 24203 components: - type: Transform - pos: 5.5,2.5 - parent: 22565 - - uid: 24603 + pos: 8.5,-5.5 + parent: 23919 + - uid: 24204 components: - type: Transform - pos: -29.5,2.5 - parent: 22565 -- proto: PowerComputerCircuitboard - entities: - - uid: 7064 + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 23919 + - uid: 24205 components: - type: Transform - pos: -103.65402,-10.274773 - parent: 89 -- proto: PowerDrill - entities: - - uid: 157 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 23919 + - uid: 24206 components: - type: Transform - pos: 3.5,-27.5 - parent: 89 -- proto: Poweredlight - entities: - - uid: 739 + pos: 0.5,-5.5 + parent: 23919 + - uid: 27827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,-5.5 - parent: 89 - - uid: 1511 + pos: -5.5,-5.5 + parent: 27260 +- proto: PoweredlightExterior + entities: + - uid: 17171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1516 + - uid: 17172 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1519 + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 +- proto: PoweredlightPink + entities: + - uid: 17173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1565 + pos: -3.5,-5.5 + parent: 2 + - uid: 17174 components: - type: Transform - pos: -21.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1567 + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 17175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1568 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 17176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 1569 + pos: -9.5,-0.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 17177 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1571 + pos: -31.5,39.5 + parent: 2 + - type: Timer + - uid: 17178 components: - type: Transform - pos: -22.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1572 + rot: 3.141592653589793 rad + pos: -28.5,39.5 + parent: 2 + - type: Timer +- proto: PoweredlightRed + entities: + - uid: 17179 components: - type: Transform - pos: -15.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1575 + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 17180 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1580 + pos: 46.5,-9.5 + parent: 2 + - uid: 17181 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1581 + pos: 49.5,-9.5 + parent: 2 + - uid: 27828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1582 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 27260 +- proto: PoweredlightSodium + entities: + - uid: 17182 components: - type: Transform - pos: -3.5,-38.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1583 + rot: 1.5707963267948966 rad + pos: -88.5,-10.5 + parent: 2 + - uid: 17183 components: - type: Transform - pos: -7.5,-20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1584 + pos: -106.5,-14.5 + parent: 2 + - uid: 17184 components: - type: Transform - pos: -3.5,-24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1585 + pos: -98.5,-12.5 + parent: 2 + - uid: 17185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1586 + pos: -78.5,-18.5 + parent: 2 + - uid: 17186 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -101.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1587 + - uid: 17187 components: - type: Transform - pos: -5.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -97.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1588 + - uid: 17188 components: - type: Transform - pos: -8.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -93.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1589 + - uid: 17189 components: - type: Transform - pos: 0.5,-38.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -89.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1595 + - uid: 17190 components: - type: Transform - pos: 51.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1599 + - uid: 17191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1600 + pos: -79.5,-11.5 + parent: 2 + - uid: 26612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1602 + pos: -16.5,-21.5 + parent: 24450 + - uid: 26613 components: - type: Transform - pos: 3.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1605 + pos: -10.5,-21.5 + parent: 24450 +- proto: PoweredSmallLight + entities: + - uid: 17192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1609 + rot: 1.5707963267948966 rad + pos: -150.5,-13.5 + parent: 2 + - uid: 17193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1611 + pos: -122.5,-12.5 + parent: 2 + - uid: 17194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1612 + pos: -86.5,-4.5 + parent: 2 + - uid: 17195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1613 + pos: -129.5,-15.5 + parent: 2 + - uid: 17196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1614 + pos: -128.5,-13.5 + parent: 2 + - uid: 17197 components: - type: Transform - pos: 60.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1615 + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - uid: 17198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1616 + pos: 29.5,6.5 + parent: 2 + - uid: 17199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-45.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1617 + - uid: 17200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 - parent: 89 + pos: 50.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1618 + - type: Timer + - uid: 17201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1620 + - type: Timer + - uid: 17202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1621 + - uid: 17203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1623 + rot: -1.5707963267948966 rad + pos: -87.5,26.5 + parent: 2 + - uid: 17204 components: - type: Transform - pos: 55.5,0.5 - parent: 89 + pos: -1.5,-19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1625 + - uid: 17205 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,8.5 - parent: 89 + pos: -1.5,-22.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1629 + - uid: 17206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 57.5,2.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1631 + - uid: 17207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 89 + pos: 57.5,6.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2020 + - type: Timer + - uid: 17208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2021 + - type: Timer + - uid: 17209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2022 + pos: 32.5,7.5 + parent: 2 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2507 + pos: 37.5,20.5 + parent: 2 + - uid: 17211 components: - type: Transform - pos: 31.5,16.5 - parent: 89 + pos: 3.5,-0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2509 + - type: DeviceLinkSink + links: + - 18448 + - uid: 17212 components: - type: Transform - pos: 37.5,16.5 - parent: 89 + pos: -73.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: Timer - - uid: 2510 + - uid: 17213 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 89 + pos: -73.5,-17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2511 + - uid: 17214 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 89 + pos: -70.5,-17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2512 + - uid: 17215 components: - type: Transform - pos: 39.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2513 + - uid: 17216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,0.5 - parent: 89 + pos: -70.5,-9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2514 + - uid: 17217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2515 + pos: 7.5,27.5 + parent: 2 + - uid: 17218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2527 + pos: 19.5,26.5 + parent: 2 + - uid: 17219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -100.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2571 + - uid: 17220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 89 + pos: -96.5,29.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 - parent: 89 - - uid: 2906 + - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 89 + pos: -95.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3119 + - uid: 17222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3304 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 - parent: 89 + pos: 5.5,17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4670 + - uid: 17224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4706 + - uid: 17225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5041 + - uid: 17226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-14.5 - parent: 89 + pos: -37.5,0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5357 + - uid: 17227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 89 + pos: -37.5,-6.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5361 + - uid: 17228 components: - type: Transform - pos: 27.5,-0.5 - parent: 89 + pos: 15.5,15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5375 + - uid: 17229 components: - type: Transform - pos: 22.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5379 + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 17231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5384 + pos: 25.5,27.5 + parent: 2 + - uid: 17232 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 + pos: -116.5,-0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5407 + - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 89 + pos: -116.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5409 + - uid: 17234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5410 + - uid: 17235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -128.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5411 + - uid: 17236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -132.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5423 + - uid: 17237 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -90.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5429 + - uid: 17238 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 89 + pos: -92.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5433 + - uid: 17239 components: - type: Transform - pos: 31.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5734 + pos: -76.5,13.5 + parent: 2 + - uid: 17240 components: - type: Transform - pos: -60.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -87.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6004 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6016 + - uid: 17242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6018 + - uid: 17243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6019 + - uid: 17244 components: - type: Transform - pos: -65.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6033 + - uid: 17245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 89 + pos: 24.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6034 + - uid: 17246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 89 + pos: 27.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6082 + - uid: 17247 components: - type: Transform - pos: -67.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6083 + - uid: 17248 components: - type: Transform - pos: -58.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6527 + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 17249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6647 + pos: 23.5,32.5 + parent: 2 + - uid: 17250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6920 + rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - uid: 17251 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6921 + pos: 3.5,20.5 + parent: 2 + - uid: 17252 components: - type: Transform - pos: -40.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7071 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,42.5 - parent: 89 + pos: 21.5,19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7167 + - uid: 17255 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 89 - - uid: 7398 - components: - - type: Transform - pos: -81.5,-11.5 - parent: 89 - - uid: 7399 + pos: 30.5,26.5 + parent: 2 + - uid: 17256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-11.5 - parent: 89 - - uid: 7415 + rot: -1.5707963267948966 rad + pos: -51.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-9.5 - parent: 89 - - uid: 7563 + rot: 3.141592653589793 rad + pos: -21.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 89 + pos: -20.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7564 + - uid: 17259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7565 + - uid: 17260 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 89 + pos: -36.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7566 + - uid: 17261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -38.5,27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8707 + - uid: 17262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8909 + - uid: 17263 components: - type: Transform - pos: -101.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -45.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9691 + - uid: 17264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9692 + - uid: 17265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,42.5 - parent: 89 + pos: -20.5,24.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10022 + - uid: 17266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 89 + pos: -18.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10024 + - uid: 17267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 89 + pos: -1.5,25.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10025 + - uid: 17268 components: - type: Transform - pos: -45.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10026 + - uid: 17269 components: - type: Transform - pos: -50.5,11.5 - parent: 89 + pos: 2.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10027 + - uid: 17270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10028 + - uid: 17271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 89 + pos: 1.5,30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10029 + - uid: 17272 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-7.5 - parent: 89 + pos: -8.5,30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10030 + - uid: 17273 components: - type: Transform - pos: -33.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10031 + - uid: 17274 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-9.5 - parent: 89 + pos: -0.5,39.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10032 + - uid: 17275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 89 + pos: 2.5,42.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10036 + - uid: 17276 components: - type: Transform - pos: -30.5,-4.5 - parent: 89 + pos: -1.5,46.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10037 + - uid: 17277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 89 + pos: -5.5,46.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10038 + - uid: 17278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10039 + - uid: 17279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 89 + pos: 15.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10040 + - uid: 17280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 89 + pos: 7.5,-19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10041 + - uid: 17281 components: - type: Transform - pos: -21.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10042 + - uid: 17282 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10043 + - uid: 17283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10044 + - uid: 17284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10046 + - uid: 17285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 89 + pos: -30.5,-15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10047 + - uid: 17286 components: - type: Transform - pos: -9.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10049 + - uid: 17287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 89 + pos: -43.5,-5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10050 + - uid: 17288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 89 + pos: -76.5,-8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11065 + - uid: 17289 components: - type: Transform - pos: -37.5,5.5 - parent: 89 + pos: -81.5,-5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11089 + - uid: 17290 components: - type: Transform - pos: -1.5,21.5 - parent: 89 - - uid: 11384 + pos: -80.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17291 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 89 - - uid: 12588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 89 - - uid: 12864 + pos: -128.5,21.5 + parent: 2 + - uid: 17292 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,2.5 - parent: 89 + pos: -122.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12865 + - uid: 17293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12866 + - uid: 17294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 89 + pos: -78.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12867 + - uid: 17295 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 89 + pos: -65.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12868 + - uid: 17296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12870 + - uid: 17297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12871 + - uid: 17298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 89 + pos: -13.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12872 + - uid: 17299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12873 + - uid: 17300 components: - type: Transform - pos: -1.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: Timer - - uid: 12874 + - uid: 17301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12875 + - uid: 17302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 89 + pos: 14.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12876 + - uid: 17303 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12877 + pos: 47.5,-33.5 + parent: 2 + - uid: 17304 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12878 + pos: 53.5,-33.5 + parent: 2 + - uid: 17305 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 89 + pos: 49.5,-33.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12879 + - uid: 17308 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-13.5 - parent: 89 + pos: 8.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12880 + - uid: 17309 components: - type: Transform - pos: -36.5,-11.5 - parent: 89 + pos: 25.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12881 + - uid: 17310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 17311 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 89 + pos: 47.5,5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12882 + - uid: 17312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12883 + - uid: 17314 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,3.5 - parent: 89 + pos: -36.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12884 + - uid: 17315 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 89 + pos: -22.5,16.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12885 + - uid: 17316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 2 + - type: Timer + - uid: 17317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12886 + - uid: 17318 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,3.5 - parent: 89 + pos: 20.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12887 + - uid: 17319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,3.5 - parent: 89 + pos: 23.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12888 + - uid: 17320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12889 + pos: 27.5,-12.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 17322 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12890 + pos: 13.5,-13.5 + parent: 2 + - uid: 17323 components: - type: Transform - pos: -75.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12891 + pos: 14.5,-15.5 + parent: 2 + - uid: 17324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12892 + pos: 36.5,27.5 + parent: 2 + - uid: 17325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12893 + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 17326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12894 + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 17327 components: - type: Transform - pos: -66.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12895 + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 17328 components: - type: Transform - pos: -56.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12896 + rot: -1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 17329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12897 + pos: 54.5,-23.5 + parent: 2 + - uid: 17330 components: - type: Transform - pos: -53.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12898 + rot: -1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - uid: 17331 components: - type: Transform - pos: -61.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12899 + rot: -1.5707963267948966 rad + pos: 54.5,-20.5 + parent: 2 + - uid: 17332 components: - type: Transform - pos: -68.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12900 + pos: -10.5,24.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18449 + - uid: 17334 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: -123.5,5.5 + parent: 2 + - uid: 17337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12901 + pos: -63.5,-20.5 + parent: 2 + - uid: 17338 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12902 + pos: -123.5,2.5 + parent: 2 + - uid: 17339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12903 + rot: -1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 17340 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12904 + pos: 21.5,-17.5 + parent: 2 + - uid: 17341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12905 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 17342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12906 + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 17345 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12907 + pos: 24.5,5.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,-14.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,-20.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + pos: -111.5,-13.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + pos: -115.5,-5.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + pos: -120.5,-5.5 + parent: 2 + - uid: 17353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12908 + pos: -150.5,-1.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: -142.5,-0.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -142.5,-14.5 + parent: 2 + - uid: 17356 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12909 + pos: -150.5,-7.5 + parent: 2 + - uid: 17357 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12910 + pos: -133.5,-14.5 + parent: 2 + - uid: 17358 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12911 + pos: -76.5,-18.5 + parent: 2 + - uid: 24207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12912 + pos: 7.5,0.5 + parent: 23919 + - uid: 24208 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 23919 + - uid: 24209 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 23919 + - uid: 26614 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 24450 + - uid: 26615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12913 + pos: -15.5,-19.5 + parent: 24450 + - uid: 26616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 24450 + - uid: 26617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 24450 + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 24450 + - uid: 26619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12914 + pos: -2.5,-16.5 + parent: 24450 + - uid: 26620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12915 + pos: -7.5,-16.5 + parent: 24450 + - uid: 26621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 24450 + - uid: 26622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 24450 + - uid: 26623 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 24450 + - uid: 26624 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12916 + pos: -11.5,-11.5 + parent: 24450 + - uid: 26625 components: - type: Transform - pos: -92.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12917 + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 24450 + - uid: 26626 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 24450 + - uid: 26627 + components: + - type: Transform + pos: -35.5,3.5 + parent: 24450 + - uid: 26628 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12918 + pos: -4.5,-14.5 + parent: 24450 + - uid: 26629 components: - type: Transform - pos: -93.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12919 + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 24450 + - uid: 26630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12920 + pos: -27.5,11.5 + parent: 24450 + - uid: 27829 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12921 + pos: 0.5,-12.5 + parent: 27260 +- proto: PoweredSmallLightEmpty + entities: + - uid: 17359 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12922 + pos: 30.5,22.5 + parent: 2 +- proto: PoweredStrobeLightEmpty + entities: + - uid: 15972 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,8.5 - parent: 89 + pos: 48.5,15.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15973 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12923 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15974 components: - type: Transform - pos: -104.5,11.5 - parent: 89 + pos: 19.5,-8.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15975 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12924 + - type: DeviceLinkSink + links: + - 15996 + - uid: 15976 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-0.5 - parent: 89 + pos: 44.5,10.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 5 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15977 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12925 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-18.5 - parent: 89 + pos: 57.5,6.5 + parent: 2 + - type: AmbientSound + volume: 0 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15979 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12926 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15981 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12927 + - type: DeviceLinkSink + links: + - 15996 + - uid: 15982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 5 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15983 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12928 + - type: DeviceLinkSink + links: + - 15996 +- proto: PresentRandom + entities: + - uid: 17360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12929 + pos: -131.59901,21.381063 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 17361 components: - type: Transform - pos: -113.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12930 + pos: -49.5,11.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 17363 components: - type: Transform rot: 3.141592653589793 rad - pos: -113.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12931 + pos: -76.5,-6.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 17364 components: - type: Transform - pos: -117.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12932 + pos: -16.5,-19.5 + parent: 2 + - uid: 17365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12933 + pos: -100.5,-5.5 + parent: 2 + - uid: 26631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12934 + pos: 3.5,1.5 + parent: 24450 + - uid: 26632 + components: + - type: Transform + pos: -27.5,1.5 + parent: 24450 +- proto: PuddleEgg + entities: + - uid: 17366 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 +- proto: PuddleSmear + entities: + - uid: 17367 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 +- proto: Rack + entities: + - uid: 17368 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12935 + pos: 32.5,7.5 + parent: 2 + - uid: 17369 components: - type: Transform - pos: -105.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12936 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 17370 components: - type: Transform - pos: -107.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12937 + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - uid: 17371 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12938 + pos: 32.5,6.5 + parent: 2 + - uid: 17372 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12939 + pos: 32.5,5.5 + parent: 2 + - uid: 17373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12940 + pos: -24.5,-15.5 + parent: 2 + - uid: 17374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12941 + pos: -43.5,-3.5 + parent: 2 + - uid: 17375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12942 + pos: 3.5,-27.5 + parent: 2 + - uid: 17377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12943 + pos: 49.5,-6.5 + parent: 2 + - uid: 17378 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12962 + pos: 48.5,-6.5 + parent: 2 + - uid: 17379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12963 + pos: 44.5,-6.5 + parent: 2 + - uid: 17380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12964 + pos: -46.5,-10.5 + parent: 2 + - uid: 17381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12965 + pos: 47.5,-6.5 + parent: 2 + - uid: 17382 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12968 + pos: -33.5,-1.5 + parent: 2 + - uid: 17383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12969 + pos: -105.5,-7.5 + parent: 2 + - uid: 17384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12970 + pos: -104.5,-7.5 + parent: 2 + - uid: 17385 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12971 + pos: -103.5,-7.5 + parent: 2 + - uid: 17386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12973 + pos: -105.5,-10.5 + parent: 2 + - uid: 17387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12974 + pos: -104.5,-10.5 + parent: 2 + - uid: 17388 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12975 + pos: -103.5,-10.5 + parent: 2 + - uid: 17389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12976 + pos: -102.5,-7.5 + parent: 2 + - uid: 17390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12977 + pos: -102.5,-10.5 + parent: 2 + - uid: 17391 components: - type: Transform - pos: -130.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12978 + pos: -29.5,-15.5 + parent: 2 + - uid: 17392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13106 + pos: -30.5,-15.5 + parent: 2 + - uid: 17393 components: - type: Transform - pos: -82.5,21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13107 + pos: 17.5,25.5 + parent: 2 + - uid: 17394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13108 + pos: 16.5,25.5 + parent: 2 + - uid: 17395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13109 + pos: -41.5,10.5 + parent: 2 + - uid: 17396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13110 + pos: 45.5,-6.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: -98.5,20.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -97.5,20.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: -82.5,5.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: -81.5,5.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + pos: -80.5,5.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -78.5,-6.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -68.5,21.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + pos: -69.5,21.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + pos: -73.5,21.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 17412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13111 + pos: -44.5,13.5 + parent: 2 + - uid: 17413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,40.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13112 + pos: -38.5,24.5 + parent: 2 + - uid: 17414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13113 + pos: -38.5,23.5 + parent: 2 + - uid: 17415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13370 + pos: -18.5,12.5 + parent: 2 + - uid: 17416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13371 + pos: -16.5,19.5 + parent: 2 + - uid: 17417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13372 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 17418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13373 + pos: 6.5,27.5 + parent: 2 + - uid: 17419 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13374 + pos: 8.5,27.5 + parent: 2 + - uid: 17420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13375 + pos: 16.5,23.5 + parent: 2 + - uid: 17421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13584 + pos: -20.5,-27.5 + parent: 2 + - uid: 17422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13585 + pos: 40.5,-9.5 + parent: 2 + - uid: 17423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13586 + pos: -26.5,-25.5 + parent: 2 + - uid: 17424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13587 + pos: -26.5,-24.5 + parent: 2 + - uid: 17425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13588 + pos: -26.5,-23.5 + parent: 2 + - uid: 17426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13589 + pos: 48.5,17.5 + parent: 2 + - uid: 17427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13590 + pos: 50.5,-18.5 + parent: 2 + - uid: 17428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13591 + pos: 51.5,-18.5 + parent: 2 + - uid: 17429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13592 + pos: 35.5,-0.5 + parent: 2 + - uid: 17430 components: - type: Transform - pos: -63.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13593 + pos: -46.5,-9.5 + parent: 2 + - uid: 27830 components: - type: Transform - pos: -59.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13595 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 27260 + - uid: 27831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13596 + pos: -1.5,-8.5 + parent: 27260 +- proto: RadAutoInjector + entities: + - uid: 601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13597 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13598 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13599 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RadiationCollector + entities: + - uid: 17431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13600 + pos: -116.5,-5.5 + parent: 2 + - uid: 17432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13601 + pos: -116.5,-6.5 + parent: 2 + - uid: 17433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,38.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13602 + pos: -135.5,-3.5 + parent: 2 + - uid: 17434 components: - type: Transform - pos: -54.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13604 + pos: -115.5,-6.5 + parent: 2 + - uid: 17435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13605 + pos: -115.5,-5.5 + parent: 2 + - uid: 17436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13606 + pos: -127.5,1.5 + parent: 2 + - uid: 17437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13607 + pos: -126.5,1.5 + parent: 2 + - uid: 17438 components: - type: Transform - pos: -51.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13608 + pos: -125.5,6.5 + parent: 2 + - uid: 17439 components: - type: Transform - pos: -51.5,41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13610 + pos: -135.5,-11.5 + parent: 2 +- proto: RadiationCollectorNoTank + entities: + - uid: 17440 components: - type: Transform - pos: -52.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13611 + pos: -126.5,6.5 + parent: 2 + - uid: 17441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,34.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13617 + pos: -125.5,1.5 + parent: 2 + - uid: 17442 components: - type: Transform - pos: 46.5,15.5 - parent: 89 - - uid: 13693 + pos: -127.5,6.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 17443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,36.5 - parent: 89 - - uid: 13715 + pos: 48.5,17.5 + parent: 2 +- proto: RadioJammer + entities: + - uid: 17444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 13716 + pos: 31.591637,39.734406 + parent: 2 +- proto: Railing + entities: + - uid: 17445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13722 + pos: -43.5,-21.5 + parent: 2 + - uid: 17446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13723 + rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 17447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13829 + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 17448 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13830 + pos: -10.5,-8.5 + parent: 2 + - uid: 17449 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13831 - components: - - type: Transform - pos: -71.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13902 + pos: -9.5,-8.5 + parent: 2 + - uid: 17450 components: - type: Transform - pos: -44.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13903 + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 17451 components: - type: Transform - pos: -37.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13955 + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 17452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13974 + pos: -27.5,-4.5 + parent: 2 + - uid: 17453 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13975 + pos: -20.5,-18.5 + parent: 2 + - uid: 17454 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13976 + pos: -18.5,-18.5 + parent: 2 + - uid: 17455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13977 + pos: -21.5,-17.5 + parent: 2 + - uid: 17456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13978 - components: - - type: Transform - pos: -33.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13979 + pos: -21.5,-16.5 + parent: 2 + - uid: 17457 components: - type: Transform - pos: -33.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13980 + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 17458 components: - type: Transform - pos: -33.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13981 + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 17459 components: - type: Transform - pos: -26.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13982 + rot: 1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - uid: 17460 components: - type: Transform - pos: -26.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13983 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 17461 components: - type: Transform - pos: -26.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13985 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 + - uid: 17462 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13986 + pos: 40.5,3.5 + parent: 2 + - uid: 17463 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14065 + pos: 41.5,3.5 + parent: 2 + - uid: 17464 components: - type: Transform - pos: 11.5,24.5 - parent: 89 - - uid: 14070 + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 17465 components: - type: Transform - pos: 6.5,24.5 - parent: 89 - - uid: 14256 + pos: -48.5,-20.5 + parent: 2 + - uid: 17466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14257 + pos: -49.5,-20.5 + parent: 2 + - uid: 17467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14258 + pos: -50.5,-19.5 + parent: 2 + - uid: 17468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14259 + pos: -42.5,-19.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 17470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14261 + pos: -42.5,-20.5 + parent: 2 + - uid: 17471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 14519 + pos: -44.5,-21.5 + parent: 2 + - uid: 17472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14522 + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - uid: 17473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-6.5 - parent: 89 - - uid: 14968 + rot: -1.5707963267948966 rad + pos: 1.5,41.5 + parent: 2 + - uid: 17474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15065 + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - uid: 17475 components: - type: Transform - pos: 10.5,42.5 - parent: 89 - - uid: 15262 + pos: -19.5,22.5 + parent: 2 + - uid: 17476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,35.5 - parent: 89 - - type: Timer - - uid: 15320 + pos: -20.5,22.5 + parent: 2 + - uid: 17477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,49.5 - parent: 89 - - uid: 15322 + pos: -21.5,23.5 + parent: 2 + - uid: 17478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,49.5 - parent: 89 - - uid: 15323 + rot: 3.141592653589793 rad + pos: 46.5,23.5 + parent: 2 + - uid: 17479 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,47.5 - parent: 89 - - uid: 15324 + pos: 48.5,23.5 + parent: 2 + - uid: 17480 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 89 - - uid: 15386 + pos: 47.5,23.5 + parent: 2 + - uid: 17481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,30.5 - parent: 89 - - uid: 15427 + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 + - uid: 17482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 89 - - uid: 15449 + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - uid: 17483 components: - type: Transform - pos: 5.5,30.5 - parent: 89 - - uid: 15542 + pos: -10.5,-8.5 + parent: 2 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 89 - - uid: 15702 + pos: -8.5,-6.5 + parent: 2 + - uid: 17485 components: - type: Transform - pos: -110.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15732 + pos: -9.5,-8.5 + parent: 2 + - uid: 17486 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15734 + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 17487 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15738 + pos: -7.5,-5.5 + parent: 2 + - uid: 17488 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15739 + pos: -6.5,-5.5 + parent: 2 + - uid: 17489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15740 + pos: -5.5,-5.5 + parent: 2 + - uid: 17490 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15747 + pos: -3.5,-5.5 + parent: 2 + - uid: 17491 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15749 + pos: -6.5,-6.5 + parent: 2 + - uid: 17492 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15751 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 17493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15752 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 17494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15753 + pos: -6.5,-8.5 + parent: 2 + - uid: 17495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15765 + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,33.5 - parent: 89 - - uid: 15912 + pos: -9.5,-5.5 + parent: 2 + - uid: 17497 components: - type: Transform - pos: 18.5,23.5 - parent: 89 - - uid: 16048 + pos: -46.5,-21.5 + parent: 2 + - uid: 24210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 89 - - uid: 16240 - components: - - type: Transform - pos: 6.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16241 + pos: 4.5,-11.5 + parent: 23919 + - uid: 24211 components: - type: Transform - pos: 16.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16242 + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 23919 + - uid: 27832 components: - type: Transform - pos: 27.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16243 + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 27260 + - uid: 27833 components: - type: Transform - pos: 19.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16244 + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 27260 + - uid: 27834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16245 + pos: 0.5,-2.5 + parent: 27260 + - uid: 27835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16434 + pos: 0.5,-0.5 + parent: 27260 + - uid: 27836 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16435 + pos: 0.5,-1.5 + parent: 27260 + - uid: 27837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16451 + pos: 0.5,-2.5 + parent: 27260 +- proto: RailingCorner + entities: + - uid: 17498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16452 + pos: -47.5,-21.5 + parent: 2 + - uid: 17499 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16453 + pos: -50.5,-20.5 + parent: 2 + - uid: 17500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16500 + pos: -14.5,-8.5 + parent: 2 + - uid: 17501 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16505 + pos: -21.5,22.5 + parent: 2 + - uid: 17502 components: - type: Transform - pos: -15.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16507 + rot: 1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 + - uid: 17503 components: - type: Transform - pos: 27.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16518 + pos: -8.5,-8.5 + parent: 2 + - uid: 17504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16519 + pos: -42.5,-21.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 17505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16520 + pos: -21.5,-18.5 + parent: 2 + - uid: 17506 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16529 + pos: 39.5,3.5 + parent: 2 + - uid: 17507 components: - type: Transform - pos: 20.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16530 + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - uid: 17508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16578 + pos: -8.5,-8.5 + parent: 2 + - uid: 17509 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17062 + pos: -7.5,-8.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 17510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-25.5 - parent: 89 - - uid: 17063 + pos: -5.5,-44.5 + parent: 2 + - uid: 17511 components: - type: Transform - pos: 50.5,-27.5 - parent: 89 - - uid: 17064 + pos: -55.5,-15.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 17512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 89 - - uid: 17065 + pos: -51.5,21.5 + parent: 2 + - uid: 17513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 89 - - uid: 17077 + pos: -49.5,21.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 17514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-31.5 - parent: 89 - - uid: 17130 + pos: -52.5,9.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 17515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,35.5 - parent: 89 - - type: Timer - - uid: 17132 + pos: -61.5,5.5 + parent: 2 + - uid: 17516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 89 - - uid: 17170 + pos: -89.5,6.5 + parent: 2 + - uid: 17517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 89 - - uid: 17294 + pos: -25.5,-3.5 + parent: 2 + - uid: 17518 components: - type: Transform - pos: -50.5,48.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17626 + pos: -24.5,-3.5 + parent: 2 + - uid: 17519 components: - type: Transform - pos: 1.5,13.5 - parent: 89 - - uid: 17627 + pos: -22.5,-2.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 17520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 89 - - uid: 17686 + pos: -23.5,-3.5 + parent: 2 + - uid: 17521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 89 - - uid: 17875 + pos: -26.5,-3.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 17522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-19.5 - parent: 89 - - uid: 17878 + pos: 18.5,21.5 + parent: 2 + - uid: 17523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 89 - - uid: 17918 + pos: -19.5,-5.5 + parent: 2 + - uid: 17524 components: - type: Transform - pos: 44.5,-27.5 - parent: 89 - - uid: 17922 + pos: -22.5,-6.5 + parent: 2 + - uid: 17525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 89 - - uid: 17929 + pos: -16.5,-2.5 + parent: 2 + - uid: 17526 components: - type: Transform - pos: 41.5,-28.5 - parent: 89 - - uid: 18172 + pos: -23.5,-6.5 + parent: 2 + - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 89 - - uid: 18173 + pos: -16.5,-3.5 + parent: 2 + - uid: 17528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 89 - - uid: 18174 + pos: -16.5,-5.5 + parent: 2 + - uid: 17529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-19.5 - parent: 89 - - uid: 18311 + pos: -16.5,-2.5 + parent: 2 + - uid: 17530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18312 + pos: -16.5,-1.5 + parent: 2 + - uid: 17531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18313 + pos: -16.5,-4.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 17532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18321 + pos: -43.5,-17.5 + parent: 2 + - uid: 17533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18322 + pos: -44.5,21.5 + parent: 2 + - uid: 17534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18323 + pos: -19.5,-2.5 + parent: 2 + - uid: 17535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18324 + pos: -16.5,-4.5 + parent: 2 + - uid: 17536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18326 + pos: -16.5,-1.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 17537 components: - type: Transform - pos: 64.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18328 + pos: -37.5,-17.5 + parent: 2 + - uid: 17538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18359 + pos: -31.5,-5.5 + parent: 2 + - uid: 17539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19399 + pos: -31.5,-6.5 + parent: 2 + - uid: 17540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-31.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19401 + pos: -82.5,2.5 + parent: 2 + - uid: 17541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-31.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19537 + pos: -44.5,13.5 + parent: 2 + - uid: 17542 components: - type: Transform - pos: 37.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19547 + pos: -16.5,19.5 + parent: 2 + - uid: 17543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19559 + pos: -52.5,8.5 + parent: 2 + - uid: 17544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19560 + pos: 21.5,-3.5 + parent: 2 + - uid: 26633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19561 + pos: -29.5,3.5 + parent: 24450 +- proto: RandomPainting + entities: + - uid: 17545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19562 + pos: 18.5,9.5 + parent: 2 + - uid: 17546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19563 + pos: 34.5,17.5 + parent: 2 + - uid: 17547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19564 + pos: 30.5,21.5 + parent: 2 + - uid: 17548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19566 + pos: 23.5,38.5 + parent: 2 + - uid: 17549 components: - type: Transform - pos: -114.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19573 + pos: 26.5,10.5 + parent: 2 + - uid: 17550 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19574 + pos: 19.5,20.5 + parent: 2 + - uid: 26634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19575 + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 24450 + - uid: 26635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19582 + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 26636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 24450 + - uid: 26637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 24450 +- proto: RandomPosterAny + entities: + - uid: 17551 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19583 + pos: -29.5,-18.5 + parent: 2 + - uid: 17552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20015 + pos: -52.5,28.5 + parent: 2 + - uid: 17553 components: - type: Transform - pos: -6.5,21.5 - parent: 89 - - uid: 20095 + pos: -38.5,25.5 + parent: 2 + - uid: 17554 components: - type: Transform - pos: 43.5,-11.5 - parent: 89 - - uid: 20096 + pos: 28.5,-15.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 17555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 89 - - uid: 20097 + pos: -45.5,-11.5 + parent: 2 + - uid: 17556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-16.5 - parent: 89 - - uid: 20098 + pos: -36.5,-2.5 + parent: 2 + - uid: 17557 components: - type: Transform - pos: 51.5,-11.5 - parent: 89 - - uid: 20359 + pos: -47.5,22.5 + parent: 2 + - uid: 17558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-25.5 - parent: 89 - - uid: 20828 + pos: 58.5,-20.5 + parent: 2 + - uid: 17559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 89 - - uid: 20958 + pos: 58.5,-22.5 + parent: 2 + - uid: 17560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 - parent: 89 - - type: Timer - - uid: 21078 + pos: 25.5,-15.5 + parent: 2 + - uid: 26638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 89 - - uid: 21079 + pos: 2.5,10.5 + parent: 24450 + - uid: 26639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 89 - - uid: 21080 + pos: 2.5,11.5 + parent: 24450 + - uid: 26640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 - parent: 89 - - type: Timer - - uid: 21081 + pos: 3.5,9.5 + parent: 24450 +- proto: RandomPosterLegit + entities: + - uid: 17561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 89 - - uid: 21267 + pos: 54.5,-18.5 + parent: 2 + - uid: 17562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 89 - - uid: 21309 + rot: 1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 17563 components: - type: Transform - pos: -8.5,21.5 - parent: 89 - - uid: 21574 + pos: 22.5,-15.5 + parent: 2 + - uid: 17564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 89 - - uid: 21749 + pos: 11.5,-14.5 + parent: 2 + - uid: 17565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 89 - - uid: 21793 + pos: 19.5,-15.5 + parent: 2 + - uid: 17566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 89 - - uid: 21794 + pos: -42.5,-6.5 + parent: 2 + - uid: 17567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 89 - - uid: 21795 + pos: 11.5,0.5 + parent: 2 + - uid: 17568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 89 - - uid: 21796 + pos: -7.5,0.5 + parent: 2 + - uid: 17569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 89 - - uid: 21810 + pos: 29.5,-2.5 + parent: 2 + - uid: 17570 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 21840 + pos: 10.5,-10.5 + parent: 2 + - uid: 17571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-33.5 - parent: 89 - - uid: 21841 + pos: 21.5,-7.5 + parent: 2 + - uid: 17572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 89 - - uid: 22070 + pos: 30.5,-4.5 + parent: 2 + - uid: 17573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-12.5 - parent: 89 - - uid: 22071 + pos: -97.5,-3.5 + parent: 2 + - uid: 17574 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 23645 + pos: -82.5,22.5 + parent: 2 + - uid: 17575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 89 - - uid: 24604 + pos: -86.5,31.5 + parent: 2 + - uid: 17576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 22565 - - uid: 24605 + pos: 45.5,-10.5 + parent: 2 + - uid: 17577 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 22565 - - uid: 24606 + pos: 4.5,4.5 + parent: 2 + - uid: 17578 components: - type: Transform - pos: 10.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24821 - - uid: 24607 + pos: 47.5,-21.5 + parent: 2 + - uid: 17579 components: - type: Transform - pos: -34.5,12.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24820 - - uid: 24608 + pos: 47.5,-18.5 + parent: 2 + - uid: 17580 components: - type: Transform - pos: -34.5,6.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24819 - - uid: 24609 + pos: 42.5,-34.5 + parent: 2 + - uid: 17581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 22565 - - uid: 24610 + pos: 54.5,-28.5 + parent: 2 + - uid: 17582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 22565 - - uid: 24611 + pos: 52.5,-24.5 + parent: 2 + - uid: 17583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 22565 - - uid: 24612 + pos: 41.5,-24.5 + parent: 2 + - uid: 17584 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 22565 - - uid: 24613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 - parent: 22565 - - uid: 24614 + pos: -2.5,-2.5 + parent: 2 + - uid: 17585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 22565 - - uid: 24615 + pos: 18.5,-3.5 + parent: 2 + - uid: 17586 components: - type: Transform - pos: -13.5,10.5 - parent: 22565 - - uid: 24616 + pos: 22.5,-0.5 + parent: 2 + - uid: 17587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 22565 - - uid: 24617 + pos: 24.5,-4.5 + parent: 2 + - uid: 17588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 22565 - - uid: 24618 + pos: 9.5,-1.5 + parent: 2 + - uid: 17589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 22565 - - uid: 24619 + pos: 1.5,-2.5 + parent: 2 + - uid: 17590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 22565 - - uid: 24620 + pos: 6.5,-8.5 + parent: 2 + - uid: 17591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 22565 - - uid: 24621 + pos: 14.5,-13.5 + parent: 2 + - uid: 17592 components: - type: Transform - pos: 10.5,6.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24815 - - uid: 24622 + pos: 35.5,-14.5 + parent: 2 + - uid: 17593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 22565 - - uid: 24623 + pos: 32.5,-15.5 + parent: 2 + - uid: 17594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,18.5 - parent: 22565 - - uid: 24624 + pos: 41.5,-17.5 + parent: 2 + - uid: 17595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 22565 - - uid: 24625 + pos: 40.5,-1.5 + parent: 2 + - uid: 17596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 22565 - - uid: 24626 + pos: 44.5,-4.5 + parent: 2 + - uid: 17597 components: - type: Transform - pos: 2.5,6.5 - parent: 22565 - - uid: 24627 + pos: 40.5,-21.5 + parent: 2 + - uid: 17598 components: - type: Transform - pos: 10.5,12.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24822 - - uid: 24628 + pos: 37.5,-25.5 + parent: 2 + - uid: 23855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 22565 - - uid: 24629 + pos: 6.5,-9.5 + parent: 23711 + - uid: 23856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 22565 - - uid: 24630 + pos: 0.5,-9.5 + parent: 23711 + - uid: 24212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 22565 - - uid: 24631 + pos: 1.5,2.5 + parent: 23919 + - uid: 24213 components: - type: Transform - pos: -4.5,10.5 - parent: 22565 - - uid: 24632 + pos: 1.5,-0.5 + parent: 23919 + - uid: 24214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 22565 - - uid: 24633 + pos: 1.5,-7.5 + parent: 23919 + - uid: 24215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 22565 - - uid: 24634 + pos: 3.5,-5.5 + parent: 23919 + - uid: 24216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,22.5 - parent: 22565 - - uid: 24635 + pos: 6.5,-10.5 + parent: 23919 + - uid: 26641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 22565 - - uid: 24636 + pos: -21.5,-1.5 + parent: 24450 + - uid: 26642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,24.5 - parent: 22565 - - uid: 24637 + pos: -16.5,-4.5 + parent: 24450 + - uid: 26643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 22565 - - uid: 24638 + pos: -7.5,-4.5 + parent: 24450 + - uid: 26644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 - parent: 22565 - - uid: 24639 + pos: -2.5,-1.5 + parent: 24450 + - uid: 26645 components: - type: Transform - pos: -25.5,8.5 - parent: 22565 - - uid: 24640 + pos: -26.5,-1.5 + parent: 24450 + - uid: 26646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 22565 - - uid: 24641 + pos: 2.5,-1.5 + parent: 24450 + - uid: 26647 components: - type: Transform - pos: -19.5,10.5 - parent: 22565 - - uid: 24642 + pos: -24.5,22.5 + parent: 24450 + - uid: 26648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,25.5 - parent: 22565 - - uid: 24643 + pos: -19.5,22.5 + parent: 24450 + - uid: 26649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 22565 - - uid: 24644 + pos: 8.5,4.5 + parent: 24450 + - uid: 26650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,18.5 - parent: 22565 - - uid: 24645 + pos: 8.5,8.5 + parent: 24450 + - uid: 26651 components: - type: Transform - pos: -34.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24818 - - uid: 24646 + pos: -32.5,4.5 + parent: 24450 + - uid: 26652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,1.5 - parent: 22565 - - uid: 25550 + pos: -32.5,8.5 + parent: 24450 + - uid: 26653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 18153 - - uid: 25551 + pos: -32.5,12.5 + parent: 24450 + - uid: 26654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 18153 - - uid: 25552 + pos: 8.5,12.5 + parent: 24450 + - uid: 26655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 18153 - - uid: 25553 + pos: -4.5,22.5 + parent: 24450 + - uid: 26656 components: - type: Transform - pos: 1.5,-4.5 - parent: 18153 - - uid: 25554 + pos: 0.5,22.5 + parent: 24450 + - uid: 26657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 18153 - - uid: 25555 + pos: 0.5,16.5 + parent: 24450 + - uid: 26658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 18153 - - uid: 25556 + pos: -4.5,16.5 + parent: 24450 + - uid: 26659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 18153 - - uid: 25619 + pos: -19.5,16.5 + parent: 24450 + - uid: 26660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 89 - - uid: 25620 + pos: -24.5,16.5 + parent: 24450 + - uid: 27838 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-27.5 - parent: 89 - - uid: 25847 + pos: -4.5,-7.5 + parent: 27260 + - uid: 27839 components: - type: Transform - pos: -26.5,18.5 - parent: 89 -- proto: PoweredlightExterior - entities: - - uid: 10045 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 27260 + - uid: 27840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21610 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 27260 + - uid: 27841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6243 -- proto: PoweredLightPostSmall - entities: - - uid: 15031 + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 27260 + - uid: 27842 components: - type: Transform - pos: -28.5,45.5 - parent: 89 - - uid: 17005 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 27260 + - uid: 27843 components: - type: Transform - pos: -31.5,45.5 - parent: 89 - - uid: 17133 + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 27260 + - uid: 27844 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,39.5 - parent: 89 - - type: Timer - - uid: 17134 + pos: 1.5,-10.5 + parent: 27260 + - uid: 27845 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,39.5 - parent: 89 - - type: Timer - - uid: 20524 + pos: -1.5,-12.5 + parent: 27260 +- proto: RandomSnacks + entities: + - uid: 17599 components: - type: Transform - pos: -131.5,-15.5 - parent: 89 - - uid: 20527 + pos: -70.5,5.5 + parent: 2 + - uid: 17600 components: - type: Transform - pos: -126.5,-15.5 - parent: 89 -- proto: PoweredlightSodium + pos: -84.5,4.5 + parent: 2 +- proto: RandomSoap entities: - - uid: 10054 + - uid: 17601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18288 + pos: -38.5,-15.5 + parent: 2 + - uid: 17602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18289 + pos: -37.5,33.5 + parent: 2 + - uid: 17603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18290 + pos: -22.5,33.5 + parent: 2 + - uid: 17604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18291 + pos: 40.5,17.5 + parent: 2 + - uid: 17605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18292 + pos: -38.5,8.5 + parent: 2 + - uid: 17606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 24647 + pos: 47.5,-33.5 + parent: 2 + - uid: 17607 components: - type: Transform - pos: -16.5,-21.5 - parent: 22565 - - uid: 24648 + pos: -96.5,7.5 + parent: 2 + - uid: 17608 components: - type: Transform - pos: -10.5,-21.5 - parent: 22565 -- proto: PoweredSmallLight + pos: -96.5,8.5 + parent: 2 +- proto: RandomSpawner entities: - - uid: 624 + - uid: 17609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 798 + pos: 47.5,19.5 + parent: 2 + - uid: 17610 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 799 + pos: 45.5,23.5 + parent: 2 + - uid: 17611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 973 + pos: 45.5,22.5 + parent: 2 + - uid: 17612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1064 + pos: 46.5,23.5 + parent: 2 + - uid: 17613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 89 - - uid: 1606 + pos: 46.5,19.5 + parent: 2 + - uid: 17614 components: - type: Transform - pos: -1.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1610 + pos: 48.5,19.5 + parent: 2 + - uid: 17615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1632 + pos: 48.5,20.5 + parent: 2 + - uid: 17616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1633 + pos: 47.5,20.5 + parent: 2 + - uid: 17617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2394 + pos: 48.5,23.5 + parent: 2 + - uid: 17618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2481 + pos: 49.5,22.5 + parent: 2 + - uid: 17619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2505 + pos: -61.5,14.5 + parent: 2 + - uid: 17620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 3263 + pos: -37.5,3.5 + parent: 2 + - uid: 17621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,20.5 - parent: 89 - - uid: 5119 + pos: -89.5,27.5 + parent: 2 + - uid: 17622 components: - type: Transform - pos: 3.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DeviceLinkSink - links: - - 21626 - - uid: 6005 + pos: -88.5,26.5 + parent: 2 + - uid: 17623 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6006 + pos: -67.5,9.5 + parent: 2 + - uid: 17624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6007 + pos: -63.5,7.5 + parent: 2 + - uid: 17625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6009 + pos: -31.5,3.5 + parent: 2 + - uid: 17626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6010 + pos: -29.5,17.5 + parent: 2 + - uid: 17627 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7097 + pos: -65.5,10.5 + parent: 2 + - uid: 17628 components: - type: Transform - pos: 7.5,27.5 - parent: 89 - - uid: 7140 + pos: -67.5,14.5 + parent: 2 + - uid: 17629 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 7705 + pos: -58.5,13.5 + parent: 2 + - uid: 17630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7706 + pos: -53.5,14.5 + parent: 2 + - uid: 17631 components: - type: Transform - pos: -96.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7707 + pos: -52.5,13.5 + parent: 2 + - uid: 17632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8205 + pos: -70.5,3.5 + parent: 2 + - uid: 17633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 89 - - uid: 9800 + pos: -77.5,3.5 + parent: 2 + - uid: 17634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9811 + pos: -64.5,-0.5 + parent: 2 + - uid: 17635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10033 + pos: -56.5,4.5 + parent: 2 + - uid: 17636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10034 + pos: -54.5,-0.5 + parent: 2 + - uid: 17637 components: - type: Transform - pos: -37.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10035 + pos: -70.5,-1.5 + parent: 2 + - uid: 17638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10424 + pos: -23.5,1.5 + parent: 2 + - uid: 17639 components: - type: Transform - pos: 15.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10782 + pos: -26.5,2.5 + parent: 2 + - uid: 17640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 89 - - uid: 11052 + pos: -30.5,10.5 + parent: 2 + - uid: 17641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,32.5 - parent: 89 - - uid: 11059 + pos: 4.5,26.5 + parent: 2 + - uid: 17642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 89 - - uid: 12957 + pos: -85.5,29.5 + parent: 2 + - uid: 17643 components: - type: Transform - pos: -116.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12958 + pos: -16.5,15.5 + parent: 2 + - uid: 17644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12959 + pos: -21.5,21.5 + parent: 2 + - uid: 17645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12960 + pos: -80.5,9.5 + parent: 2 + - uid: 17646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12961 + pos: -87.5,9.5 + parent: 2 + - uid: 17647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12981 + pos: -72.5,17.5 + parent: 2 + - uid: 17648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12982 + pos: -72.5,13.5 + parent: 2 + - uid: 17649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12986 + pos: -64.5,18.5 + parent: 2 + - uid: 17650 components: - type: Transform - pos: -76.5,13.5 - parent: 89 - - uid: 13114 + pos: -57.5,16.5 + parent: 2 + - uid: 17651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13987 + pos: -47.5,15.5 + parent: 2 + - uid: 17652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13988 + pos: -43.5,18.5 + parent: 2 + - uid: 17653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13989 + pos: -36.5,16.5 + parent: 2 + - uid: 17654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13990 + pos: -86.5,3.5 + parent: 2 + - uid: 17655 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14015 + pos: 9.5,36.5 + parent: 2 + - uid: 17656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14016 + pos: -83.5,24.5 + parent: 2 + - uid: 17657 components: - type: Transform - pos: 27.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14017 + pos: -61.5,33.5 + parent: 2 + - uid: 17658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14843 + pos: -65.5,41.5 + parent: 2 + - uid: 17659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15093 + pos: -60.5,24.5 + parent: 2 + - uid: 17660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,30.5 - parent: 89 - - uid: 15245 + pos: -85.5,42.5 + parent: 2 + - uid: 17661 components: - type: Transform - pos: 23.5,32.5 - parent: 89 - - uid: 15247 + pos: -88.5,16.5 + parent: 2 + - uid: 17662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,30.5 - parent: 89 - - uid: 15254 + pos: -97.5,21.5 + parent: 2 + - uid: 17663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 89 - - uid: 15482 + pos: -102.5,13.5 + parent: 2 + - uid: 17664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,24.5 - parent: 89 - - uid: 16492 + pos: -120.5,-22.5 + parent: 2 + - uid: 17665 components: - type: Transform - pos: 17.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16497 + pos: 48.5,18.5 + parent: 2 + - uid: 17666 components: - type: Transform - pos: 21.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16506 + pos: 14.5,26.5 + parent: 2 + - uid: 17667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 89 - - uid: 16568 + pos: 25.5,23.5 + parent: 2 + - uid: 17668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16583 + pos: 7.5,36.5 + parent: 2 + - uid: 17669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16584 + pos: -40.5,0.5 + parent: 2 + - uid: 17670 components: - type: Transform - pos: -20.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16585 + pos: -51.5,4.5 + parent: 2 + - uid: 17671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16594 + pos: -39.5,-7.5 + parent: 2 + - uid: 17672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16595 + pos: -30.5,-13.5 + parent: 2 + - uid: 17673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16597 + pos: -20.5,-10.5 + parent: 2 + - uid: 17674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16599 + pos: -15.5,-12.5 + parent: 2 + - uid: 17675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16600 + pos: -6.5,-11.5 + parent: 2 + - uid: 17676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16601 + pos: -1.5,-16.5 + parent: 2 + - uid: 17677 components: - type: Transform - pos: -20.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16603 + pos: 0.5,-1.5 + parent: 2 + - uid: 17678 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16605 + pos: -9.5,2.5 + parent: 2 + - uid: 17679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16606 + pos: -55.5,20.5 + parent: 2 + - uid: 17680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16607 + pos: -64.5,26.5 + parent: 2 + - uid: 17681 components: - type: Transform - pos: 2.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16608 + pos: -67.5,29.5 + parent: 2 + - uid: 17682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16610 + pos: -62.5,39.5 + parent: 2 + - uid: 17683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16611 + pos: 18.5,1.5 + parent: 2 + - uid: 17684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16612 + pos: -17.5,1.5 + parent: 2 + - uid: 17685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16614 + pos: 9.5,3.5 + parent: 2 + - uid: 17686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,39.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16615 + pos: 4.5,2.5 + parent: 2 + - uid: 17687 components: - type: Transform - pos: 2.5,42.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16616 + pos: 25.5,2.5 + parent: 2 + - uid: 17688 components: - type: Transform - pos: -1.5,46.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16617 + pos: 26.5,3.5 + parent: 2 + - uid: 17689 components: - type: Transform - pos: -5.5,46.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16618 + pos: 32.5,1.5 + parent: 2 + - uid: 17690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16624 + pos: 35.5,5.5 + parent: 2 + - uid: 17691 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16625 + pos: 38.5,8.5 + parent: 2 + - uid: 17692 components: - type: Transform - pos: 10.5,-14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16626 + pos: 40.5,1.5 + parent: 2 + - uid: 17693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16627 + pos: -74.5,10.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 17695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16628 + pos: -82.5,16.5 + parent: 2 + - uid: 17696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16630 + pos: -80.5,20.5 + parent: 2 + - uid: 17697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16631 + pos: -84.5,23.5 + parent: 2 + - uid: 17698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16632 + pos: -84.5,36.5 + parent: 2 + - uid: 17699 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16633 + pos: -24.5,-5.5 + parent: 2 + - uid: 17700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16634 + pos: -20.5,-8.5 + parent: 2 + - uid: 17701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16635 + pos: -18.5,-2.5 + parent: 2 + - uid: 17702 components: - type: Transform - pos: -76.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16636 + pos: 46.5,20.5 + parent: 2 + - uid: 17703 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16638 + pos: 46.5,22.5 + parent: 2 + - uid: 17704 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16639 + pos: 49.5,23.5 + parent: 2 + - uid: 17705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,21.5 - parent: 89 - - uid: 16641 + pos: 47.5,23.5 + parent: 2 + - uid: 17706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16642 + pos: -17.5,17.5 + parent: 2 + - uid: 26661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -111.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16648 + pos: -22.5,22.5 + parent: 24450 + - uid: 26662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16649 + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 24450 + - uid: 26663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16719 + pos: -20.5,20.5 + parent: 24450 +- proto: RandomSpawner100 + entities: + - uid: 17707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17030 + pos: -92.5,26.5 + parent: 2 + - uid: 26664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17032 + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 24450 + - uid: 26665 components: - type: Transform - pos: -13.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17033 + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 24450 + - uid: 26666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17036 + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 24450 + - uid: 26667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17041 + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 24450 + - uid: 26668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17043 + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 24450 + - uid: 26669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17105 + pos: -31.5,11.5 + parent: 24450 + - uid: 26670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 89 - - uid: 17106 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 24450 + - uid: 26671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-33.5 - parent: 89 - - uid: 17107 + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 24450 + - uid: 26672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-33.5 - parent: 89 - - uid: 17213 + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 24450 + - uid: 26673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-33.5 - parent: 89 - - uid: 17240 + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 24450 + - uid: 26674 components: - type: Transform - pos: 8.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17241 + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 24450 + - uid: 26675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17617 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 24450 + - uid: 26676 components: - type: Transform - pos: 25.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17628 + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 24450 + - uid: 26677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 89 - - uid: 18365 + pos: -23.5,22.5 + parent: 24450 + - uid: 26678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19334 + rot: -1.5707963267948966 rad + pos: -22.5,21.5 + parent: 24450 + - uid: 26679 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 89 - - uid: 19548 + pos: -20.5,23.5 + parent: 24450 + - uid: 26680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19549 + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 24450 +- proto: RandomVending + entities: + - uid: 17708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19551 + pos: -24.5,-17.5 + parent: 2 + - uid: 17709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19782 + pos: -67.5,23.5 + parent: 2 + - uid: 17710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19841 + pos: -33.5,12.5 + parent: 2 + - uid: 17711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,23.5 - parent: 89 - - type: Timer - - uid: 19962 + pos: -33.5,13.5 + parent: 2 + - uid: 17712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,42.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19977 + pos: -41.5,-9.5 + parent: 2 + - uid: 17713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20030 + pos: -24.5,-10.5 + parent: 2 + - uid: 17714 components: - type: Transform - pos: 23.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20741 + pos: -27.5,5.5 + parent: 2 + - uid: 17715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 89 - - uid: 20876 + pos: -23.5,5.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 17716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 89 - - uid: 20877 + pos: -5.5,-20.5 + parent: 2 + - uid: 17717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 - parent: 89 - - uid: 20878 + pos: -86.5,34.5 + parent: 2 + - uid: 17718 components: - type: Transform - pos: 14.5,-15.5 - parent: 89 - - uid: 20931 + pos: -72.5,18.5 + parent: 2 + - uid: 17719 components: - type: Transform - pos: 36.5,27.5 - parent: 89 - - uid: 21014 + pos: -84.5,2.5 + parent: 2 + - uid: 17720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 89 - - uid: 21015 + pos: 1.5,-8.5 + parent: 2 + - uid: 17721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 89 - - uid: 21016 + pos: 52.5,-28.5 + parent: 2 + - uid: 17722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 89 - - uid: 21093 + pos: -85.5,19.5 + parent: 2 + - uid: 17723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,19.5 - parent: 89 - - uid: 21359 + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 + - uid: 17724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-23.5 - parent: 89 - - uid: 21371 + pos: -112.5,5.5 + parent: 2 + - uid: 17725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-26.5 - parent: 89 - - uid: 21379 + pos: -67.5,35.5 + parent: 2 + - uid: 17726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 89 - - uid: 21571 + pos: -67.5,45.5 + parent: 2 + - uid: 17727 components: - type: Transform - pos: -10.5,24.5 - parent: 89 - - uid: 21733 + pos: -62.5,28.5 + parent: 2 + - uid: 17728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 21627 - - uid: 21734 + pos: -62.5,36.5 + parent: 2 + - uid: 17729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 21627 - - uid: 21735 + pos: -57.5,5.5 + parent: 2 + - uid: 17730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 21627 - - uid: 21787 + pos: -4.5,14.5 + parent: 2 + - uid: 17731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 25393 - - uid: 24649 + pos: -98.5,2.5 + parent: 2 + - uid: 17732 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 24650 + pos: -60.5,26.5 + parent: 2 + - uid: 17733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-19.5 - parent: 22565 - - uid: 24651 + pos: -76.5,5.5 + parent: 2 + - uid: 17734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 22565 - - uid: 24652 + pos: -75.5,5.5 + parent: 2 + - uid: 17735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 22565 - - uid: 24653 + pos: 29.5,-6.5 + parent: 2 + - uid: 17736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-17.5 - parent: 22565 - - uid: 24654 + pos: -37.5,5.5 + parent: 2 + - uid: 17737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 22565 - - uid: 24655 + pos: 37.5,5.5 + parent: 2 + - uid: 17738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 22565 - - uid: 24656 + pos: -53.5,12.5 + parent: 2 + - uid: 17739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 22565 - - uid: 24657 + pos: -120.5,-15.5 + parent: 2 + - uid: 17740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 22565 - - uid: 24658 + pos: -26.5,-10.5 + parent: 2 + - uid: 17741 components: - type: Transform - pos: -13.5,-5.5 - parent: 22565 - - uid: 24659 + pos: -27.5,1.5 + parent: 2 + - uid: 17742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 22565 - - uid: 24660 + pos: 52.5,-4.5 + parent: 2 + - uid: 17743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 22565 - - uid: 24661 + pos: 60.5,-4.5 + parent: 2 + - uid: 17744 components: - type: Transform - pos: -10.5,-5.5 - parent: 22565 - - uid: 24662 + pos: 50.5,9.5 + parent: 2 + - uid: 17745 components: - type: Transform - pos: -35.5,3.5 - parent: 22565 - - uid: 24663 + pos: 25.5,24.5 + parent: 2 + - uid: 17746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 22565 - - uid: 24664 + pos: -54.5,-5.5 + parent: 2 + - uid: 26681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 22565 - - uid: 24665 + pos: -9.5,-21.5 + parent: 24450 + - uid: 27846 components: - type: Transform - pos: -27.5,11.5 - parent: 22565 - - uid: 25633 + pos: -1.5,-4.5 + parent: 27260 +- proto: RandomVendingSnacks + entities: + - uid: 17747 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 25634 + pos: -6.5,-20.5 + parent: 2 + - uid: 17748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-16.5 - parent: 89 - - uid: 25635 + pos: -73.5,18.5 + parent: 2 + - uid: 17749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-16.5 - parent: 89 - - uid: 25637 + pos: 1.5,-7.5 + parent: 2 + - uid: 17750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 89 - - uid: 25638 + pos: -84.5,3.5 + parent: 2 + - uid: 17751 components: - type: Transform - pos: -123.5,5.5 - parent: 89 - - uid: 25639 + pos: -86.5,35.5 + parent: 2 + - uid: 17752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-20.5 - parent: 89 - - uid: 25641 + pos: -84.5,19.5 + parent: 2 + - uid: 17753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,2.5 - parent: 89 - - uid: 25642 + pos: 53.5,-28.5 + parent: 2 + - uid: 17754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-4.5 - parent: 89 - - uid: 25668 + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - uid: 17755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 89 - - uid: 25669 + pos: -54.5,5.5 + parent: 2 + - uid: 17756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 89 - - uid: 25670 + pos: -55.5,12.5 + parent: 2 + - uid: 17757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 89 - - uid: 25671 + pos: -61.5,41.5 + parent: 2 + - uid: 17758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 89 -- proto: PoweredSmallLightEmpty - entities: - - uid: 14144 + pos: -62.5,41.5 + parent: 2 + - uid: 17759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 89 -- proto: PrinterDoc - entities: - - uid: 720 + pos: -56.5,28.5 + parent: 2 + - uid: 17760 components: - type: Transform - pos: -49.5,11.5 - parent: 89 - - uid: 10223 + pos: -71.5,5.5 + parent: 2 + - uid: 17761 components: - type: Transform - pos: 44.5,7.5 - parent: 89 - - uid: 14530 + pos: -72.5,5.5 + parent: 2 + - uid: 17762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-6.5 - parent: 89 -- proto: Protolathe - entities: - - uid: 38 + pos: -6.5,5.5 + parent: 2 + - uid: 17763 components: - type: Transform - pos: -16.5,-19.5 - parent: 89 - - uid: 6908 + pos: -111.5,5.5 + parent: 2 + - uid: 17764 components: - type: Transform - pos: -100.5,-5.5 - parent: 89 - - uid: 24666 + pos: -120.5,-12.5 + parent: 2 + - uid: 17765 components: - type: Transform - pos: 3.5,1.5 - parent: 22565 - - uid: 24667 + pos: -97.5,2.5 + parent: 2 + - uid: 17766 components: - type: Transform - pos: -27.5,1.5 - parent: 22565 -- proto: PuddleEgg - entities: - - uid: 14766 + pos: -59.5,26.5 + parent: 2 + - uid: 17767 components: - type: Transform - pos: -23.5,32.5 - parent: 89 -- proto: PuddleSmear - entities: - - uid: 10320 + pos: -36.5,5.5 + parent: 2 + - uid: 17768 components: - type: Transform - pos: -40.5,27.5 - parent: 89 -- proto: Rack - entities: - - uid: 73 + pos: 29.5,-5.5 + parent: 2 + - uid: 17769 components: - type: Transform - pos: -24.5,-15.5 - parent: 89 - - uid: 101 + pos: 37.5,6.5 + parent: 2 + - uid: 17770 components: - type: Transform - pos: -43.5,-3.5 - parent: 89 - - uid: 162 + pos: -25.5,-10.5 + parent: 2 + - uid: 17771 components: - type: Transform - pos: 3.5,-27.5 - parent: 89 - - uid: 163 + pos: -27.5,2.5 + parent: 2 + - uid: 17772 components: - type: Transform - pos: 4.5,-27.5 - parent: 89 - - uid: 1047 + pos: 52.5,-2.5 + parent: 2 + - uid: 17773 components: - type: Transform - pos: 44.5,-7.5 - parent: 89 - - uid: 1054 + pos: 61.5,-4.5 + parent: 2 + - uid: 17774 components: - type: Transform - pos: 44.5,-8.5 - parent: 89 - - uid: 1055 + pos: 50.5,10.5 + parent: 2 + - uid: 17775 components: - type: Transform - pos: 44.5,-5.5 - parent: 89 - - uid: 1062 + pos: 23.5,24.5 + parent: 2 + - uid: 17776 components: - type: Transform - pos: 42.5,-4.5 - parent: 89 - - uid: 1117 + pos: -56.5,-5.5 + parent: 2 + - uid: 26682 components: - type: Transform - pos: 44.5,-6.5 - parent: 89 - - uid: 5247 + pos: -17.5,-21.5 + parent: 24450 + - uid: 26683 components: - type: Transform - pos: 40.5,-2.5 - parent: 89 - - uid: 5305 + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 24450 + - uid: 27847 components: - type: Transform - pos: -46.5,-10.5 - parent: 89 - - uid: 6543 + pos: 2.5,-4.5 + parent: 27260 +- proto: RCD + entities: + - uid: 17777 components: - type: Transform - pos: -33.5,-1.5 - parent: 89 - - uid: 6988 + rot: 3.141592653589793 rad + pos: -89.64105,-11.3105755 + parent: 2 + - uid: 17778 components: - type: Transform - pos: -105.5,-7.5 - parent: 89 - - uid: 6989 + pos: -103.46396,11.808571 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 17779 components: - type: Transform - pos: -104.5,-7.5 - parent: 89 - - uid: 6990 + rot: 3.141592653589793 rad + pos: -89.75043,-11.5918255 + parent: 2 + - uid: 17780 components: - type: Transform - pos: -103.5,-7.5 - parent: 89 - - uid: 6991 + rot: 3.141592653589793 rad + pos: -89.34418,-11.7324505 + parent: 2 + - uid: 17781 components: - type: Transform - pos: -105.5,-10.5 - parent: 89 - - uid: 6992 + pos: -103.72958,11.464821 + parent: 2 + - uid: 17782 components: - type: Transform - pos: -104.5,-10.5 - parent: 89 - - uid: 6993 + pos: -103.24521,11.464821 + parent: 2 +- proto: RCDEmpty + entities: + - uid: 17783 components: + - type: MetaData + name: плазменный резак - type: Transform - pos: -103.5,-10.5 - parent: 89 - - uid: 6994 + pos: -130.23235,21.319153 + parent: 2 +- proto: Recycler + entities: + - uid: 17784 components: - type: Transform - pos: -102.5,-7.5 - parent: 89 - - uid: 6995 + rot: 1.5707963267948966 rad + pos: -96.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 26684 components: - type: Transform - pos: -102.5,-10.5 - parent: 89 - - uid: 6998 + pos: -25.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 17785 components: - type: Transform - pos: -29.5,-15.5 - parent: 89 - - uid: 6999 + pos: -120.5,-19.5 + parent: 2 + - uid: 17786 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - uid: 7467 + pos: -110.5,-18.5 + parent: 2 + - uid: 17787 components: - type: Transform - pos: 41.5,-4.5 - parent: 89 - - uid: 8192 + pos: -120.5,-17.5 + parent: 2 + - uid: 17788 components: - type: Transform - pos: 17.5,25.5 - parent: 89 - - uid: 8196 + pos: -110.5,-17.5 + parent: 2 + - uid: 17789 components: - type: Transform - pos: 16.5,25.5 - parent: 89 - - uid: 8394 + pos: -110.5,-16.5 + parent: 2 + - uid: 17790 components: - type: Transform - pos: -41.5,10.5 - parent: 89 - - uid: 9259 + pos: 12.5,35.5 + parent: 2 + - uid: 17791 components: - type: Transform - pos: 28.5,7.5 - parent: 89 - - uid: 9260 + rot: 3.141592653589793 rad + pos: -90.5,-22.5 + parent: 2 + - uid: 17792 components: - type: Transform - pos: 27.5,7.5 - parent: 89 - - uid: 9261 + rot: 3.141592653589793 rad + pos: -100.5,-22.5 + parent: 2 + - uid: 17793 components: - type: Transform - pos: 26.5,7.5 - parent: 89 - - uid: 9262 + rot: 3.141592653589793 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 17794 components: - type: Transform - pos: 28.5,9.5 - parent: 89 - - uid: 9263 + rot: 3.141592653589793 rad + pos: -96.5,-22.5 + parent: 2 + - uid: 17795 components: - type: Transform - pos: 27.5,9.5 - parent: 89 - - uid: 9264 + rot: 3.141592653589793 rad + pos: -94.5,-22.5 + parent: 2 + - uid: 17796 components: - type: Transform - pos: 26.5,9.5 - parent: 89 - - uid: 9265 + rot: 3.141592653589793 rad + pos: -92.5,-22.5 + parent: 2 + - uid: 17797 components: - type: Transform - pos: 28.5,5.5 - parent: 89 - - uid: 9266 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 17798 components: - type: Transform - pos: 27.5,5.5 - parent: 89 - - uid: 9267 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 17799 components: - type: Transform - pos: 26.5,5.5 - parent: 89 - - uid: 9287 + rot: -1.5707963267948966 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 17800 components: - type: Transform - pos: 25.5,7.5 - parent: 89 - - uid: 9288 + rot: -1.5707963267948966 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 17801 components: - type: Transform - pos: 25.5,9.5 - parent: 89 - - uid: 10458 + rot: -1.5707963267948966 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 17802 components: - type: Transform - pos: 22.5,11.5 - parent: 89 - - uid: 14605 + rot: -1.5707963267948966 rad + pos: -78.5,-23.5 + parent: 2 + - uid: 17803 components: - type: Transform - pos: -98.5,20.5 - parent: 89 - - uid: 14606 + rot: -1.5707963267948966 rad + pos: -78.5,-24.5 + parent: 2 + - uid: 17804 components: - type: Transform - pos: -97.5,20.5 - parent: 89 - - uid: 14693 + rot: -1.5707963267948966 rad + pos: -78.5,-25.5 + parent: 2 + - uid: 17805 components: - type: Transform - pos: -82.5,5.5 - parent: 89 - - uid: 14694 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 + parent: 2 + - uid: 17806 components: - type: Transform - pos: -81.5,5.5 - parent: 89 - - uid: 14695 + rot: -1.5707963267948966 rad + pos: -80.5,-26.5 + parent: 2 + - uid: 17807 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - uid: 14704 + rot: -1.5707963267948966 rad + pos: -81.5,-26.5 + parent: 2 + - uid: 17808 components: - type: Transform - pos: -78.5,-6.5 - parent: 89 - - uid: 14724 + pos: -128.5,3.5 + parent: 2 + - uid: 17809 components: - type: Transform - pos: 8.5,-21.5 - parent: 89 - - uid: 14771 + pos: -128.5,4.5 + parent: 2 + - uid: 17810 components: - type: Transform - pos: -68.5,21.5 - parent: 89 - - uid: 14772 + pos: 12.5,41.5 + parent: 2 + - uid: 17811 components: - type: Transform - pos: -69.5,21.5 - parent: 89 - - uid: 14773 + pos: 7.5,41.5 + parent: 2 + - uid: 17812 components: - type: Transform - pos: -72.5,21.5 - parent: 89 - - uid: 14774 + pos: 7.5,42.5 + parent: 2 + - uid: 17813 components: - type: Transform - pos: -73.5,21.5 - parent: 89 - - uid: 14781 + pos: 12.5,42.5 + parent: 2 + - uid: 17814 components: - type: Transform - pos: -51.5,32.5 - parent: 89 - - uid: 14803 + pos: 11.5,43.5 + parent: 2 + - uid: 17815 components: - type: Transform - pos: -44.5,14.5 - parent: 89 - - uid: 14804 + pos: 11.5,36.5 + parent: 2 + - uid: 17816 components: - type: Transform - pos: -44.5,13.5 - parent: 89 - - uid: 14819 + pos: 12.5,38.5 + parent: 2 + - uid: 17817 components: - type: Transform - pos: -38.5,24.5 - parent: 89 - - uid: 14820 + pos: 8.5,43.5 + parent: 2 + - uid: 17818 components: - type: Transform - pos: -38.5,23.5 - parent: 89 - - uid: 15053 + pos: 13.5,38.5 + parent: 2 + - uid: 17819 components: - type: Transform - pos: -18.5,12.5 - parent: 89 - - uid: 15055 + pos: 7.5,35.5 + parent: 2 + - uid: 17820 components: - type: Transform - pos: -16.5,19.5 - parent: 89 - - uid: 15481 + pos: 6.5,38.5 + parent: 2 + - uid: 17821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 89 - - uid: 15550 + pos: 11.5,37.5 + parent: 2 + - uid: 17822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 89 - - uid: 15568 + pos: 8.5,36.5 + parent: 2 + - uid: 17823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 89 - - uid: 15913 + pos: 8.5,37.5 + parent: 2 + - uid: 17824 components: - type: Transform - pos: 16.5,23.5 - parent: 89 - - uid: 16977 + pos: 7.5,38.5 + parent: 2 + - uid: 17825 components: - type: Transform - pos: -20.5,-27.5 - parent: 89 - - uid: 17828 + pos: 6.5,31.5 + parent: 2 + - uid: 17826 components: - type: Transform - pos: -109.5,-19.5 - parent: 89 - - uid: 19603 + pos: -120.5,-18.5 + parent: 2 + - uid: 17827 components: - type: Transform - pos: -26.5,-25.5 - parent: 89 - - uid: 19604 + pos: -116.5,-19.5 + parent: 2 + - uid: 17828 components: - type: Transform - pos: -26.5,-24.5 - parent: 89 - - uid: 19605 + pos: -116.5,-18.5 + parent: 2 + - uid: 17829 components: - type: Transform - pos: -26.5,-23.5 - parent: 89 - - uid: 20363 + pos: -116.5,-17.5 + parent: 2 + - uid: 17830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,-11.5 - parent: 89 - - uid: 21117 + pos: -113.5,-11.5 + parent: 2 + - uid: 17831 components: - type: Transform - pos: 48.5,17.5 - parent: 89 - - uid: 21811 + pos: -135.5,-6.5 + parent: 2 + - uid: 17832 components: - type: Transform - pos: 50.5,-18.5 - parent: 89 - - uid: 21821 + pos: -135.5,-8.5 + parent: 2 + - uid: 17833 components: - type: Transform - pos: 51.5,-18.5 - parent: 89 -- proto: RadAutoInjector - entities: - - uid: 22657 + pos: -135.5,-7.5 + parent: 2 + - uid: 17834 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RadiationCollector - entities: - - uid: 6941 + rot: -1.5707963267948966 rad + pos: -116.5,-13.5 + parent: 2 + - uid: 17835 components: - type: Transform - pos: -135.5,-12.5 - parent: 89 - - uid: 8473 + pos: -116.5,-12.5 + parent: 2 + - uid: 17836 components: - type: Transform - pos: -127.5,1.5 - parent: 89 - - uid: 8474 + pos: -114.5,-11.5 + parent: 2 + - uid: 17837 components: - type: Transform - pos: -126.5,1.5 - parent: 89 - - uid: 8476 + rot: -1.5707963267948966 rad + pos: -135.5,-0.5 + parent: 2 + - uid: 17838 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 21884 + pos: -135.5,-1.5 + parent: 2 + - uid: 26685 components: - type: Transform - pos: -135.5,-2.5 - parent: 89 - - uid: 21918 + pos: -8.5,-23.5 + parent: 24450 + - uid: 26686 components: - type: Transform - pos: -135.5,-3.5 - parent: 89 - - uid: 21963 + pos: -8.5,-24.5 + parent: 24450 + - uid: 26687 components: - type: Transform - pos: -135.5,-4.5 - parent: 89 - - uid: 21988 + pos: -18.5,-23.5 + parent: 24450 + - uid: 26688 components: - type: Transform - pos: -135.5,-11.5 - parent: 89 - - uid: 21990 + pos: -18.5,-24.5 + parent: 24450 + - uid: 26689 components: - type: Transform - pos: -135.5,-10.5 - parent: 89 -- proto: RadiationCollectorNoTank - entities: - - uid: 14148 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 24450 + - uid: 26690 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 14225 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 24450 + - uid: 26691 components: - type: Transform - pos: -125.5,1.5 - parent: 89 - - uid: 14269 + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 24450 + - uid: 26692 components: - type: Transform - pos: -127.5,6.5 - parent: 89 -- proto: RadioHandheld - entities: - - uid: 5353 + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 24450 + - uid: 26693 components: - type: Transform - pos: 25.533394,-3.3927932 - parent: 89 - - uid: 21156 + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 24450 +- proto: ReinforcedWindow + entities: + - uid: 17839 components: - type: Transform - pos: 48.5,17.5 - parent: 89 -- proto: RadioJammer - entities: - - uid: 21092 + pos: -126.5,12.5 + parent: 2 + - uid: 17840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.591637,39.734406 - parent: 89 -- proto: Railing - entities: - - uid: 41 + pos: -59.5,6.5 + parent: 2 + - uid: 17841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 89 - - uid: 42 + rot: 3.141592653589793 rad + pos: -89.5,-7.5 + parent: 2 + - uid: 17842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 89 - - uid: 44 + pos: -91.5,-10.5 + parent: 2 + - uid: 17843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 89 - - uid: 179 + pos: 42.5,-19.5 + parent: 2 + - uid: 17844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-18.5 - parent: 89 - - uid: 180 + pos: 6.5,-12.5 + parent: 2 + - uid: 17845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 89 - - uid: 182 + pos: 7.5,-7.5 + parent: 2 + - uid: 17846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 89 - - uid: 183 + pos: 18.5,-11.5 + parent: 2 + - uid: 17847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 89 - - uid: 184 + pos: 11.5,-11.5 + parent: 2 + - uid: 17848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 89 - - uid: 1133 + pos: 35.5,-4.5 + parent: 2 + - uid: 17849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-21.5 - parent: 89 - - uid: 2037 + pos: 32.5,-4.5 + parent: 2 + - uid: 17850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-21.5 - parent: 89 - - uid: 2363 + pos: 41.5,-14.5 + parent: 2 + - uid: 17851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-23.5 - parent: 89 - - uid: 2364 + pos: 25.5,-7.5 + parent: 2 + - uid: 17852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-22.5 - parent: 89 - - uid: 2365 + pos: 24.5,-11.5 + parent: 2 + - uid: 17853 components: - type: Transform - pos: -77.5,-21.5 - parent: 89 - - uid: 2366 + pos: -10.5,-15.5 + parent: 2 + - uid: 17854 components: - type: Transform - pos: -76.5,-21.5 - parent: 89 - - uid: 2835 + pos: -100.5,-6.5 + parent: 2 + - uid: 17855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 89 - - uid: 2836 + pos: -101.5,-6.5 + parent: 2 + - uid: 17856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 89 - - uid: 2837 + pos: -102.5,-6.5 + parent: 2 + - uid: 17857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 - parent: 89 - - uid: 2838 + pos: -103.5,-6.5 + parent: 2 + - uid: 17858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 89 - - uid: 2846 + pos: -103.5,6.5 + parent: 2 + - uid: 17859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 89 - - uid: 3063 + pos: -104.5,6.5 + parent: 2 + - uid: 17860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 89 - - uid: 4295 + pos: -105.5,6.5 + parent: 2 + - uid: 17861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 89 - - uid: 4343 + pos: -106.5,7.5 + parent: 2 + - uid: 17862 components: - type: Transform - pos: -48.5,-20.5 - parent: 89 - - uid: 4344 + pos: -106.5,8.5 + parent: 2 + - uid: 17863 components: - type: Transform - pos: -49.5,-20.5 - parent: 89 - - uid: 4345 + pos: -106.5,9.5 + parent: 2 + - uid: 17864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-19.5 - parent: 89 - - uid: 4346 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 17865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 89 - - uid: 4846 + pos: -9.5,-15.5 + parent: 2 + - uid: 17866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 89 - - uid: 6156 + pos: 3.5,-26.5 + parent: 2 + - uid: 17867 components: - type: Transform - pos: -10.5,-13.5 - parent: 89 - - uid: 6157 + pos: 3.5,-23.5 + parent: 2 + - uid: 17868 components: - type: Transform - pos: -9.5,-13.5 - parent: 89 - - uid: 7136 + pos: 1.5,-23.5 + parent: 2 + - uid: 17869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-20.5 - parent: 89 - - uid: 7333 + pos: 41.5,8.5 + parent: 2 + - uid: 17870 components: - type: Transform - pos: -44.5,-21.5 - parent: 89 - - uid: 8005 + rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 17871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 89 - - uid: 8006 + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 17872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,41.5 - parent: 89 - - uid: 8007 + pos: 1.5,-26.5 + parent: 2 + - uid: 17873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 - parent: 89 - - uid: 14954 + pos: 34.5,9.5 + parent: 2 + - uid: 17874 components: - type: Transform - pos: -19.5,22.5 - parent: 89 - - uid: 14955 + pos: 36.5,9.5 + parent: 2 + - uid: 17875 components: - type: Transform - pos: -20.5,22.5 - parent: 89 - - uid: 14958 + pos: 13.5,-11.5 + parent: 2 + - uid: 17876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 89 - - uid: 18201 + pos: -98.5,28.5 + parent: 2 + - uid: 17877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,23.5 - parent: 89 - - uid: 18232 + pos: 1.5,-11.5 + parent: 2 + - uid: 17878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 89 - - uid: 18233 + pos: -97.5,28.5 + parent: 2 + - uid: 17879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 89 - - uid: 18234 + pos: -96.5,28.5 + parent: 2 + - uid: 17880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 89 - - uid: 18236 + pos: 4.5,-9.5 + parent: 2 + - uid: 17881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 89 - - uid: 18239 + pos: 6.5,-10.5 + parent: 2 + - uid: 17882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 89 - - uid: 18242 + pos: 8.5,-7.5 + parent: 2 + - uid: 17883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 89 - - uid: 18243 + pos: 15.5,-4.5 + parent: 2 + - uid: 17884 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 18423 + pos: 14.5,-4.5 + parent: 2 + - uid: 17885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,23.5 - parent: 89 - - uid: 19076 + pos: 13.5,-4.5 + parent: 2 + - uid: 17886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 89 - - uid: 20249 + pos: 12.5,-4.5 + parent: 2 + - uid: 17887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 - parent: 89 - - uid: 20330 + pos: 41.5,-12.5 + parent: 2 + - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 89 - - uid: 20977 + pos: 34.5,-4.5 + parent: 2 + - uid: 17889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,22.5 - parent: 89 -- proto: RailingCorner - entities: - - uid: 2362 + pos: 28.5,-7.5 + parent: 2 + - uid: 17890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-24.5 - parent: 89 - - uid: 4334 + pos: 21.5,-11.5 + parent: 2 + - uid: 17891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 89 - - uid: 4337 + pos: -49.5,-16.5 + parent: 2 + - uid: 17892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-20.5 - parent: 89 - - uid: 4847 + pos: -48.5,-14.5 + parent: 2 + - uid: 17893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 - - uid: 14957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,22.5 - parent: 89 - - uid: 20978 + pos: -19.5,4.5 + parent: 2 + - uid: 17894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,23.5 - parent: 89 -- proto: RailingCornerSmall - entities: - - uid: 181 + pos: -17.5,4.5 + parent: 2 + - uid: 17895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 89 - - uid: 2367 + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - uid: 17896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-21.5 - parent: 89 - - uid: 2848 + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 2 + - uid: 17897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 89 - - uid: 4339 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 17898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-20.5 - parent: 89 - - uid: 7338 + pos: -42.5,0.5 + parent: 2 + - uid: 17899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 - parent: 89 - - uid: 7371 + pos: -43.5,2.5 + parent: 2 + - uid: 17900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-21.5 - parent: 89 - - uid: 16921 + pos: -45.5,2.5 + parent: 2 + - uid: 17901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 89 - - uid: 16983 + pos: -42.5,-1.5 + parent: 2 + - uid: 17902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 - - uid: 18237 + pos: -96.5,4.5 + parent: 2 + - uid: 17903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 89 - - uid: 18240 + pos: -61.5,-3.5 + parent: 2 + - uid: 17904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 89 - - uid: 18241 + pos: -64.5,-3.5 + parent: 2 + - uid: 17905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 89 - - uid: 18245 + pos: -83.5,14.5 + parent: 2 + - uid: 17906 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 -- proto: RandomArtifactSpawner - entities: - - uid: 7613 + rot: 3.141592653589793 rad + pos: -119.5,3.5 + parent: 2 + - uid: 17907 components: - type: Transform - pos: -5.5,-44.5 - parent: 89 -- proto: RandomDrinkBottle - entities: - - uid: 15649 + rot: 3.141592653589793 rad + pos: -119.5,4.5 + parent: 2 + - uid: 17908 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 -- proto: RandomDrinkGlass - entities: - - uid: 11034 + rot: 3.141592653589793 rad + pos: -119.5,2.5 + parent: 2 + - uid: 17909 components: - type: Transform - pos: -61.5,5.5 - parent: 89 - - uid: 15498 + pos: -61.5,7.5 + parent: 2 + - uid: 17910 components: - type: Transform - pos: -89.5,6.5 - parent: 89 - - uid: 17228 + pos: -61.5,9.5 + parent: 2 + - uid: 17911 components: - type: Transform - pos: -25.5,-3.5 - parent: 89 - - uid: 17230 + pos: -1.5,36.5 + parent: 2 + - uid: 17912 components: - type: Transform - pos: -24.5,-3.5 - parent: 89 - - uid: 17231 + rot: 3.141592653589793 rad + pos: -87.5,11.5 + parent: 2 + - uid: 17913 components: - type: Transform - pos: -22.5,-2.5 - parent: 89 -- proto: RandomFoodMeal - entities: - - uid: 16524 + pos: -58.5,20.5 + parent: 2 + - uid: 17914 components: - type: Transform - pos: 18.5,21.5 - parent: 89 - - uid: 17232 + pos: -58.5,22.5 + parent: 2 + - uid: 17915 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 - - uid: 17234 + pos: -59.5,23.5 + parent: 2 + - uid: 17916 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 - - uid: 17236 + pos: -60.5,23.5 + parent: 2 + - uid: 17917 components: - type: Transform - pos: -16.5,-2.5 - parent: 89 - - uid: 21083 + pos: -61.5,23.5 + parent: 2 + - uid: 17918 components: - type: Transform - pos: -23.5,-6.5 - parent: 89 -- proto: RandomFoodSingle - entities: - - uid: 123 + pos: -119.5,6.5 + parent: 2 + - uid: 17919 components: - type: Transform - pos: -43.5,-17.5 - parent: 89 - - uid: 14869 + pos: -11.5,-15.5 + parent: 2 + - uid: 17920 components: - type: Transform - pos: -44.5,21.5 - parent: 89 - - uid: 17235 + rot: 3.141592653589793 rad + pos: -119.5,5.5 + parent: 2 + - uid: 17921 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 - - uid: 17237 + pos: -119.5,1.5 + parent: 2 + - uid: 17922 components: - type: Transform - pos: -16.5,-4.5 - parent: 89 - - uid: 17238 + pos: -114.5,2.5 + parent: 2 + - uid: 17923 components: - type: Transform - pos: -16.5,-1.5 - parent: 89 -- proto: RandomInstruments - entities: - - uid: 142 + pos: -114.5,5.5 + parent: 2 + - uid: 17924 components: - type: Transform - pos: -37.5,-17.5 - parent: 89 - - uid: 4283 + pos: -57.5,31.5 + parent: 2 + - uid: 17925 components: - type: Transform - pos: -31.5,-5.5 - parent: 89 - - uid: 4284 + pos: -56.5,31.5 + parent: 2 + - uid: 17926 components: - type: Transform - pos: -31.5,-6.5 - parent: 89 - - uid: 7429 + pos: -58.5,34.5 + parent: 2 + - uid: 17927 components: - type: Transform - pos: -82.5,2.5 - parent: 89 - - uid: 14847 + rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 17928 components: - type: Transform - pos: -44.5,13.5 - parent: 89 - - uid: 15068 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 17929 components: - type: Transform - pos: -16.5,19.5 - parent: 89 - - uid: 24668 + rot: -1.5707963267948966 rad + pos: -84.5,18.5 + parent: 2 + - uid: 17930 components: - type: Transform - pos: -29.5,3.5 - parent: 22565 -- proto: RandomPainting - entities: - - uid: 15561 + rot: -1.5707963267948966 rad + pos: -85.5,18.5 + parent: 2 + - uid: 17931 components: - type: Transform - pos: 18.5,9.5 - parent: 89 - - uid: 15567 + pos: -21.5,5.5 + parent: 2 + - uid: 17932 components: - type: Transform - pos: 34.5,17.5 - parent: 89 - - uid: 15784 + pos: 1.5,19.5 + parent: 2 + - uid: 17933 components: - type: Transform - pos: 30.5,21.5 - parent: 89 - - uid: 16494 + pos: 1.5,15.5 + parent: 2 + - uid: 17934 components: - type: Transform - pos: 23.5,38.5 - parent: 89 - - uid: 19821 + pos: 1.5,21.5 + parent: 2 + - uid: 17935 components: - type: Transform - pos: 26.5,10.5 - parent: 89 - - uid: 21572 + pos: 1.5,17.5 + parent: 2 + - uid: 17936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 - parent: 89 - - uid: 24669 + rot: 1.5707963267948966 rad + pos: -57.5,43.5 + parent: 2 + - uid: 17937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 22565 - - uid: 24670 + rot: 1.5707963267948966 rad + pos: -57.5,42.5 + parent: 2 + - uid: 17938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 24671 + rot: 1.5707963267948966 rad + pos: -57.5,41.5 + parent: 2 + - uid: 17939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 22565 - - uid: 24672 + pos: 43.5,-19.5 + parent: 2 + - uid: 17940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 22565 -- proto: RandomPosterAny - entities: - - uid: 139 + pos: 41.5,-19.5 + parent: 2 + - uid: 17941 components: - type: Transform - pos: -29.5,-18.5 - parent: 89 - - uid: 14870 + pos: 25.5,33.5 + parent: 2 + - uid: 17942 components: - type: Transform - pos: -52.5,28.5 - parent: 89 - - uid: 14871 + pos: 23.5,33.5 + parent: 2 + - uid: 17943 components: - type: Transform - pos: -38.5,25.5 - parent: 89 -- proto: RandomPosterContraband - entities: - - uid: 143 + pos: 27.5,-11.5 + parent: 2 + - uid: 17944 components: - type: Transform - pos: -45.5,-11.5 - parent: 89 - - uid: 3269 + pos: -90.5,-10.5 + parent: 2 + - uid: 17945 components: - type: Transform - pos: 35.5,-14.5 - parent: 89 - - uid: 3402 + pos: -95.5,-11.5 + parent: 2 + - uid: 17946 components: - type: Transform - pos: -36.5,-2.5 - parent: 89 - - uid: 14817 + pos: -96.5,-11.5 + parent: 2 + - uid: 17947 components: - type: Transform - pos: -47.5,22.5 - parent: 89 - - uid: 24673 + rot: 3.141592653589793 rad + pos: -89.5,-8.5 + parent: 2 + - uid: 17948 components: - type: Transform - pos: 2.5,10.5 - parent: 22565 - - uid: 24674 + rot: 3.141592653589793 rad + pos: -89.5,-9.5 + parent: 2 + - uid: 17949 components: - type: Transform - pos: 2.5,11.5 - parent: 22565 - - uid: 24675 + pos: -90.5,4.5 + parent: 2 + - uid: 17950 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 - - uid: 25372 + pos: -90.5,3.5 + parent: 2 + - uid: 17951 components: - type: Transform - pos: 58.5,-20.5 - parent: 89 - - uid: 25373 + pos: -90.5,2.5 + parent: 2 + - uid: 17952 components: - type: Transform - pos: 58.5,-22.5 - parent: 89 -- proto: RandomPosterLegit - entities: - - uid: 144 + pos: -90.5,1.5 + parent: 2 + - uid: 17953 components: - type: Transform - pos: -42.5,-6.5 - parent: 89 - - uid: 3995 + pos: -120.5,16.5 + parent: 2 + - uid: 26694 components: - type: Transform - pos: 11.5,0.5 - parent: 89 - - uid: 4376 + pos: -12.5,-27.5 + parent: 24450 + - uid: 26695 components: - type: Transform - pos: -4.5,-2.5 - parent: 89 - - uid: 4379 + pos: -14.5,-27.5 + parent: 24450 + - uid: 27848 components: - type: Transform - pos: -7.5,0.5 - parent: 89 - - uid: 6020 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 27260 + - uid: 27849 components: - type: Transform - pos: 29.5,-2.5 - parent: 89 - - uid: 6024 + pos: -1.5,-1.5 + parent: 27260 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17954 components: - type: Transform - pos: 10.5,-10.5 - parent: 89 - - uid: 6029 + pos: -7.5,-36.5 + parent: 2 +- proto: Retractor + entities: + - uid: 17955 components: - type: Transform - pos: 21.5,-7.5 - parent: 89 - - uid: 6480 + pos: -11.510057,21.659258 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 17956 components: - type: Transform - pos: 30.5,-4.5 - parent: 89 - - uid: 9319 + pos: -34.502335,32.664577 + parent: 2 + - uid: 17957 components: - type: Transform - pos: -97.5,-3.5 - parent: 89 - - uid: 14104 + pos: -50.51814,24.483156 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 27850 components: - type: Transform - pos: 46.5,-1.5 - parent: 89 - - uid: 16562 + pos: 6.4677124,-10.531189 + parent: 27260 +- proto: RiotLaserShield + entities: + - uid: 27851 components: - type: Transform - pos: -82.5,22.5 - parent: 89 - - uid: 16563 + pos: 6.314926,-10.406189 + parent: 27260 +- proto: RiotShield + entities: + - uid: 24543 components: - type: Transform - pos: -86.5,31.5 - parent: 89 - - uid: 18235 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27852 components: - type: Transform - pos: 45.5,-10.5 - parent: 89 - - uid: 21621 + pos: 6.731598,-10.350647 + parent: 27260 +- proto: RipleyLArm + entities: + - uid: 26696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 89 - - uid: 24676 + pos: -5.619814,7.5630064 + parent: 24450 +- proto: RockGuitarInstrument + entities: + - uid: 17958 components: - type: Transform - pos: -21.5,-1.5 - parent: 22565 - - uid: 24677 + pos: -35.669586,-7.3551264 + parent: 2 +- proto: RollerBed + entities: + - uid: 17959 components: - type: Transform - pos: -16.5,-4.5 - parent: 22565 - - uid: 24678 + pos: 15.437534,-2.3403144 + parent: 2 + - uid: 17960 components: - type: Transform - pos: -7.5,-4.5 - parent: 22565 - - uid: 24679 + pos: 27.46604,20.420237 + parent: 2 + - uid: 17961 components: - type: Transform - pos: -2.5,-1.5 - parent: 22565 - - uid: 24680 + pos: 27.46604,20.873362 + parent: 2 + - uid: 17962 components: - type: Transform - pos: -26.5,-1.5 - parent: 22565 - - uid: 24681 + pos: -9.512561,17.593462 + parent: 2 + - uid: 27853 components: - type: Transform - pos: 2.5,-1.5 - parent: 22565 - - uid: 24682 + pos: -4.511612,-10.278687 + parent: 27260 +- proto: RubberStampApproved + entities: + - uid: 17963 components: - type: Transform - pos: -24.5,22.5 - parent: 22565 - - uid: 24683 + pos: 44.726154,4.9360046 + parent: 2 + - uid: 17964 components: - type: Transform - pos: -19.5,22.5 - parent: 22565 - - uid: 24684 + pos: -61.259422,-4.204013 + parent: 2 + - uid: 17965 components: - type: Transform - pos: 8.5,4.5 - parent: 22565 - - uid: 24685 + pos: -75.95376,-5.1340904 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 17966 components: - type: Transform - pos: 8.5,8.5 - parent: 22565 - - uid: 24686 + pos: 44.726154,4.7328796 + parent: 2 + - uid: 17967 components: - type: Transform - pos: -32.5,4.5 - parent: 22565 - - uid: 24687 + pos: -75.96599,-5.4276247 + parent: 2 + - uid: 17968 components: - type: Transform - pos: -32.5,8.5 - parent: 22565 - - uid: 24688 + pos: -61.259422,-4.500888 + parent: 2 +- proto: SadTromboneImplanter + entities: + - uid: 603 components: - type: Transform - pos: -32.5,12.5 - parent: 22565 - - uid: 24689 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SalvageCanisterSpawner + entities: + - uid: 17969 components: - type: Transform - pos: 8.5,12.5 - parent: 22565 - - uid: 24690 + pos: -80.5,-24.5 + parent: 2 + - uid: 26697 components: - type: Transform - pos: -4.5,22.5 - parent: 22565 - - uid: 24691 + pos: -19.5,-7.5 + parent: 24450 + - uid: 26698 components: - type: Transform - pos: 0.5,22.5 - parent: 22565 - - uid: 24692 + pos: -6.5,-10.5 + parent: 24450 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 17970 components: - type: Transform - pos: 0.5,16.5 - parent: 22565 - - uid: 24693 + pos: -55.5,-16.5 + parent: 2 + - uid: 26699 components: - type: Transform - pos: -4.5,16.5 - parent: 22565 - - uid: 24694 + pos: 3.5,-4.5 + parent: 24450 +- proto: SalvageMagnet + entities: + - uid: 17971 components: - type: Transform - pos: -19.5,16.5 - parent: 22565 - - uid: 24695 + pos: -45.5,-19.5 + parent: 2 +- proto: Saw + entities: + - uid: 17972 components: - type: Transform - pos: -24.5,16.5 - parent: 22565 - - uid: 25368 + pos: -12.387761,21.596758 + parent: 2 +- proto: SawElectric + entities: + - uid: 17973 components: - type: Transform - pos: 47.5,-21.5 - parent: 89 - - uid: 25369 + pos: 0.31544685,37.508827 + parent: 2 + - uid: 17974 components: - type: Transform - pos: 47.5,-18.5 - parent: 89 - - uid: 25370 + pos: 8.521248,-22.418674 + parent: 2 + - uid: 17975 components: - type: Transform - pos: 42.5,-34.5 - parent: 89 - - uid: 25371 + pos: -10.669011,21.674883 + parent: 2 +- proto: SaxophoneInstrument + entities: + - uid: 17976 components: - type: Transform - pos: 54.5,-28.5 - parent: 89 - - uid: 25374 + pos: 1.6962042,42.518917 + parent: 2 +- proto: Scalpel + entities: + - uid: 17977 components: - type: Transform - pos: 52.5,-21.5 - parent: 89 - - uid: 25375 + pos: 3.0810719,34.555702 + parent: 2 + - uid: 17978 components: - type: Transform - pos: 52.5,-18.5 - parent: 89 - - uid: 25376 + rot: -1.5707963267948966 rad + pos: 9.443718,8.545023 + parent: 2 + - uid: 17979 components: - type: Transform - pos: 41.5,-24.5 - parent: 89 -- proto: RandomSnacks + pos: -10.645547,21.456133 + parent: 2 +- proto: ScalpelShiv entities: - - uid: 10901 + - uid: 17980 components: - type: Transform - pos: -70.5,5.5 - parent: 89 - - uid: 15499 + pos: 49.471436,-33.456047 + parent: 2 + - uid: 25099 components: - type: Transform - pos: -84.5,4.5 - parent: 89 -- proto: RandomSoap + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Screen entities: - - uid: 141 + - uid: 17981 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 10298 + pos: 59.5,1.5 + parent: 2 + - uid: 17982 components: - type: Transform - pos: -37.5,33.5 - parent: 89 - - uid: 10352 + pos: 59.5,7.5 + parent: 2 + - uid: 17983 components: - type: Transform - pos: -22.5,33.5 - parent: 89 - - uid: 20980 + pos: -63.5,32.5 + parent: 2 + - uid: 17984 components: - type: Transform - pos: 40.5,17.5 - parent: 89 - - uid: 21139 + pos: 26.5,0.5 + parent: 2 + - uid: 17985 components: - type: Transform - pos: -38.5,8.5 - parent: 89 - - uid: 21861 + pos: -54.5,21.5 + parent: 2 + - uid: 17986 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 -- proto: RandomSpawner - entities: - - uid: 1671 + pos: -63.5,42.5 + parent: 2 + - uid: 17987 components: - type: Transform - pos: -61.5,14.5 - parent: 89 - - uid: 1751 + pos: 41.5,5.5 + parent: 2 + - uid: 17988 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 7299 + pos: -27.5,-3.5 + parent: 2 + - uid: 17989 components: - type: Transform - pos: -89.5,27.5 - parent: 89 - - uid: 9645 + pos: 16.5,-7.5 + parent: 2 + - uid: 17990 components: - type: Transform - pos: -88.5,26.5 - parent: 89 - - uid: 10673 + pos: 3.5,0.5 + parent: 2 + - uid: 17991 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 10676 + pos: 15.5,18.5 + parent: 2 + - uid: 17992 components: - type: Transform - pos: -63.5,7.5 - parent: 89 - - uid: 10802 + pos: -12.5,0.5 + parent: 2 + - uid: 17993 components: - type: Transform - pos: -31.5,3.5 - parent: 89 - - uid: 10823 + pos: 9.5,10.5 + parent: 2 + - uid: 17994 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 10837 + pos: 33.5,17.5 + parent: 2 + - uid: 17995 components: - type: Transform - pos: -65.5,10.5 - parent: 89 - - uid: 10868 + pos: -3.5,10.5 + parent: 2 + - uid: 17996 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 10869 + pos: 9.5,31.5 + parent: 2 + - uid: 17997 components: - type: Transform - pos: -58.5,13.5 - parent: 89 - - uid: 10870 + pos: 25.5,26.5 + parent: 2 + - uid: 17998 components: - type: Transform - pos: -53.5,14.5 - parent: 89 - - uid: 10871 + pos: 0.5,-23.5 + parent: 2 + - uid: 17999 components: - type: Transform - pos: -52.5,13.5 - parent: 89 - - uid: 10902 + pos: -2.5,-42.5 + parent: 2 + - uid: 18000 components: - type: Transform - pos: -70.5,3.5 - parent: 89 - - uid: 10976 + pos: -15.5,-20.5 + parent: 2 + - uid: 18001 components: - type: Transform - pos: -77.5,3.5 - parent: 89 - - uid: 10980 + pos: -34.5,-15.5 + parent: 2 + - uid: 18002 components: - type: Transform - pos: -64.5,-0.5 - parent: 89 - - uid: 10992 + pos: -25.5,6.5 + parent: 2 + - uid: 18003 components: - type: Transform - pos: -56.5,4.5 - parent: 89 - - uid: 11001 + pos: -42.5,6.5 + parent: 2 + - uid: 18004 components: - type: Transform - pos: -54.5,-0.5 - parent: 89 - - uid: 11032 + pos: -48.5,12.5 + parent: 2 + - uid: 18005 components: - type: Transform - pos: -70.5,-1.5 - parent: 89 - - uid: 11040 + pos: -57.5,-10.5 + parent: 2 + - uid: 18006 components: - type: Transform - pos: -23.5,1.5 - parent: 89 - - uid: 11041 + pos: -68.5,-7.5 + parent: 2 + - uid: 18007 components: - type: Transform - pos: -26.5,2.5 - parent: 89 - - uid: 11043 + pos: -75.5,-4.5 + parent: 2 + - uid: 18008 components: - type: Transform - pos: -30.5,10.5 - parent: 89 - - uid: 14067 + pos: -68.5,6.5 + parent: 2 + - uid: 18009 components: - type: Transform - pos: 4.5,26.5 - parent: 89 - - uid: 14145 + pos: -118.5,-9.5 + parent: 2 + - uid: 18010 components: - type: Transform - pos: -85.5,29.5 - parent: 89 - - uid: 15145 + pos: -60.5,15.5 + parent: 2 + - uid: 18011 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 15155 + pos: -102.5,-11.5 + parent: 2 + - uid: 18012 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 15454 + pos: -118.5,11.5 + parent: 2 + - uid: 18013 components: - type: Transform - pos: -80.5,9.5 - parent: 89 - - uid: 15468 + pos: -109.5,22.5 + parent: 2 + - uid: 18014 components: - type: Transform - pos: -87.5,9.5 - parent: 89 - - uid: 15515 + pos: -104.5,-6.5 + parent: 2 + - uid: 18015 components: - type: Transform - pos: -72.5,17.5 - parent: 89 - - uid: 15516 + pos: -96.5,9.5 + parent: 2 + - uid: 18016 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 15517 + pos: -93.5,18.5 + parent: 2 + - uid: 18017 components: - type: Transform - pos: -64.5,18.5 - parent: 89 - - uid: 15518 + pos: -81.5,6.5 + parent: 2 + - uid: 18018 components: - type: Transform - pos: -57.5,16.5 - parent: 89 - - uid: 15519 + pos: -28.5,14.5 + parent: 2 + - uid: 18019 components: - type: Transform - pos: -47.5,15.5 - parent: 89 - - uid: 15522 + pos: -86.5,29.5 + parent: 2 + - uid: 18020 components: - type: Transform - pos: -43.5,18.5 - parent: 89 - - uid: 15523 + pos: -32.5,26.5 + parent: 2 + - uid: 18021 components: - type: Transform - pos: -36.5,16.5 - parent: 89 - - uid: 15524 + pos: -27.5,26.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 18022 components: - type: Transform - pos: -86.5,3.5 - parent: 89 - - uid: 16358 + pos: -131.62726,-2.1679683 + parent: 2 + - uid: 18023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,36.5 - parent: 89 - - uid: 16554 + pos: -10.698816,-35.129005 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 18024 components: - type: Transform - pos: -83.5,24.5 - parent: 89 - - uid: 16564 + pos: 40.5,-8.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 18025 components: - type: Transform - pos: -61.5,33.5 - parent: 89 - - uid: 16565 + pos: -3.5,-0.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 18026 components: - type: Transform - pos: -65.5,41.5 - parent: 89 - - uid: 16566 + pos: 2.9583473,36.756752 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 18027 components: - type: Transform - pos: -60.5,24.5 - parent: 89 - - uid: 16567 + pos: -20.636162,23.31307 + parent: 2 + - uid: 18028 components: - type: Transform - pos: -85.5,42.5 - parent: 89 - - uid: 16573 + pos: -20.292412,23.484945 + parent: 2 + - uid: 18029 components: - type: Transform - pos: -88.5,16.5 - parent: 89 - - uid: 16574 + pos: -20.418125,23.417818 + parent: 2 +- proto: SheetGlass + entities: + - uid: 8772 components: - type: Transform - pos: -97.5,21.5 - parent: 89 - - uid: 16575 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8779 components: - type: Transform - pos: -102.5,13.5 - parent: 89 - - uid: 16576 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8786 components: - type: Transform - pos: -109.5,20.5 - parent: 89 - - uid: 20373 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-13.5 - parent: 89 - - uid: 20641 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18030 components: - type: Transform - pos: -135.5,-20.5 - parent: 89 - - uid: 20645 + pos: -102.0251,-5.4257817 + parent: 2 + - uid: 18031 components: - type: Transform - pos: -120.5,-22.5 - parent: 89 - - uid: 20650 + pos: -5.4908185,-17.232418 + parent: 2 + - uid: 18032 components: - type: Transform - pos: -120.5,-29.5 - parent: 89 - - uid: 21119 + pos: -126.70906,-9.586103 + parent: 2 + - uid: 18033 components: - type: Transform - pos: 48.5,18.5 - parent: 89 - - uid: 21549 + pos: -26.45643,-21.482687 + parent: 2 + - uid: 18034 components: - type: Transform - pos: 14.5,26.5 - parent: 89 - - uid: 21554 + pos: -26.484663,-21.39527 + parent: 2 + - uid: 18035 components: - type: Transform - pos: 25.5,23.5 - parent: 89 - - uid: 21555 + pos: 19.237337,-0.9680009 + parent: 2 + - uid: 18036 components: - type: Transform - pos: 7.5,36.5 - parent: 89 - - uid: 24696 + pos: 19.346712,-0.9680009 + parent: 2 + - uid: 18037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 22565 - - uid: 24697 + pos: 19.487337,-0.9680009 + parent: 2 + - uid: 18038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 22565 - - uid: 24698 + pos: 19.565462,-0.9680009 + parent: 2 + - uid: 18039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,20.5 - parent: 22565 - - uid: 25705 + pos: 19.643587,-0.9680009 + parent: 2 + - uid: 18040 components: - type: Transform - pos: -40.5,0.5 - parent: 89 - - uid: 25706 + pos: 19.393587,-0.9680009 + parent: 2 + - uid: 18041 components: - type: Transform - pos: -51.5,4.5 - parent: 89 - - uid: 25707 + pos: 15.506557,-16.651836 + parent: 2 + - uid: 18042 components: - type: Transform - pos: -39.5,-7.5 - parent: 89 - - uid: 25708 + pos: 32.602047,7.415881 + parent: 2 + - uid: 24217 components: - type: Transform - pos: -30.5,-13.5 - parent: 89 - - uid: 25709 + pos: 4.429199,-7.3639374 + parent: 23919 + - uid: 25748 components: - type: Transform - pos: -20.5,-10.5 - parent: 89 - - uid: 25710 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetGlass10 + entities: + - uid: 18043 components: - type: Transform - pos: -15.5,-12.5 - parent: 89 - - uid: 25711 + pos: -65.438156,-17.318188 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 18044 components: - type: Transform - pos: -6.5,-11.5 - parent: 89 - - uid: 25712 + pos: -132.69885,13.859987 + parent: 2 + - uid: 18045 components: - type: Transform - pos: -1.5,-16.5 - parent: 89 - - uid: 25713 + pos: -98.495865,-8.155361 + parent: 2 + - uid: 18046 components: - type: Transform - pos: -3.5,-5.5 - parent: 89 - - uid: 25714 + pos: -3.4340763,5.7090874 + parent: 2 + - uid: 18047 components: - type: Transform - pos: 0.5,-1.5 - parent: 89 - - uid: 25715 + pos: -132.62073,14.532562 + parent: 2 + - uid: 18048 components: - type: Transform - pos: -9.5,2.5 - parent: 89 - - uid: 25716 + pos: -5.412913,-27.433874 + parent: 2 + - uid: 24218 components: - type: Transform - pos: -55.5,20.5 - parent: 89 - - uid: 25717 + pos: 4.385498,-7.4337616 + parent: 23919 + - uid: 25749 components: - type: Transform - pos: -64.5,26.5 - parent: 89 - - uid: 25718 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma1 + entities: + - uid: 27296 components: - type: Transform - pos: -67.5,29.5 - parent: 89 - - uid: 25719 + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 18049 components: - type: Transform - pos: -62.5,39.5 - parent: 89 - - uid: 25721 + pos: 32.508297,7.447131 + parent: 2 + - uid: 18050 components: - type: Transform - pos: 18.5,1.5 - parent: 89 - - uid: 25722 + pos: -5.567326,-34.428066 + parent: 2 + - uid: 18051 components: - type: Transform - pos: -17.5,1.5 - parent: 89 - - uid: 25723 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18052 components: - type: Transform - pos: 9.5,3.5 - parent: 89 - - uid: 25724 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18053 components: - type: Transform - pos: 4.5,2.5 - parent: 89 - - uid: 25725 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18054 components: - type: Transform - pos: 25.5,2.5 - parent: 89 - - uid: 25726 + pos: -6.523316,27.486149 + parent: 2 + - uid: 18055 components: - type: Transform - pos: 26.5,3.5 - parent: 89 - - uid: 25727 + pos: 17.446835,-0.2770384 + parent: 2 + - uid: 18056 components: - type: Transform - pos: 32.5,1.5 - parent: 89 - - uid: 25728 + pos: 17.55621,-0.2770384 + parent: 2 + - uid: 18057 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 25729 + pos: 17.290585,-0.2770384 + parent: 2 + - uid: 18058 components: - type: Transform - pos: 38.5,8.5 - parent: 89 - - uid: 25730 + pos: 17.196835,-0.2770384 + parent: 2 + - uid: 18059 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 25731 + pos: -126.426926,-10.4049835 + parent: 2 + - uid: 27854 + components: + - type: Transform + pos: -1.3938599,-8.498901 + parent: 27260 +- proto: SheetPlasteel10 + entities: + - uid: 18060 components: - type: Transform - pos: -74.5,10.5 - parent: 89 - - uid: 25732 + rot: 1.5707963267948966 rad + pos: -114.39805,-12.529028 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 9255 components: - type: Transform - pos: -72.5,8.5 - parent: 89 - - uid: 25733 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18061 components: - type: Transform - pos: -82.5,16.5 - parent: 89 - - uid: 25734 + pos: 32.539547,7.306506 + parent: 2 + - uid: 18062 components: - type: Transform - pos: -80.5,20.5 - parent: 89 - - uid: 25735 + pos: -5.504826,-36.41244 + parent: 2 + - uid: 18063 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 25736 + pos: -102.634476,-5.4101567 + parent: 2 + - uid: 18064 components: - type: Transform - pos: -84.5,36.5 - parent: 89 - - uid: 25737 + pos: 17.381163,-0.86558884 + parent: 2 + - uid: 18065 components: - type: Transform - pos: -24.5,-5.5 - parent: 89 - - uid: 25738 + pos: 17.714497,-0.87600553 + parent: 2 + - uid: 18066 components: - type: Transform - pos: -20.5,-8.5 - parent: 89 - - uid: 25739 + pos: 17.141579,-0.84475553 + parent: 2 + - uid: 18067 components: - type: Transform - pos: -18.5,-2.5 - parent: 89 -- proto: RandomSpawner100 - entities: - - uid: 24699 + pos: -5.5064435,-17.873043 + parent: 2 + - uid: 18068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 22565 - - uid: 24700 + pos: -20.26341,-27.459917 + parent: 2 + - uid: 24219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 22565 - - uid: 24701 + pos: 4.418701,-7.4264374 + parent: 23919 + - uid: 24220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - parent: 22565 - - uid: 24702 + pos: 4.376953,-7.3951874 + parent: 23919 + - uid: 25750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 22565 - - uid: 24703 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic10 + entities: + - uid: 18069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 22565 - - uid: 24704 + pos: -65.719406,-17.505688 + parent: 2 +- proto: SheetPrinter1 + entities: + - uid: 8850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 22565 - - uid: 24705 + pos: -72.457275,-17.441816 + parent: 2 + - uid: 8900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 22565 - - uid: 24706 + pos: -72.5979,-17.410566 + parent: 2 + - uid: 8901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 22565 - - uid: 24707 + pos: -72.19165,-17.457441 + parent: 2 + - uid: 23697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 22565 - - uid: 24708 + pos: -72.12915,-17.394941 + parent: 2 + - uid: 23698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 22565 - - uid: 24709 + pos: -72.644775,-17.316816 + parent: 2 + - uid: 23699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 22565 - - uid: 24710 + pos: -72.676025,-17.379316 + parent: 2 + - uid: 23700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 22565 - - uid: 24711 + pos: -72.5354,-17.441816 + parent: 2 + - uid: 23701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 22565 - - uid: 24712 + pos: -72.332275,-17.363691 + parent: 2 + - uid: 23702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,22.5 - parent: 22565 - - uid: 24713 + pos: -72.37915,-17.441816 + parent: 2 + - uid: 23703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 - parent: 22565 - - uid: 24714 + pos: -72.4104,-17.363691 + parent: 2 + - uid: 23704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 22565 - - uid: 24715 + pos: -72.551025,-17.426191 + parent: 2 + - uid: 23705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 22565 -- proto: RandomVending + pos: -72.551025,-17.457441 + parent: 2 +- proto: SheetRGlass entities: - - uid: 145 + - uid: 18070 components: - type: Transform - pos: -24.5,-17.5 - parent: 89 - - uid: 6526 + pos: 32.445797,7.431506 + parent: 2 + - uid: 18071 components: - type: Transform - pos: -57.5,5.5 - parent: 89 - - uid: 7206 + pos: -99.723816,9.591843 + parent: 2 + - uid: 18072 components: - type: Transform - pos: -91.5,4.5 - parent: 89 - - uid: 9733 + pos: -99.70819,9.591843 + parent: 2 + - uid: 18073 components: - type: Transform - pos: -67.5,45.5 - parent: 89 - - uid: 9929 + pos: -99.70819,9.591843 + parent: 2 + - uid: 18074 components: - type: Transform - pos: -67.5,35.5 - parent: 89 - - uid: 9956 + pos: -114.52647,-12.4739895 + parent: 2 + - uid: 27855 components: - type: Transform - pos: -62.5,41.5 - parent: 89 - - uid: 9957 + pos: -1.4216461,-8.443329 + parent: 27260 +- proto: SheetRUGlass1 + entities: + - uid: 18075 components: - type: Transform - pos: -61.5,41.5 - parent: 89 - - uid: 9959 + rot: 3.141592653589793 rad + pos: 1.4767406,30.443174 + parent: 2 + - uid: 18076 components: - type: Transform - pos: -64.5,40.5 - parent: 89 - - uid: 9960 + pos: -7.5583944,33.217613 + parent: 2 +- proto: SheetSteel + entities: + - uid: 8773 components: - type: Transform - pos: -67.5,23.5 - parent: 89 - - uid: 10007 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8780 components: - type: Transform - pos: -62.5,28.5 - parent: 89 - - uid: 10008 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8787 components: - type: Transform - pos: -56.5,28.5 - parent: 89 - - uid: 10009 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9256 components: - type: Transform - pos: -62.5,36.5 - parent: 89 - - uid: 10841 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18077 components: - type: Transform - pos: 1.5,-6.5 - parent: 89 - - uid: 10880 + pos: -101.448105,-5.5596366 + parent: 2 + - uid: 18078 components: - type: Transform - pos: -33.5,12.5 - parent: 89 - - uid: 10881 + pos: -29.384861,-15.327836 + parent: 2 + - uid: 18079 components: - type: Transform - pos: -33.5,13.5 - parent: 89 - - uid: 10886 + pos: -91.53964,25.270058 + parent: 2 + - uid: 18080 components: - type: Transform - pos: 1.5,-8.5 - parent: 89 - - uid: 10888 + pos: 15.55621,-16.404793 + parent: 2 + - uid: 18081 components: - type: Transform - pos: 1.5,-7.5 - parent: 89 - - uid: 10940 + pos: -5.5376935,-16.576168 + parent: 2 + - uid: 18082 components: - type: Transform - pos: -53.5,12.5 - parent: 89 - - uid: 10942 + pos: -29.384861,-15.536169 + parent: 2 + - uid: 18083 components: - type: Transform - pos: -84.5,1.5 - parent: 89 - - uid: 10943 + pos: -44.54738,-16.571465 + parent: 2 + - uid: 18084 components: - type: Transform - pos: -76.5,5.5 - parent: 89 - - uid: 10944 + pos: -26.429432,-19.339746 + parent: 2 + - uid: 18085 components: - type: Transform - pos: -55.5,12.5 - parent: 89 - - uid: 10997 + pos: -26.45727,-19.41212 + parent: 2 + - uid: 18086 components: - type: Transform - pos: -75.5,5.5 - parent: 89 - - uid: 11010 + pos: 19.299837,-0.3586259 + parent: 2 + - uid: 18087 components: - type: Transform - pos: -54.5,5.5 - parent: 89 - - uid: 11876 + pos: 19.424837,-0.3586259 + parent: 2 + - uid: 18088 components: - type: Transform - pos: -3.5,13.5 - parent: 89 - - uid: 12012 + pos: 19.565462,-0.3586259 + parent: 2 + - uid: 18089 components: - type: Transform - pos: -6.5,5.5 - parent: 89 - - uid: 14850 + pos: 19.643587,-0.3586259 + parent: 2 + - uid: 18090 components: - type: Transform - pos: -35.5,14.5 - parent: 89 - - uid: 15493 + pos: 19.377962,-0.3742509 + parent: 2 + - uid: 18091 components: - type: Transform - pos: -91.5,7.5 - parent: 89 - - uid: 16411 + pos: 19.581087,-0.3742509 + parent: 2 + - uid: 18092 components: - type: Transform - pos: -120.5,-15.5 - parent: 89 - - uid: 16465 + pos: -126.426926,-8.5456085 + parent: 2 + - uid: 18093 components: - type: Transform - pos: -98.5,2.5 - parent: 89 - - uid: 16466 + pos: -126.426926,-8.5456085 + parent: 2 + - uid: 18094 components: - type: Transform - pos: -97.5,2.5 - parent: 89 - - uid: 16571 + pos: 32.602047,7.478381 + parent: 2 + - uid: 24221 components: - type: Transform - pos: -85.5,25.5 - parent: 89 - - uid: 16572 + pos: 4.3100586,-7.44532 + parent: 23919 + - uid: 24222 components: - type: Transform - pos: -85.5,26.5 - parent: 89 - - uid: 17175 + pos: 4.3100586,-7.4557343 + parent: 23919 + - uid: 24223 components: - type: Transform - pos: -41.5,-9.5 - parent: 89 - - uid: 17177 + pos: 4.2995605,-7.44532 + parent: 23919 + - uid: 25751 components: - type: Transform - pos: 52.5,-28.5 - parent: 89 - - uid: 19061 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25752 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 19486 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27856 components: - type: Transform - pos: -60.5,26.5 - parent: 89 - - uid: 19487 + pos: -1.5466461,-8.3461 + parent: 27260 +- proto: SheetSteel10 + entities: + - uid: 18095 components: - type: Transform - pos: -59.5,26.5 - parent: 89 - - uid: 19525 + pos: -65.344406,-17.552563 + parent: 2 + - uid: 18096 components: - type: Transform - pos: -23.5,6.5 - parent: 89 - - uid: 19552 + pos: 6.5544925,-21.70108 + parent: 2 + - uid: 18097 components: - type: Transform - pos: -36.5,5.5 - parent: 89 - - uid: 19553 + rot: 1.5707963267948966 rad + pos: -112.50842,-13.464668 + parent: 2 + - uid: 18098 components: - type: Transform - pos: -37.5,5.5 - parent: 89 - - uid: 19554 + rot: 1.5707963267948966 rad + pos: -112.28827,-13.483014 + parent: 2 +- proto: SheetUGlass1 + entities: + - uid: 18099 components: - type: Transform - pos: -72.5,5.5 - parent: 89 - - uid: 19555 + rot: 3.141592653589793 rad + pos: -26.489836,-22.380846 + parent: 2 + - uid: 18100 components: - type: Transform - pos: -71.5,5.5 - parent: 89 - - uid: 19556 + rot: 3.141592653589793 rad + pos: 6.3812647,-26.421057 + parent: 2 +- proto: SheetUranium + entities: + - uid: 18101 components: - type: Transform - pos: -85.5,19.5 - parent: 89 - - uid: 19557 + rot: 3.141592653589793 rad + pos: -132.65198,13.390748 + parent: 2 + - uid: 18102 components: - type: Transform - pos: -84.5,19.5 - parent: 89 - - uid: 21791 + rot: 3.141592653589793 rad + pos: -132.6051,12.671249 + parent: 2 + - uid: 18103 components: - type: Transform - pos: 53.5,-28.5 - parent: 89 -- proto: RandomVendingDrinks - entities: - - uid: 24716 + rot: 3.141592653589793 rad + pos: 16.451817,-13.43622 + parent: 2 + - uid: 18104 components: - type: Transform - pos: -9.5,-21.5 - parent: 22565 -- proto: RandomVendingSnacks - entities: - - uid: 24717 + pos: -10.534918,-25.547523 + parent: 2 + - uid: 25753 components: - type: Transform - pos: -17.5,-21.5 - parent: 22565 - - uid: 24718 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShellShotgunImprovised + entities: + - uid: 26700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 22565 -- proto: RCD - entities: - - uid: 2565 + pos: 3.2740273,11.768624 + parent: 24450 + - uid: 26701 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.43318,-13.07812 - parent: 89 - - uid: 6898 + pos: 3.9615273,11.752999 + parent: 24450 + - uid: 26702 components: - type: Transform - pos: -103.46396,11.808571 - parent: 89 - - uid: 9301 + pos: 4.6334023,11.752999 + parent: 24450 + - uid: 26703 components: - type: Transform - pos: 28.536625,7.580703 - parent: 89 -- proto: RCDAmmo - entities: - - uid: 2679 + pos: 4.4771523,11.752999 + parent: 24450 + - uid: 26704 components: - type: Transform - pos: -87.223404,-13.554229 - parent: 89 - - uid: 6899 + pos: 4.3052773,11.799874 + parent: 24450 + - uid: 26705 components: - type: Transform - pos: -103.72958,11.464821 - parent: 89 - - uid: 6901 + pos: 4.6959023,11.659249 + parent: 24450 +- proto: ShippingContainerConarex + entities: + - uid: 18105 components: - type: Transform - pos: -103.24521,11.464821 - parent: 89 - - uid: 9302 + pos: -65.5,-9.5 + parent: 2 +- proto: ShippingContainerCybersun + entities: + - uid: 18106 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 - - uid: 9303 + pos: -65.5,-11.5 + parent: 2 +- proto: ShippingContainerInterdyne + entities: + - uid: 18107 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 - - uid: 9304 + pos: -60.5,-9.5 + parent: 2 + - uid: 18108 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 -- proto: RCDEmpty + pos: -65.5,-10.5 + parent: 2 +- proto: ShippingContainerNanotrasen entities: - - uid: 14645 + - uid: 18109 components: - - type: MetaData - name: плазменный резак - type: Transform - pos: -130.23235,21.319153 - parent: 89 -- proto: Recycler + pos: -65.5,-12.5 + parent: 2 +- proto: ShotGunCabinetFilled entities: - - uid: 7674 + - uid: 18110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - uid: 27857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 24719 + pos: 3.5,-10.5 + parent: 27260 +- proto: ShuttersNormal + entities: + - uid: 18111 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 + pos: -99.5,29.5 + parent: 2 - type: DeviceLinkSink links: - - 24937 -- proto: RegenerativeMesh - entities: - - uid: 10116 + - 18422 + - uid: 18112 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 10172 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18113 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 11594 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18114 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ReinforcedGirder - entities: - - uid: 672 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18115 components: - type: Transform - pos: 50.5,-7.5 - parent: 89 - - uid: 9342 + pos: -101.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18421 + - uid: 18116 components: - type: Transform - pos: -26.5,43.5 - parent: 89 - - uid: 10795 + pos: -20.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 18117 components: - type: Transform - pos: -28.5,43.5 - parent: 89 - - uid: 10796 + pos: -19.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 18118 components: - type: Transform - pos: -24.5,43.5 - parent: 89 - - uid: 10889 + pos: -18.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 26706 components: - type: Transform - pos: -24.5,45.5 - parent: 89 - - uid: 11037 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26718 + - uid: 26707 components: - type: Transform - pos: -24.5,47.5 - parent: 89 - - uid: 11045 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26718 + - uid: 26708 components: - type: Transform - pos: -24.5,49.5 - parent: 89 - - uid: 11046 + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26719 + - uid: 26709 components: - type: Transform - pos: -24.5,51.5 - parent: 89 - - uid: 11210 + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26719 + - uid: 26710 components: - type: Transform - pos: -25.5,53.5 - parent: 89 - - uid: 12700 + pos: -14.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 + - uid: 26711 components: - type: Transform - pos: -27.5,53.5 - parent: 89 - - uid: 12826 + pos: -13.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 + - uid: 26712 components: - type: Transform - pos: -29.5,53.5 - parent: 89 - - uid: 12983 + pos: -12.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 +- proto: ShuttersNormalOpen + entities: + - uid: 18119 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -31.5,53.5 - parent: 89 - - uid: 12984 + pos: -56.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18120 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -33.5,53.5 - parent: 89 - - uid: 12985 + pos: -57.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18121 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: -35.5,53.5 - parent: 89 - - uid: 12987 + pos: -56.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18122 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: -35.5,51.5 - parent: 89 - - uid: 12988 + pos: -57.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18123 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -35.5,49.5 - parent: 89 - - uid: 13011 + pos: -55.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18124 components: - type: Transform - pos: -35.5,47.5 - parent: 89 - - uid: 13018 + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18125 components: - type: Transform - pos: -35.5,45.5 - parent: 89 - - uid: 13115 + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18126 components: - type: Transform - pos: -35.5,43.5 - parent: 89 - - uid: 13116 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18127 components: - type: Transform - pos: -33.5,43.5 - parent: 89 - - uid: 14035 + pos: -46.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18128 components: - type: Transform - pos: -31.5,43.5 - parent: 89 - - uid: 20922 + pos: -45.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18129 components: - type: Transform - pos: 49.5,-7.5 - parent: 89 - - uid: 21107 + pos: -44.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18130 components: - type: Transform - pos: 36.5,37.5 - parent: 89 - - uid: 21108 + pos: -43.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18131 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: 36.5,39.5 - parent: 89 - - uid: 21109 + pos: -55.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18132 components: - type: Transform - pos: 41.5,39.5 - parent: 89 - - uid: 21110 + pos: -105.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18133 components: - type: Transform - pos: 41.5,37.5 - parent: 89 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 722 + pos: -104.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18134 components: - type: Transform - pos: 12.5,35.5 - parent: 89 - - uid: 970 + pos: -103.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 1322 + pos: -106.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1323 + pos: -106.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1324 + pos: -106.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1325 + pos: -14.5,13.5 + parent: 2 + - uid: 18139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1326 + pos: -82.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 2032 + pos: -81.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 2033 + pos: -80.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 2286 + pos: -80.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2287 + pos: -82.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2288 + pos: 4.5,-32.5 + parent: 2 + - uid: 18145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2289 + pos: -10.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-23.5 - parent: 89 - - uid: 2290 + pos: -11.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-24.5 - parent: 89 - - uid: 2291 + pos: -9.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-25.5 - parent: 89 - - uid: 2292 + pos: -8.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 - parent: 89 - - uid: 2293 + pos: 1.5,-32.5 + parent: 2 + - uid: 18150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-26.5 - parent: 89 - - uid: 2294 + pos: 11.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 18151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-26.5 - parent: 89 - - uid: 7451 + pos: 10.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 18152 components: - type: Transform - pos: -88.5,-6.5 - parent: 89 - - uid: 7452 + pos: 3.5,-32.5 + parent: 2 + - uid: 18153 components: - type: Transform - pos: -87.5,-6.5 - parent: 89 - - uid: 8515 + pos: 18.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18154 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8518 + pos: 2.5,-32.5 + parent: 2 + - uid: 18155 components: - type: Transform - pos: -128.5,3.5 - parent: 89 - - uid: 8527 + pos: 12.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18438 + - uid: 18156 components: - type: Transform - pos: -128.5,4.5 - parent: 89 - - uid: 10810 + pos: 12.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18438 + - uid: 18157 components: - type: Transform - pos: 12.5,41.5 - parent: 89 - - uid: 10811 + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18158 components: - type: Transform - pos: 7.5,41.5 - parent: 89 - - uid: 10828 + pos: 20.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18159 components: - type: Transform - pos: 7.5,42.5 - parent: 89 - - uid: 10836 + pos: 17.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18160 components: - type: Transform - pos: 12.5,42.5 - parent: 89 - - uid: 10925 + pos: 20.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18161 components: - type: Transform - pos: 11.5,43.5 - parent: 89 - - uid: 11042 + pos: 21.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18162 components: - type: Transform - pos: 11.5,36.5 - parent: 89 - - uid: 11091 + pos: 22.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18163 components: - type: Transform - pos: 12.5,38.5 - parent: 89 - - uid: 12601 + pos: 23.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18164 components: - type: Transform - pos: 8.5,43.5 - parent: 89 - - uid: 12702 + pos: 23.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18165 components: - type: Transform - pos: 13.5,38.5 - parent: 89 - - uid: 14023 + pos: 23.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18166 components: - type: Transform - pos: 7.5,35.5 - parent: 89 - - uid: 14024 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18167 components: - type: Transform - pos: 6.5,38.5 - parent: 89 - - uid: 14997 + pos: 48.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18168 components: - type: Transform - pos: 11.5,37.5 - parent: 89 - - uid: 15187 + pos: 47.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18169 components: - type: Transform - pos: 8.5,36.5 - parent: 89 - - uid: 15189 + rot: -1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18170 components: - type: Transform - pos: 8.5,37.5 - parent: 89 - - uid: 15191 + rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 +- proto: ShuttersRadiationOpen + entities: + - uid: 18171 components: - type: Transform - pos: 7.5,38.5 - parent: 89 - - uid: 15403 + rot: 3.141592653589793 rad + pos: -135.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 + - uid: 18172 components: - type: Transform - pos: 6.5,31.5 - parent: 89 - - uid: 24720 + rot: 3.141592653589793 rad + pos: -135.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 + - uid: 18173 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 24721 + rot: 3.141592653589793 rad + pos: -135.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 +- proto: ShuttersWindow + entities: + - uid: 18174 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 24722 + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18433 + - uid: 18175 components: - type: Transform - pos: -18.5,-23.5 - parent: 22565 - - uid: 24723 + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18407 +- proto: ShuttersWindowOpen + entities: + - uid: 18176 components: - type: Transform - pos: -18.5,-24.5 - parent: 22565 - - uid: 24724 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 22565 - - uid: 24725 + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 22565 - - uid: 24726 + rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 22565 - - uid: 24727 + pos: -81.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 22565 - - uid: 24728 + pos: -23.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18451 + - uid: 18181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 22565 -- proto: ReinforcedPlasmaWindowDiagonal + pos: -22.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18451 +- proto: ShuttleConsoleCircuitboard entities: - - uid: 17886 + - uid: 26713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,43.5 - parent: 89 - - uid: 20905 + pos: -11.394216,7.7100387 + parent: 24450 + - uid: 26714 components: - type: Transform - pos: 7.5,43.5 - parent: 89 -- proto: ReinforcedUraniumWindow - entities: - - uid: 10790 + pos: -11.394216,7.5537887 + parent: 24450 + - uid: 26715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,48.5 - parent: 89 - - uid: 10791 + pos: -11.394216,7.4131637 + parent: 24450 +- proto: ShuttleGunDuster + entities: + - uid: 24224 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,48.5 - parent: 89 -- proto: ReinforcedWindow + pos: 1.5,4.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24236 +- proto: ShuttleGunPerforator entities: - - uid: 227 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 250 + - uid: 24225 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 89 - - uid: 266 - components: - - type: Transform - pos: -105.5,22.5 - parent: 89 - - uid: 267 + pos: 7.5,4.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24237 +- proto: ShuttleWindow + entities: + - uid: 18182 components: - type: Transform - pos: -103.5,22.5 - parent: 89 - - uid: 277 + pos: 27.5,35.5 + parent: 2 + - uid: 18183 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - uid: 284 + pos: 21.5,35.5 + parent: 2 + - uid: 18184 components: - type: Transform - pos: -104.5,22.5 - parent: 89 - - uid: 668 + pos: 27.5,36.5 + parent: 2 + - uid: 18185 components: - type: Transform - pos: -106.5,-14.5 - parent: 89 - - uid: 669 + pos: 25.5,44.5 + parent: 2 + - uid: 18186 components: - type: Transform - pos: -106.5,-15.5 - parent: 89 - - uid: 676 + pos: 24.5,44.5 + parent: 2 + - uid: 18187 components: - type: Transform - pos: 52.5,16.5 - parent: 89 - - uid: 677 + pos: 23.5,44.5 + parent: 2 + - uid: 18188 components: - type: Transform - pos: 53.5,16.5 - parent: 89 - - uid: 678 + pos: 25.5,41.5 + parent: 2 + - uid: 18189 components: - type: Transform - pos: 54.5,16.5 - parent: 89 - - uid: 679 + pos: 24.5,41.5 + parent: 2 + - uid: 18190 components: - type: Transform - pos: 55.5,16.5 - parent: 89 - - uid: 680 + pos: 21.5,36.5 + parent: 2 + - uid: 18191 components: - type: Transform - pos: 56.5,16.5 - parent: 89 - - uid: 681 + pos: -49.5,22.5 + parent: 2 + - uid: 18192 components: - type: Transform - pos: 57.5,16.5 - parent: 89 - - uid: 682 + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - uid: 18193 components: - type: Transform - pos: 58.5,16.5 - parent: 89 - - uid: 683 + rot: -1.5707963267948966 rad + pos: -89.5,45.5 + parent: 2 + - uid: 18194 components: - type: Transform - pos: 59.5,16.5 - parent: 89 - - uid: 684 + rot: -1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - uid: 18195 components: - type: Transform - pos: 62.5,14.5 - parent: 89 - - uid: 685 + rot: -1.5707963267948966 rad + pos: -89.5,37.5 + parent: 2 + - uid: 18196 components: - type: Transform - pos: 63.5,14.5 - parent: 89 - - uid: 686 + rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 2 + - uid: 18197 components: - type: Transform - pos: 64.5,14.5 - parent: 89 - - uid: 687 + pos: -86.5,-20.5 + parent: 2 + - uid: 18198 components: - type: Transform - pos: 65.5,14.5 - parent: 89 - - uid: 688 + rot: 3.141592653589793 rad + pos: -101.5,-20.5 + parent: 2 + - uid: 18199 components: - type: Transform - pos: 66.5,13.5 - parent: 89 - - uid: 689 + rot: 3.141592653589793 rad + pos: -102.5,-20.5 + parent: 2 + - uid: 18200 components: - type: Transform - pos: 66.5,12.5 - parent: 89 - - uid: 690 + pos: -85.5,-20.5 + parent: 2 + - uid: 18201 components: - type: Transform - pos: 66.5,11.5 - parent: 89 - - uid: 691 + pos: -122.5,22.5 + parent: 2 + - uid: 18202 components: - type: Transform - pos: 66.5,10.5 - parent: 89 - - uid: 692 + rot: -1.5707963267948966 rad + pos: -134.5,0.5 + parent: 2 + - uid: 18203 components: - type: Transform - pos: 64.5,8.5 - parent: 89 - - uid: 693 + pos: -84.5,-20.5 + parent: 2 + - uid: 18204 components: - type: Transform - pos: 64.5,7.5 - parent: 89 - - uid: 694 + rot: 1.5707963267948966 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 18205 components: - type: Transform - pos: 64.5,6.5 - parent: 89 - - uid: 695 + rot: 1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 18206 components: - type: Transform - pos: 64.5,5.5 - parent: 89 - - uid: 696 + rot: 1.5707963267948966 rad + pos: -94.5,-20.5 + parent: 2 + - uid: 18207 components: - type: Transform - pos: 64.5,3.5 - parent: 89 - - uid: 697 + rot: 1.5707963267948966 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 18208 components: - type: Transform - pos: 64.5,2.5 - parent: 89 - - uid: 698 + rot: 1.5707963267948966 rad + pos: -90.5,-20.5 + parent: 2 + - uid: 18209 components: - type: Transform - pos: 64.5,1.5 - parent: 89 - - uid: 699 + rot: 1.5707963267948966 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 18210 components: - type: Transform - pos: 64.5,0.5 - parent: 89 - - uid: 852 + rot: 1.5707963267948966 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 18211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-19.5 - parent: 89 - - uid: 857 + rot: 1.5707963267948966 rad + pos: -93.5,-20.5 + parent: 2 + - uid: 18212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-14.5 - parent: 89 - - uid: 858 + rot: 1.5707963267948966 rad + pos: -79.5,-20.5 + parent: 2 + - uid: 18213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-16.5 - parent: 89 - - uid: 859 + rot: 1.5707963267948966 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 18214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-15.5 - parent: 89 - - uid: 860 + rot: 1.5707963267948966 rad + pos: -81.5,-20.5 + parent: 2 + - uid: 18215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-17.5 - parent: 89 - - uid: 866 + rot: 1.5707963267948966 rad + pos: -77.5,-11.5 + parent: 2 + - uid: 18216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-18.5 - parent: 89 - - uid: 870 + rot: 1.5707963267948966 rad + pos: -95.5,-20.5 + parent: 2 + - uid: 18217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-22.5 - parent: 89 - - uid: 875 + rot: 1.5707963267948966 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 18218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-22.5 - parent: 89 - - uid: 877 + rot: 1.5707963267948966 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 18219 components: - type: Transform - pos: -106.5,22.5 - parent: 89 - - uid: 915 + rot: 1.5707963267948966 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 18220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-8.5 - parent: 89 - - uid: 916 + rot: 1.5707963267948966 rad + pos: -99.5,-20.5 + parent: 2 + - uid: 18221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-9.5 - parent: 89 - - uid: 917 + rot: 1.5707963267948966 rad + pos: -100.5,-20.5 + parent: 2 + - uid: 18222 components: - type: Transform - pos: -100.5,-6.5 - parent: 89 - - uid: 918 + rot: 1.5707963267948966 rad + pos: -67.5,-18.5 + parent: 2 + - uid: 18223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-10.5 - parent: 89 - - uid: 946 + rot: 1.5707963267948966 rad + pos: -66.5,-18.5 + parent: 2 + - uid: 18224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-12.5 - parent: 89 - - uid: 947 + rot: 1.5707963267948966 rad + pos: -71.5,-18.5 + parent: 2 + - uid: 18225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-12.5 - parent: 89 - - uid: 948 + rot: 1.5707963267948966 rad + pos: -72.5,-18.5 + parent: 2 + - uid: 18226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-12.5 - parent: 89 - - uid: 949 + pos: -51.5,-18.5 + parent: 2 + - uid: 18227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-12.5 - parent: 89 - - uid: 951 + rot: 1.5707963267948966 rad + pos: -68.5,-16.5 + parent: 2 + - uid: 18228 components: - type: Transform - pos: -101.5,-6.5 - parent: 89 - - uid: 952 + pos: -68.5,33.5 + parent: 2 + - uid: 18229 components: - type: Transform - pos: -102.5,-6.5 - parent: 89 - - uid: 953 + pos: -81.5,36.5 + parent: 2 + - uid: 18230 components: - type: Transform - pos: -103.5,-6.5 - parent: 89 - - uid: 954 + pos: -69.5,31.5 + parent: 2 + - uid: 18231 components: - type: Transform - pos: -103.5,6.5 - parent: 89 - - uid: 955 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 18232 components: - type: Transform - pos: -104.5,6.5 - parent: 89 - - uid: 956 + rot: 1.5707963267948966 rad + pos: -77.5,-14.5 + parent: 2 + - uid: 18233 components: - type: Transform - pos: -105.5,6.5 - parent: 89 - - uid: 957 + rot: 1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 18234 components: - type: Transform - pos: -106.5,7.5 - parent: 89 - - uid: 958 + rot: 1.5707963267948966 rad + pos: -77.5,-12.5 + parent: 2 + - uid: 18235 components: - type: Transform - pos: -106.5,8.5 - parent: 89 - - uid: 959 + pos: -4.5,47.5 + parent: 2 + - uid: 18236 components: - type: Transform - pos: -106.5,9.5 - parent: 89 - - uid: 967 + pos: -3.5,47.5 + parent: 2 + - uid: 18237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-6.5 - parent: 89 - - uid: 971 + pos: -2.5,47.5 + parent: 2 + - uid: 18238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - uid: 1050 + pos: -0.5,47.5 + parent: 2 + - uid: 18239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 - parent: 89 - - uid: 1052 + pos: 0.5,47.5 + parent: 2 + - uid: 18240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 89 - - uid: 1060 + pos: -7.5,47.5 + parent: 2 + - uid: 18241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 89 - - uid: 1065 + pos: -6.5,47.5 + parent: 2 + - uid: 18242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 89 - - uid: 1071 + pos: -9.5,36.5 + parent: 2 + - uid: 18243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 89 - - uid: 1072 + pos: -131.5,8.5 + parent: 2 + - uid: 18244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 89 - - uid: 1140 + pos: -131.5,7.5 + parent: 2 + - uid: 18245 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - uid: 1247 + pos: -131.5,6.5 + parent: 2 + - uid: 18246 components: - type: Transform - pos: -110.5,22.5 - parent: 89 - - uid: 1327 + pos: -131.5,5.5 + parent: 2 + - uid: 18247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 1328 + pos: -131.5,4.5 + parent: 2 + - uid: 18248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 1329 + pos: -131.5,3.5 + parent: 2 + - uid: 18249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 1330 + pos: -131.5,2.5 + parent: 2 + - uid: 18250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 1331 + pos: -52.5,49.5 + parent: 2 + - uid: 18251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 1332 + pos: -68.5,34.5 + parent: 2 + - uid: 18252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 1333 + pos: -69.5,38.5 + parent: 2 + - uid: 18253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 1334 + pos: -68.5,35.5 + parent: 2 + - uid: 18254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1335 + pos: -69.5,29.5 + parent: 2 + - uid: 18255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 1336 + pos: -60.5,46.5 + parent: 2 + - uid: 18256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 1608 + pos: -61.5,46.5 + parent: 2 + - uid: 18257 components: - type: Transform - pos: -8.5,-39.5 - parent: 89 - - uid: 1666 + pos: -68.5,44.5 + parent: 2 + - uid: 18258 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 1668 + pos: -68.5,43.5 + parent: 2 + - uid: 18259 components: - type: Transform - pos: 3.5,-26.5 - parent: 89 - - uid: 1674 + pos: -68.5,42.5 + parent: 2 + - uid: 18260 components: - type: Transform - pos: 3.5,-23.5 - parent: 89 - - uid: 1675 + pos: -65.5,48.5 + parent: 2 + - uid: 18261 components: - type: Transform - pos: 1.5,-23.5 - parent: 89 - - uid: 1714 + pos: -65.5,47.5 + parent: 2 + - uid: 18262 components: - type: Transform - pos: -9.5,10.5 - parent: 89 - - uid: 1722 + pos: -67.5,48.5 + parent: 2 + - uid: 18263 components: - type: Transform - pos: -69.5,29.5 - parent: 89 - - uid: 1746 + pos: -49.5,47.5 + parent: 2 + - uid: 18264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - uid: 1748 + pos: -49.5,45.5 + parent: 2 + - uid: 18265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 89 - - uid: 1749 + pos: -49.5,48.5 + parent: 2 + - uid: 18266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 89 - - uid: 1750 + pos: -41.5,30.5 + parent: 2 + - uid: 18267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 89 - - uid: 1898 + pos: -41.5,32.5 + parent: 2 + - uid: 18268 components: - type: Transform - pos: 1.5,-26.5 - parent: 89 - - uid: 1900 + pos: -41.5,31.5 + parent: 2 + - uid: 18269 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 1901 + pos: -124.5,-12.5 + parent: 2 + - uid: 18270 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 1903 + pos: -124.5,-13.5 + parent: 2 + - uid: 18271 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 1913 + pos: -121.5,-14.5 + parent: 2 + - uid: 18272 components: - type: Transform - pos: -8.5,-40.5 - parent: 89 - - uid: 2198 + pos: -122.5,-14.5 + parent: 2 + - uid: 18273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 89 - - uid: 2202 + pos: -27.5,37.5 + parent: 2 + - uid: 18274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 89 - - uid: 2203 + pos: -27.5,36.5 + parent: 2 + - uid: 18275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 89 - - uid: 2322 + pos: -81.5,38.5 + parent: 2 + - uid: 18276 components: - type: Transform - pos: 34.5,9.5 - parent: 89 - - uid: 2323 + pos: -32.5,36.5 + parent: 2 + - uid: 18277 components: - type: Transform - pos: 36.5,9.5 - parent: 89 - - uid: 2339 + pos: -81.5,29.5 + parent: 2 + - uid: 18278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2340 + pos: -81.5,31.5 + parent: 2 + - uid: 18279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2341 + pos: -32.5,37.5 + parent: 2 + - uid: 18280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2373 + pos: -89.5,36.5 + parent: 2 + - uid: 18281 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 - - uid: 2393 + pos: -83.5,48.5 + parent: 2 + - uid: 18282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2548 + pos: -85.5,48.5 + parent: 2 + - uid: 18283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 2549 + pos: -82.5,42.5 + parent: 2 + - uid: 18284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2550 + pos: -82.5,43.5 + parent: 2 + - uid: 18285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 2551 + pos: -85.5,46.5 + parent: 2 + - uid: 18286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 2552 + pos: -83.5,46.5 + parent: 2 + - uid: 18287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 2553 + pos: -82.5,44.5 + parent: 2 + - uid: 18288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 2554 + pos: -15.5,25.5 + parent: 2 + - uid: 18289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-20.5 - parent: 89 - - uid: 2628 + pos: -120.5,22.5 + parent: 2 + - uid: 18290 components: - type: Transform - pos: 1.5,-11.5 - parent: 89 - - uid: 2849 + pos: -123.5,22.5 + parent: 2 + - uid: 18291 components: - type: Transform - pos: 4.5,-9.5 - parent: 89 - - uid: 2850 + pos: -121.5,22.5 + parent: 2 + - uid: 18292 components: - type: Transform - pos: 6.5,-10.5 - parent: 89 - - uid: 2851 + pos: -13.5,25.5 + parent: 2 + - uid: 18293 components: - type: Transform - pos: 6.5,-12.5 - parent: 89 - - uid: 2852 + pos: -12.5,25.5 + parent: 2 + - uid: 18294 components: - type: Transform - pos: 8.5,-7.5 - parent: 89 - - uid: 2853 + pos: -14.5,25.5 + parent: 2 + - uid: 18295 components: - type: Transform - pos: 7.5,-7.5 - parent: 89 - - uid: 2854 + pos: -53.5,49.5 + parent: 2 + - uid: 18296 components: - type: Transform - pos: 12.5,-4.5 - parent: 89 - - uid: 2855 + pos: -100.5,28.5 + parent: 2 + - uid: 18297 components: - type: Transform - pos: 13.5,-4.5 - parent: 89 - - uid: 2856 + pos: -49.5,41.5 + parent: 2 + - uid: 18298 components: - type: Transform - pos: 14.5,-4.5 - parent: 89 - - uid: 2857 + pos: -51.5,49.5 + parent: 2 + - uid: 18299 components: - type: Transform - pos: 15.5,-4.5 - parent: 89 - - uid: 2858 + pos: 38.5,27.5 + parent: 2 + - uid: 18300 components: - type: Transform - pos: 28.5,-7.5 - parent: 89 - - uid: 2859 + pos: -76.5,22.5 + parent: 2 + - uid: 18301 components: - type: Transform - pos: 29.5,-6.5 - parent: 89 - - uid: 2860 + pos: -75.5,22.5 + parent: 2 + - uid: 18302 components: - type: Transform - pos: 29.5,-5.5 - parent: 89 - - uid: 2861 + pos: -74.5,22.5 + parent: 2 + - uid: 18303 components: - type: Transform - pos: 25.5,-7.5 - parent: 89 - - uid: 2862 + pos: -123.5,-14.5 + parent: 2 + - uid: 18304 components: - type: Transform - pos: 32.5,-4.5 - parent: 89 - - uid: 2863 + pos: -118.5,25.5 + parent: 2 + - uid: 18305 components: - type: Transform - pos: 33.5,-4.5 - parent: 89 - - uid: 2864 + pos: -117.5,26.5 + parent: 2 + - uid: 18306 components: - type: Transform - pos: 34.5,-4.5 - parent: 89 - - uid: 2865 + pos: -114.5,26.5 + parent: 2 + - uid: 18307 components: - type: Transform - pos: 35.5,-4.5 - parent: 89 - - uid: 2869 + rot: 3.141592653589793 rad + pos: 56.5,-34.5 + parent: 2 + - uid: 18308 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 - - uid: 2870 + pos: 9.5,-22.5 + parent: 2 + - uid: 18309 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 - - uid: 2871 + pos: 39.5,-32.5 + parent: 2 + - uid: 18310 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 - - uid: 3132 + pos: 39.5,-31.5 + parent: 2 + - uid: 18311 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 89 - - uid: 3135 + pos: 59.5,-31.5 + parent: 2 + - uid: 18312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 89 - - uid: 3150 + pos: 33.5,-27.5 + parent: 2 + - uid: 18313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-3.5 - parent: 89 - - uid: 3151 + pos: 33.5,-26.5 + parent: 2 + - uid: 18314 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-4.5 - parent: 89 - - uid: 3160 + pos: 57.5,-34.5 + parent: 2 + - uid: 18315 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-7.5 - parent: 89 - - uid: 3161 + pos: 59.5,-33.5 + parent: 2 + - uid: 18316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 89 - - uid: 4848 + rot: 1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 18317 components: - type: Transform - pos: -71.5,-18.5 - parent: 89 - - uid: 4850 + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - uid: 18318 components: - type: Transform - pos: -72.5,-18.5 - parent: 89 - - uid: 4851 + rot: 3.141592653589793 rad + pos: 3.5,-32.5 + parent: 2 + - uid: 18319 components: - type: Transform - pos: -67.5,-18.5 - parent: 89 - - uid: 4853 + pos: 34.5,-19.5 + parent: 2 + - uid: 18320 components: - type: Transform - pos: -66.5,-18.5 - parent: 89 - - uid: 4862 + rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 18321 components: - type: Transform - pos: -49.5,-16.5 - parent: 89 - - uid: 4863 + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 2 + - uid: 18322 components: - type: Transform - pos: -48.5,-18.5 - parent: 89 - - uid: 4871 + rot: 3.141592653589793 rad + pos: 3.5,-39.5 + parent: 2 + - uid: 18323 components: - type: Transform - pos: -48.5,-14.5 - parent: 89 - - uid: 4901 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 18324 components: - type: Transform - pos: -68.5,-16.5 - parent: 89 - - uid: 5422 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 18325 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 6183 + rot: 3.141592653589793 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 18326 components: - type: Transform - pos: -18.5,4.5 - parent: 89 - - uid: 6211 + pos: 39.5,-30.5 + parent: 2 + - uid: 18327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 89 - - uid: 6213 + pos: 39.5,-29.5 + parent: 2 + - uid: 18328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,4.5 - parent: 89 - - uid: 6214 + rot: 3.141592653589793 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 18329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 89 - - uid: 6215 + rot: 3.141592653589793 rad + pos: 58.5,-34.5 + parent: 2 + - uid: 18330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 89 - - uid: 6216 + pos: 29.5,-17.5 + parent: 2 + - uid: 18331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 89 - - uid: 6217 + pos: 39.5,-28.5 + parent: 2 + - uid: 18332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 89 - - uid: 6299 + pos: 28.5,-17.5 + parent: 2 + - uid: 18333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 89 - - uid: 6300 + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - uid: 18334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 89 - - uid: 6448 + rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + - uid: 18335 components: - type: Transform - pos: -69.5,31.5 - parent: 89 - - uid: 6471 + rot: 3.141592653589793 rad + pos: 57.5,16.5 + parent: 2 + - uid: 18336 components: - type: Transform - pos: -81.5,29.5 - parent: 89 - - uid: 6473 + rot: 3.141592653589793 rad + pos: 56.5,16.5 + parent: 2 + - uid: 18337 components: - type: Transform - pos: -81.5,31.5 - parent: 89 - - uid: 6479 + rot: 3.141592653589793 rad + pos: 55.5,16.5 + parent: 2 + - uid: 18338 components: - type: Transform - pos: -81.5,36.5 - parent: 89 - - uid: 6509 + rot: 3.141592653589793 rad + pos: 54.5,16.5 + parent: 2 + - uid: 18339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - uid: 6548 + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - uid: 18340 components: - type: Transform - pos: -69.5,36.5 - parent: 89 - - uid: 6791 + rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 2 + - uid: 18341 components: - type: Transform - pos: -42.5,0.5 - parent: 89 - - uid: 6792 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 18342 components: - type: Transform - pos: -43.5,2.5 - parent: 89 - - uid: 6793 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 18343 components: - type: Transform - pos: -45.5,2.5 - parent: 89 - - uid: 6797 + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 18344 components: - type: Transform - pos: -42.5,-1.5 - parent: 89 - - uid: 6893 + rot: -1.5707963267948966 rad + pos: 65.5,14.5 + parent: 2 + - uid: 18345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,4.5 - parent: 89 - - uid: 6924 + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + - uid: 18346 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - uid: 7094 + pos: 66.5,12.5 + parent: 2 + - uid: 18347 components: - type: Transform - pos: -61.5,-3.5 - parent: 89 - - uid: 7095 + rot: -1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - uid: 18348 components: - type: Transform - pos: -64.5,-3.5 - parent: 89 - - uid: 7104 + rot: -1.5707963267948966 rad + pos: 66.5,10.5 + parent: 2 + - uid: 18349 components: - type: Transform - pos: -83.5,14.5 - parent: 89 - - uid: 7268 + rot: 3.141592653589793 rad + pos: 64.5,8.5 + parent: 2 + - uid: 18350 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,3.5 - parent: 89 - - uid: 7280 + pos: 64.5,7.5 + parent: 2 + - uid: 18351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7282 + rot: 3.141592653589793 rad + pos: 64.5,6.5 + parent: 2 + - uid: 18352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-12.5 - parent: 89 - - uid: 7283 + rot: 3.141592653589793 rad + pos: 64.5,5.5 + parent: 2 + - uid: 18353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7365 + rot: 3.141592653589793 rad + pos: 64.5,1.5 + parent: 2 + - uid: 18354 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,4.5 - parent: 89 - - uid: 7437 + pos: 63.5,-5.5 + parent: 2 + - uid: 18355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-14.5 - parent: 89 - - uid: 7628 + rot: 3.141592653589793 rad + pos: 64.5,-5.5 + parent: 2 + - uid: 18356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,2.5 - parent: 89 - - uid: 7782 + pos: 57.5,-7.5 + parent: 2 + - uid: 18357 components: - type: Transform - pos: -4.5,47.5 - parent: 89 - - uid: 7783 + pos: 55.5,-7.5 + parent: 2 + - uid: 18358 components: - type: Transform - pos: -3.5,47.5 - parent: 89 - - uid: 7784 + pos: 54.5,-7.5 + parent: 2 + - uid: 18359 components: - type: Transform - pos: -2.5,47.5 - parent: 89 - - uid: 7785 + rot: 3.141592653589793 rad + pos: 64.5,0.5 + parent: 2 + - uid: 18360 components: - type: Transform - pos: -0.5,47.5 - parent: 89 - - uid: 7786 + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 18361 components: - type: Transform - pos: 0.5,47.5 - parent: 89 - - uid: 7787 + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 18362 components: - type: Transform - pos: -7.5,47.5 - parent: 89 - - uid: 7788 + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 18363 components: - type: Transform - pos: -6.5,47.5 - parent: 89 - - uid: 7795 + pos: 59.5,-7.5 + parent: 2 + - uid: 18364 components: - type: Transform - pos: 41.5,-14.5 - parent: 89 - - uid: 7935 + pos: 56.5,-7.5 + parent: 2 + - uid: 18365 components: - type: Transform - pos: -9.5,36.5 - parent: 89 - - uid: 7938 + pos: 58.5,-7.5 + parent: 2 + - uid: 18366 components: - type: Transform - pos: -61.5,7.5 - parent: 89 - - uid: 7939 + rot: 3.141592653589793 rad + pos: 62.5,-5.5 + parent: 2 + - uid: 18367 components: - type: Transform - pos: -61.5,9.5 - parent: 89 - - uid: 7940 + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 + - uid: 18368 components: - type: Transform - pos: -61.5,10.5 - parent: 89 - - uid: 8031 + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - uid: 18369 components: - type: Transform - pos: -1.5,36.5 - parent: 89 - - uid: 8081 + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 2 + - uid: 18370 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,11.5 - parent: 89 - - uid: 8341 + pos: 49.5,17.5 + parent: 2 + - uid: 18371 components: - type: Transform - pos: -58.5,20.5 - parent: 89 - - uid: 8342 + rot: 3.141592653589793 rad + pos: 65.5,-5.5 + parent: 2 + - uid: 18372 components: - type: Transform - pos: -58.5,22.5 - parent: 89 - - uid: 8343 + pos: 64.5,2.5 + parent: 2 + - uid: 18373 components: - type: Transform - pos: -59.5,23.5 - parent: 89 - - uid: 8344 + pos: 64.5,3.5 + parent: 2 + - uid: 18374 components: - type: Transform - pos: -60.5,23.5 - parent: 89 - - uid: 8345 + pos: 66.5,-4.5 + parent: 2 + - uid: 18375 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8352 + rot: 3.141592653589793 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 18376 components: - type: Transform - pos: -119.5,6.5 - parent: 89 - - uid: 8383 + rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 2 + - uid: 18377 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - uid: 8459 + rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 18378 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,5.5 - parent: 89 - - uid: 8586 + pos: -116.5,26.5 + parent: 2 + - uid: 18379 components: - type: Transform - pos: -119.5,1.5 - parent: 89 - - uid: 8694 + pos: -118.5,24.5 + parent: 2 + - uid: 18380 components: - type: Transform - pos: -114.5,2.5 - parent: 89 - - uid: 8695 + rot: 3.141592653589793 rad + pos: -115.5,26.5 + parent: 2 + - uid: 18381 components: - type: Transform - pos: -114.5,5.5 - parent: 89 - - uid: 8733 + pos: -111.5,28.5 + parent: 2 + - uid: 18382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8734 + pos: -109.5,28.5 + parent: 2 + - uid: 18383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,7.5 - parent: 89 - - uid: 8735 + pos: -107.5,28.5 + parent: 2 + - uid: 18384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,6.5 - parent: 89 - - uid: 8736 + pos: -105.5,28.5 + parent: 2 + - uid: 18385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,5.5 - parent: 89 - - uid: 8737 + pos: -103.5,28.5 + parent: 2 + - uid: 18386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,4.5 - parent: 89 - - uid: 8738 + pos: -114.5,-21.5 + parent: 2 + - uid: 18387 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,3.5 - parent: 89 - - uid: 8739 + pos: -61.5,-20.5 + parent: 2 + - uid: 18388 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,2.5 - parent: 89 - - uid: 8740 + pos: -61.5,-19.5 + parent: 2 + - uid: 18389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,1.5 - parent: 89 - - uid: 8741 + pos: -48.5,-18.5 + parent: 2 + - uid: 18390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,0.5 - parent: 89 - - uid: 8742 + pos: -62.5,46.5 + parent: 2 + - uid: 18391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-0.5 - parent: 89 - - uid: 8844 + pos: -63.5,48.5 + parent: 2 + - uid: 18392 components: - type: Transform - pos: 41.5,-12.5 - parent: 89 - - uid: 8937 + pos: -121.5,-15.5 + parent: 2 + - uid: 18393 components: - type: Transform - pos: -136.5,-8.5 - parent: 89 - - uid: 9012 + pos: -82.5,35.5 + parent: 2 + - uid: 18394 components: - type: Transform - pos: -111.5,22.5 - parent: 89 - - uid: 9243 + pos: -82.5,33.5 + parent: 2 + - uid: 18395 components: - type: Transform - pos: -136.5,-9.5 - parent: 89 - - uid: 9258 + pos: -82.5,34.5 + parent: 2 + - uid: 18396 components: - type: Transform - pos: 29.5,9.5 - parent: 89 - - uid: 9674 + rot: -1.5707963267948966 rad + pos: -133.5,0.5 + parent: 2 + - uid: 18397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,45.5 - parent: 89 - - uid: 9697 + pos: -69.5,36.5 + parent: 2 + - uid: 18398 components: - type: Transform - pos: -57.5,31.5 - parent: 89 - - uid: 9698 + rot: -1.5707963267948966 rad + pos: -131.5,1.5 + parent: 2 + - uid: 18399 components: - type: Transform - pos: -56.5,31.5 - parent: 89 - - uid: 9812 + rot: -1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - uid: 18400 components: - type: Transform - pos: -58.5,34.5 - parent: 89 - - uid: 9813 + rot: -1.5707963267948966 rad + pos: -89.5,33.5 + parent: 2 + - uid: 18401 components: - type: Transform - pos: -68.5,33.5 - parent: 89 - - uid: 9814 + rot: -1.5707963267948966 rad + pos: -89.5,39.5 + parent: 2 + - uid: 18402 components: - type: Transform - pos: -68.5,34.5 - parent: 89 - - uid: 9815 + rot: -1.5707963267948966 rad + pos: -89.5,43.5 + parent: 2 + - uid: 18403 components: - type: Transform - pos: -68.5,35.5 - parent: 89 - - uid: 9820 + pos: -51.5,24.5 + parent: 2 + - uid: 23857 components: - type: Transform - pos: -69.5,38.5 - parent: 89 - - uid: 9823 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23711 + - uid: 23858 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 9824 + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23711 + - uid: 23859 components: - type: Transform - pos: -65.5,48.5 - parent: 89 - - uid: 9825 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 23711 + - uid: 23860 components: - type: Transform - pos: -68.5,44.5 - parent: 89 - - uid: 9826 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 23711 + - uid: 23861 components: - type: Transform - pos: -68.5,43.5 - parent: 89 - - uid: 9827 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23711 + - uid: 23862 components: - type: Transform - pos: -68.5,42.5 - parent: 89 - - uid: 9828 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23711 + - uid: 23863 components: - type: Transform - pos: -62.5,46.5 - parent: 89 - - uid: 9829 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 23711 + - uid: 23864 components: - type: Transform - pos: -61.5,46.5 - parent: 89 - - uid: 9830 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 23711 + - uid: 23865 components: - type: Transform - pos: -60.5,46.5 - parent: 89 - - uid: 9880 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23866 components: - type: Transform - pos: -52.5,49.5 - parent: 89 - - uid: 9882 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23867 components: - type: Transform - pos: -51.5,49.5 - parent: 89 - - uid: 9902 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 23711 + - uid: 23868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,49.5 - parent: 89 - - uid: 9909 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23869 components: - type: Transform - pos: -53.5,49.5 - parent: 89 - - uid: 10052 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 23711 + - uid: 23870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 89 - - uid: 10266 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23871 components: - type: Transform - pos: -41.5,30.5 - parent: 89 - - uid: 10267 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 23711 + - uid: 23872 components: - type: Transform - pos: -41.5,32.5 - parent: 89 - - uid: 10284 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23711 + - uid: 23873 components: - type: Transform - pos: -41.5,31.5 - parent: 89 - - uid: 10285 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 23711 + - uid: 23874 components: - type: Transform - pos: -41.5,27.5 - parent: 89 - - uid: 10391 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 23711 + - uid: 24226 components: - type: Transform - pos: -124.5,-12.5 - parent: 89 - - uid: 10392 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 23919 + - uid: 24227 components: - type: Transform - pos: -124.5,-13.5 - parent: 89 - - uid: 10395 + pos: 4.5,7.5 + parent: 23919 + - uid: 24228 components: - type: Transform - pos: -123.5,-14.5 - parent: 89 - - uid: 10397 + pos: 3.5,7.5 + parent: 23919 + - uid: 24229 components: - type: Transform - pos: -122.5,-14.5 - parent: 89 - - uid: 10417 + pos: 5.5,7.5 + parent: 23919 + - uid: 24230 components: - type: Transform - pos: -115.5,21.5 - parent: 89 - - uid: 10422 + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 23919 + - uid: 24231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 89 - - uid: 10423 + pos: 7.5,5.5 + parent: 23919 + - uid: 24417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 89 - - uid: 10546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,18.5 - parent: 89 - - uid: 10547 + pos: -1.5,-2.5 + parent: 24340 + - uid: 24418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,18.5 - parent: 89 - - uid: 10598 + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 24340 + - uid: 24419 components: - type: Transform - pos: -86.5,38.5 - parent: 89 - - uid: 10601 + pos: 0.5,1.5 + parent: 24340 + - uid: 27858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,36.5 - parent: 89 - - uid: 10602 + pos: 5.5,-0.5 + parent: 27260 + - uid: 27859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 89 - - uid: 10603 + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 27260 + - uid: 27860 components: - type: Transform - pos: -81.5,38.5 - parent: 89 - - uid: 10604 + pos: 5.5,-2.5 + parent: 27260 + - uid: 27861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 89 - - uid: 10605 + pos: -4.5,-0.5 + parent: 27260 + - uid: 27862 components: - type: Transform - pos: -87.5,38.5 - parent: 89 - - uid: 10606 + pos: -4.5,-1.5 + parent: 27260 + - uid: 27863 components: - type: Transform - pos: -88.5,38.5 - parent: 89 - - uid: 10607 + pos: -4.5,-2.5 + parent: 27260 +- proto: ShuttleWindowDiagonal + entities: + - uid: 18404 components: - type: Transform - pos: -89.5,38.5 - parent: 89 - - uid: 10608 + rot: 1.5707963267948966 rad + pos: -121.5,-16.5 + parent: 2 + - uid: 18405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 89 - - uid: 10611 + rot: 1.5707963267948966 rad + pos: -124.5,-14.5 + parent: 2 + - uid: 23875 components: - type: Transform - pos: -82.5,33.5 - parent: 89 - - uid: 10612 + pos: 1.5,-0.5 + parent: 23711 + - uid: 23876 components: - type: Transform - pos: -82.5,34.5 - parent: 89 - - uid: 10613 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 23711 + - uid: 24232 components: - type: Transform - pos: -82.5,35.5 - parent: 89 - - uid: 10614 + pos: 2.5,7.5 + parent: 23919 + - uid: 24233 components: - type: Transform - pos: -82.5,42.5 - parent: 89 - - uid: 10615 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 23919 + - uid: 24234 components: - type: Transform - pos: -82.5,43.5 - parent: 89 - - uid: 10616 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 23919 + - uid: 24235 components: - type: Transform - pos: -82.5,44.5 - parent: 89 - - uid: 10618 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 23919 + - uid: 24420 components: - type: Transform - pos: -83.5,46.5 - parent: 89 - - uid: 10619 + pos: -0.5,1.5 + parent: 24340 + - uid: 24421 components: - type: Transform - pos: -83.5,48.5 - parent: 89 - - uid: 10620 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 24340 +- proto: SignAi + entities: + - uid: 18406 components: - type: Transform - pos: -85.5,48.5 - parent: 89 - - uid: 10621 + pos: 56.5,5.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 18407 components: - type: Transform - pos: -85.5,46.5 - parent: 89 - - uid: 10622 + rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18175: + - Pressed: Toggle + - uid: 18408 components: + - type: MetaData + name: кнопка ставней 2 - type: Transform - pos: -86.5,44.5 - parent: 89 - - uid: 10623 + rot: -1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18131: + - Pressed: Toggle + 18121: + - Pressed: Toggle + 18122: + - Pressed: Toggle + - uid: 18409 components: + - type: MetaData + name: кнопка ставней 1 - type: Transform - pos: -86.5,43.5 - parent: 89 - - uid: 10624 + rot: 1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18120: + - Pressed: Toggle + 18119: + - Pressed: Toggle + 18123: + - Pressed: Toggle + - uid: 18410 components: + - type: MetaData + desc: Эта кнопка активирует внешний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: -86.5,42.5 - parent: 89 - - uid: 10666 + rot: 3.141592653589793 rad + pos: -0.696833,-42.499794 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1035: + - Pressed: Toggle + - uid: 18411 components: + - type: MetaData + desc: Эта кнопка активирует внешний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: 3.5,-40.5 - parent: 89 - - uid: 10674 + rot: 3.141592653589793 rad + pos: -4.298002,-42.499794 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1034: + - Pressed: Toggle + - uid: 18412 components: - type: Transform - pos: 3.5,-39.5 - parent: 89 - - uid: 10820 + rot: 3.141592653589793 rad + pos: -83.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1037: + - Pressed: Toggle + - uid: 18413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 89 - - uid: 10979 + pos: -82.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1037: + - Pressed: Toggle + - uid: 18414 components: - type: Transform - pos: -21.5,5.5 - parent: 89 - - uid: 11008 + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18178: + - Pressed: Toggle + 18125: + - Pressed: Toggle + 18177: + - Pressed: Toggle + 18126: + - Pressed: Toggle + 18176: + - Pressed: Toggle + - uid: 18415 components: - type: Transform - pos: -12.5,10.5 - parent: 89 - - uid: 11061 + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1043: + - Pressed: Toggle + 1042: + - Pressed: Toggle + - uid: 18416 components: + - type: MetaData + desc: Эта кнопка активирует внутренний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: 1.5,19.5 - parent: 89 - - uid: 11156 + rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1033: + - Pressed: Toggle + - uid: 18417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 11388 + pos: -43.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18130: + - Pressed: Toggle + 18129: + - Pressed: Toggle + 18128: + - Pressed: Toggle + 18127: + - Pressed: Toggle + - uid: 18418 components: - type: Transform - pos: 1.5,15.5 - parent: 89 - - uid: 11390 + rot: -1.5707963267948966 rad + pos: -10.476543,19.732094 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17172: + - Pressed: Toggle + - uid: 18419 components: - type: Transform - pos: 1.5,21.5 - parent: 89 - - uid: 11843 + pos: 7.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18151: + - Pressed: Toggle + 18150: + - Pressed: Toggle + - uid: 18420 components: - type: Transform - pos: -108.5,-20.5 - parent: 89 - - uid: 11859 + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1036: + - Pressed: Toggle + - uid: 18421 components: - type: Transform - pos: -107.5,-20.5 - parent: 89 - - uid: 12856 + pos: -99.74609,28.376194 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18115: + - Pressed: Toggle + - uid: 18422 components: - type: Transform - pos: -15.5,25.5 - parent: 89 - - uid: 14108 + pos: -99.43359,28.376194 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18111: + - Pressed: Toggle + - uid: 18423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 89 - - uid: 14111 + pos: -101.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18134: + - Pressed: Toggle + 18133: + - Pressed: Toggle + 18132: + - Pressed: Toggle + 18135: + - Pressed: Toggle + 18136: + - Pressed: Toggle + 18137: + - Pressed: Toggle + - uid: 18424 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 89 - - uid: 14666 + pos: -64.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1041: + - Pressed: Toggle + 1038: + - Pressed: Toggle + - uid: 18425 components: - type: Transform - pos: -123.5,22.5 - parent: 89 - - uid: 14667 + pos: -7.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18148: + - Pressed: Toggle + 18147: + - Pressed: Toggle + 18145: + - Pressed: Toggle + 18146: + - Pressed: Toggle + - uid: 18426 components: - type: Transform - pos: -122.5,22.5 - parent: 89 - - uid: 14668 + rot: 3.141592653589793 rad + pos: -116.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1060: + - Pressed: Toggle + 1059: + - Pressed: Toggle + 1063: + - Pressed: Toggle + 1062: + - Pressed: Toggle + 1061: + - Pressed: Toggle + 1058: + - Pressed: Toggle + - uid: 18427 components: - type: Transform - pos: -121.5,22.5 - parent: 89 - - uid: 14669 + rot: 3.141592653589793 rad + pos: -86.5,11.5 + parent: 2 + - uid: 18428 components: - type: Transform - pos: -120.5,22.5 - parent: 89 - - uid: 14732 + rot: -1.5707963267948966 rad + pos: -83.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18142: + - Pressed: Toggle + 18179: + - Pressed: Toggle + 18143: + - Pressed: Toggle + - uid: 18429 components: - type: Transform - pos: 9.5,-22.5 - parent: 89 - - uid: 14884 + pos: 0.7500007,-28.502241 + parent: 2 + - uid: 18430 components: - type: Transform - pos: -13.5,-34.5 - parent: 89 - - uid: 14885 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 18431 components: - type: Transform - pos: -13.5,-35.5 - parent: 89 - - uid: 14886 + pos: 22.036852,7.3139024 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18158: + - Pressed: Toggle + 18153: + - Pressed: Toggle + 18159: + - Pressed: Toggle + - uid: 18432 components: - type: Transform - pos: -13.5,-36.5 - parent: 89 - - uid: 15013 + pos: 17.5,12.5 + parent: 2 + - uid: 18433 components: - type: Transform - pos: 1.5,17.5 - parent: 89 - - uid: 15240 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18174: + - Pressed: Toggle + - uid: 18434 components: - type: Transform - pos: -13.5,25.5 - parent: 89 - - uid: 15242 + pos: 32.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 120: + - Pressed: DoorBolt + - uid: 18435 components: - type: Transform - pos: -12.5,25.5 - parent: 89 - - uid: 15243 + pos: 30.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 121: + - Pressed: DoorBolt + - uid: 18436 components: + - type: MetaData + desc: Эта кнопка активирует внутренний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: -14.5,25.5 - parent: 89 - - uid: 15623 + rot: 3.141592653589793 rad + pos: -4.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1045: + - Pressed: Toggle + - uid: 18437 components: - type: Transform - pos: -112.5,-15.5 - parent: 89 - - uid: 15624 + pos: 20.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18160: + - Pressed: Toggle + 18161: + - Pressed: Toggle + 18162: + - Pressed: Toggle + 18163: + - Pressed: Toggle + 18164: + - Pressed: Toggle + 18165: + - Pressed: Toggle + - uid: 18438 components: - type: Transform - pos: -114.5,-15.5 - parent: 89 - - uid: 15873 + rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18156: + - Pressed: Toggle + 18155: + - Pressed: Toggle + - uid: 18439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 89 - - uid: 16410 + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18166: + - Pressed: Toggle + 18157: + - Pressed: Toggle + 18124: + - Pressed: Toggle + - uid: 18440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 89 - - uid: 16454 + pos: 45.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18168: + - Pressed: Toggle + 18167: + - Pressed: Toggle + 18170: + - Pressed: Toggle + 18169: + - Pressed: Toggle + - uid: 18441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,43.5 - parent: 89 - - uid: 16456 + rot: -1.5707963267948966 rad + pos: -83.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18139: + - Pressed: Toggle + 18140: + - Pressed: Toggle + 18141: + - Pressed: Toggle + - uid: 18442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,42.5 - parent: 89 - - uid: 16457 + pos: -33.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 113: + - Pressed: DoorBolt + - uid: 18443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 89 - - uid: 16460 + pos: -26.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 478: + - Pressed: DoorBolt + - uid: 18444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,41.5 - parent: 89 - - uid: 17047 + pos: -26.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 112: + - Pressed: DoorBolt + - uid: 18445 components: - type: Transform - pos: 41.5,-19.5 - parent: 89 - - uid: 17048 + pos: -33.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 111: + - Pressed: DoorBolt + - uid: 18446 components: - type: Transform - pos: 43.5,-19.5 - parent: 89 - - uid: 17049 + pos: -33.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 110: + - Pressed: DoorBolt + - uid: 18447 components: - type: Transform - pos: 39.5,-30.5 - parent: 89 - - uid: 17050 + pos: -26.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 109: + - Pressed: DoorBolt + - uid: 18448 components: - type: Transform - pos: 39.5,-28.5 - parent: 89 - - uid: 17053 + pos: 5.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17211: + - Pressed: Toggle + - uid: 18449 components: - type: Transform - pos: 39.5,-29.5 - parent: 89 - - uid: 17212 + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17333: + - Pressed: Toggle + - uid: 26716 components: - type: Transform - pos: 39.5,-31.5 - parent: 89 - - uid: 17248 + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26710: + - Pressed: Toggle + 26711: + - Pressed: Toggle + 26712: + - Pressed: Toggle + - uid: 26717 components: - type: Transform - pos: -49.5,48.5 - parent: 89 - - uid: 17253 + pos: -35.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 24462: + - Pressed: DoorBolt + - uid: 26718 components: - type: Transform - pos: -49.5,47.5 - parent: 89 - - uid: 17419 + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26707: + - Pressed: Toggle + 26706: + - Pressed: Toggle + - uid: 26719 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 89 - - uid: 18424 + pos: -18.5,-22.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26709: + - Pressed: Toggle + 26708: + - Pressed: Toggle + - uid: 26720 components: - type: Transform - pos: 48.5,21.5 - parent: 89 - - uid: 19726 + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25057: + - Pressed: Toggle + 25060: + - Pressed: Toggle + - uid: 26721 components: - type: Transform - pos: -109.5,-20.5 - parent: 89 - - uid: 19772 + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25059: + - Pressed: Toggle + 25058: + - Pressed: Toggle + - uid: 26722 components: - type: Transform - pos: -136.5,-7.5 - parent: 89 - - uid: 19773 + pos: -14.5,8.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25056: + - Pressed: Toggle + 25054: + - Pressed: Toggle + - uid: 26723 components: - type: Transform - pos: -136.5,-6.5 - parent: 89 - - uid: 19774 + pos: -9.5,8.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25053: + - Pressed: Toggle + 25055: + - Pressed: Toggle + - uid: 26724 components: - type: Transform - pos: -136.5,-5.5 - parent: 89 - - uid: 19863 + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26586: + - Pressed: Toggle + - uid: 26725 components: - type: Transform - pos: 21.5,35.5 - parent: 89 - - uid: 19866 + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25049: + - Pressed: Toggle + 25050: + - Pressed: Toggle + 25051: + - Pressed: Toggle + 25052: + - Pressed: Toggle + - uid: 26726 components: - type: Transform - pos: 27.5,36.5 - parent: 89 - - uid: 19870 + rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25046: + - Pressed: Toggle + 25047: + - Pressed: Toggle + 25045: + - Pressed: Toggle + 25048: + - Pressed: Toggle + - uid: 26727 components: - type: Transform - pos: 21.5,36.5 - parent: 89 - - uid: 19871 + rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26610: + - Pressed: Toggle + - uid: 26728 components: - type: Transform - pos: 23.5,44.5 - parent: 89 - - uid: 19872 + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26573: + - Pressed: Toggle + - uid: 26729 components: - type: Transform - pos: 24.5,44.5 - parent: 89 - - uid: 19873 + rot: 3.141592653589793 rad + pos: -33.5,10.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26572: + - Pressed: Toggle + - uid: 26730 components: - type: Transform - pos: 25.5,44.5 - parent: 89 - - uid: 19874 + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26571: + - Pressed: Toggle + - uid: 26731 components: - type: Transform - pos: 25.5,41.5 - parent: 89 - - uid: 19875 + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26592: + - Pressed: Toggle + - uid: 26732 components: - type: Transform - pos: 24.5,41.5 - parent: 89 - - uid: 19882 + pos: 11.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 24463: + - Pressed: DoorBolt +- proto: SignalButtonBridge + entities: + - uid: 18450 components: + - type: MetaData + name: кнопка гермодверей мостика - type: Transform - pos: 27.5,35.5 - parent: 89 - - uid: 19883 + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1056: + - Pressed: Toggle + 1057: + - Pressed: Toggle + 1054: + - Pressed: Toggle + 1055: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 18451 components: - type: Transform - pos: 25.5,33.5 - parent: 89 - - uid: 19884 + pos: -22.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18181: + - Pressed: Toggle + 18180: + - Pressed: Toggle + - uid: 18452 components: - type: Transform - pos: 23.5,33.5 - parent: 89 - - uid: 20245 + rot: 3.141592653589793 rad + pos: -128.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1061: + - Pressed: Toggle + 1062: + - Pressed: Toggle + 1063: + - Pressed: Toggle + - uid: 18453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 89 - - uid: 20321 + pos: -128.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1058: + - Pressed: Toggle + 1059: + - Pressed: Toggle + 1060: + - Pressed: Toggle + - uid: 18454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 89 - - uid: 21030 + rot: 1.5707963267948966 rad + pos: -116.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1051: + - Pressed: Toggle + 1046: + - Pressed: Toggle + - uid: 18455 components: - type: Transform - pos: 47.5,21.5 - parent: 89 - - uid: 21143 + pos: -119.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1046: + - Pressed: Toggle + 1051: + - Pressed: Toggle + - uid: 24236 components: - type: Transform - pos: 49.5,17.5 - parent: 89 - - uid: 21957 + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 24224: + - Pressed: Toggle + - uid: 24237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - uid: 21958 + pos: 8.5,3.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 24225: + - Pressed: Toggle +- proto: SignalTimer + entities: + - uid: 27864 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - uid: 21959 + pos: 5.5,-1.5 + parent: 27260 + - type: SignalTimer + delay: 2100 + - type: DeviceLinkSource + linkedPorts: + 27285: + - Timer: Toggle + 27286: + - Timer: Toggle + 27288: + - Timer: Toggle + 27287: + - Timer: Toggle + 27608: + - Timer: Trigger + 27610: + - Timer: Trigger + 27611: + - Timer: Trigger + 27612: + - Timer: Trigger + 27613: + - Timer: Trigger + 27609: + - Timer: Trigger + 27290: + - Timer: Toggle + 27289: + - Timer: Toggle + 27283: + - Timer: Open + 27284: + - Timer: Open + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27803 +- proto: SignAnomaly + entities: + - uid: 18456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - uid: 21978 + pos: -0.5,-37.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 18457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - uid: 21984 + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 18458 components: - type: Transform - pos: 39.5,-32.5 - parent: 89 - - uid: 22022 + rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 2 + - uid: 27865 components: - type: Transform - pos: 39.5,-33.5 - parent: 89 - - uid: 22024 + pos: 3.5,-8.5 + parent: 27260 +- proto: SignAtmos + entities: + - uid: 18459 components: - type: Transform - pos: 55.5,-34.5 - parent: 89 - - uid: 22025 + pos: -96.5,-3.5 + parent: 2 +- proto: SignAtmosMinsky + entities: + - uid: 18460 components: - type: Transform - pos: 56.5,-34.5 - parent: 89 - - uid: 22026 + pos: -108.5,-8.5 + parent: 2 + - uid: 18461 components: - type: Transform - pos: 59.5,-31.5 - parent: 89 - - uid: 24730 + pos: -108.5,-13.5 + parent: 2 + - uid: 18462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 24732 + pos: -91.5,-3.5 + parent: 2 +- proto: SignBar + entities: + - uid: 18463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 22565 - - uid: 24733 + pos: -20.5,0.5 + parent: 2 + - uid: 18464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 22565 - - uid: 24749 + pos: -19.5,-9.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 18465 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - uid: 24750 + pos: -85.5,-22.5 + parent: 2 + - uid: 18466 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - uid: 24761 + pos: 12.5,23.5 + parent: 2 + - uid: 18467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 89 - - uid: 25363 + pos: 15.5,23.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 18468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 89 - - uid: 25364 + pos: 57.5,1.5 + parent: 2 + - uid: 18469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 - parent: 89 - - uid: 25673 + pos: 42.5,2.5 + parent: 2 + - uid: 18470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 89 -- proto: ReinforcedWindowDiagonal + pos: 57.5,7.5 + parent: 2 +- proto: SignCanisters entities: - - uid: 14807 + - uid: 18471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,27.5 - parent: 89 - - uid: 20910 + pos: -83.5,-5.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 18472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-33.5 - parent: 89 - - uid: 20913 + pos: -65.5,-3.5 + parent: 2 + - uid: 18473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-34.5 - parent: 89 - - uid: 20925 + pos: -60.5,-3.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 18474 components: - type: Transform - pos: 58.5,-32.5 - parent: 89 - - uid: 21040 + pos: -61.5,-18.5 + parent: 2 + - uid: 18475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 89 - - uid: 21101 + pos: -61.5,-21.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 18476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 89 - - uid: 21102 + pos: -46.5,2.5 + parent: 2 +- proto: SignChem + entities: + - uid: 18477 components: - type: Transform - pos: 57.5,-33.5 - parent: 89 - - uid: 21274 + pos: -8.5,10.5 + parent: 2 + - uid: 27866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-14.5 - parent: 89 -- proto: ResearchAndDevelopmentServer + pos: -2.5,-8.5 + parent: 27260 +- proto: SignChemistry2 entities: - - uid: 270 + - uid: 18478 components: - type: Transform - pos: -7.5,-36.5 - parent: 89 -- proto: Retractor + pos: -4.5,5.5 + parent: 2 +- proto: SignCloning entities: - - uid: 17742 + - uid: 18479 components: - type: Transform - pos: -11.510057,21.659258 - parent: 89 -- proto: RevolverCapGun - entities: - - uid: 10200 + pos: 8.5,15.5 + parent: 2 + - uid: 18480 components: - type: Transform - pos: -34.502335,32.664577 - parent: 89 - - uid: 18230 + pos: 17.5,13.5 + parent: 2 +- proto: SignCorrosives + entities: + - uid: 18481 components: - type: Transform - pos: -50.51814,24.483156 - parent: 89 -- proto: RiotShield + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 2 +- proto: SignCourt entities: - - uid: 22658 + - uid: 18482 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RipleyLArm + pos: -72.5,1.5 + parent: 2 +- proto: SignCryogenicsMed entities: - - uid: 24787 + - uid: 18483 components: - type: Transform - pos: -5.619814,7.5630064 - parent: 22565 -- proto: RockGuitarInstrument + pos: -23.5,19.5 + parent: 2 +- proto: SignDirectionalBar entities: - - uid: 7450 + - uid: 18484 components: - type: Transform - pos: -35.669586,-7.3551264 - parent: 89 -- proto: RollerBed - entities: - - uid: 12655 + pos: -20.448164,4.3709 + parent: 2 + - uid: 18485 components: - type: Transform - pos: 27.46604,20.420237 - parent: 89 - - uid: 14036 + rot: 3.141592653589793 rad + pos: -24.19584,-14.422298 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 18486 components: - type: Transform - pos: 27.46604,20.873362 - parent: 89 - - uid: 20007 + rot: 1.5707963267948966 rad + pos: -10.541182,0.74590015 + parent: 2 + - uid: 18487 components: - type: Transform - pos: -9.512561,17.593462 - parent: 89 -- proto: RubberStampApproved + rot: 1.5707963267948966 rad + pos: 1.5277987,0.82034445 + parent: 2 +- proto: SignDirectionalBrig entities: - - uid: 2010 + - uid: 18488 components: - type: Transform - pos: 44.726154,4.9360046 - parent: 89 - - uid: 5499 + rot: 1.5707963267948966 rad + pos: -38.492928,-10.699898 + parent: 2 + - uid: 18489 components: - type: Transform - pos: -61.259422,-4.204013 - parent: 89 - - uid: 10255 + rot: 1.5707963267948966 rad + pos: -70.469925,7.722947 + parent: 2 + - uid: 18490 components: - type: Transform - pos: -75.95376,-5.1340904 - parent: 89 -- proto: RubberStampDenied - entities: - - uid: 2012 + rot: 1.5707963267948966 rad + pos: -10.541182,0.32402515 + parent: 2 + - uid: 18491 components: - type: Transform - pos: 44.726154,4.7328796 - parent: 89 - - uid: 4286 + rot: 1.5707963267948966 rad + pos: -54.47954,19.72356 + parent: 2 + - uid: 18492 components: - type: Transform - pos: -75.96599,-5.4276247 - parent: 89 - - uid: 5500 + pos: -28.499207,18.123867 + parent: 2 + - uid: 18493 components: - type: Transform - pos: -61.259422,-4.500888 - parent: 89 -- proto: SalvageCanisterSpawner + pos: 1.4937797,0.18840826 + parent: 2 +- proto: SignDirectionalChapel entities: - - uid: 24788 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 22565 - - uid: 24789 + - uid: 18494 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 24790 + rot: 1.5707963267948966 rad + pos: -53.450565,2.5216875 + parent: 2 + - uid: 18495 components: - type: Transform - pos: 3.5,-4.5 - parent: 22565 -- proto: SalvageMagnet + rot: -1.5707963267948966 rad + pos: -42.49031,2.8029375 + parent: 2 +- proto: SignDirectionalChemistry entities: - - uid: 3431 + - uid: 18496 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 -- proto: Saw + rot: 3.141592653589793 rad + pos: -11.283887,0.70491505 + parent: 2 +- proto: SignDirectionalCryo entities: - - uid: 17724 + - uid: 18497 components: - type: Transform - pos: -12.387761,21.596758 - parent: 89 -- proto: SawElectric - entities: - - uid: 8042 + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 18498 components: - type: Transform - pos: 0.31544685,37.508827 - parent: 89 - - uid: 14731 + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 18499 components: - type: Transform - pos: 8.521248,-22.418674 - parent: 89 - - uid: 17725 + rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 2 + - uid: 18500 components: - type: Transform - pos: -10.669011,21.674883 - parent: 89 -- proto: SaxophoneInstrument - entities: - - uid: 8010 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 18501 components: - type: Transform - pos: 1.6962042,42.518917 - parent: 89 -- proto: Scalpel - entities: - - uid: 8041 + rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 2 + - uid: 18502 components: - type: Transform - pos: 3.0810719,34.555702 - parent: 89 - - uid: 15883 + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 18503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.443718,8.545023 - parent: 89 - - uid: 17740 + pos: -3.5,-10.5 + parent: 2 + - uid: 18504 components: - type: Transform - pos: -10.645547,21.456133 - parent: 89 -- proto: ScalpelShiv - entities: - - uid: 21862 + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 18505 components: - type: Transform - pos: 49.471436,-33.456047 - parent: 89 - - uid: 23206 + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - uid: 18506 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Screen - entities: - - uid: 5922 + rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 2 + - uid: 18507 components: - type: Transform - pos: 59.5,1.5 - parent: 89 - - uid: 5924 + rot: 1.5707963267948966 rad + pos: -70.5,15.5 + parent: 2 + - uid: 18508 components: - type: Transform - pos: 59.5,7.5 - parent: 89 - - uid: 6372 + rot: 1.5707963267948966 rad + pos: -57.5,2.5 + parent: 2 + - uid: 18509 components: - type: Transform - pos: -63.5,32.5 - parent: 89 - - uid: 6451 + rot: 1.5707963267948966 rad + pos: -78.5,6.5 + parent: 2 + - uid: 18510 components: - type: Transform - pos: 26.5,0.5 - parent: 89 - - uid: 7561 + rot: 1.5707963267948966 rad + pos: -83.5,6.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 18511 components: - type: Transform - pos: -54.5,21.5 - parent: 89 - - uid: 9081 + rot: 3.141592653589793 rad + pos: -28.5,18.5 + parent: 2 + - uid: 18512 components: - type: Transform - pos: -63.5,42.5 - parent: 89 - - uid: 14526 + rot: 1.5707963267948966 rad + pos: -83.47457,11.347947 + parent: 2 + - uid: 18513 components: - type: Transform - pos: 41.5,5.5 - parent: 89 - - uid: 14531 + rot: 1.5707963267948966 rad + pos: -54.463917,19.50481 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 18514 components: - type: Transform - pos: -27.5,-3.5 - parent: 89 - - uid: 25804 + pos: -87.481995,0.5272808 + parent: 2 + - uid: 18515 components: - type: Transform - pos: 16.5,-7.5 - parent: 89 - - uid: 25806 + rot: -1.5707963267948966 rad + pos: -38.484875,1.9081881 + parent: 2 + - uid: 18516 components: - type: Transform - pos: 3.5,0.5 - parent: 89 - - uid: 25807 + rot: 3.141592653589793 rad + pos: -67.37197,6.6281567 + parent: 2 + - uid: 18517 components: - type: Transform - pos: 15.5,18.5 - parent: 89 - - uid: 25808 + rot: -1.5707963267948966 rad + pos: -70.481346,8.596907 + parent: 2 + - uid: 18518 components: - type: Transform - pos: -12.5,0.5 - parent: 89 - - uid: 25809 + rot: -1.5707963267948966 rad + pos: -54.47954,19.301685 + parent: 2 + - uid: 18519 components: - type: Transform - pos: 9.5,10.5 - parent: 89 - - uid: 25810 + rot: -1.5707963267948966 rad + pos: -28.504496,18.701992 + parent: 2 + - uid: 18520 components: - type: Transform - pos: 33.5,17.5 - parent: 89 - - uid: 25811 + rot: 3.141592653589793 rad + pos: -38.507183,-10.057941 + parent: 2 + - uid: 18521 components: - type: Transform - pos: -3.5,10.5 - parent: 89 - - uid: 25812 + rot: -1.5707963267948966 rad + pos: -53.453323,2.7666566 + parent: 2 + - uid: 18522 components: - type: Transform - pos: 9.5,31.5 - parent: 89 - - uid: 25813 + rot: -1.5707963267948966 rad + pos: -83.53055,6.8082514 + parent: 2 + - uid: 18523 components: - type: Transform - pos: 25.5,26.5 - parent: 89 - - uid: 25814 + pos: -83.47322,11.546508 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 18524 components: - type: Transform - pos: 0.5,-23.5 - parent: 89 - - uid: 25815 + rot: -1.5707963267948966 rad + pos: -11.258215,0.3275411 + parent: 2 + - uid: 18525 components: - type: Transform - pos: -2.5,-42.5 - parent: 89 - - uid: 25816 + rot: -1.5707963267948966 rad + pos: -28.524527,18.912651 + parent: 2 + - uid: 18526 components: - type: Transform - pos: -15.5,-20.5 - parent: 89 - - uid: 25817 + rot: 3.141592653589793 rad + pos: -28.493805,1.4084592 + parent: 2 + - uid: 18527 components: - type: Transform - pos: -34.5,-15.5 - parent: 89 - - uid: 25818 + rot: -1.5707963267948966 rad + pos: 1.4980168,0.37590826 + parent: 2 + - uid: 18528 components: - type: Transform - pos: -25.5,6.5 - parent: 89 - - uid: 25819 + rot: 3.141592653589793 rad + pos: -54.46437,20.100151 + parent: 2 + - uid: 18529 components: - type: Transform - pos: -42.5,6.5 - parent: 89 - - uid: 25820 + rot: 3.141592653589793 rad + pos: -83.47322,11.765258 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 18530 components: - type: Transform - pos: -48.5,12.5 - parent: 89 - - uid: 25821 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 18531 components: - type: Transform - pos: -57.5,-10.5 - parent: 89 - - uid: 25822 + pos: -20.448164,4.792775 + parent: 2 + - uid: 18532 components: - type: Transform - pos: -68.5,-7.5 - parent: 89 - - uid: 25823 + rot: 3.141592653589793 rad + pos: -24.19881,-14.203548 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 18533 components: - type: Transform - pos: -75.5,-4.5 - parent: 89 - - uid: 25824 + rot: 1.5707963267948966 rad + pos: -120.5,-11.5 + parent: 2 + - uid: 18534 components: - type: Transform - pos: -68.5,6.5 - parent: 89 - - uid: 25825 + rot: 3.141592653589793 rad + pos: -106.5,6.5 + parent: 2 + - uid: 18535 components: - type: Transform - pos: -118.5,-9.5 - parent: 89 - - uid: 25826 + rot: 3.141592653589793 rad + pos: -110.5,-10.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 18536 components: - type: Transform - pos: -60.5,15.5 - parent: 89 - - uid: 25827 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 18537 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 - - uid: 25828 + pos: -20.448164,4.58965 + parent: 2 + - uid: 18538 components: - type: Transform - pos: -118.5,11.5 - parent: 89 - - uid: 25829 + rot: 1.5707963267948966 rad + pos: -24.189,-14.640293 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 18539 components: - type: Transform - pos: -109.5,22.5 - parent: 89 - - uid: 25830 + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 18540 components: - type: Transform - pos: -104.5,-6.5 - parent: 89 - - uid: 25831 + rot: 1.5707963267948966 rad + pos: -70.47633,8.190959 + parent: 2 + - uid: 18541 components: - type: Transform - pos: -96.5,9.5 - parent: 89 - - uid: 25832 + rot: 3.141592653589793 rad + pos: -10.541182,0.54277515 + parent: 2 + - uid: 18542 components: - type: Transform - pos: -93.5,18.5 - parent: 89 - - uid: 25833 + rot: 1.5707963267948966 rad + pos: -54.480083,19.901142 + parent: 2 + - uid: 18543 components: - type: Transform - pos: -81.5,6.5 - parent: 89 - - uid: 25834 + pos: -28.496002,18.319506 + parent: 2 + - uid: 18544 components: - type: Transform - pos: -28.5,14.5 - parent: 89 - - uid: 25835 + rot: 1.5707963267948966 rad + pos: -28.50203,1.6130815 + parent: 2 + - uid: 18545 components: - type: Transform - pos: -86.5,29.5 - parent: 89 - - uid: 25836 + rot: -1.5707963267948966 rad + pos: 1.5136418,0.59465826 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 18546 components: - type: Transform - pos: -32.5,26.5 - parent: 89 - - uid: 25837 + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 18547 components: - type: Transform - pos: -27.5,26.5 - parent: 89 - - uid: 25838 + pos: -38.505344,1.299536 + parent: 2 + - uid: 18548 components: - type: Transform - pos: -61.5,27.5 - parent: 89 -- proto: Screwdriver - entities: - - uid: 8881 + rot: 1.5707963267948966 rad + pos: -70.47134,7.940959 + parent: 2 + - uid: 18549 components: - type: Transform - pos: -131.62726,-2.1679683 - parent: 89 - - uid: 14929 + pos: -28.501144,17.939337 + parent: 2 + - uid: 18550 components: - type: Transform - pos: -10.698816,-35.129005 - parent: 89 -- proto: SecurityTechFab + rot: -1.5707963267948966 rad + pos: -28.505072,1.8144658 + parent: 2 +- proto: SignDirectionalSec entities: - - uid: 241 + - uid: 18551 components: - type: Transform - pos: 39.5,-4.5 - parent: 89 -- proto: SeedExtractor - entities: - - uid: 9681 + rot: 1.5707963267948966 rad + pos: -24.899324,-14.207903 + parent: 2 + - uid: 18552 components: - type: Transform - pos: -5.5,-2.5 - parent: 89 -- proto: ShardGlass + rot: 1.5707963267948966 rad + pos: -5.3946757,-10.59005 + parent: 2 +- proto: SignDirectionalSolar entities: - - uid: 8038 + - uid: 18553 components: - type: Transform - pos: 2.9583473,36.756752 - parent: 89 -- proto: ShardGlassReinforced + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 +- proto: SignDirectionalSupply entities: - - uid: 14973 + - uid: 18554 components: - type: Transform - pos: -20.636162,23.31307 - parent: 89 - - uid: 14974 + rot: 3.141592653589793 rad + pos: -38.492928,-10.293648 + parent: 2 + - uid: 18555 components: - type: Transform - pos: -20.292412,23.484945 - parent: 89 - - uid: 17916 + rot: -1.5707963267948966 rad + pos: -38.48972,1.7086813 + parent: 2 + - uid: 18556 components: - type: Transform - pos: -20.418125,23.417818 - parent: 89 -- proto: SheetGlass + rot: 1.5707963267948966 rad + pos: -70.47308,8.396509 + parent: 2 +- proto: SignDirectionalWash entities: - - uid: 1713 - components: - - type: Transform - pos: -102.02423,-5.5077376 - parent: 89 - - uid: 2261 - components: - - type: Transform - pos: -126.65106,17.60124 - parent: 89 - - uid: 2343 + - uid: 18557 components: - type: Transform - pos: -102.047585,-5.527956 - parent: 89 - - uid: 2651 + rot: -1.5707963267948966 rad + pos: -11.25161,0.7494161 + parent: 2 +- proto: SignDrones + entities: + - uid: 18558 components: - type: Transform - pos: -126.40106,17.429365 - parent: 89 - - uid: 2732 + pos: 19.5,0.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 18559 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.963165,-13.283229 - parent: 89 - - uid: 2733 + pos: -126.5,14.5 + parent: 2 + - uid: 18560 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.94754,-13.611354 - parent: 89 - - uid: 3137 + pos: -126.5,10.5 + parent: 2 + - uid: 18561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.942215,-13.517915 - parent: 89 - - uid: 6937 + rot: 1.5707963267948966 rad + pos: -131.5,-13.5 + parent: 2 + - uid: 18562 components: - type: Transform - pos: -102.0251,-5.4257817 - parent: 89 - - uid: 7188 + rot: 1.5707963267948966 rad + pos: -120.5,15.5 + parent: 2 + - uid: 18563 components: - type: Transform - pos: -102.047585,-5.527956 - parent: 89 - - uid: 7479 + rot: 1.5707963267948966 rad + pos: -118.5,13.5 + parent: 2 + - uid: 18564 components: - type: Transform - pos: -113.483765,-13.584684 - parent: 89 - - uid: 9298 + rot: 1.5707963267948966 rad + pos: -89.5,21.5 + parent: 2 + - uid: 18565 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 9299 + rot: 1.5707963267948966 rad + pos: -111.5,22.5 + parent: 2 + - uid: 18566 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 9300 + rot: 1.5707963267948966 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 18567 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 12643 + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - uid: 18568 components: - type: Transform - pos: -102.059074,-5.501619 - parent: 89 - - uid: 14722 + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 18569 components: - type: Transform - pos: 15.530565,-15.319739 - parent: 89 - - uid: 16972 + rot: 1.5707963267948966 rad + pos: -52.5,30.5 + parent: 2 + - uid: 18570 components: - type: Transform - pos: -5.4908185,-17.232418 - parent: 89 - - uid: 19597 + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 18571 components: - type: Transform - pos: -126.70906,-9.586103 - parent: 89 - - uid: 19608 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - uid: 18572 components: - type: Transform - pos: -26.45643,-21.482687 - parent: 89 - - uid: 19609 + rot: 1.5707963267948966 rad + pos: 35.5,24.5 + parent: 2 + - uid: 18573 components: - type: Transform - pos: -26.484663,-21.39527 - parent: 89 - - uid: 19686 + pos: 46.5,4.5 + parent: 2 + - uid: 18574 components: - type: Transform - pos: 19.237337,-0.9680009 - parent: 89 - - uid: 19687 + pos: 49.5,6.5 + parent: 2 + - uid: 18575 components: - type: Transform - pos: 19.346712,-0.9680009 - parent: 89 - - uid: 19688 + pos: 56.5,-18.5 + parent: 2 + - uid: 18576 components: - type: Transform - pos: 19.487337,-0.9680009 - parent: 89 - - uid: 19689 + pos: 15.5,-11.5 + parent: 2 + - uid: 18577 components: - type: Transform - pos: 19.565462,-0.9680009 - parent: 89 - - uid: 19690 + pos: 16.5,-15.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 18578 components: + - type: MetaData + desc: Знак, указывающий на верфь инженерного отдела. + name: знак "верфь инженерного отдела" - type: Transform - pos: 19.643587,-0.9680009 - parent: 89 - - uid: 19691 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 + parent: 2 + - uid: 18579 components: + - type: MetaData + desc: Знак, указывающий на верфь инженерного отдела. + name: знак "верфь инженерного отдела" - type: Transform - pos: 19.393587,-0.9680009 - parent: 89 - - uid: 19715 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 + - uid: 18580 components: - type: Transform - pos: -126.61529,-9.971914 - parent: 89 - - uid: 19716 + pos: -106.5,-5.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 18581 components: - type: Transform - pos: -126.70904,-9.846914 - parent: 89 -- proto: SheetPlasma + pos: 23.5,26.5 + parent: 2 +- proto: SignFire entities: - - uid: 4887 + - uid: 18582 components: - type: Transform - pos: -132.69885,13.859987 - parent: 89 - - uid: 7236 + pos: -122.5,2.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 18583 components: - type: Transform - pos: -98.495865,-8.155361 - parent: 89 - - uid: 9335 + pos: -82.5,-22.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 18584 components: - type: Transform - pos: -3.4340763,5.7090874 - parent: 89 - - uid: 10457 + pos: -109.5,19.5 + parent: 2 + - uid: 18585 components: - type: Transform - pos: -132.62073,14.532562 - parent: 89 - - uid: 20066 + pos: -109.5,16.5 + parent: 2 + - uid: 18586 components: - type: Transform - pos: -5.412913,-27.433874 - parent: 89 -- proto: SheetPlasteel + rot: 3.141592653589793 rad + pos: -113.5,26.5 + parent: 2 +- proto: SignHead entities: - - uid: 1287 + - uid: 18587 components: - type: Transform - pos: -5.567326,-34.428066 - parent: 89 - - uid: 2264 + pos: 26.5,29.5 + parent: 2 + - uid: 27867 components: - type: Transform - pos: -110.415276,21.569302 - parent: 89 - - uid: 3407 + pos: -2.5,-4.5 + parent: 27260 +- proto: SignHydro2 + entities: + - uid: 18588 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7118 + pos: -8.563228,-10.476872 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 18589 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7169 + pos: 4.5,-3.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 18590 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7484 + pos: 4.5,6.5 + parent: 2 + - uid: 18591 components: + - type: MetaData + desc: 'Табличка с недавней реконструкции станции простыми работягами. Тут вы можете найти такие псевдонимы как: Syxapik, SonicDC, Zna1kin. Почему у них такие прозвища видимо секрет фирмы. ©' + name: "доска почёта \U0001F3C6" - type: Transform - pos: -6.523316,27.486149 - parent: 89 - - uid: 9289 + pos: 39.5,10.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 18592 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 9290 + pos: -47.5,6.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 18593 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 9291 + pos: -15.5,4.5 + parent: 2 + - uid: 18594 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 14619 + pos: -8.5,4.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 18595 components: - type: Transform - pos: -108.5968,-19.451645 - parent: 89 - - uid: 19676 + pos: 7.5,10.5 + parent: 2 + - uid: 18596 components: - type: Transform - pos: 17.446835,-0.2770384 - parent: 89 - - uid: 19677 + pos: 15.5,5.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 18597 components: - type: Transform - pos: 17.55621,-0.2770384 - parent: 89 - - uid: 19678 + rot: 3.141592653589793 rad + pos: -2.5,-37.5 + parent: 2 + - uid: 18598 components: - type: Transform - pos: 17.290585,-0.2770384 - parent: 89 - - uid: 19679 + pos: -78.5,-22.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 18599 components: - type: Transform - pos: 17.196835,-0.2770384 - parent: 89 - - uid: 19723 + pos: 4.5,0.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 18600 components: - type: Transform - pos: -126.708176,-10.4206085 - parent: 89 - - uid: 19724 + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - uid: 26733 components: - type: Transform - pos: -126.426926,-10.4049835 - parent: 89 - - uid: 19819 + pos: -13.5,-4.5 + parent: 24450 + - uid: 26734 components: - type: Transform - pos: -126.50933,-10.555883 - parent: 89 -- proto: SheetPlastic + pos: -10.5,-4.5 + parent: 24450 +- proto: SignRadiation entities: - - uid: 3138 + - uid: 18601 components: - type: Transform - pos: -102.641335,-5.449831 - parent: 89 - - uid: 3370 + rot: -1.5707963267948966 rad + pos: -127.5,-10.5 + parent: 2 + - uid: 18602 components: - type: Transform - pos: -5.504826,-36.41244 - parent: 89 - - uid: 3396 + rot: -1.5707963267948966 rad + pos: -127.5,-4.5 + parent: 2 + - uid: 18603 components: - type: Transform - pos: -102.641335,-5.449831 - parent: 89 - - uid: 6938 + rot: -1.5707963267948966 rad + pos: -122.5,5.5 + parent: 2 + - uid: 18604 components: - type: Transform - pos: -102.634476,-5.4101567 - parent: 89 - - uid: 12641 + rot: -1.5707963267948966 rad + pos: -128.5,5.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 18605 components: - type: Transform - pos: -102.60074,-5.439119 - parent: 89 - - uid: 16711 + rot: -1.5707963267948966 rad + pos: -127.5,-8.5 + parent: 2 + - uid: 18606 components: - type: Transform - pos: -20.45091,-27.506792 - parent: 89 - - uid: 16716 + pos: -123.5,6.5 + parent: 2 + - uid: 18607 components: - type: Transform - pos: -5.5064435,-17.873043 - parent: 89 - - uid: 19233 + pos: -123.5,1.5 + parent: 2 + - uid: 18608 components: - type: Transform - pos: -20.26341,-27.459917 - parent: 89 - - uid: 19820 + rot: -1.5707963267948966 rad + pos: -127.5,-5.5 + parent: 2 +- proto: SignRND + entities: + - uid: 18609 components: - type: Transform - pos: -102.664856,-5.4139876 - parent: 89 -- proto: SheetRGlass - entities: - - uid: 2665 + pos: -1.5,-18.5 + parent: 2 + - uid: 18610 components: - type: Transform - pos: -99.723816,9.591843 - parent: 89 - - uid: 7123 + pos: -1.5,-23.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 18611 components: - type: Transform - pos: -99.70819,9.591843 - parent: 89 - - uid: 7124 + pos: -10.5,-23.5 + parent: 2 + - uid: 18612 components: - type: Transform - pos: -99.70819,9.591843 - parent: 89 - - uid: 9295 + pos: -23.5,-14.5 + parent: 2 + - uid: 18613 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 9296 + pos: -17.5,-14.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 27868 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 9297 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 27260 + - uid: 27869 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 17698 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 27260 + - uid: 27870 components: - type: Transform - pos: -108.08118,-19.40477 - parent: 89 -- proto: SheetRUGlass - entities: - - uid: 2262 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 27260 + - uid: 27871 components: - type: Transform - pos: -126.72919,16.69499 - parent: 89 -- proto: SheetRUGlass1 - entities: - - uid: 20926 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 27260 + - uid: 27872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.463097,16.426502 - parent: 89 - - uid: 20929 + pos: -6.5,-15.5 + parent: 27260 + - uid: 27873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.4767406,30.443174 - parent: 89 -- proto: SheetSteel - entities: - - uid: 2645 + pos: -2.5,-15.5 + parent: 27260 + - uid: 27874 components: - type: Transform - pos: -101.37571,-5.606081 - parent: 89 - - uid: 2730 + pos: 3.5,-15.5 + parent: 27260 + - uid: 27875 components: - type: Transform - rot: 48.69468613064183 rad - pos: -85.493454,-13.302325 - parent: 89 - - uid: 2731 + pos: 7.5,-15.5 + parent: 27260 + - uid: 27876 components: - type: Transform - rot: 48.69468613064183 rad - pos: -85.525665,-13.705105 - parent: 89 - - uid: 3545 + pos: 8.5,-14.5 + parent: 27260 + - uid: 27877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.52034,-13.59604 - parent: 89 - - uid: 6936 + pos: -7.5,-14.5 + parent: 27260 + - uid: 27878 components: - type: Transform - pos: -101.43135,-5.4570317 - parent: 89 - - uid: 7003 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 27260 + - uid: 27879 components: - type: Transform - pos: -29.384861,-15.327836 - parent: 89 - - uid: 7191 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 27260 +- proto: SignShield + entities: + - uid: 18614 components: - type: Transform - pos: -115.42964,1.6171246 - parent: 89 - - uid: 7194 + pos: 2.5,-7.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 27880 components: - type: Transform - pos: -110.759026,21.569302 - parent: 89 - - uid: 7225 + pos: 0.5,-3.5 + parent: 27260 +- proto: SignShock + entities: + - uid: 18615 components: - type: Transform - pos: -115.46089,1.8046246 - parent: 89 - - uid: 7237 + pos: 53.5,-11.5 + parent: 2 + - uid: 18616 components: - type: Transform - pos: -113.702515,-13.365934 - parent: 89 - - uid: 7256 + pos: -128.5,2.5 + parent: 2 + - uid: 18617 components: - type: Transform - pos: -108.56562,-19.406977 - parent: 89 - - uid: 7473 + pos: 47.5,-38.5 + parent: 2 + - uid: 18618 components: - type: Transform - pos: -101.37571,-5.606081 - parent: 89 - - uid: 9292 + pos: 63.5,-29.5 + parent: 2 + - uid: 18619 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 9293 + pos: 37.5,-28.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 18620 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 9294 + pos: -128.5,1.5 + parent: 2 + - uid: 18621 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 14600 + pos: -3.5,14.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 18622 components: + - type: MetaData + desc: Гражданин, сообщай о нарушениях ОЧЗ, будь бдителен враги Земли всюду. + name: старый плакат EarthGov - type: Transform - pos: -91.53964,25.270058 - parent: 89 - - uid: 14721 + pos: -21.5,7.5 + parent: 2 + - uid: 18623 components: + - type: MetaData + desc: Гражданин, вступай в силы обороны Земли! Защитите Землю! + name: старый плакат EarthGov - type: Transform - pos: 15.55621,-16.404793 - parent: 89 - - uid: 15858 + pos: -16.5,-10.5 + parent: 2 + - uid: 18624 components: + - type: MetaData + desc: Звезды наши! + name: старый плакат EarthGov - type: Transform - pos: -101.39241,-5.584952 - parent: 89 - - uid: 16946 + pos: -57.5,6.5 + parent: 2 + - uid: 18625 components: + - type: MetaData + desc: Полный допуск, в публичный сектор! + name: старый плакат EarthGov - type: Transform - pos: -5.5376935,-16.576168 - parent: 89 - - uid: 17023 + pos: -70.5,11.5 + parent: 2 + - uid: 18626 components: + - type: MetaData + desc: Одна цель, одно правительство. + name: старый плакат EarthGov - type: Transform - pos: -101.39923,-5.4921126 - parent: 89 - - uid: 19596 + pos: -89.5,5.5 + parent: 2 + - uid: 18627 components: + - type: MetaData + desc: Правительство Земли, создает рабочие месте! + name: старый плакат EarthGov - type: Transform - pos: -126.4634,-8.753263 - parent: 89 - - uid: 19600 + pos: -64.5,23.5 + parent: 2 + - uid: 18628 components: + - type: MetaData + desc: Ради общего будущего. + name: старый плакат EarthGov - type: Transform - pos: -29.384861,-15.536169 - parent: 89 - - uid: 19602 + pos: -34.5,15.5 + parent: 2 + - uid: 18629 components: + - type: MetaData + desc: Создай завтра, вместе с правительством Земли. + name: старый плакат EarthGov - type: Transform - pos: -44.54738,-16.571465 - parent: 89 - - uid: 19606 + pos: -28.5,-10.5 + parent: 2 + - uid: 18630 components: + - type: MetaData + desc: Добро пожаловать в правительственный сектор! + name: старый плакат EarthGov - type: Transform - pos: -26.429432,-19.339746 - parent: 89 - - uid: 19607 + pos: 33.5,4.5 + parent: 2 + - uid: 26735 components: - type: Transform - pos: -26.45727,-19.41212 - parent: 89 - - uid: 19680 + pos: -8.5,3.5 + parent: 24450 +- proto: SignSomethingOld2 + entities: + - uid: 18631 components: + - type: MetaData + desc: На плакате изображенна работа планетарного потрошителя. Страшновато. + name: старый плакат EarthGov - type: Transform - pos: 19.299837,-0.3586259 - parent: 89 - - uid: 19681 + pos: 2.5,-9.5 + parent: 2 + - uid: 18632 components: + - type: MetaData + desc: На плакате изображена работа планетарного потрошителя. Страшновато. + name: старый плакат EarthGov - type: Transform - pos: 19.424837,-0.3586259 - parent: 89 - - uid: 19682 + pos: -61.5,42.5 + parent: 2 + - uid: 26736 components: - type: Transform - pos: 19.565462,-0.3586259 - parent: 89 - - uid: 19683 + pos: -15.5,3.5 + parent: 24450 +- proto: SignSpace + entities: + - uid: 27881 components: - type: Transform - pos: 19.643587,-0.3586259 - parent: 89 - - uid: 19684 + pos: 0.5,0.5 + parent: 27260 +- proto: SignSurgery + entities: + - uid: 18633 components: - type: Transform - pos: 19.377962,-0.3742509 - parent: 89 - - uid: 19685 + pos: 4.5,14.5 + parent: 2 + - uid: 18634 components: - type: Transform - pos: 19.581087,-0.3742509 - parent: 89 - - uid: 19720 + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 18635 components: - type: Transform - pos: -126.426926,-8.6081085 - parent: 89 - - uid: 19721 + pos: -107.5,19.5 + parent: 2 + - uid: 18636 components: - type: Transform - pos: -126.426926,-8.5456085 - parent: 89 - - uid: 19722 + pos: -107.5,16.5 + parent: 2 + - uid: 26737 components: - type: Transform - pos: -126.426926,-8.5456085 - parent: 89 - - uid: 20722 + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 24450 +- proto: SignToolStorage + entities: + - uid: 18637 components: - type: Transform - pos: -108.643745,-19.406977 - parent: 89 - - uid: 20758 + pos: -98.5,-6.5 + parent: 2 + - uid: 18638 components: - type: Transform - pos: -108.59687,-19.453852 - parent: 89 -- proto: SheetSteel10 + pos: -92.5,11.5 + parent: 2 +- proto: SignToxins entities: - - uid: 21271 + - uid: 18639 components: - type: Transform - pos: 6.5544925,-21.70108 - parent: 89 -- proto: SheetUGlass + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 +- proto: SignVirology entities: - - uid: 7255 + - uid: 18640 components: - type: Transform - pos: -126.46356,16.50749 - parent: 89 -- proto: SheetUGlass1 - entities: - - uid: 20919 + pos: 15.5,25.5 + parent: 2 + - uid: 18641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.489836,-22.380846 - parent: 89 - - uid: 20928 + pos: 12.5,25.5 + parent: 2 + - uid: 18642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.3812647,-26.421057 - parent: 89 -- proto: SheetUranium + pos: 12.5,15.5 + parent: 2 +- proto: SignXenobio entities: - - uid: 8398 + - uid: 18643 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.65198,13.390748 - parent: 89 - - uid: 8451 + pos: -3.5,-23.5 + parent: 2 +- proto: SignZomlab + entities: + - uid: 18644 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.6051,12.671249 - parent: 89 -- proto: ShellShotgunImprovised + pos: -2.5,-26.5 + parent: 2 +- proto: Sink entities: - - uid: 24791 - components: - - type: Transform - pos: 3.2740273,11.768624 - parent: 22565 - - uid: 24792 - components: - - type: Transform - pos: 3.9615273,11.752999 - parent: 22565 - - uid: 24793 - components: - - type: Transform - pos: 4.6334023,11.752999 - parent: 22565 - - uid: 24794 + - uid: 18645 components: - type: Transform - pos: 4.4771523,11.752999 - parent: 22565 - - uid: 24795 + rot: -1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - uid: 18646 components: - type: Transform - pos: 4.3052773,11.799874 - parent: 22565 - - uid: 24796 + pos: -24.5,14.5 + parent: 2 + - uid: 18647 components: - type: Transform - pos: 4.6959023,11.659249 - parent: 22565 -- proto: ShippingContainerConarex - entities: - - uid: 19846 + pos: -25.5,14.5 + parent: 2 + - uid: 18648 components: - type: Transform - pos: -65.5,-9.5 - parent: 89 -- proto: ShippingContainerInterdyne - entities: - - uid: 6525 + pos: -22.5,14.5 + parent: 2 + - uid: 18649 components: - type: Transform - pos: -60.5,-9.5 - parent: 89 -- proto: ShippingContainerNakamura - entities: - - uid: 19836 + pos: -23.5,14.5 + parent: 2 + - uid: 18650 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 -- proto: ShippingContainerNanotrasen - entities: - - uid: 14887 + pos: -21.5,14.5 + parent: 2 + - uid: 18651 components: - type: Transform - pos: -65.5,-12.5 - parent: 89 -- proto: ShuttersNormal - entities: - - uid: 7175 + pos: 6.5,-28.5 + parent: 2 + - uid: 18652 components: - type: Transform - pos: -99.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7695 - - uid: 7385 + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - uid: 18653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7386 + pos: -73.5,-13.5 + parent: 2 + - uid: 18654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7387 + pos: 20.5,23.5 + parent: 2 + - uid: 18655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,9.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7492 + rot: 3.141592653589793 rad + pos: -45.5,23.5 + parent: 2 + - uid: 18656 components: - type: Transform - pos: -101.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7694 - - uid: 10763 + rot: 3.141592653589793 rad + pos: -46.5,23.5 + parent: 2 + - uid: 18657 components: - type: Transform - pos: -20.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 10764 + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - uid: 18658 components: - type: Transform - pos: -19.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 10765 + rot: 3.141592653589793 rad + pos: -44.5,23.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 26738 components: - type: Transform - pos: -18.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 24797 + rot: -1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 24450 +- proto: SinkWide + entities: + - uid: 18659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24809 - - uid: 24798 + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - uid: 18660 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24809 - - uid: 24799 + pos: -7.5,-41.5 + parent: 2 + - uid: 18661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24810 - - uid: 24800 + pos: -36.5,32.5 + parent: 2 + - uid: 18662 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24810 - - uid: 24801 + pos: -22.5,32.5 + parent: 2 + - uid: 18663 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 - - uid: 24802 + rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 2 + - uid: 18664 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 - - uid: 24803 + rot: 3.141592653589793 rad + pos: -39.5,7.5 + parent: 2 + - uid: 18665 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 -- proto: ShuttersNormalOpen - entities: - - uid: 2 + rot: -1.5707963267948966 rad + pos: 14.5,36.5 + parent: 2 + - uid: 18666 components: - type: Transform - pos: -56.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 5 + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - uid: 18667 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 275 + pos: 27.5,26.5 + parent: 2 + - uid: 18668 components: - type: Transform - pos: -56.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 282 + pos: 28.5,26.5 + parent: 2 + - uid: 18669 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 1574 + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 18670 components: - type: Transform - pos: -55.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 2257 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 26739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 4449 + pos: -30.5,9.5 + parent: 24450 + - uid: 26740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4450 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 24450 +- proto: SmallLight + entities: + - uid: 18671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 6078 + rot: 1.5707963267948966 rad + pos: -46.5,24.5 + parent: 2 + - uid: 18672 components: - type: Transform - pos: -46.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6079 + rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 18673 components: - type: Transform - pos: -45.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6080 + pos: -10.5,-1.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 18674 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -44.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6081 + pos: -122.5,17.5 + parent: 2 + - uid: 18675 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -43.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 8357 + pos: -123.5,17.5 + parent: 2 + - uid: 18676 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -55.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 9372 + pos: -124.5,17.5 + parent: 2 + - uid: 18677 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -105.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9373 + pos: -122.5,16.5 + parent: 2 + - uid: 18678 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -104.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9374 + pos: -125.5,17.5 + parent: 2 + - uid: 18679 components: + - type: MetaData + name: СМЭС мостик - type: Transform - pos: -103.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9376 + pos: 47.5,5.5 + parent: 2 + - uid: 18680 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -106.5,7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9377 + pos: -125.5,16.5 + parent: 2 + - uid: 18681 components: + - type: MetaData + name: СМЭС Двигателя - type: Transform - pos: -106.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9378 + pos: -130.5,-12.5 + parent: 2 + - uid: 18682 components: + - type: MetaData + name: СМЭС подстанция телекоммы и гравген - type: Transform - pos: -106.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9380 + pos: -112.5,20.5 + parent: 2 + - uid: 18683 components: + - type: MetaData + name: СМЭС инженерного отдела - type: Transform - pos: -88.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9381 + pos: -116.5,13.5 + parent: 2 + - uid: 18684 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -87.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9382 + pos: -124.5,16.5 + parent: 2 + - uid: 18685 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -86.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9383 + pos: -123.5,16.5 + parent: 2 + - uid: 18686 components: - type: Transform - pos: -85.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9384 + pos: 35.5,27.5 + parent: 2 + - uid: 18687 components: + - type: MetaData + name: СМЭС НИО - type: Transform - pos: -83.5,7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9385 + pos: -12.5,-25.5 + parent: 2 + - uid: 18688 components: - type: Transform - pos: -83.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9386 + pos: -113.5,-20.5 + parent: 2 + - uid: 24238 components: - type: Transform - pos: -83.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9387 + pos: 7.5,1.5 + parent: 23919 + - uid: 26741 components: - type: Transform - pos: -83.5,10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9388 + pos: -5.5,-17.5 + parent: 24450 + - uid: 27882 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9389 + pos: -0.5,-12.5 + parent: 27260 +- proto: SMESMachineCircuitboard + entities: + - uid: 18689 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9390 + pos: -102.58862,-7.2769136 + parent: 2 + - uid: 18690 components: - type: Transform - pos: -66.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9391 + pos: -102.36987,-7.5269136 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 10526 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9396 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10527 components: - type: Transform - pos: -47.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9397 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Soap + entities: + - uid: 18691 components: - type: Transform - pos: -47.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9398 + pos: -23.508356,32.71544 + parent: 2 + - uid: 18692 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9399 + rot: 3.141592653589793 rad + pos: -46.271545,25.505068 + parent: 2 + - uid: 18693 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9400 + rot: 3.141592653589793 rad + pos: -45.084045,25.426943 + parent: 2 + - uid: 18694 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9416 + rot: 3.141592653589793 rad + pos: -43.740295,25.411318 + parent: 2 + - uid: 18695 components: - type: Transform - pos: -42.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9417 + rot: 3.141592653589793 rad + pos: -42.66217,25.395693 + parent: 2 +- proto: SoapDeluxe + entities: + - uid: 18696 components: - type: Transform - pos: -42.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9418 + pos: -73.514084,-12.479306 + parent: 2 + - uid: 18697 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9422 + pos: 33.493954,-2.555304 + parent: 2 +- proto: SoapNT + entities: + - uid: 18698 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9423 + pos: 50.48895,14.475723 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 18699 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9424 + pos: -24.5,-0.5 + parent: 2 + - uid: 18700 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9425 + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - uid: 18701 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 9426 + rot: 1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 18702 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 9427 + pos: -103.27902,-10.571648 + parent: 2 +- proto: SolarPanel + entities: + - uid: 26742 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 10554 + pos: -1.5,-12.5 + parent: 24450 + - uid: 26743 components: - type: Transform - pos: -82.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10555 + pos: -1.5,-11.5 + parent: 24450 + - uid: 26744 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10556 + pos: -0.5,-11.5 + parent: 24450 + - uid: 26745 components: - type: Transform - pos: -80.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10557 + pos: -6.5,-11.5 + parent: 24450 + - uid: 26746 components: - type: Transform - pos: -80.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 - - uid: 10558 + pos: -6.5,-13.5 + parent: 24450 + - uid: 26747 components: - type: Transform - pos: -82.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 - - uid: 10767 + pos: -5.5,-13.5 + parent: 24450 + - uid: 26748 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 10905 + pos: -4.5,-12.5 + parent: 24450 + - uid: 26749 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10906 + pos: -5.5,-11.5 + parent: 24450 + - uid: 26750 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10907 + pos: -6.5,-12.5 + parent: 24450 + - uid: 26751 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10909 + pos: -0.5,-13.5 + parent: 24450 + - uid: 26752 components: - type: Transform - pos: -8.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 11070 + pos: -0.5,-12.5 + parent: 24450 + - uid: 26753 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 12630 + pos: -4.5,-13.5 + parent: 24450 +- proto: SolarPanelBroken + entities: + - uid: 26754 components: - type: Transform - pos: 11.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6725 - - uid: 12635 + pos: 0.5,-12.5 + parent: 24450 + - uid: 26755 components: - type: Transform - pos: 10.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6725 - - uid: 14789 + pos: 0.5,-11.5 + parent: 24450 + - uid: 26756 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 15196 + pos: 0.5,-13.5 + parent: 24450 + - uid: 26757 components: - type: Transform - pos: 18.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 15754 + pos: -1.5,-13.5 + parent: 24450 + - uid: 26758 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 16291 + pos: -4.5,-11.5 + parent: 24450 + - uid: 26759 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17619 - - uid: 16292 + pos: -5.5,-12.5 + parent: 24450 +- proto: SolarTracker + entities: + - uid: 26760 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17619 - - uid: 16376 + pos: -5.5,-14.5 + parent: 24450 +- proto: SolidSecretDoor + entities: + - uid: 18703 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 16769 + pos: -115.5,21.5 + parent: 2 + - uid: 18704 components: - type: Transform - pos: 20.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 17011 + pos: 11.5,-14.5 + parent: 2 + - uid: 18705 components: - type: Transform - pos: 17.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 17611 + pos: 19.5,-15.5 + parent: 2 + - uid: 26761 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17612 + pos: 3.5,9.5 + parent: 24450 +- proto: SpaceCash10 + entities: + - uid: 18706 components: - type: Transform - pos: 21.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17613 + pos: -36.419117,-0.2933004 + parent: 2 + - uid: 18707 components: - type: Transform - pos: 22.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17614 + pos: 5.1794705,-1.1862288 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 18708 components: - type: Transform - pos: 23.5,17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17615 + rot: 3.141592653589793 rad + pos: 65.45385,4.430016 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 18709 components: - type: Transform - pos: 23.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17618 + pos: -106.5,21.5 + parent: 2 + - uid: 18710 components: - type: Transform - pos: 23.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 20824 + pos: -109.5,21.5 + parent: 2 + - uid: 18711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 21136 + pos: -91.5,7.5 + parent: 2 + - uid: 18712 components: - type: Transform - pos: 48.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21140 + pos: -91.5,4.5 + parent: 2 + - uid: 18713 components: - type: Transform - pos: 47.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21146 + pos: -107.5,27.5 + parent: 2 + - uid: 18714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21162 + pos: -107.5,21.5 + parent: 2 + - uid: 18715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 -- proto: ShuttersRadiationOpen - entities: - - uid: 7679 + pos: -88.5,-8.5 + parent: 2 + - uid: 18716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22044 + pos: -88.5,-9.5 + parent: 2 + - uid: 18717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22215 + pos: -88.5,-10.5 + parent: 2 + - uid: 18718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22217 + pos: -88.5,-11.5 + parent: 2 + - uid: 18719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22218 + pos: -85.5,-11.5 + parent: 2 + - uid: 18720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22219 + pos: -84.5,-11.5 + parent: 2 + - uid: 18721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22220 + pos: -113.5,2.5 + parent: 2 + - uid: 18722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22221 + pos: -112.5,2.5 + parent: 2 + - uid: 18723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22222 + pos: -111.5,2.5 + parent: 2 +- proto: Spaceshroom + entities: + - uid: 18724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22223 + pos: 7.5,-20.5 + parent: 2 + - uid: 18725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22224 + pos: -77.5,17.5 + parent: 2 + - uid: 18726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 -- proto: ShuttersWindow - entities: - - uid: 11062 + pos: 3.5,-16.5 + parent: 2 + - uid: 18727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14936 - - uid: 11071 + pos: -33.5,-16.5 + parent: 2 + - uid: 18728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,30.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14 -- proto: ShuttersWindowOpen - entities: - - uid: 4446 + pos: -67.5,21.5 + parent: 2 + - uid: 18729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4447 + pos: -101.5,15.5 + parent: 2 + - uid: 18730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4448 + pos: -102.5,13.5 + parent: 2 + - uid: 18731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 10559 + pos: -103.5,18.5 + parent: 2 + - uid: 18732 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 24804 + pos: -88.5,19.5 + parent: 2 + - uid: 18733 components: - type: Transform - pos: -11.394216,7.7100387 - parent: 22565 - - uid: 24805 + pos: -76.5,21.5 + parent: 2 + - uid: 18734 components: - type: Transform - pos: -11.394216,7.5537887 - parent: 22565 - - uid: 24806 + pos: -53.5,31.5 + parent: 2 + - uid: 18735 components: - type: Transform - pos: -11.394216,7.4131637 - parent: 22565 -- proto: ShuttleWindow - entities: - - uid: 21702 + pos: -49.5,21.5 + parent: 2 + - uid: 18736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 - - uid: 21703 + pos: -24.5,-20.5 + parent: 2 + - uid: 18737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 21627 - - uid: 21704 + pos: -18.5,-27.5 + parent: 2 + - uid: 18738 components: - type: Transform - pos: 0.5,0.5 - parent: 21627 - - uid: 25557 + pos: -11.5,-32.5 + parent: 2 + - uid: 18739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 18153 - - uid: 25558 + pos: -12.5,-34.5 + parent: 2 + - uid: 18740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 18153 - - uid: 25559 + pos: -15.5,-25.5 + parent: 2 + - uid: 18741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 18153 - - uid: 25560 + pos: -41.5,-17.5 + parent: 2 + - uid: 18742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 18153 - - uid: 25561 + pos: -44.5,-9.5 + parent: 2 + - uid: 18743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 18153 - - uid: 25562 + pos: -82.5,3.5 + parent: 2 + - uid: 18744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 18153 - - uid: 25563 + pos: -84.5,-0.5 + parent: 2 + - uid: 18745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 18153 - - uid: 25564 + pos: -78.5,-7.5 + parent: 2 + - uid: 18746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 18153 - - uid: 25565 + pos: -82.5,-4.5 + parent: 2 + - uid: 18747 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25566 + pos: -120.5,20.5 + parent: 2 + - uid: 18748 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25567 + pos: -124.5,21.5 + parent: 2 + - uid: 18749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 18153 - - uid: 25568 + pos: -113.5,17.5 + parent: 2 + - uid: 18750 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25569 + pos: -116.5,18.5 + parent: 2 + - uid: 18751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 18153 - - uid: 25570 + pos: -97.5,13.5 + parent: 2 + - uid: 18752 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25571 + pos: -96.5,20.5 + parent: 2 + - uid: 18753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 18153 - - uid: 25572 + pos: -100.5,22.5 + parent: 2 + - uid: 18754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 18153 - - uid: 25573 + pos: -98.5,24.5 + parent: 2 + - uid: 18755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 18153 - - uid: 25618 + pos: -100.5,26.5 + parent: 2 + - uid: 18756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 18153 -- proto: ShuttleWindowDiagonal - entities: - - uid: 13936 + pos: -93.5,24.5 + parent: 2 + - uid: 18757 components: - type: Transform - pos: -0.5,0.5 - parent: 21627 - - uid: 13939 + pos: -6.5,37.5 + parent: 2 + - uid: 18758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 21627 - - uid: 14018 + pos: -35.5,21.5 + parent: 2 + - uid: 18759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 21627 - - uid: 14019 + pos: -42.5,20.5 + parent: 2 + - uid: 18760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 21627 - - uid: 25742 + pos: -52.5,23.5 + parent: 2 + - uid: 18761 components: - type: Transform - pos: 1.5,-0.5 - parent: 18153 - - uid: 25743 + pos: -19.5,24.5 + parent: 2 + - uid: 18762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 18153 -- proto: SignAi - entities: - - uid: 945 + pos: -17.5,12.5 + parent: 2 + - uid: 18763 components: - type: Transform - pos: 56.5,5.5 - parent: 89 -- proto: SignalButton - entities: - - uid: 14 + pos: -0.5,30.5 + parent: 2 + - uid: 18764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,28.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 11071: - - Pressed: Toggle - - uid: 295 + pos: -3.5,35.5 + parent: 2 + - uid: 18765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,5.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9422: - - Pressed: Toggle - 9423: - - Pressed: Toggle - 9424: - - Pressed: Toggle - - uid: 1283 + pos: 3.5,34.5 + parent: 2 + - uid: 18766 components: - - type: MetaData - desc: Эта кнопка активирует внешний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -0.696833,-42.499794 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 260: - - Pressed: Toggle - - uid: 1284 + pos: -8.5,40.5 + parent: 2 + - uid: 18767 components: - - type: MetaData - desc: Эта кнопка активирует внешний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -4.298002,-42.499794 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 254: - - Pressed: Toggle - - uid: 2192 + pos: -4.5,44.5 + parent: 2 + - uid: 18768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5: - - Pressed: Toggle - 2: - - Pressed: Toggle - 1574: - - Pressed: Toggle - - uid: 2626 + pos: 0.5,40.5 + parent: 2 + - uid: 18769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2295: - - Pressed: Toggle - - uid: 2627 + pos: 3.5,39.5 + parent: 2 + - uid: 18770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-23.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2295: - - Pressed: Toggle - - uid: 4451 + pos: 0.5,46.5 + parent: 2 + - uid: 18771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4448: - - Pressed: Toggle - 4449: - - Pressed: Toggle - 4447: - - Pressed: Toggle - 4450: - - Pressed: Toggle - 4446: - - Pressed: Toggle - - uid: 4798 + pos: -4.5,41.5 + parent: 2 + - uid: 18772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-18.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4797: - - Pressed: Toggle - 4795: - - Pressed: Toggle - - uid: 4799 + pos: -6.5,32.5 + parent: 2 + - uid: 18773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4856: - - Pressed: Toggle - 4736: - - Pressed: Toggle - 4735: - - Pressed: Toggle - - uid: 5413 + pos: 13.5,-19.5 + parent: 2 +- proto: SpaceVillainArcade + entities: + - uid: 18774 components: - - type: MetaData - desc: Эта кнопка активирует внутренний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 246: - - Pressed: Toggle - - uid: 6096 + pos: -10.5,-34.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18775 components: - type: Transform - pos: -43.5,10.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 6081: - - Pressed: Toggle - 6080: - - Pressed: Toggle - 6079: - - Pressed: Toggle - 6078: - - Pressed: Toggle - - uid: 6145 + pos: -57.5,26.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpaceVillainArcadeFilled + entities: + - uid: 18776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,22.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 282: - - Pressed: Toggle - 275: - - Pressed: Toggle - 8357: - - Pressed: Toggle - - uid: 6243 + pos: -5.5,-25.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.476543,19.732094 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21610: - - Pressed: Toggle - - uid: 6534 + pos: -9.5,-34.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,9.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9391: - - Pressed: Toggle - 9390: - - Pressed: Toggle - 9389: - - Pressed: Toggle - 9388: - - Pressed: Toggle - 9400: - - Pressed: Toggle - 9399: - - Pressed: Toggle - - uid: 6554 + pos: 11.5,-12.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9427: - - Pressed: Toggle - 9425: - - Pressed: Toggle - 9426: - - Pressed: Toggle - - uid: 6725 + pos: 18.5,-13.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18780 components: - type: Transform - pos: 7.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 12635: - - Pressed: Toggle - 12630: - - Pressed: Toggle - - uid: 7159 + pos: 34.5,-6.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 6306: - - Pressed: Toggle - - uid: 7394 + pos: 50.5,-22.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18782 components: - type: Transform - pos: 46.5,9.5 - parent: 89 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7387: - - Pressed: Toggle - 7385: - - Pressed: Toggle - 7386: - - Pressed: Toggle - - uid: 7694 + pos: 43.5,-22.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobAlexander + entities: + - uid: 18783 components: - type: Transform - pos: -99.74609,28.376194 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7492: - - Pressed: Toggle - - uid: 7695 + pos: -10.5,-7.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 18784 components: - type: Transform - pos: -99.43359,28.376194 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7175: - - Pressed: Toggle - - uid: 8816 + pos: -65.5,-5.5 + parent: 2 +- proto: SpawnMobBoxingKangaroo + entities: + - uid: 18785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-4.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 8825: - - Pressed: Toggle - 8821: - - Pressed: Toggle - 8822: - - Pressed: Toggle - 259: - - Pressed: Toggle - - uid: 9369 + rot: 3.141592653589793 rad + pos: -34.5,0.5 + parent: 2 + - uid: 18786 components: - type: Transform - pos: -101.5,11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9374: - - Pressed: Toggle - 9373: - - Pressed: Toggle - 9372: - - Pressed: Toggle - 9376: - - Pressed: Toggle - 9377: - - Pressed: Toggle - 9378: - - Pressed: Toggle - - uid: 9401 + rot: 3.141592653589793 rad + pos: -40.5,26.5 + parent: 2 + - uid: 18787 components: - type: Transform - pos: -44.991,1.7379127 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9396: - - Pressed: Toggle - 9397: - - Pressed: Toggle - 9398: - - Pressed: Toggle - 9416: - - Pressed: Toggle - 9417: - - Pressed: Toggle - 9418: - - Pressed: Toggle - - uid: 9413 + rot: 3.141592653589793 rad + pos: -19.5,30.5 + parent: 2 + - uid: 18788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2200: - - Pressed: Toggle - - uid: 9420 + pos: 17.5,31.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 18789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-18.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4794: - - Pressed: Toggle - 4720: - - Pressed: Toggle - - uid: 9421 + pos: 0.5,15.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 18790 components: - type: Transform - pos: -7.5,-15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10909: - - Pressed: Toggle - 10907: - - Pressed: Toggle - 10905: - - Pressed: Toggle - 10906: - - Pressed: Toggle - - uid: 10560 + pos: 26.5,35.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 18791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,0.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 8508: - - Pressed: Toggle - 8507: - - Pressed: Toggle - 8540: - - Pressed: Toggle - 8539: - - Pressed: Toggle - 8538: - - Pressed: Toggle - 8506: - - Pressed: Toggle - - uid: 10564 + pos: -10.5,15.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 18792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9387: - - Pressed: Toggle - 9386: - - Pressed: Toggle - 9385: - - Pressed: Toggle - 9384: - - Pressed: Toggle - 9383: - - Pressed: Toggle - 9382: - - Pressed: Toggle - 9381: - - Pressed: Toggle - 9380: - - Pressed: Toggle - - uid: 10934 + pos: -40.5,8.5 + parent: 2 + - uid: 18793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10557: - - Pressed: Toggle - 10559: - - Pressed: Toggle - 10558: - - Pressed: Toggle - - uid: 11036 + pos: -37.5,14.5 + parent: 2 +- proto: SpawnMobCockroach + entities: + - uid: 18794 components: - type: Transform - pos: 0.7500007,-28.502241 - parent: 89 - - uid: 14728 + pos: -119.5,-12.5 + parent: 2 + - uid: 18795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - uid: 14809 + pos: -23.5,13.5 + parent: 2 + - uid: 18796 components: - type: Transform - pos: 22.036852,7.3139024 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16769: - - Pressed: Toggle - 15196: - - Pressed: Toggle - 17011: - - Pressed: Toggle - - uid: 14903 + pos: -59.5,9.5 + parent: 2 + - uid: 18797 components: - type: Transform - pos: 17.5,12.5 - parent: 89 - - uid: 14936 + pos: -66.5,21.5 + parent: 2 + - uid: 18798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,28.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 11062: - - Pressed: Toggle - - uid: 15218 + pos: 31.5,15.5 + parent: 2 + - uid: 18799 components: - type: Transform - pos: 32.5,27.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16504: - - Pressed: DoorBolt - - uid: 16167 + pos: -69.5,-16.5 + parent: 2 + - uid: 18800 components: - type: Transform - pos: 30.5,27.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 18753: - - Pressed: DoorBolt - - uid: 16804 + pos: -88.5,21.5 + parent: 2 + - uid: 18801 components: - - type: MetaData - desc: Эта кнопка активирует внутренний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5430: - - Pressed: Toggle - - uid: 17606 + pos: -45.5,18.5 + parent: 2 + - uid: 18802 components: - type: Transform - pos: 20.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 17611: - - Pressed: Toggle - 17612: - - Pressed: Toggle - 17613: - - Pressed: Toggle - 17614: - - Pressed: Toggle - 17615: - - Pressed: Toggle - 17618: - - Pressed: Toggle - - uid: 17619 + pos: 38.5,12.5 + parent: 2 + - uid: 18803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16292: - - Pressed: Toggle - 16291: - - Pressed: Toggle - - uid: 17689 + pos: -77.5,12.5 + parent: 2 + - uid: 18804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 20824: - - Pressed: Toggle - 16376: - - Pressed: Toggle - 2257: - - Pressed: Toggle - - uid: 21141 + pos: -116.5,3.5 + parent: 2 + - uid: 18805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21140: - - Pressed: Toggle - 21136: - - Pressed: Toggle - 21162: - - Pressed: Toggle - 21146: - - Pressed: Toggle - - uid: 21529 + pos: -21.5,-7.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 18806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10554: - - Pressed: Toggle - 10555: - - Pressed: Toggle - 10556: - - Pressed: Toggle - - uid: 21590 + pos: 40.5,12.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 18807 components: - type: Transform - pos: -33.5,34.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10131: - - Pressed: DoorBolt - - uid: 21591 + pos: -8.5,-9.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 18808 components: - type: Transform - pos: -26.5,34.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 12617: - - Pressed: DoorBolt - - uid: 21592 + pos: -93.5,-9.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 18809 components: - type: Transform - pos: -26.5,30.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10130: - - Pressed: DoorBolt - - uid: 21593 + pos: 48.5,12.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 18810 components: - type: Transform - pos: -33.5,30.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10128: - - Pressed: DoorBolt - - uid: 21594 + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 +- proto: SpawnMobGorillaLargo + entities: + - uid: 18811 components: - type: Transform - pos: -33.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10127: - - Pressed: DoorBolt - - uid: 21595 + pos: -66.5,-15.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 18812 components: - type: Transform - pos: -26.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10126: - - Pressed: DoorBolt - - uid: 21626 + pos: -30.5,-7.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 18813 components: - type: Transform - pos: 5.5,0.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5119: - - Pressed: Toggle - - uid: 24807 + pos: 7.5,-9.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 18814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24801: - - Pressed: Toggle - 24802: - - Pressed: Toggle - 24803: - - Pressed: Toggle - - uid: 24808 + pos: -6.5,13.5 + parent: 2 + - uid: 18815 components: - type: Transform - pos: -35.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 22577: - - Pressed: DoorBolt - - uid: 24809 + pos: -1.5,16.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 18816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24798: - - Pressed: Toggle - 24797: - - Pressed: Toggle - - uid: 24810 + pos: -30.5,-1.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 18817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24800: - - Pressed: Toggle - 24799: - - Pressed: Toggle - - uid: 24811 + pos: -101.5,13.5 + parent: 2 + - uid: 18818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,3.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23165: - - Pressed: Toggle - 23168: - - Pressed: Toggle - - uid: 24812 + pos: -30.5,32.5 + parent: 2 + - uid: 18819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23167: - - Pressed: Toggle - 23166: - - Pressed: Toggle - - uid: 24813 + pos: -57.5,29.5 + parent: 2 + - uid: 18820 components: - type: Transform - pos: -14.5,8.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23164: - - Pressed: Toggle - 23162: - - Pressed: Toggle - - uid: 24814 + pos: -77.5,20.5 + parent: 2 + - uid: 18821 components: - type: Transform - pos: -9.5,8.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23161: - - Pressed: Toggle - 23163: - - Pressed: Toggle - - uid: 24815 + pos: -96.5,24.5 + parent: 2 + - uid: 18822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24621: - - Pressed: Toggle - - uid: 24816 + pos: -116.5,20.5 + parent: 2 + - uid: 18823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23157: - - Pressed: Toggle - 23158: - - Pressed: Toggle - 23159: - - Pressed: Toggle - 23160: - - Pressed: Toggle - - uid: 24817 + pos: -92.5,25.5 + parent: 2 + - uid: 18824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23154: - - Pressed: Toggle - 23155: - - Pressed: Toggle - 23153: - - Pressed: Toggle - 23156: - - Pressed: Toggle - - uid: 24818 + pos: -33.5,32.5 + parent: 2 + - uid: 18825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,7.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24645: - - Pressed: Toggle - - uid: 24819 + pos: -57.5,35.5 + parent: 2 + - uid: 18826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24608: - - Pressed: Toggle - - uid: 24820 + pos: -69.5,-7.5 + parent: 2 + - uid: 18827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,10.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24607: - - Pressed: Toggle - - uid: 24821 + pos: -0.5,-11.5 + parent: 2 + - uid: 26762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24606: - - Pressed: Toggle - - uid: 24822 + pos: -27.5,10.5 + parent: 24450 + - uid: 26763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,10.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24627: - - Pressed: Toggle - - uid: 24823 + pos: -31.5,6.5 + parent: 24450 + - uid: 26764 components: - type: Transform - pos: 11.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 22578: - - Pressed: DoorBolt - - uid: 25393 + pos: -34.5,11.5 + parent: 24450 + - uid: 26765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21787: - - Pressed: Toggle -- proto: SignalButtonDirectional + pos: 5.5,3.5 + parent: 24450 + - uid: 26766 + components: + - type: Transform + pos: 10.5,8.5 + parent: 24450 +- proto: SpawnMobParrot entities: - - uid: 22225 + - uid: 18828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-10.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 22044: - - Pressed: Toggle - 7679: - - Pressed: Toggle - 22215: - - Pressed: Toggle - 22217: - - Pressed: Toggle - 22218: - - Pressed: Toggle - 22219: - - Pressed: Toggle - 22220: - - Pressed: Toggle - 22221: - - Pressed: Toggle - 22222: - - Pressed: Toggle - 22223: - - Pressed: Toggle - 22224: - - Pressed: Toggle -- proto: SignAnomaly + pos: 0.5,-25.5 + parent: 2 +- proto: SpawnMobPossumMorty entities: - - uid: 8409 + - uid: 18829 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 -- proto: SignArmory + pos: -73.5,-16.5 + parent: 2 +- proto: SpawnMobShark entities: - - uid: 19476 + - uid: 18830 components: - type: Transform - pos: 39.5,-8.5 - parent: 89 -- proto: SignAtmos + pos: -99.5,25.5 + parent: 2 +- proto: SpawnMobShiva entities: - - uid: 6452 + - uid: 18831 components: - type: Transform - pos: -96.5,-6.5 - parent: 89 -- proto: SignAtmosMinsky + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 +- proto: SpawnMobSlothPaperwork entities: - - uid: 6441 + - uid: 18832 components: - type: Transform - pos: -91.5,-6.5 - parent: 89 - - uid: 7176 + pos: -53.5,10.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 18833 components: - type: Transform - pos: -106.5,-18.5 - parent: 89 -- proto: SignBar + pos: 2.5,-29.5 + parent: 2 +- proto: SpawnMobSpaceCobra entities: - - uid: 76 + - uid: 18834 components: - type: Transform - pos: -20.5,0.5 - parent: 89 - - uid: 77 + pos: -52.5,21.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 18835 components: - type: Transform - pos: -19.5,-9.5 - parent: 89 -- proto: SignBiohazardMed + pos: 3.5,6.5 + parent: 2 +- proto: SpawnPointAtmos entities: - - uid: 347 + - uid: 18910 components: - type: Transform - pos: -85.5,-22.5 - parent: 89 - - uid: 15161 + pos: -100.5,-3.5 + parent: 2 + - uid: 18911 components: - type: Transform - pos: 12.5,23.5 - parent: 89 - - uid: 15185 + pos: -101.5,-3.5 + parent: 2 + - uid: 18913 components: - type: Transform - pos: 15.5,23.5 - parent: 89 -- proto: SignBridge + pos: -99.5,-4.5 + parent: 2 +- proto: SpawnPointBartender entities: - - uid: 969 + - uid: 18837 components: - type: Transform - pos: 57.5,1.5 - parent: 89 - - uid: 1933 + pos: -29.5,-1.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 18838 components: - type: Transform - pos: 42.5,2.5 - parent: 89 - - uid: 1993 + pos: -4.5,-9.5 + parent: 2 + - uid: 18839 components: - type: Transform - pos: 57.5,7.5 - parent: 89 -- proto: SignCanisters - entities: - - uid: 6944 + pos: -4.5,-8.5 + parent: 2 + - uid: 18840 components: - type: Transform - pos: -89.5,-7.5 - parent: 89 -- proto: SignCargo + pos: -4.5,-7.5 + parent: 2 +- proto: SpawnPointCaptain entities: - - uid: 5847 + - uid: 18841 components: - type: Transform - pos: -65.5,-3.5 - parent: 89 - - uid: 5848 + pos: 47.5,13.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 18847 components: - type: Transform - pos: -60.5,-3.5 - parent: 89 -- proto: SignCargoDock - entities: - - uid: 5849 + pos: -64.5,-7.5 + parent: 2 + - uid: 18848 components: - type: Transform - pos: -61.5,-18.5 - parent: 89 - - uid: 5850 + pos: -65.5,-7.5 + parent: 2 + - uid: 23707 components: - type: Transform - pos: -61.5,-21.5 - parent: 89 -- proto: SignChapel + pos: -63.5,-7.5 + parent: 2 +- proto: SpawnPointChaplain entities: - - uid: 5455 + - uid: 18844 components: - type: Transform - pos: -46.5,2.5 - parent: 89 -- proto: SignChem + pos: -46.5,-6.5 + parent: 2 +- proto: SpawnPointChef entities: - - uid: 11246 + - uid: 18845 components: - type: Transform - pos: -8.5,10.5 - parent: 89 -- proto: SignChemistry2 - entities: - - uid: 16418 + pos: -12.5,-1.5 + parent: 2 + - uid: 18846 components: - type: Transform - pos: -4.5,5.5 - parent: 89 -- proto: SignCloning + pos: -12.5,-4.5 + parent: 2 +- proto: SpawnPointChemist entities: - - uid: 14978 + - uid: 18866 components: - type: Transform - pos: 8.5,15.5 - parent: 89 - - uid: 15535 + pos: 6.5,13.5 + parent: 2 + - uid: 18869 components: - type: Transform - pos: 17.5,13.5 - parent: 89 -- proto: SignCourt + pos: 6.5,12.5 + parent: 2 +- proto: SpawnPointChiefEngineer entities: - - uid: 10224 + - uid: 18836 components: - type: Transform - pos: -72.5,1.5 - parent: 89 -- proto: SignDirectionalBar + pos: -99.5,-2.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer entities: - - uid: 19433 + - uid: 18849 components: - type: Transform - pos: -20.448164,4.3709 - parent: 89 - - uid: 19459 + pos: 24.5,42.5 + parent: 2 + - uid: 18850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.19584,-14.422298 - parent: 89 -- proto: SignDirectionalBridge + pos: 11.5,12.5 + parent: 2 +- proto: SpawnPointClown entities: - - uid: 19435 + - uid: 18851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.541182,0.74590015 - parent: 89 - - uid: 19474 + pos: -34.5,-4.5 + parent: 2 + - uid: 18852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5277987,0.82034445 - parent: 89 -- proto: SignDirectionalBrig + pos: 52.5,-13.5 + parent: 2 +- proto: SpawnPointDetective entities: - - uid: 19426 + - uid: 18853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.492928,-10.699898 - parent: 89 - - uid: 19440 + pos: 21.5,6.5 + parent: 2 +- proto: SpawnPointGhostRatKing + entities: + - uid: 18854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.469925,7.722947 - parent: 89 - - uid: 19444 + pos: -43.5,21.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 18855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.541182,0.32402515 - parent: 89 - - uid: 19450 + pos: 41.5,12.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 18856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.47954,19.72356 - parent: 89 - - uid: 19458 + pos: 33.5,-2.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 18857 components: - type: Transform - pos: -28.499207,18.123867 - parent: 89 - - uid: 19479 + pos: -36.5,8.5 + parent: 2 + - uid: 18858 components: - type: Transform - pos: 1.4937797,0.18840826 - parent: 89 -- proto: SignDirectionalChapel + pos: -39.5,8.5 + parent: 2 +- proto: SpawnPointLawyer entities: - - uid: 19446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.450565,2.5216875 - parent: 89 - - uid: 19447 + - uid: 18859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.49031,2.8029375 - parent: 89 -- proto: SignDirectionalChemistry + pos: -75.5,-6.5 + parent: 2 +- proto: SpawnPointLibrarian entities: - - uid: 19451 + - uid: 18860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.283887,0.70491505 - parent: 89 -- proto: SignDirectionalCryo + pos: -56.5,9.5 + parent: 2 +- proto: SpawnPointMedicalDoctor entities: - - uid: 12648 + - uid: 18861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 89 -- proto: SignDirectionalDorms - entities: - - uid: 16888 + pos: 7.5,13.5 + parent: 2 + - uid: 18862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,18.5 - parent: 89 - - uid: 19431 + pos: 8.5,12.5 + parent: 2 + - uid: 18863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.47457,11.347947 - parent: 89 - - uid: 19445 + pos: 10.5,12.5 + parent: 2 + - uid: 18864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.463917,19.50481 - parent: 89 -- proto: SignDirectionalEng - entities: - - uid: 15609 + pos: -11.5,20.5 + parent: 2 + - uid: 18865 components: - type: Transform - pos: -87.481995,0.5272808 - parent: 89 - - uid: 19434 + pos: 9.5,13.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 18867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.484875,1.9081881 - parent: 89 - - uid: 19437 + pos: 7.5,12.5 + parent: 2 + - uid: 18868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.37197,6.6281567 - parent: 89 - - uid: 19438 + pos: 8.5,13.5 + parent: 2 + - uid: 18870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.481346,8.596907 - parent: 89 - - uid: 19448 + pos: 9.5,12.5 + parent: 2 + - uid: 18871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.47954,19.301685 - parent: 89 - - uid: 19456 + pos: 10.5,13.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 18872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.504496,18.701992 - parent: 89 - - uid: 19468 + pos: -34.5,-8.5 + parent: 2 + - uid: 18873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.507183,-10.057941 - parent: 89 - - uid: 19470 + pos: 25.5,-13.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 18874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.453323,2.7666566 - parent: 89 - - uid: 19472 + pos: -34.5,-6.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 18875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.53055,6.8082514 - parent: 89 - - uid: 19489 + pos: 13.5,1.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 18876 components: - type: Transform - pos: -83.47322,11.546508 - parent: 89 -- proto: SignDirectionalEvac + pos: 11.5,13.5 + parent: 2 +- proto: SpawnPointPassenger entities: - - uid: 19455 + - uid: 18877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.258215,0.3275411 - parent: 89 - - uid: 19469 + pos: -94.5,15.5 + parent: 2 + - uid: 18878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.524527,18.912651 - parent: 89 - - uid: 19471 + pos: -92.5,16.5 + parent: 2 + - uid: 18879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.493805,1.4084592 - parent: 89 - - uid: 19477 + pos: -91.5,13.5 + parent: 2 + - uid: 18880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.4980168,0.37590826 - parent: 89 - - uid: 19481 + pos: -93.5,13.5 + parent: 2 +- proto: SpawnPointPilot + entities: + - uid: 18881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.46437,20.100151 - parent: 89 - - uid: 19484 + pos: 34.5,-24.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 18882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.47322,11.765258 - parent: 89 -- proto: SignDirectionalFood + pos: 20.5,18.5 + parent: 2 +- proto: SpawnPointQuartermaster entities: - - uid: 19441 + - uid: 18842 components: - type: Transform - pos: -20.448164,4.792775 - parent: 89 - - uid: 19457 + pos: -62.5,-5.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 18884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.19881,-14.203548 - parent: 89 -- proto: SignDirectionalGravity + pos: -26.5,8.5 + parent: 2 +- proto: SpawnPointResearchAssistant entities: - - uid: 15763 + - uid: 18885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-11.5 - parent: 89 - - uid: 15764 + pos: -6.5,-44.5 + parent: 2 + - uid: 18886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-14.5 - parent: 89 -- proto: SignDirectionalHydro + pos: 1.5,-44.5 + parent: 2 +- proto: SpawnPointResearchDirector entities: - - uid: 19436 + - uid: 18887 components: - type: Transform - pos: -20.448164,4.58965 - parent: 89 - - uid: 19462 + pos: 3.5,-29.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 23708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.360103,-10.336247 - parent: 89 - - uid: 19465 + pos: -62.5,-7.5 + parent: 2 + - uid: 23709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.189,-14.640293 - parent: 89 -- proto: SignDirectionalMed + pos: -61.5,-7.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 +- proto: SpawnPointScientist entities: - - uid: 19427 + - uid: 18890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 89 - - uid: 19442 + pos: -15.5,-18.5 + parent: 2 + - uid: 18891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47633,8.190959 - parent: 89 - - uid: 19443 + pos: -18.5,-19.5 + parent: 2 + - uid: 18892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.541182,0.54277515 - parent: 89 - - uid: 19453 + pos: -6.5,-22.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 18893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.480083,19.901142 - parent: 89 - - uid: 19454 + pos: 48.5,-19.5 + parent: 2 + - uid: 18894 components: - type: Transform - pos: -28.496002,18.319506 - parent: 89 - - uid: 19467 + pos: 48.5,-20.5 + parent: 2 + - uid: 18895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.50203,1.6130815 - parent: 89 - - uid: 19475 + pos: 19.5,-13.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 18898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5136418,0.59465826 - parent: 89 -- proto: SignDirectionalSci + pos: 31.5,-3.5 + parent: 2 +- proto: SpawnPointSecurityOfficer entities: - - uid: 18867 + - uid: 18899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-10.5 - parent: 89 - - uid: 19428 + pos: 20.5,-5.5 + parent: 2 + - uid: 18900 components: - type: Transform - pos: -38.505344,1.299536 - parent: 89 - - uid: 19432 + pos: 17.5,-5.5 + parent: 2 + - uid: 18901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47134,7.940959 - parent: 89 - - uid: 19463 + pos: 18.5,-5.5 + parent: 2 + - uid: 18902 components: - type: Transform - pos: -28.501144,17.939337 - parent: 89 - - uid: 19466 + pos: 19.5,-5.5 + parent: 2 + - uid: 18903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.505072,1.8144658 - parent: 89 -- proto: SignDirectionalSec + pos: 31.5,-6.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 +- proto: SpawnPointServiceWorker entities: - - uid: 19478 + - uid: 18905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.899324,-14.207903 - parent: 89 - - uid: 19480 + pos: -23.5,-4.5 + parent: 2 + - uid: 18906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.3946757,-10.59005 - parent: 89 -- proto: SignDirectionalSolar - entities: - - uid: 20357 + pos: -26.5,-4.5 + parent: 2 + - uid: 18907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 89 -- proto: SignDirectionalSupply + pos: -24.5,-4.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 +- proto: SpawnPointStationEngineer entities: - - uid: 19116 + - uid: 18843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.492928,-10.293648 - parent: 89 - - uid: 19429 + pos: -102.5,-1.5 + parent: 2 + - uid: 18883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.48972,1.7086813 - parent: 89 - - uid: 19439 + pos: -103.5,-1.5 + parent: 2 + - uid: 18888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47308,8.396509 - parent: 89 -- proto: SignDirectionalWash - entities: - - uid: 19452 + pos: -101.5,-1.5 + parent: 2 + - uid: 18889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.25161,0.7494161 - parent: 89 -- proto: SignDrones + pos: -100.5,-1.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant entities: - - uid: 19671 + - uid: 18909 components: - type: Transform - pos: 19.5,0.5 - parent: 89 -- proto: SignElectricalMed - entities: - - uid: 8492 + pos: -102.5,-3.5 + parent: 2 + - uid: 18912 components: - type: Transform - pos: -126.5,14.5 - parent: 89 - - uid: 8522 + pos: -103.5,-3.5 + parent: 2 + - uid: 18914 components: - type: Transform - pos: -126.5,10.5 - parent: 89 -- proto: SignEngineering + pos: -104.5,-2.5 + parent: 2 +- proto: SpawnPointWarden entities: - - uid: 7190 + - uid: 18915 components: - type: Transform - pos: -106.5,-5.5 - parent: 89 -- proto: SignExamroom + pos: 7.5,-11.5 + parent: 2 +- proto: SpeedLoaderCap entities: - - uid: 12646 + - uid: 18916 components: - type: Transform - pos: 23.5,26.5 - parent: 89 -- proto: SignFire + pos: -34.26588,32.403828 + parent: 2 +- proto: SpeedLoaderMagnum entities: - - uid: 8481 + - uid: 1195 components: - type: Transform - pos: -122.5,2.5 - parent: 89 -- proto: SignFlammableMed - entities: - - uid: 7164 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1196 components: - type: Transform - pos: -82.5,-22.5 - parent: 89 -- proto: SignHead - entities: - - uid: 11100 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18917 components: - type: Transform - pos: 26.5,29.5 - parent: 89 -- proto: SignHydro2 + pos: 35.614456,-0.5068965 + parent: 2 +- proto: SpeedLoaderMagnumAP entities: - - uid: 19464 + - uid: 18918 components: - type: Transform - pos: -8.563228,-10.476872 - parent: 89 -- proto: SignInterrogation + rot: 3.141592653589793 rad + pos: 35.43831,-0.5306393 + parent: 2 +- proto: SpiderWeb entities: - - uid: 15869 + - uid: 18919 components: - type: Transform - pos: 4.5,-3.5 - parent: 89 -- proto: SignKiddiePlaque - entities: - - uid: 11668 + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - uid: 18920 components: - type: Transform - pos: 4.5,6.5 - parent: 89 - - uid: 15037 + pos: -92.5,26.5 + parent: 2 + - uid: 18921 components: - - type: MetaData - desc: 'Табличка с недавней реконструкции станции простыми работягами. Тут вы можете найти такие псевдонимы как: Syxapik, SonicDC, Zna1kin. Почему у них такие прозвища видимо секрет фирмы. ©' - name: "доска почёта \U0001F3C6" - type: Transform - pos: 39.5,10.5 - parent: 89 -- proto: SignLibrary - entities: - - uid: 3292 + rot: -1.5707963267948966 rad + pos: -92.5,27.5 + parent: 2 + - uid: 18922 components: - type: Transform - pos: -47.5,6.5 - parent: 89 -- proto: SignMedical - entities: - - uid: 6569 + rot: -1.5707963267948966 rad + pos: -93.5,28.5 + parent: 2 + - uid: 18923 components: - type: Transform - pos: -15.5,4.5 - parent: 89 - - uid: 6570 + rot: -1.5707963267948966 rad + pos: -92.5,29.5 + parent: 2 + - uid: 18924 components: - type: Transform - pos: -8.5,4.5 - parent: 89 -- proto: SignMorgue - entities: - - uid: 10502 + pos: 14.5,-16.5 + parent: 2 + - uid: 18925 components: - type: Transform - pos: 7.5,10.5 - parent: 89 - - uid: 12835 + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - uid: 18926 components: - type: Transform - pos: 15.5,5.5 - parent: 89 -- proto: SignNosmoking - entities: - - uid: 7165 + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 18927 components: - type: Transform - pos: -78.5,-22.5 - parent: 89 -- proto: SignPlaque - entities: - - uid: 19461 + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - uid: 18928 components: - type: Transform - pos: 4.5,0.5 - parent: 89 -- proto: SignPrison + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 3.5,10.5 + parent: 24450 + - uid: 26768 + components: + - type: Transform + pos: 4.5,10.5 + parent: 24450 + - uid: 26769 + components: + - type: Transform + pos: 3.5,11.5 + parent: 24450 +- proto: SprayBottleSpaceCleaner entities: - - uid: 21914 + - uid: 18929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 89 - - uid: 24824 + pos: -1.4198284,-1.3306422 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: -41.17559,7.5532546 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: -41.17559,7.865755 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: 5.48831,29.827152 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: 5.33206,29.624027 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: -34.505363,5.583355 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: 10.525955,42.67038 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: 5.309067,16.752579 + parent: 2 + - uid: 18937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.576197,36.253662 + parent: 2 + - uid: 18938 components: - type: Transform - pos: -13.5,-4.5 - parent: 22565 - - uid: 24825 + pos: 5.628935,29.608402 + parent: 2 + - uid: 18939 components: - type: Transform - pos: -10.5,-4.5 - parent: 22565 -- proto: SignRadiationMed - entities: - - uid: 7050 + pos: 5.628935,33.999027 + parent: 2 + - uid: 18940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-8.5 - parent: 89 - - uid: 13995 + pos: 5.26956,34.077152 + parent: 2 + - uid: 18941 components: - type: Transform - pos: -123.5,6.5 - parent: 89 - - uid: 17087 + pos: 26.439201,13.657077 + parent: 2 + - uid: 18942 components: - type: Transform - pos: -123.5,1.5 - parent: 89 - - uid: 21983 + pos: 9.69931,8.612162 + parent: 2 +- proto: SprayPainter + entities: + - uid: 18943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-5.5 - parent: 89 -- proto: SignRND + pos: -56.366257,5.479856 + parent: 2 +- proto: StairStage entities: - - uid: 8294 + - uid: 18944 components: - type: Transform - pos: -1.5,-18.5 - parent: 89 - - uid: 8392 + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 18945 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 -- proto: SignRobo + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 +- proto: StasisBed entities: - - uid: 8410 + - uid: 18946 components: - type: Transform - pos: -10.5,-23.5 - parent: 89 - - uid: 16890 + pos: 14.5,-3.5 + parent: 2 + - uid: 18947 components: - type: Transform - pos: -23.5,-14.5 - parent: 89 - - uid: 16891 + pos: -2.5,15.5 + parent: 2 + - uid: 18948 components: - type: Transform - pos: -17.5,-14.5 - parent: 89 -- proto: SignShield - entities: - - uid: 19460 + pos: -0.5,15.5 + parent: 2 + - uid: 27883 components: - type: Transform - pos: 2.5,-7.5 - parent: 89 -- proto: SignShock + pos: -4.5,-8.5 + parent: 27260 +- proto: StationMap entities: - - uid: 7102 + - uid: 18949 components: - type: Transform - pos: 53.5,-11.5 - parent: 89 - - uid: 8480 + rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 2 + - uid: 18950 components: - type: Transform - pos: -128.5,2.5 - parent: 89 - - uid: 8847 + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 18951 components: - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 25352 + pos: -62.5,27.5 + parent: 2 + - uid: 18952 components: - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 25356 + pos: -79.5,11.5 + parent: 2 + - uid: 18953 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 -- proto: SignSmoking - entities: - - uid: 8456 + pos: -95.5,11.5 + parent: 2 + - uid: 18954 components: - type: Transform - pos: -128.5,1.5 - parent: 89 - - uid: 21589 + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - uid: 18955 components: - type: Transform - pos: -3.5,14.5 - parent: 89 -- proto: SignSomethingOld - entities: - - uid: 3415 + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - uid: 18956 components: - - type: MetaData - desc: Гражданин, сообщай о нарушениях ОЧЗ, будь бдителен враги Земли всюду. - name: старый плакат EarthGov - type: Transform - pos: -21.5,7.5 - parent: 89 - - uid: 9580 + pos: 11.5,4.5 + parent: 2 + - uid: 18957 components: - - type: MetaData - desc: Гражданин, вступай в силы обороны Земли! Защитите Землю! - name: старый плакат EarthGov - type: Transform - pos: -16.5,-10.5 - parent: 89 - - uid: 9596 + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 2 + - uid: 18958 components: - - type: MetaData - desc: Звезды наши! - name: старый плакат EarthGov - type: Transform - pos: -57.5,6.5 - parent: 89 - - uid: 9598 + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 18959 components: - - type: MetaData - desc: Полный допуск, в публичный сектор! - name: старый плакат EarthGov - type: Transform - pos: -70.5,11.5 - parent: 89 - - uid: 9599 + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 18960 components: - - type: MetaData - desc: Одна цель, одно правительство. - name: старый плакат EarthGov - type: Transform - pos: -89.5,5.5 - parent: 89 - - uid: 9600 + pos: -53.5,19.5 + parent: 2 + - uid: 18961 components: - - type: MetaData - desc: Правительство Земли, создает рабочие месте! - name: старый плакат EarthGov - type: Transform - pos: -64.5,23.5 - parent: 89 - - uid: 9601 + rot: 1.5707963267948966 rad + pos: -72.5,2.5 + parent: 2 + - uid: 18962 components: - - type: MetaData - desc: Ради общего будущего. - name: старый плакат EarthGov - type: Transform - pos: -34.5,15.5 - parent: 89 - - uid: 9602 + rot: 3.141592653589793 rad + pos: -82.5,6.5 + parent: 2 + - uid: 18963 components: - - type: MetaData - desc: Создай завтра, вместе с правительством Земли. - name: старый плакат EarthGov - type: Transform - pos: -28.5,-10.5 - parent: 89 - - uid: 9603 + pos: -32.5,-10.5 + parent: 2 + - uid: 18964 components: - - type: MetaData - desc: Добро пожаловать в правительственный сектор! - name: старый плакат EarthGov - type: Transform - pos: 33.5,4.5 - parent: 89 - - uid: 24826 + pos: -110.5,22.5 + parent: 2 + - uid: 18965 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 -- proto: SignSomethingOld2 + pos: -100.5,6.5 + parent: 2 +- proto: SteelBench entities: - - uid: 9566 + - uid: 18966 components: - - type: MetaData - desc: На плакате изображенна работа планетарного потрошителя. Страшновато. - name: старый плакат EarthGov - type: Transform - pos: 2.5,-9.5 - parent: 89 - - uid: 10504 + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 18967 components: - - type: MetaData - desc: На плакате изображена работа планетарного потрошителя. Страшновато. - name: старый плакат EarthGov - type: Transform - pos: -61.5,42.5 - parent: 89 - - uid: 24827 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 18968 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 -- proto: SignSurgery - entities: - - uid: 15868 + rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 26770 components: - type: Transform - pos: 4.5,14.5 - parent: 89 - - uid: 20014 + pos: -25.5,-0.5 + parent: 24450 + - uid: 26771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 89 -- proto: SignTelecomms - entities: - - uid: 9153 + pos: -24.5,-0.5 + parent: 24450 + - uid: 26772 components: - type: Transform - pos: -109.5,19.5 - parent: 89 - - uid: 9154 + pos: -23.5,-0.5 + parent: 24450 + - uid: 26773 components: - type: Transform - pos: -107.5,19.5 - parent: 89 - - uid: 24828 + pos: -0.5,-0.5 + parent: 24450 + - uid: 26774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 22565 -- proto: SignToolStorage - entities: - - uid: 7189 + pos: 0.5,-0.5 + parent: 24450 + - uid: 26775 components: - type: Transform - pos: -98.5,-6.5 - parent: 89 - - uid: 7228 + pos: 1.5,-0.5 + parent: 24450 +- proto: SteelOre1 + entities: + - uid: 18969 components: - type: Transform - pos: -92.5,11.5 - parent: 89 -- proto: SignVirology + pos: -27.517975,28.269533 + parent: 2 +- proto: Stool entities: - - uid: 12857 + - uid: 18970 components: - type: Transform - pos: 15.5,25.5 - parent: 89 - - uid: 15034 + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 18971 components: - type: Transform - pos: 12.5,25.5 - parent: 89 - - uid: 15534 + pos: -36.5,0.5 + parent: 2 + - uid: 18972 components: - type: Transform - pos: 12.5,15.5 - parent: 89 -- proto: Sink - entities: - - uid: 719 + pos: -35.5,0.5 + parent: 2 + - uid: 18973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,13.5 - parent: 89 - - uid: 1193 + rot: 3.141592653589793 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 18974 components: - type: Transform - pos: -24.5,14.5 - parent: 89 - - uid: 1708 + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 18975 components: - type: Transform - pos: -25.5,14.5 - parent: 89 - - uid: 1858 + rot: -1.5707963267948966 rad + pos: -48.5,-3.5 + parent: 2 + - uid: 18976 components: - type: Transform - pos: -22.5,14.5 - parent: 89 - - uid: 1861 + pos: -45.5,-3.5 + parent: 2 + - uid: 18977 components: - type: Transform - pos: -23.5,14.5 - parent: 89 - - uid: 1863 + rot: 3.141592653589793 rad + pos: -45.5,-4.5 + parent: 2 + - uid: 18978 components: - type: Transform - pos: -21.5,14.5 - parent: 89 - - uid: 2071 + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 18979 components: - type: Transform - pos: 6.5,-28.5 - parent: 89 - - uid: 4889 + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 2 + - uid: 18980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 89 - - uid: 5828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-13.5 - parent: 89 - - uid: 15188 + pos: -22.5,-4.5 + parent: 2 + - uid: 18981 components: - type: Transform - pos: 20.5,23.5 - parent: 89 - - uid: 16889 + rot: 3.141592653589793 rad + pos: -49.445366,-10.505502 + parent: 2 + - uid: 18982 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,23.5 - parent: 89 - - uid: 19133 + pos: -48.46099,-10.474252 + parent: 2 + - uid: 18983 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,23.5 - parent: 89 - - uid: 20984 + pos: -47.49224,-10.505502 + parent: 2 +- proto: StoolBar + entities: + - uid: 18984 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,16.5 - parent: 89 - - uid: 21492 + pos: -26.5,-4.5 + parent: 2 + - uid: 18985 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,23.5 - parent: 89 -- proto: SinkStemlessWater - entities: - - uid: 24829 + pos: -25.5,-4.5 + parent: 2 + - uid: 18986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 22565 -- proto: SinkWide - entities: - - uid: 329 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 18987 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-5.5 - parent: 89 - - uid: 5482 + pos: -23.5,-4.5 + parent: 2 + - uid: 18988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 89 - - uid: 10294 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 18989 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 89 - - uid: 10354 + pos: -21.5,-2.5 + parent: 2 + - uid: 18990 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 89 - - uid: 10887 + pos: -21.5,-1.5 + parent: 2 + - uid: 18991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 89 - - uid: 15028 + pos: 3.5,-19.5 + parent: 2 + - uid: 18992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,7.5 - parent: 89 - - uid: 16175 + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 18993 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,36.5 - parent: 89 - - uid: 16176 + pos: -4.5,45.5 + parent: 2 + - uid: 18994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 89 - - uid: 18971 + pos: -2.5,45.5 + parent: 2 + - uid: 18995 components: - type: Transform - pos: 27.5,26.5 - parent: 89 - - uid: 19248 + pos: -119.5,-14.5 + parent: 2 + - uid: 18996 components: - type: Transform - pos: 28.5,26.5 - parent: 89 - - uid: 24830 + pos: -118.5,-14.5 + parent: 2 + - uid: 18997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 22565 - - uid: 24831 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 18998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 22565 -- proto: SmallLight - entities: - - uid: 21520 + pos: 3.5,-20.5 + parent: 2 + - uid: 18999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 89 - - uid: 21521 + pos: -17.5,-3.5 + parent: 2 + - uid: 19000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 89 -- proto: SmartFridge - entities: - - uid: 4763 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 19001 components: - type: Transform - pos: -10.5,-1.5 - parent: 89 -- proto: SMESBasic + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 +- proto: StorageCanister entities: - - uid: 618 + - uid: 19002 components: - - type: MetaData - name: СМЭС мостик - type: Transform - pos: 47.5,4.5 - parent: 89 - - uid: 1257 + pos: -88.5,-6.5 + parent: 2 + - uid: 19003 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - uid: 11362 + pos: -88.5,-5.5 + parent: 2 + - uid: 19004 components: - - type: MetaData - name: СМЭС инженерного отдела - type: Transform - pos: -116.5,13.5 - parent: 89 - - uid: 15318 + pos: -96.5,-15.5 + parent: 2 + - uid: 19005 components: - type: Transform - pos: -124.5,18.5 - parent: 89 - - uid: 16763 + pos: -98.5,-15.5 + parent: 2 + - uid: 19006 components: - type: Transform - pos: -121.5,18.5 - parent: 89 - - uid: 17024 + pos: -97.5,-15.5 + parent: 2 + - uid: 19007 components: - type: Transform - pos: -123.5,18.5 - parent: 89 - - uid: 17025 + pos: -87.5,-6.5 + parent: 2 + - uid: 19008 components: - type: Transform - pos: -122.5,18.5 - parent: 89 - - uid: 19806 + pos: -79.5,-11.5 + parent: 2 + - uid: 19009 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - uid: 20187 + pos: -80.5,-11.5 + parent: 2 + - uid: 19010 components: - type: Transform - pos: 35.5,27.5 - parent: 89 - - uid: 21389 + pos: -93.5,19.5 + parent: 2 + - uid: 19011 components: - type: Transform - pos: -131.5,-4.5 - parent: 89 - - uid: 22091 + pos: -22.5,-27.5 + parent: 2 + - uid: 19012 components: - type: Transform - pos: -131.5,-12.5 - parent: 89 - - uid: 22163 + pos: -105.5,18.5 + parent: 2 + - uid: 19013 components: - type: Transform - pos: -131.5,-11.5 - parent: 89 - - uid: 22207 + pos: -104.5,18.5 + parent: 2 + - uid: 19014 components: - type: Transform - pos: -131.5,-3.5 - parent: 89 - - uid: 24832 + pos: 2.5,25.5 + parent: 2 + - uid: 19015 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 -- proto: SMESMachineCircuitboard - entities: - - uid: 6894 + pos: 14.5,34.5 + parent: 2 + - uid: 19016 components: - type: Transform - pos: -102.58862,-7.2769136 - parent: 89 - - uid: 7039 + pos: 0.5,-39.5 + parent: 2 + - uid: 19017 components: - type: Transform - pos: -102.36987,-7.5269136 - parent: 89 -- proto: SmokingPipeFilledCannabis + pos: 1.5,-39.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 24450 + - uid: 26777 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 24450 +- proto: Stunbaton entities: - - uid: 12602 + - uid: 15712 components: - type: Transform - parent: 12190 + parent: 15711 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12610 + - uid: 15713 components: - type: Transform - parent: 12190 + parent: 15711 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Soap - entities: - - uid: 54 + - uid: 15714 components: - type: Transform - pos: -23.508356,32.71544 - parent: 89 - - uid: 21503 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.271545,25.505068 - parent: 89 - - uid: 21504 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.084045,25.426943 - parent: 89 - - uid: 21505 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.740295,25.411318 - parent: 89 - - uid: 21506 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.66217,25.395693 - parent: 89 -- proto: SoapDeluxe - entities: - - uid: 5827 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15719 components: - type: Transform - pos: -73.514084,-12.479306 - parent: 89 - - uid: 21287 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19018 components: - type: Transform - pos: 33.493954,-2.555304 - parent: 89 -- proto: SoapNT + pos: 21.441029,-2.3814173 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: 21.644154,-2.5532923 + parent: 2 + - uid: 24544 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24545 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Stunprod entities: - - uid: 800 + - uid: 26778 components: - type: Transform - pos: 50.48895,14.475723 - parent: 89 -- proto: soda_dispenser + pos: 3.94458,11.482362 + parent: 24450 + - uid: 26779 + components: + - type: Transform + pos: 3.616455,11.576112 + parent: 24450 +- proto: SubstationBasic entities: - - uid: 61 + - uid: 19020 components: + - type: MetaData + name: подстанция мостик - type: Transform - pos: -24.5,-0.5 - parent: 89 - - uid: 7755 + pos: 48.5,5.5 + parent: 2 + - uid: 19021 components: + - type: MetaData + name: подстанция атмоссии - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,44.5 - parent: 89 - - uid: 7756 + pos: -82.5,-11.5 + parent: 2 + - uid: 19022 components: + - type: MetaData + name: подстанция двигателя - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,44.5 - parent: 89 -- proto: SolarAssembly - entities: - - uid: 20797 + pos: -131.5,-12.5 + parent: 2 + - uid: 19023 components: + - type: MetaData + name: подстанция телекоммы и гравген - type: Transform - pos: -122.5,-28.5 - parent: 89 -- proto: SolarControlComputerCircuitboard - entities: - - uid: 7065 + pos: -111.5,20.5 + parent: 2 + - uid: 19024 components: + - type: MetaData + name: подстанция НИО - type: Transform - pos: -103.27902,-10.571648 - parent: 89 -- proto: SolarPanel - entities: - - uid: 5946 + pos: -9.5,-25.5 + parent: 2 + - uid: 19025 components: + - type: MetaData + name: подстанция мед 1 - type: Transform - pos: -132.5,-18.5 - parent: 89 - - uid: 5971 + pos: -5.5,27.5 + parent: 2 + - uid: 19026 components: + - type: MetaData + name: подстанция карго, суд - type: Transform - pos: -131.5,-18.5 - parent: 89 - - uid: 16609 + pos: -82.5,-9.5 + parent: 2 + - uid: 19027 components: + - type: MetaData + name: подстанция дормы - type: Transform - pos: -133.5,-20.5 - parent: 89 - - uid: 17070 + pos: -40.5,24.5 + parent: 2 + - uid: 19028 components: + - type: MetaData + name: подстанция прибытие - type: Transform - pos: 57.5,35.5 - parent: 89 - - uid: 18870 + pos: -51.5,28.5 + parent: 2 + - uid: 19029 components: + - type: MetaData + name: подстанция коридоров 1 - type: Transform - pos: -130.5,-18.5 - parent: 89 - - uid: 19533 + pos: -90.5,20.5 + parent: 2 + - uid: 19030 components: + - type: MetaData + name: подстанция карго, бар - type: Transform - pos: 61.5,33.5 - parent: 89 - - uid: 19534 + pos: -37.5,-9.5 + parent: 2 + - uid: 19031 components: + - type: MetaData + name: подстанция уборщик - type: Transform - pos: 56.5,29.5 - parent: 89 - - uid: 19535 + pos: -35.5,11.5 + parent: 2 + - uid: 19032 components: + - type: MetaData + name: подстанция инженерного отдела - type: Transform - pos: -126.5,-18.5 - parent: 89 - - uid: 19539 + pos: -117.5,13.5 + parent: 2 + - uid: 19033 components: - type: Transform - pos: -125.5,-18.5 - parent: 89 - - uid: 19770 + pos: 34.5,27.5 + parent: 2 + - uid: 19034 components: - type: Transform - pos: -131.5,-20.5 - parent: 89 - - uid: 20181 + pos: 44.5,20.5 + parent: 2 + - uid: 19035 components: + - type: MetaData + name: подстанция пермабриг внутри - type: Transform - pos: -130.5,-20.5 - parent: 89 - - uid: 20182 + pos: 57.5,-17.5 + parent: 2 + - uid: 19036 components: + - type: MetaData + name: подстанция СБ - type: Transform - pos: 58.5,31.5 - parent: 89 - - uid: 20183 + pos: 15.5,-12.5 + parent: 2 + - uid: 19037 components: - type: Transform - pos: 59.5,33.5 - parent: 89 - - uid: 20186 + pos: -112.5,-20.5 + parent: 2 + - uid: 26780 components: - type: Transform - pos: -124.5,-20.5 - parent: 89 - - uid: 20189 + pos: -7.5,-17.5 + parent: 24450 + - uid: 26781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-23.5 - parent: 89 - - uid: 20190 + pos: -8.5,-3.5 + parent: 24450 + - uid: 26782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-23.5 - parent: 89 - - uid: 20192 + pos: -15.5,-3.5 + parent: 24450 + - uid: 27884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-23.5 - parent: 89 - - uid: 20193 + pos: -0.5,-11.5 + parent: 27260 +- proto: SubstationMachineCircuitboard + entities: + - uid: 19038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-23.5 - parent: 89 - - uid: 20194 + pos: -103.60425,-7.2144136 + parent: 2 + - uid: 19039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-23.5 - parent: 89 - - uid: 20195 + pos: -103.323,-7.4956636 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 23877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-23.5 - parent: 89 - - uid: 20196 + pos: 3.5,-10.5 + parent: 23711 + - uid: 24239 components: - type: Transform - pos: 60.5,31.5 - parent: 89 - - uid: 20197 + pos: 7.5,1.5 + parent: 23919 + - uid: 24422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-25.5 - parent: 89 - - uid: 20198 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 24340 +- proto: SuitStorageAtmos + entities: + - uid: 19040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-25.5 - parent: 89 - - uid: 20199 + pos: -90.5,-6.5 + parent: 2 + - uid: 19041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-25.5 - parent: 89 - - uid: 20200 + pos: -90.5,-4.5 + parent: 2 + - uid: 19042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-25.5 - parent: 89 - - uid: 20201 + pos: -90.5,-5.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 27553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-25.5 - parent: 89 - - uid: 20202 + pos: 3.5,-11.5 + parent: 27260 + - 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: + - 27555 + - 27557 + - 27554 + - 27556 + - 27558 + - uid: 27559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-25.5 - parent: 89 - - uid: 20205 + pos: 4.5,-8.5 + parent: 27260 + - 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: + - 27560 + - 27563 + - 27564 + - 27561 + - 27562 + - uid: 27565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-23.5 - parent: 89 - - uid: 20206 + pos: 5.5,-8.5 + parent: 27260 + - 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: + - 27567 + - 27570 + - 27569 + - 27566 + - 27568 + - uid: 27571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-23.5 - parent: 89 - - uid: 20207 + pos: 6.5,-8.5 + parent: 27260 + - 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: + - 27575 + - 27576 + - 27574 + - 27573 + - 27572 + - uid: 27577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-23.5 - parent: 89 - - uid: 20209 + pos: 3.5,-12.5 + parent: 27260 + - 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: + - 27582 + - 27578 + - 27581 + - 27579 + - 27580 + - uid: 27583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-23.5 - parent: 89 - - uid: 20211 + pos: -3.5,-4.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27587 + - 27584 + - 27586 + - 27585 +- proto: SuitStorageBasic + entities: + - uid: 19043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-25.5 - parent: 89 - - uid: 20212 + pos: 25.5,7.5 + parent: 2 + - uid: 19044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-25.5 - parent: 89 - - uid: 20213 + pos: 49.5,3.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 19045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-25.5 - parent: 89 - - uid: 20214 + pos: 46.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageCE + entities: + - uid: 19046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-25.5 - parent: 89 - - uid: 20215 + pos: -101.5,9.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 19047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-25.5 - parent: 89 - - uid: 20217 + pos: 22.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEngi + entities: + - uid: 19048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -136.5,-28.5 - parent: 89 - - uid: 20219 + pos: -28.5,36.5 + parent: 2 + - uid: 19049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-28.5 - parent: 89 - - uid: 20220 + pos: -28.5,37.5 + parent: 2 + - uid: 19050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-28.5 - parent: 89 - - uid: 20221 + pos: 26.5,7.5 + parent: 2 + - uid: 19051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-28.5 - parent: 89 - - uid: 20222 + pos: -110.5,-2.5 + parent: 2 + - uid: 19052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-28.5 - parent: 89 - - uid: 20223 + pos: -110.5,10.5 + parent: 2 + - uid: 19053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-28.5 - parent: 89 - - uid: 20224 + pos: -110.5,1.5 + parent: 2 + - uid: 19054 components: - type: Transform - pos: 59.5,29.5 - parent: 89 - - uid: 20225 + pos: -106.5,2.5 + parent: 2 + - uid: 19055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -136.5,-30.5 - parent: 89 - - uid: 20226 + pos: -104.5,2.5 + parent: 2 + - uid: 19056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-30.5 - parent: 89 - - uid: 20227 + pos: -103.5,2.5 + parent: 2 + - uid: 19057 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-30.5 - parent: 89 - - uid: 20228 + pos: -105.5,2.5 + parent: 2 + - uid: 19058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-30.5 - parent: 89 - - uid: 20229 + pos: -110.5,6.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 19059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-30.5 - parent: 89 - - uid: 20231 + pos: 30.5,9.5 + parent: 2 + - uid: 19060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-30.5 - parent: 89 - - uid: 20233 + pos: 29.5,9.5 + parent: 2 + - uid: 19061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-28.5 - parent: 89 - - uid: 20234 + pos: 26.5,5.5 + parent: 2 + - uid: 19062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-28.5 - parent: 89 - - uid: 20235 + pos: 25.5,5.5 + parent: 2 + - uid: 19063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-28.5 - parent: 89 - - uid: 20236 + pos: 28.5,5.5 + parent: 2 + - uid: 19064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-28.5 - parent: 89 - - uid: 20238 + pos: 27.5,9.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 27260 +- proto: SuitStorageEVAEmergency + entities: + - uid: 19069 + components: + - type: Transform + pos: -88.5,23.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 19070 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 8957 + components: + - type: Transform + pos: 36.5,-0.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: + - 8958 +- proto: SuitStorageNTSRA + entities: + - uid: 19073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-28.5 - parent: 89 - - uid: 20239 + pos: 38.5,25.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 19074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-30.5 - parent: 89 - - uid: 20240 + pos: 4.5,-31.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 19075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-30.5 - parent: 89 - - uid: 20241 + pos: -48.5,-9.5 + parent: 2 + - uid: 19076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-30.5 - parent: 89 - - uid: 20242 + pos: -49.5,-9.5 + parent: 2 + - uid: 19077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-30.5 - parent: 89 - - uid: 20243 + pos: -50.5,-9.5 + parent: 2 + - uid: 19078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-30.5 - parent: 89 - - uid: 20252 + pos: 28.5,7.5 + parent: 2 + - uid: 19079 components: - type: Transform - pos: -133.5,-18.5 - parent: 89 - - uid: 20293 + pos: -47.5,-9.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 19080 components: - type: Transform - pos: -123.5,-20.5 - parent: 89 - - uid: 20378 + pos: 27.5,7.5 + parent: 2 + - uid: 19081 components: - type: Transform - pos: 58.5,35.5 - parent: 89 - - uid: 20379 + pos: 17.5,-4.5 + parent: 2 + - uid: 19082 components: - type: Transform - pos: 59.5,35.5 - parent: 89 - - uid: 20427 + pos: 19.5,-4.5 + parent: 2 + - uid: 19083 components: - type: Transform - pos: 46.5,31.5 - parent: 89 - - uid: 20440 + pos: 20.5,-4.5 + parent: 2 + - uid: 19084 components: - type: Transform - pos: 58.5,29.5 - parent: 89 - - uid: 20444 + pos: 18.5,-4.5 + parent: 2 + - uid: 19085 components: - type: Transform - pos: 60.5,29.5 - parent: 89 - - uid: 20445 + pos: 41.5,-3.5 + parent: 2 + - uid: 19086 components: - type: Transform - pos: 59.5,31.5 - parent: 89 - - uid: 20447 + pos: 41.5,-2.5 + parent: 2 + - uid: 19087 components: - type: Transform - pos: 61.5,35.5 - parent: 89 - - uid: 20448 + pos: 39.5,-2.5 + parent: 2 + - uid: 19088 components: - type: Transform - pos: 60.5,33.5 - parent: 89 - - uid: 20449 + pos: 39.5,-3.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 19089 components: - type: Transform - pos: 58.5,33.5 - parent: 89 - - uid: 20456 + pos: 7.5,-8.5 + parent: 2 +- proto: SurveillanceCameraAssembly + entities: + - uid: 26783 components: - type: Transform - pos: 57.5,31.5 - parent: 89 - - uid: 20476 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 24450 +- proto: SurveillanceCameraCommand + entities: + - uid: 19090 components: - type: Transform - pos: 47.5,31.5 - parent: 89 - - uid: 20487 + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ЕВА склад + - uid: 19091 components: - type: Transform - pos: 46.5,29.5 - parent: 89 - - uid: 20488 + pos: 56.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик офицерская палуба 2 + - uid: 19092 components: - type: Transform - pos: 48.5,31.5 - parent: 89 - - uid: 20521 + rot: 1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик мостика + - uid: 19093 components: - type: Transform - pos: 49.5,31.5 - parent: 89 - - uid: 20522 + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Правительственный сектор + - uid: 19094 components: - type: Transform - pos: 50.5,29.5 - parent: 89 - - uid: 20525 + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ЕВА склад 2 + - uid: 19095 components: - type: Transform - pos: 48.5,29.5 - parent: 89 - - uid: 20543 + rot: -1.5707963267948966 rad + pos: 51.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик вход + - uid: 19096 components: - type: Transform - pos: 56.5,31.5 - parent: 89 - - uid: 20548 + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Конференц зал + - uid: 19097 components: - type: Transform - pos: 49.5,29.5 - parent: 89 - - uid: 20571 + rot: 3.141592653589793 rad + pos: 56.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик офицерская палуба 1 + - uid: 19098 components: - type: Transform - pos: 56.5,37.5 - parent: 89 - - uid: 20573 + rot: 1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Кабинет ГП + - uid: 19099 components: - type: Transform - pos: 58.5,37.5 - parent: 89 - - uid: 20575 + pos: -76.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Суд +- proto: SurveillanceCameraEngineering + entities: + - uid: 19100 components: - type: Transform - pos: 60.5,37.5 - parent: 89 - - uid: 20576 + rot: 3.141592653589793 rad + pos: -99.5,-12.5 + parent: 2 + - uid: 19101 components: - type: Transform - pos: 60.5,39.5 - parent: 89 - - uid: 20577 + pos: -107.5,23.5 + parent: 2 + - uid: 19102 components: - type: Transform - pos: 59.5,39.5 - parent: 89 - - uid: 20578 + pos: -116.5,23.5 + parent: 2 + - uid: 19103 components: - type: Transform - pos: 58.5,39.5 - parent: 89 - - uid: 20579 + pos: -106.5,20.5 + parent: 2 + - uid: 19104 components: - type: Transform - pos: 57.5,39.5 - parent: 89 - - uid: 20581 + rot: 1.5707963267948966 rad + pos: -125.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Суперматерия + - uid: 19105 components: - type: Transform - pos: 49.5,37.5 - parent: 89 - - uid: 20582 + pos: -119.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Склад техники + - uid: 19106 components: - type: Transform - pos: 48.5,37.5 - parent: 89 - - uid: 20583 + rot: 1.5707963267948966 rad + pos: -98.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Центральная комната + - uid: 19107 components: - type: Transform - pos: 47.5,37.5 - parent: 89 - - uid: 20584 + rot: -1.5707963267948966 rad + pos: -105.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Склад запчастей + - uid: 19108 components: - type: Transform - pos: 46.5,37.5 - parent: 89 - - uid: 20587 + pos: -105.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Центральный коридор + - uid: 19109 components: - type: Transform - pos: 48.5,39.5 - parent: 89 - - uid: 20588 + rot: 3.141592653589793 rad + pos: -116.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната управления + - uid: 19110 components: - type: Transform - pos: 49.5,39.5 - parent: 89 - - uid: 20589 + rot: 3.141592653589793 rad + pos: -129.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Зал двигателя антиматерии + - uid: 19111 components: - type: Transform - pos: 50.5,39.5 - parent: 89 - - uid: 20590 + rot: -1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Холл СМЭСов + - uid: 19112 components: - type: Transform - pos: 50.5,37.5 - parent: 89 - - uid: 20591 + rot: -1.5707963267948966 rad + pos: -105.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната снаряжения атмоса +- proto: SurveillanceCameraGeneral + entities: + - uid: 19113 components: - type: Transform - pos: 49.5,35.5 - parent: 89 - - uid: 20593 + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 19114 components: - type: Transform - pos: 47.5,35.5 - parent: 89 - - uid: 20594 + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Зал правительственный сектор + - uid: 19115 components: - type: Transform - pos: 46.5,35.5 - parent: 89 - - uid: 20595 + rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 1 + - uid: 19116 components: - type: Transform - pos: 45.5,35.5 - parent: 89 - - uid: 20596 + rot: 1.5707963267948966 rad + pos: -62.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 2 + - uid: 19117 components: - type: Transform - pos: 45.5,33.5 - parent: 89 - - uid: 20598 + rot: 1.5707963267948966 rad + pos: -80.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 3 + - uid: 19118 components: - type: Transform - pos: 47.5,33.5 - parent: 89 - - uid: 20599 + rot: 3.141592653589793 rad + pos: -56.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 4 + - uid: 19119 components: - type: Transform - pos: 48.5,33.5 - parent: 89 - - uid: 20600 + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор РнД +- proto: SurveillanceCameraMedical + entities: + - uid: 19120 components: - type: Transform - pos: 49.5,33.5 - parent: 89 - - uid: 24833 + pos: -0.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Внутренний холл Медбея + - uid: 19121 components: - type: Transform - pos: -1.5,-12.5 - parent: 22565 - - uid: 24834 + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Хим. Отдел + - uid: 19122 components: - type: Transform - pos: -1.5,-11.5 - parent: 22565 - - uid: 24835 + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Клонирование + - uid: 19123 components: - type: Transform - pos: -0.5,-11.5 - parent: 22565 - - uid: 24836 + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Внутренняя приемная + - uid: 19124 components: - type: Transform - pos: -6.5,-11.5 - parent: 22565 - - uid: 24837 + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Морг +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 19125 components: - type: Transform - pos: -6.5,-13.5 - parent: 22565 - - uid: 24838 + pos: -103.5,26.5 + parent: 2 + - uid: 19126 components: - type: Transform - pos: -5.5,-13.5 - parent: 22565 - - uid: 24839 + pos: 47.5,3.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 19127 components: - type: Transform - pos: -4.5,-12.5 - parent: 22565 - - uid: 24840 + pos: -104.5,26.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 19128 components: - type: Transform - pos: -5.5,-11.5 - parent: 22565 - - uid: 24841 + pos: -102.5,26.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 19129 components: - type: Transform - pos: -6.5,-12.5 - parent: 22565 - - uid: 24842 + pos: -105.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 19130 components: - type: Transform - pos: -0.5,-13.5 - parent: 22565 - - uid: 24843 + pos: -103.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 19131 components: - type: Transform - pos: -0.5,-12.5 - parent: 22565 - - uid: 24844 + pos: -104.5,24.5 + parent: 2 + - uid: 26784 components: - type: Transform - pos: -4.5,-13.5 - parent: 22565 -- proto: SolarPanelBroken + pos: -4.5,-17.5 + parent: 24450 +- proto: SurveillanceCameraRouterService entities: - - uid: 17532 + - uid: 19132 components: - type: Transform - pos: -126.5,-20.5 - parent: 89 - - uid: 19473 + pos: -102.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 19133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-30.5 - parent: 89 - - uid: 19540 + pos: -74.5,-16.5 + parent: 2 + - uid: 19134 components: - type: Transform - pos: -123.5,-18.5 - parent: 89 - - uid: 19544 + pos: -106.5,24.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 19135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,-20.5 - parent: 89 - - uid: 19712 + rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Лаборатория + - uid: 19136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,-20.5 - parent: 89 - - uid: 20185 + pos: -18.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Робототехника + - uid: 19137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-18.5 - parent: 89 - - uid: 20547 + pos: -7.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Атмос РнД + - uid: 19138 components: - type: Transform - pos: 46.5,39.5 - parent: 89 - - uid: 20592 + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Холл РнД + - uid: 19139 components: - type: Transform - pos: 46.5,33.5 - parent: 89 - - uid: 20602 + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Серверная + - uid: 19140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,35.5 - parent: 89 - - uid: 20607 + rot: 3.141592653589793 rad + pos: -4.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Ксеноархеология +- proto: SurveillanceCameraSecurity + entities: + - uid: 19141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,29.5 - parent: 89 - - uid: 20615 + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Медпункт брига + - uid: 19142 components: - type: Transform - pos: 50.5,31.5 - parent: 89 - - uid: 20618 + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Приемная брига + - uid: 19143 components: - type: Transform - pos: 57.5,29.5 - parent: 89 - - uid: 20620 + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - uid: 19144 components: - type: Transform - pos: 59.5,37.5 - parent: 89 - - uid: 20622 + rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната снаряжения + - uid: 19145 components: - type: Transform - pos: 56.5,39.5 - parent: 89 - - uid: 20623 + pos: 35.5,-11.5 + parent: 2 + - uid: 19146 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,37.5 - parent: 89 - - uid: 20637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,39.5 - parent: 89 - - uid: 20658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,35.5 - parent: 89 - - uid: 20764 + pos: 5.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Допросная + - uid: 19147 components: - type: Transform - pos: -131.5,-30.5 - parent: 89 - - uid: 20788 + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Оружейная + - uid: 26785 components: - type: Transform rot: 3.141592653589793 rad - pos: -135.5,-28.5 - parent: 89 - - uid: 20794 + pos: -14.5,-21.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: прибытие каторги + - uid: 26786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-23.5 - parent: 89 - - uid: 24845 + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 24450 + - uid: 26787 components: - type: Transform - pos: 0.5,-12.5 - parent: 22565 - - uid: 24846 + pos: -11.5,1.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: пост сб каторги + - uid: 26788 components: - type: Transform - pos: 0.5,-11.5 - parent: 22565 - - uid: 24847 + pos: -21.5,-0.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левое сборочное крыло каторги + - uid: 26789 components: - type: Transform - pos: 0.5,-13.5 - parent: 22565 - - uid: 24848 + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левые дормы каторги + - uid: 26790 components: - type: Transform - pos: -1.5,-13.5 - parent: 22565 - - uid: 24849 + pos: -2.5,-0.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: правое сборочное крыло каторги + - uid: 26791 components: - type: Transform - pos: -4.5,-11.5 - parent: 22565 - - uid: 24850 + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левый строительный док каторги + - uid: 26792 components: - type: Transform - pos: -5.5,-12.5 - parent: 22565 -- proto: SolarTracker + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: правый строительный док каторги +- proto: SurveillanceCameraService entities: - - uid: 20338 + - uid: 19148 components: - type: Transform - pos: 53.5,43.5 - parent: 89 - - uid: 20355 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Кухня + - uid: 19149 components: - type: Transform - pos: -128.5,-31.5 - parent: 89 - - uid: 24851 + rot: -1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Раздевалка театра + - uid: 19150 components: - type: Transform - pos: -5.5,-14.5 - parent: 22565 -- proto: SolidSecretDoor - entities: - - uid: 3546 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар + - uid: 19151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,28.5 - parent: 89 - - uid: 17902 + pos: -31.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Театр + - uid: 19152 components: - type: Transform - pos: 12.5,-17.5 - parent: 89 - - uid: 24852 + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 +- proto: SurveillanceCameraSupply + entities: + - uid: 19153 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 -- proto: SpaceCash10 - entities: - - uid: 5727 + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Склад + - uid: 19154 components: - type: Transform - pos: -36.419117,-0.2933004 - parent: 89 - - uid: 25720 + pos: -65.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Зал снабжения + - uid: 19155 components: - type: Transform - pos: 5.1794705,-1.1862288 - parent: 89 -- proto: SpaceCash100 - entities: - - uid: 17653 + rot: -1.5707963267948966 rad + pos: -71.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Комната отдыха + - uid: 19156 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.45385,4.430016 - parent: 89 -- proto: Spaceshroom - entities: - - uid: 2240 + pos: -72.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Офис квартирмейстера + - uid: 19157 components: - type: Transform - pos: 13.5,-14.5 - parent: 89 - - uid: 2252 + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Выход в космос + - uid: 19158 components: - type: Transform - pos: 7.5,-20.5 - parent: 89 - - uid: 2268 + rot: -1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Утилизаторская +- proto: SurveillanceCameraWirelessRouterBase + entities: + - uid: 19159 components: - type: Transform - pos: -77.5,17.5 - parent: 89 - - uid: 2338 + pos: -106.5,26.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 19160 components: - type: Transform - pos: 3.5,-16.5 - parent: 89 - - uid: 4335 + pos: -105.5,26.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 19161 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 7117 + rot: 1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 +- proto: SurvivalKnife + entities: + - uid: 19162 components: - type: Transform - pos: -67.5,21.5 - parent: 89 - - uid: 7119 + pos: 9.49861,-25.506388 + parent: 2 +- proto: SyndicatePersonalAI + entities: + - uid: 19163 components: - type: Transform - pos: -101.5,15.5 - parent: 89 - - uid: 7120 + pos: -88.7376,27.498827 + parent: 2 +- proto: SyndiPDA + entities: + - uid: 19164 components: - type: Transform - pos: -102.5,13.5 - parent: 89 - - uid: 7125 + rot: -1.5707963267948966 rad + pos: -87.52689,26.55105 + parent: 2 +- proto: Syringe + entities: + - uid: 8934 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -103.5,18.5 - parent: 89 - - uid: 7126 + parent: 8931 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8935 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -88.5,19.5 - parent: 89 - - uid: 7127 + parent: 8931 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8941 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -76.5,21.5 - parent: 89 - - uid: 7143 + parent: 8938 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8942 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 7144 + parent: 8938 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19165 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -49.5,21.5 - parent: 89 - - uid: 7181 + pos: 23.236977,27.759844 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - uid: 19166 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -24.5,-20.5 - parent: 89 - - uid: 7182 + pos: 23.252602,27.759844 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - uid: 19167 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -18.5,-27.5 - parent: 89 - - uid: 7183 + pos: 23.268227,27.791094 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 +- proto: SyringeBicaridine + entities: + - uid: 23950 components: - type: Transform - pos: -11.5,-32.5 - parent: 89 - - uid: 7184 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyringeDermaline + entities: + - uid: 23951 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 7185 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyringeSaline + entities: + - uid: 23952 components: - type: Transform - pos: -15.5,-25.5 - parent: 89 - - uid: 7186 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Table + entities: + - uid: 19168 components: - type: Transform - pos: -41.5,-17.5 - parent: 89 - - uid: 7187 + pos: -84.5,1.5 + parent: 2 + - uid: 19169 components: - type: Transform - pos: -44.5,-9.5 - parent: 89 - - uid: 7205 + pos: -1.5,-41.5 + parent: 2 + - uid: 19170 components: - type: Transform - pos: -82.5,3.5 - parent: 89 - - uid: 7224 + pos: -35.5,5.5 + parent: 2 + - uid: 19171 components: - type: Transform - pos: -84.5,-0.5 - parent: 89 - - uid: 7227 + pos: -97.5,4.5 + parent: 2 + - uid: 19172 components: - type: Transform - pos: -78.5,-7.5 - parent: 89 - - uid: 7229 + rot: -1.5707963267948966 rad + pos: -132.5,-2.5 + parent: 2 + - uid: 19173 components: - type: Transform - pos: -82.5,-4.5 - parent: 89 - - uid: 7240 + rot: 1.5707963267948966 rad + pos: -113.5,-12.5 + parent: 2 + - uid: 19174 components: - type: Transform - pos: -120.5,20.5 - parent: 89 - - uid: 7287 + rot: 1.5707963267948966 rad + pos: -112.5,-13.5 + parent: 2 + - uid: 19175 components: - type: Transform - pos: -124.5,21.5 - parent: 89 - - uid: 7288 + rot: 1.5707963267948966 rad + pos: -114.5,-12.5 + parent: 2 + - uid: 19176 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 7289 + rot: 1.5707963267948966 rad + pos: -111.5,-13.5 + parent: 2 + - uid: 19177 components: - type: Transform - pos: -116.5,18.5 - parent: 89 - - uid: 7292 + pos: -65.5,-17.5 + parent: 2 + - uid: 19178 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 7293 + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 19179 components: - type: Transform - pos: -96.5,20.5 - parent: 89 - - uid: 7294 + pos: -1.5,-2.5 + parent: 2 + - uid: 19180 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 7295 + pos: -1.5,-1.5 + parent: 2 + - uid: 19181 components: - type: Transform - pos: -98.5,24.5 - parent: 89 - - uid: 7296 + pos: 2.5,19.5 + parent: 2 + - uid: 19182 components: - type: Transform - pos: -100.5,26.5 - parent: 89 - - uid: 7297 + pos: -29.5,-17.5 + parent: 2 + - uid: 19183 components: - type: Transform - pos: -93.5,24.5 - parent: 89 - - uid: 7300 + pos: -37.5,-17.5 + parent: 2 + - uid: 19184 components: - type: Transform - pos: -6.5,37.5 - parent: 89 - - uid: 7302 + pos: 2.5,17.5 + parent: 2 + - uid: 19185 components: - type: Transform - pos: -35.5,21.5 - parent: 89 - - uid: 7303 + pos: -5.5,-15.5 + parent: 2 + - uid: 19186 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 7304 + pos: -5.5,-16.5 + parent: 2 + - uid: 19187 components: - type: Transform - pos: -52.5,23.5 - parent: 89 - - uid: 7305 + pos: -5.5,-17.5 + parent: 2 + - uid: 19188 components: - type: Transform - pos: -19.5,24.5 - parent: 89 - - uid: 7306 + pos: -5.5,-18.5 + parent: 2 + - uid: 19189 components: - type: Transform - pos: -22.5,18.5 - parent: 89 - - uid: 7308 + pos: -6.5,-18.5 + parent: 2 + - uid: 19190 components: - type: Transform - pos: -17.5,12.5 - parent: 89 - - uid: 7311 + rot: -1.5707963267948966 rad + pos: -87.5,27.5 + parent: 2 + - uid: 19191 components: - type: Transform - pos: -0.5,30.5 - parent: 89 - - uid: 7312 + pos: 1.5,-30.5 + parent: 2 + - uid: 19192 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 7313 + pos: 1.5,-29.5 + parent: 2 + - uid: 19193 components: - type: Transform - pos: 3.5,34.5 - parent: 89 - - uid: 7314 + pos: 4.5,-19.5 + parent: 2 + - uid: 19194 components: - type: Transform - pos: -8.5,40.5 - parent: 89 - - uid: 7315 + pos: 4.5,-20.5 + parent: 2 + - uid: 19195 components: - type: Transform - pos: -4.5,44.5 - parent: 89 - - uid: 7316 + pos: 4.5,-21.5 + parent: 2 + - uid: 19196 components: - type: Transform - pos: 0.5,40.5 - parent: 89 - - uid: 7317 + pos: 4.5,-22.5 + parent: 2 + - uid: 19197 components: - type: Transform - pos: 3.5,39.5 - parent: 89 - - uid: 7318 + pos: 4.5,-18.5 + parent: 2 + - uid: 19198 components: - type: Transform - pos: 0.5,46.5 - parent: 89 - - uid: 7319 + pos: -12.5,-23.5 + parent: 2 + - uid: 19199 components: - type: Transform - pos: -4.5,41.5 - parent: 89 - - uid: 7321 + pos: -13.5,-23.5 + parent: 2 + - uid: 19200 components: - type: Transform - pos: -6.5,32.5 - parent: 89 - - uid: 25681 + pos: -15.5,-23.5 + parent: 2 + - uid: 19201 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 -- proto: SpaceVillainArcade - entities: - - uid: 14908 + pos: -16.5,-23.5 + parent: 2 + - uid: 19202 components: - type: Transform - pos: -10.5,-34.5 - parent: 89 - - uid: 19482 + pos: -18.5,-23.5 + parent: 2 + - uid: 19203 components: - type: Transform - pos: -57.5,26.5 - parent: 89 -- proto: SpawnMobAlexander - entities: - - uid: 14975 + pos: -19.5,-23.5 + parent: 2 + - uid: 19204 components: - type: Transform - pos: -11.5,-4.5 - parent: 89 -- proto: SpawnMobBoxingKangaroo - entities: - - uid: 7155 + pos: -6.5,-38.5 + parent: 2 + - uid: 19205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 89 - - uid: 7160 + pos: -7.5,-38.5 + parent: 2 + - uid: 19206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,26.5 - parent: 89 - - uid: 7161 + pos: -14.5,-0.5 + parent: 2 + - uid: 19207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,30.5 - parent: 89 - - uid: 15014 + pos: -13.5,-0.5 + parent: 2 + - uid: 19208 components: - type: Transform - pos: 17.5,31.5 - parent: 89 -- proto: SpawnMobCatBingus - entities: - - uid: 2224 + pos: -12.5,-0.5 + parent: 2 + - uid: 19209 components: - type: Transform - pos: -34.5,-7.5 - parent: 89 - - uid: 7370 + pos: 42.5,10.5 + parent: 2 + - uid: 19210 components: - type: Transform - pos: -34.5,-5.5 - parent: 89 -- proto: SpawnMobCatException - entities: - - uid: 8369 + pos: 48.5,3.5 + parent: 2 + - uid: 19211 components: - type: Transform - pos: -93.5,-9.5 - parent: 89 -- proto: SpawnMobCleanBot - entities: - - uid: 14649 + pos: 27.5,-14.5 + parent: 2 + - uid: 19212 components: - type: Transform - pos: -40.5,8.5 - parent: 89 - - uid: 14852 + pos: 24.5,-14.5 + parent: 2 + - uid: 19213 components: - type: Transform - pos: -37.5,14.5 - parent: 89 -- proto: SpawnMobCockroach - entities: - - uid: 2923 + pos: 21.5,-14.5 + parent: 2 + - uid: 19214 components: - type: Transform - pos: -119.5,-12.5 - parent: 89 - - uid: 5311 + pos: 18.5,-14.5 + parent: 2 + - uid: 19215 components: - type: Transform - pos: -23.5,13.5 - parent: 89 - - uid: 5312 + pos: -13.5,-2.5 + parent: 2 + - uid: 19216 components: - type: Transform - pos: -59.5,9.5 - parent: 89 - - uid: 5323 + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 19217 components: - type: Transform - pos: -66.5,21.5 - parent: 89 - - uid: 10531 + pos: -11.5,-0.5 + parent: 2 + - uid: 19218 components: - type: Transform - pos: 31.5,15.5 - parent: 89 - - uid: 14730 + pos: -61.5,-4.5 + parent: 2 + - uid: 19219 components: - type: Transform - pos: -69.5,-16.5 - parent: 89 - - uid: 14992 + pos: -61.5,-5.5 + parent: 2 + - uid: 19220 components: - type: Transform - pos: -88.5,21.5 - parent: 89 - - uid: 15041 + rot: 3.141592653589793 rad + pos: -132.5,12.5 + parent: 2 + - uid: 19221 components: - type: Transform - pos: -45.5,18.5 - parent: 89 - - uid: 16710 + pos: -71.5,-11.5 + parent: 2 + - uid: 19222 components: - type: Transform - pos: 38.5,12.5 - parent: 89 - - uid: 17042 + pos: -71.5,-12.5 + parent: 2 + - uid: 19223 components: - type: Transform - pos: -77.5,12.5 - parent: 89 - - uid: 21022 + pos: -50.5,-15.5 + parent: 2 + - uid: 19224 components: - type: Transform - pos: -116.5,3.5 - parent: 89 - - uid: 21037 + pos: -50.5,-16.5 + parent: 2 + - uid: 19225 components: - type: Transform - pos: -98.5,-9.5 - parent: 89 - - uid: 25740 + pos: -35.5,9.5 + parent: 2 + - uid: 19226 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 -- proto: SpawnMobCorgi - entities: - - uid: 1934 + pos: -102.5,-5.5 + parent: 2 + - uid: 19227 components: - type: Transform - pos: 40.5,12.5 - parent: 89 -- proto: SpawnMobCow - entities: - - uid: 5322 + pos: -101.5,-5.5 + parent: 2 + - uid: 19228 components: - type: Transform - pos: -5.5,-7.5 - parent: 89 -- proto: SpawnMobFoxRenault - entities: - - uid: 922 + pos: -96.5,-1.5 + parent: 2 + - uid: 19229 components: - type: Transform - pos: 48.5,12.5 - parent: 89 -- proto: SpawnMobGoat - entities: - - uid: 5310 + pos: -96.5,-2.5 + parent: 2 + - uid: 19230 components: - type: Transform - pos: -6.5,-9.5 - parent: 89 -- proto: SpawnMobGorillaLargo - entities: - - uid: 5817 + pos: -93.5,17.5 + parent: 2 + - uid: 19231 components: - type: Transform - pos: -74.5,-15.5 - parent: 89 -- proto: SpawnMobMcGriff - entities: - - uid: 4925 + pos: -94.5,17.5 + parent: 2 + - uid: 19232 components: - type: Transform - pos: 7.5,-9.5 - parent: 89 -- proto: SpawnMobMedibot - entities: - - uid: 14651 + pos: -95.5,17.5 + parent: 2 + - uid: 19233 components: - type: Transform - pos: -6.5,13.5 - parent: 89 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 7348 + pos: -90.5,13.5 + parent: 2 + - uid: 19234 components: - type: Transform - pos: -30.5,-1.5 - parent: 89 -- proto: SpawnMobMouse - entities: - - uid: 5313 + pos: -90.5,12.5 + parent: 2 + - uid: 19235 components: - type: Transform - pos: -101.5,13.5 - parent: 89 - - uid: 14991 + rot: -1.5707963267948966 rad + pos: -89.5,29.5 + parent: 2 + - uid: 19236 components: - type: Transform - pos: -30.5,32.5 - parent: 89 - - uid: 14993 + rot: -1.5707963267948966 rad + pos: -87.5,26.5 + parent: 2 + - uid: 19237 components: - type: Transform - pos: -57.5,29.5 - parent: 89 - - uid: 14994 + pos: 0.5,27.5 + parent: 2 + - uid: 19238 components: - type: Transform - pos: -77.5,20.5 - parent: 89 - - uid: 15003 + pos: 1.5,27.5 + parent: 2 + - uid: 19239 components: - type: Transform - pos: -96.5,24.5 - parent: 89 - - uid: 15007 + rot: -1.5707963267948966 rad + pos: -119.5,11.5 + parent: 2 + - uid: 19240 components: - type: Transform - pos: -116.5,20.5 - parent: 89 - - uid: 15012 + pos: -91.5,6.5 + parent: 2 + - uid: 19241 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 17917 + pos: -91.5,5.5 + parent: 2 + - uid: 19242 components: - type: Transform - pos: -92.5,25.5 - parent: 89 - - uid: 18158 + rot: 3.141592653589793 rad + pos: -132.5,14.5 + parent: 2 + - uid: 19243 components: - type: Transform - pos: -33.5,32.5 - parent: 89 - - uid: 24853 + rot: 3.141592653589793 rad + pos: -132.5,13.5 + parent: 2 + - uid: 19244 components: - type: Transform - pos: -27.5,10.5 - parent: 22565 - - uid: 24854 + pos: -126.5,-10.5 + parent: 2 + - uid: 19245 components: - type: Transform - pos: -31.5,6.5 - parent: 22565 - - uid: 24855 + pos: -41.5,7.5 + parent: 2 + - uid: 19246 components: - type: Transform - pos: -34.5,11.5 - parent: 22565 - - uid: 24856 + pos: -36.5,9.5 + parent: 2 + - uid: 19247 components: - type: Transform - pos: 5.5,3.5 - parent: 22565 - - uid: 24857 + pos: -13.5,-3.5 + parent: 2 + - uid: 19248 components: - type: Transform - pos: 10.5,8.5 - parent: 22565 - - uid: 25692 + pos: -34.5,28.5 + parent: 2 + - uid: 19249 components: - type: Transform - pos: -57.5,35.5 - parent: 89 - - uid: 25695 + pos: -34.5,27.5 + parent: 2 + - uid: 19250 components: - type: Transform - pos: -69.5,-7.5 - parent: 89 - - uid: 25697 + pos: 13.5,5.5 + parent: 2 + - uid: 19251 components: - type: Transform - pos: -37.5,0.5 - parent: 89 - - uid: 25704 + pos: 14.5,5.5 + parent: 2 + - uid: 19252 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 -- proto: SpawnMobPossumMorty - entities: - - uid: 19994 + pos: 14.5,6.5 + parent: 2 + - uid: 19253 components: - type: Transform - pos: 23.5,36.5 - parent: 89 -- proto: SpawnMobShiva - entities: - - uid: 7339 + pos: -117.5,-14.5 + parent: 2 + - uid: 19254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 89 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 6125 + pos: 23.5,27.5 + parent: 2 + - uid: 19255 components: - type: Transform - pos: -53.5,10.5 - parent: 89 -- proto: SpawnMobSmile - entities: - - uid: 7337 + pos: -34.5,5.5 + parent: 2 + - uid: 19256 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 -- proto: SpawnPointAtmos - entities: - - uid: 7146 + pos: -57.5,12.5 + parent: 2 + - uid: 19257 components: - type: Transform - pos: -105.5,-18.5 - parent: 89 - - uid: 8370 + pos: -56.5,12.5 + parent: 2 + - uid: 19258 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 8371 + pos: -56.5,5.5 + parent: 2 + - uid: 19259 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 -- proto: SpawnPointBartender - entities: - - uid: 4331 + pos: -55.5,5.5 + parent: 2 + - uid: 19260 components: - type: Transform - pos: -29.5,-1.5 - parent: 89 -- proto: SpawnPointBotanist - entities: - - uid: 4338 + pos: -61.5,5.5 + parent: 2 + - uid: 19261 components: - type: Transform - pos: -9.5,-8.5 - parent: 89 -- proto: SpawnPointCaptain - entities: - - uid: 11373 + pos: -70.5,5.5 + parent: 2 + - uid: 19262 components: - type: Transform - pos: 34.5,15.5 - parent: 89 -- proto: SpawnPointCargoTechnician - entities: - - uid: 5843 + rot: 1.5707963267948966 rad + pos: -115.5,1.5 + parent: 2 + - uid: 19263 components: - type: Transform - pos: -69.5,-11.5 - parent: 89 - - uid: 7403 + rot: 1.5707963267948966 rad + pos: -115.5,2.5 + parent: 2 + - uid: 19264 components: - type: Transform - pos: -62.5,-5.5 - parent: 89 - - uid: 7404 + pos: -126.5,-9.5 + parent: 2 + - uid: 19265 components: - type: Transform - pos: -65.5,-16.5 - parent: 89 -- proto: SpawnPointChaplain - entities: - - uid: 7401 + pos: 8.5,9.5 + parent: 2 + - uid: 19266 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 -- proto: SpawnPointChef - entities: - - uid: 4336 + pos: 9.5,9.5 + parent: 2 + - uid: 19267 components: - type: Transform - pos: -12.5,-1.5 - parent: 89 -- proto: SpawnPointChemist - entities: - - uid: 17861 + pos: 9.5,8.5 + parent: 2 + - uid: 19268 components: - type: Transform - pos: 0.5,6.5 - parent: 89 - - uid: 21736 + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - uid: 19269 components: - type: Transform - pos: 2.5,7.5 - parent: 89 - - uid: 21737 + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 19270 components: - type: Transform - pos: -3.5,8.5 - parent: 89 -- proto: SpawnPointChiefEngineer - entities: - - uid: 8379 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 19271 components: - type: Transform - pos: -103.5,10.5 - parent: 89 - - uid: 15587 + pos: 15.5,11.5 + parent: 2 + - uid: 19272 components: - type: Transform - pos: 37.5,14.5 - parent: 89 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 15594 + pos: 20.5,12.5 + parent: 2 + - uid: 19273 components: - type: Transform - pos: 33.5,12.5 - parent: 89 - - uid: 19971 + pos: -113.5,-5.5 + parent: 2 + - uid: 19274 components: - type: Transform - pos: 24.5,42.5 - parent: 89 -- proto: SpawnPointClown - entities: - - uid: 4275 + pos: -113.5,-8.5 + parent: 2 + - uid: 19275 components: - type: Transform - pos: -34.5,-4.5 - parent: 89 - - uid: 21054 + pos: -113.5,-7.5 + parent: 2 + - uid: 19276 components: - type: Transform - pos: 52.5,-13.5 - parent: 89 -- proto: SpawnPointDetective - entities: - - uid: 10800 + pos: -91.5,25.5 + parent: 2 + - uid: 19277 components: - type: Transform - pos: 21.5,6.5 - parent: 89 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 15593 + pos: -91.5,24.5 + parent: 2 + - uid: 19278 components: - type: Transform - pos: 35.5,15.5 - parent: 89 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6131 + pos: -91.5,23.5 + parent: 2 + - uid: 19279 components: - type: Transform - pos: 33.5,-2.5 - parent: 89 - - uid: 15599 + pos: -75.5,13.5 + parent: 2 + - uid: 19280 components: - type: Transform - pos: 31.5,13.5 - parent: 89 -- proto: SpawnPointJanitor - entities: - - uid: 9564 + pos: -75.5,12.5 + parent: 2 + - uid: 19281 components: - type: Transform - pos: -39.5,8.5 - parent: 89 - - uid: 20862 + pos: -44.5,21.5 + parent: 2 + - uid: 19282 components: - type: Transform - pos: -40.5,7.5 - parent: 89 -- proto: SpawnPointLatejoin - entities: - - uid: 6945 + pos: 2.5,21.5 + parent: 2 + - uid: 19283 components: - type: Transform - pos: -64.5,35.5 - parent: 89 - - uid: 6946 + pos: 48.5,-30.5 + parent: 2 + - uid: 19284 components: - type: Transform - pos: -64.5,34.5 - parent: 89 - - uid: 6947 + pos: 24.5,12.5 + parent: 2 + - uid: 19285 components: - type: Transform - pos: -64.5,33.5 - parent: 89 - - uid: 7099 + pos: 23.5,29.5 + parent: 2 + - uid: 19286 components: - type: Transform - pos: -64.5,41.5 - parent: 89 -- proto: SpawnPointLawyer - entities: - - uid: 6371 + pos: 25.5,29.5 + parent: 2 + - uid: 19287 components: - type: Transform - pos: -75.5,-6.5 - parent: 89 -- proto: SpawnPointLibrarian - entities: - - uid: 5861 + pos: 24.5,13.5 + parent: 2 + - uid: 19288 components: - type: Transform - pos: -56.5,9.5 - parent: 89 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 12654 + pos: 27.5,31.5 + parent: 2 + - uid: 19289 components: - type: Transform - pos: 32.5,19.5 - parent: 89 - - uid: 12659 + pos: 21.5,31.5 + parent: 2 + - uid: 19290 components: - type: Transform - pos: 33.5,19.5 - parent: 89 - - uid: 15880 + pos: -115.5,15.5 + parent: 2 + - uid: 19291 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 21738 + pos: -115.5,14.5 + parent: 2 + - uid: 19292 components: - type: Transform - pos: 2.5,20.5 - parent: 89 - - uid: 21739 + pos: 2.5,15.5 + parent: 2 + - uid: 19293 components: - type: Transform - pos: -11.5,20.5 - parent: 89 - - uid: 21740 + pos: 26.5,13.5 + parent: 2 + - uid: 19294 components: - type: Transform - pos: 5.5,36.5 - parent: 89 - - uid: 21741 + pos: 25.5,13.5 + parent: 2 + - uid: 19295 components: - type: Transform - pos: 7.5,21.5 - parent: 89 -- proto: SpawnPointMedicalIntern - entities: - - uid: 11330 + pos: 26.5,20.5 + parent: 2 + - uid: 19296 components: - type: Transform - pos: 30.5,31.5 - parent: 89 - - uid: 12132 + pos: -89.5,6.5 + parent: 2 + - uid: 19297 components: - type: Transform - pos: -10.5,11.5 - parent: 89 - - uid: 15900 + pos: -84.5,4.5 + parent: 2 + - uid: 19298 components: - type: Transform - pos: 15.5,12.5 - parent: 89 - - uid: 19811 + pos: -85.5,1.5 + parent: 2 + - uid: 19299 components: - type: Transform - pos: 25.5,12.5 - parent: 89 -- proto: SpawnPointMime - entities: - - uid: 4277 + pos: -74.5,7.5 + parent: 2 + - uid: 19300 components: - type: Transform - pos: -34.5,-8.5 - parent: 89 - - uid: 9810 + pos: -73.5,7.5 + parent: 2 + - uid: 19301 components: - type: Transform - pos: 25.5,-13.5 - parent: 89 -- proto: SpawnPointMusician - entities: - - uid: 4282 + pos: -46.5,13.5 + parent: 2 + - uid: 19302 components: - type: Transform - pos: -34.5,-6.5 - parent: 89 -- proto: SpawnPointObserver - entities: - - uid: 10785 + pos: 16.5,12.5 + parent: 2 + - uid: 19303 components: - type: Transform - pos: -1.5,2.5 - parent: 89 -- proto: SpawnPointParamedic - entities: - - uid: 7170 + pos: 16.5,11.5 + parent: 2 + - uid: 19304 components: - type: Transform - pos: 28.5,17.5 - parent: 89 - - uid: 14282 + pos: -117.5,-15.5 + parent: 2 + - uid: 19305 components: - type: Transform - pos: 20.5,22.5 - parent: 89 -- proto: SpawnPointPassenger - entities: - - uid: 15343 + pos: -119.5,-15.5 + parent: 2 + - uid: 19306 components: - type: Transform - pos: -94.5,15.5 - parent: 89 - - uid: 15344 + pos: -118.5,-15.5 + parent: 2 + - uid: 19307 components: - type: Transform - pos: -92.5,16.5 - parent: 89 - - uid: 15345 + rot: -1.5707963267948966 rad + pos: -123.5,-13.5 + parent: 2 + - uid: 19308 components: - type: Transform - pos: -91.5,13.5 - parent: 89 - - uid: 15346 + pos: -113.5,-4.5 + parent: 2 + - uid: 19309 components: - type: Transform - pos: -93.5,13.5 - parent: 89 -- proto: SpawnPointPsychologist - entities: - - uid: 16957 + pos: -100.5,2.5 + parent: 2 + - uid: 19310 components: - type: Transform - pos: 20.5,18.5 - parent: 89 -- proto: SpawnPointQuartermaster - entities: - - uid: 5842 + pos: -99.5,2.5 + parent: 2 + - uid: 19311 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 7685 + pos: -10.5,24.5 + parent: 2 + - uid: 19312 components: - type: Transform - pos: 35.5,12.5 - parent: 89 -- proto: SpawnPointReporter - entities: - - uid: 17940 + pos: -11.5,24.5 + parent: 2 + - uid: 19313 components: - type: Transform - pos: -26.5,8.5 - parent: 89 -- proto: SpawnPointResearchAssistant - entities: - - uid: 15264 + pos: -115.5,13.5 + parent: 2 + - uid: 19314 components: - type: Transform - pos: 29.5,29.5 - parent: 89 - - uid: 20155 + pos: -3.5,-41.5 + parent: 2 + - type: Construction + edge: 0 + - uid: 19315 components: - type: Transform - pos: -6.5,-44.5 - parent: 89 - - uid: 20178 + pos: -12.5,-19.5 + parent: 2 + - uid: 19316 components: - type: Transform - pos: 1.5,-44.5 - parent: 89 -- proto: SpawnPointResearchDirector - entities: - - uid: 159 + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 19317 components: - type: Transform - pos: 37.5,13.5 - parent: 89 - - uid: 161 + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 19318 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 7405 + pos: -9.5,-16.5 + parent: 2 + - uid: 19319 components: - type: Transform - pos: -47.5,-10.5 - parent: 89 - - uid: 7406 + pos: -10.5,-16.5 + parent: 2 + - uid: 19320 components: - type: Transform - pos: -49.5,-10.5 - parent: 89 - - uid: 7407 + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 19321 components: - type: Transform - pos: -48.5,-10.5 - parent: 89 -- proto: SpawnPointScientist - entities: - - uid: 10890 + pos: -2.5,-28.5 + parent: 2 + - uid: 19322 components: - type: Transform - pos: -15.5,-18.5 - parent: 89 - - uid: 10891 + pos: -0.5,-28.5 + parent: 2 + - uid: 19323 components: - type: Transform - pos: -18.5,-19.5 - parent: 89 - - uid: 10893 + pos: -14.5,-21.5 + parent: 2 + - uid: 19324 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 -- proto: SpawnPointSecurityCadet - entities: - - uid: 2825 + pos: -41.5,-12.5 + parent: 2 + - uid: 19325 components: - type: Transform - pos: 21.5,-4.5 - parent: 89 - - uid: 2989 + pos: -41.5,-10.5 + parent: 2 + - uid: 19326 components: - type: Transform - pos: 30.5,30.5 - parent: 89 - - uid: 7138 + pos: -41.5,-11.5 + parent: 2 + - uid: 19327 components: - type: Transform - pos: 49.5,-26.5 - parent: 89 - - uid: 7602 + pos: 48.5,-28.5 + parent: 2 + - uid: 19328 components: - type: Transform - pos: 43.5,-13.5 - parent: 89 - - uid: 12590 + pos: 46.5,-25.5 + parent: 2 + - uid: 19329 components: - type: Transform - pos: 19.5,29.5 - parent: 89 - - uid: 22562 + pos: 45.5,-30.5 + parent: 2 + - uid: 19330 components: - type: Transform - pos: 43.5,-14.5 - parent: 89 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 2887 + pos: -98.5,9.5 + parent: 2 + - uid: 19331 components: - type: Transform - pos: 22.5,-1.5 - parent: 89 - - uid: 6136 + pos: -9.5,20.5 + parent: 2 + - uid: 19332 components: - type: Transform - pos: -16.5,7.5 - parent: 89 - - uid: 6137 + pos: -99.5,9.5 + parent: 2 + - uid: 19333 components: - type: Transform - pos: -19.5,6.5 - parent: 89 - - uid: 6138 + pos: -83.5,19.5 + parent: 2 + - uid: 19334 components: - type: Transform - pos: 25.5,-4.5 - parent: 89 - - uid: 8212 + pos: -2.5,-41.5 + parent: 2 + - type: Construction + edge: 0 + - uid: 19335 components: - type: Transform - pos: -44.5,1.5 - parent: 89 - - uid: 8213 + pos: -126.5,-8.5 + parent: 2 + - uid: 19336 components: - type: Transform - pos: -59.5,8.5 - parent: 89 - - uid: 8214 + pos: -26.5,-22.5 + parent: 2 + - uid: 19337 components: - type: Transform - pos: -60.5,8.5 - parent: 89 - - uid: 8215 + pos: -26.5,-21.5 + parent: 2 + - uid: 19338 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 8216 + pos: -26.5,-19.5 + parent: 2 + - uid: 19339 components: - type: Transform - pos: -88.5,13.5 - parent: 89 - - uid: 8283 + pos: -119.5,12.5 + parent: 2 + - uid: 19340 components: - type: Transform - pos: -59.5,21.5 - parent: 89 - - uid: 8284 + pos: 28.5,13.5 + parent: 2 + - uid: 19341 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 8405 + pos: 22.5,36.5 + parent: 2 + - uid: 19342 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 - - uid: 10769 + pos: 22.5,35.5 + parent: 2 + - uid: 19343 components: - type: Transform - pos: -25.5,-4.5 - parent: 89 - - uid: 16766 + pos: 26.5,37.5 + parent: 2 + - uid: 19344 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 16767 + pos: 26.5,36.5 + parent: 2 + - uid: 19345 components: - type: Transform - pos: -55.5,43.5 - parent: 89 -- proto: SpawnPointServiceWorker - entities: - - uid: 4628 + pos: 25.5,36.5 + parent: 2 + - uid: 19346 components: - type: Transform - pos: -25.5,-6.5 - parent: 89 -- proto: SpawnPointStationEngineer - entities: - - uid: 1928 + rot: 1.5707963267948966 rad + pos: -115.5,6.5 + parent: 2 + - uid: 19347 components: - type: Transform - pos: -99.5,-0.5 - parent: 89 - - uid: 1929 + rot: 1.5707963267948966 rad + pos: -115.5,5.5 + parent: 2 + - uid: 19348 components: - type: Transform - pos: -98.5,-0.5 - parent: 89 - - uid: 8373 + pos: 48.5,-24.5 + parent: 2 + - uid: 19349 components: - type: Transform - pos: -103.5,-0.5 - parent: 89 - - uid: 8374 + rot: -1.5707963267948966 rad + pos: 48.5,-21.5 + parent: 2 + - uid: 19350 components: - type: Transform - pos: -102.5,-0.5 - parent: 89 - - uid: 8375 + pos: -18.5,-0.5 + parent: 2 + - uid: 19351 components: - type: Transform - pos: -101.5,-0.5 - parent: 89 - - uid: 8376 + pos: 47.5,-28.5 + parent: 2 + - uid: 19352 components: - type: Transform - pos: -100.5,-0.5 - parent: 89 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 1932 + pos: 46.5,-26.5 + parent: 2 + - uid: 19353 components: - type: Transform - pos: -103.5,-4.5 - parent: 89 - - uid: 2226 + pos: 47.5,-24.5 + parent: 2 + - uid: 19354 components: - type: Transform - pos: -102.5,-4.5 - parent: 89 - - uid: 7381 + pos: 46.5,-24.5 + parent: 2 + - uid: 19355 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 8377 + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - uid: 19356 components: - type: Transform - pos: -104.5,-1.5 - parent: 89 - - uid: 8378 + pos: 46.5,-28.5 + parent: 2 + - uid: 19357 components: - type: Transform - pos: -104.5,-0.5 - parent: 89 - - uid: 12834 + pos: 51.5,-30.5 + parent: 2 + - uid: 19358 components: - type: Transform - pos: 31.5,30.5 - parent: 89 -- proto: SpawnPointWarden - entities: - - uid: 6142 + rot: 1.5707963267948966 rad + pos: -131.5,-2.5 + parent: 2 + - uid: 19359 components: - type: Transform - pos: 7.5,-11.5 - parent: 89 -- proto: SpeedLoaderCap - entities: - - uid: 463 + rot: -1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 2 + - uid: 19360 components: - type: Transform - pos: -34.26588,32.403828 - parent: 89 -- proto: SpeedLoaderMagnum - entities: - - uid: 1594 + pos: 54.5,-13.5 + parent: 2 + - uid: 19361 components: - type: Transform - pos: 41.699596,-9.619137 - parent: 89 - - uid: 1642 + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - uid: 19362 components: - type: Transform - pos: 41.65272,-9.275387 - parent: 89 - - uid: 7384 + rot: 1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - uid: 19363 components: - type: Transform - pos: 42.183395,-9.571789 - parent: 89 - - uid: 7390 + pos: -5.5,-7.5 + parent: 2 + - uid: 19364 components: - type: Transform - pos: 42.152145,-9.243664 - parent: 89 - - uid: 17008 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 19365 components: - type: Transform - pos: 35.614456,-0.5068965 - parent: 89 -- proto: SpeedLoaderMagnumPractice - entities: - - uid: 7278 + pos: -88.5,30.5 + parent: 2 + - uid: 23878 components: - type: Transform - pos: 44.85816,-9.368664 - parent: 89 - - uid: 7472 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 23711 + - uid: 26793 components: - type: Transform - pos: 44.780033,-9.149914 - parent: 89 -- proto: SpeedLoaderMagnumRubber - entities: - - uid: 2770 + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 24450 + - uid: 26794 components: - type: Transform - pos: 44.19281,-9.554608 - parent: 89 - - uid: 2771 + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 24450 + - uid: 26795 components: - type: Transform - pos: 44.520935,-9.554608 - parent: 89 - - uid: 2772 + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 24450 + - uid: 26796 components: - type: Transform - pos: 44.31781,-9.226483 - parent: 89 -- proto: SpiderWeb - entities: - - uid: 3314 + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 24450 + - uid: 26797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,22.5 - parent: 89 - - uid: 4281 + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 24450 + - uid: 26798 components: - type: Transform - pos: -92.5,26.5 - parent: 89 - - uid: 4293 + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 24450 + - uid: 26799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,27.5 - parent: 89 - - uid: 4444 + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 24450 + - uid: 26800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,28.5 - parent: 89 - - uid: 4569 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 24450 + - uid: 26801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,29.5 - parent: 89 - - uid: 6011 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 24450 + - uid: 26802 components: - type: Transform - pos: 14.5,-16.5 - parent: 89 - - uid: 21000 + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 24450 + - uid: 26803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 89 - - uid: 21013 + rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 24450 + - uid: 26804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,21.5 - parent: 89 - - uid: 24858 + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 24450 + - uid: 26805 components: - type: Transform - pos: 3.5,10.5 - parent: 22565 - - uid: 24859 + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 24450 + - uid: 26806 components: - type: Transform - pos: 4.5,10.5 - parent: 22565 - - uid: 24860 + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 24450 + - uid: 26807 components: - type: Transform - pos: 3.5,11.5 - parent: 22565 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 9511 + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 24450 + - uid: 26808 components: - type: Transform - pos: -41.17559,7.5532546 - parent: 89 - - uid: 9512 + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 24450 + - uid: 26809 components: - type: Transform - pos: -41.17559,7.865755 - parent: 89 - - uid: 10949 + pos: -4.5,7.5 + parent: 24450 + - uid: 26810 components: - type: Transform - pos: 5.48831,29.827152 - parent: 89 - - uid: 10952 + pos: 1.5,7.5 + parent: 24450 + - uid: 26811 components: - type: Transform - pos: 5.33206,29.624027 - parent: 89 - - uid: 10986 + pos: -5.5,7.5 + parent: 24450 + - uid: 26812 components: - type: Transform - pos: -34.505363,5.583355 - parent: 89 - - uid: 11405 + pos: -3.5,7.5 + parent: 24450 + - uid: 26813 components: - type: Transform - pos: 10.525955,42.67038 - parent: 89 - - uid: 14787 + pos: -18.5,7.5 + parent: 24450 + - uid: 26814 components: - type: Transform - pos: 5.309067,16.752579 - parent: 89 - - uid: 15071 + pos: -19.5,7.5 + parent: 24450 + - uid: 26815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.576197,36.253662 - parent: 89 - - uid: 15391 + pos: -0.5,7.5 + parent: 24450 + - uid: 26816 components: - type: Transform - pos: 5.628935,29.608402 - parent: 89 - - uid: 15500 + pos: 0.5,7.5 + parent: 24450 + - uid: 26817 components: - type: Transform - pos: 5.628935,33.999027 - parent: 89 - - uid: 15571 + pos: -20.5,7.5 + parent: 24450 + - uid: 26818 components: - type: Transform - pos: 5.26956,34.077152 - parent: 89 - - uid: 15860 + pos: -23.5,7.5 + parent: 24450 + - uid: 26819 components: - type: Transform - pos: 26.439201,13.657077 - parent: 89 - - uid: 15871 + pos: -25.5,7.5 + parent: 24450 + - uid: 26820 components: - type: Transform - pos: 9.69931,8.612162 - parent: 89 - - uid: 17300 + pos: -24.5,7.5 + parent: 24450 + - uid: 26821 components: - type: Transform - pos: -3.2461767,-1.3640878 - parent: 89 -- proto: SprayPainter - entities: - - uid: 1892 + pos: 3.5,11.5 + parent: 24450 + - uid: 26822 components: - type: Transform - pos: -56.366257,5.479856 - parent: 89 -- proto: StairStage - entities: - - uid: 5387 + pos: 4.5,11.5 + parent: 24450 + - uid: 27886 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-13.5 - parent: 89 - - uid: 6453 + pos: -3.5,-13.5 + parent: 27260 + - uid: 27887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-12.5 - parent: 89 -- proto: StasisBed - entities: - - uid: 16017 + pos: -4.5,-11.5 + parent: 27260 + - uid: 27888 components: - type: Transform - pos: -2.5,15.5 - parent: 89 - - uid: 16375 + pos: -5.5,-10.5 + parent: 27260 +- proto: TableCarpet + entities: + - uid: 19366 components: - type: Transform - pos: -0.5,15.5 - parent: 89 -- proto: StationMap - entities: - - uid: 3204 + pos: -44.5,-17.5 + parent: 2 + - uid: 19367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 89 - - uid: 3210 + pos: -44.5,-16.5 + parent: 2 + - uid: 19368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 89 - - uid: 5464 + pos: -43.5,-17.5 + parent: 2 + - uid: 19369 components: - type: Transform - pos: -62.5,27.5 - parent: 89 - - uid: 5481 + pos: -35.5,-0.5 + parent: 2 + - uid: 19370 components: - type: Transform - pos: -79.5,11.5 - parent: 89 - - uid: 5484 + pos: -36.5,-0.5 + parent: 2 + - uid: 19371 components: - type: Transform - pos: -95.5,11.5 - parent: 89 - - uid: 5485 + pos: -44.5,8.5 + parent: 2 + - uid: 19372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,0.5 - parent: 89 - - uid: 5488 + pos: -45.5,8.5 + parent: 2 + - uid: 19373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,1.5 - parent: 89 - - uid: 5945 + pos: -7.5,41.5 + parent: 2 + - uid: 19374 components: - type: Transform - pos: 11.5,4.5 - parent: 89 - - uid: 7122 + pos: -7.5,40.5 + parent: 2 + - uid: 19375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 89 - - uid: 7192 + pos: -6.5,40.5 + parent: 2 + - uid: 19376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 89 - - uid: 7195 + pos: -98.5,17.5 + parent: 2 + - uid: 19377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,4.5 - parent: 89 - - uid: 7200 + pos: -97.5,17.5 + parent: 2 + - uid: 19378 components: - type: Transform - pos: -53.5,19.5 - parent: 89 - - uid: 7226 + pos: -51.5,48.5 + parent: 2 + - uid: 19379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,2.5 - parent: 89 - - uid: 7231 + pos: -51.5,47.5 + parent: 2 + - uid: 19380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,6.5 - parent: 89 - - uid: 7235 + rot: 1.5707963267948966 rad + pos: -27.5,32.5 + parent: 2 + - uid: 19381 components: - type: Transform - pos: -32.5,-10.5 - parent: 89 -- proto: StatueVenusBlue + rot: 1.5707963267948966 rad + pos: -27.5,33.5 + parent: 2 +- proto: TableCounterMetal entities: - - uid: 18227 + - uid: 19382 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 -- proto: StatueVenusRed + pos: 54.5,4.5 + parent: 2 +- proto: TableCounterWood entities: - - uid: 18231 + - uid: 19383 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 -- proto: SteelBench - entities: - - uid: 24861 + pos: -52.5,8.5 + parent: 2 + - uid: 19384 components: - type: Transform - pos: -25.5,-0.5 - parent: 22565 - - uid: 24862 + pos: -52.5,7.5 + parent: 2 + - uid: 19385 components: - type: Transform - pos: -24.5,-0.5 - parent: 22565 - - uid: 24863 + pos: -76.5,-2.5 + parent: 2 + - uid: 19386 components: - type: Transform - pos: -23.5,-0.5 - parent: 22565 - - uid: 24864 + pos: -1.5,45.5 + parent: 2 + - uid: 19387 components: - type: Transform - pos: -0.5,-0.5 - parent: 22565 - - uid: 24865 + pos: -5.5,45.5 + parent: 2 + - uid: 19388 components: - type: Transform - pos: 0.5,-0.5 - parent: 22565 - - uid: 24866 + pos: -5.5,46.5 + parent: 2 + - uid: 19389 components: - type: Transform - pos: 1.5,-0.5 - parent: 22565 -- proto: SteelOre1 - entities: - - uid: 10206 + pos: -1.5,46.5 + parent: 2 + - uid: 19390 components: - type: Transform - pos: -27.517975,28.269533 - parent: 89 -- proto: Stool - entities: - - uid: 2888 + pos: -1.5,44.5 + parent: 2 + - uid: 19391 components: - type: Transform - pos: 21.5,-4.5 - parent: 89 - - uid: 2917 + pos: -5.5,44.5 + parent: 2 + - uid: 19392 components: - type: Transform - pos: 19.5,-4.5 - parent: 89 - - uid: 4694 + pos: -52.5,9.5 + parent: 2 + - uid: 19393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-1.5 - parent: 89 - - uid: 4695 + pos: 8.5,-20.5 + parent: 2 + - uid: 19394 components: - type: Transform - pos: -36.5,0.5 - parent: 89 - - uid: 4697 + pos: 8.5,-22.5 + parent: 2 + - uid: 19395 components: - type: Transform - pos: -35.5,0.5 - parent: 89 - - uid: 4700 + pos: 10.5,-19.5 + parent: 2 + - uid: 19396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-1.5 - parent: 89 - - uid: 4704 + pos: 11.5,-19.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 19397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 89 - - uid: 5126 + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 19398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-3.5 - parent: 89 - - uid: 5320 + pos: 48.5,-2.5 + parent: 2 + - uid: 19399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-1.5 - parent: 89 - - uid: 5524 + pos: 48.5,-3.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 19400 components: - type: Transform - pos: -45.5,-3.5 - parent: 89 - - uid: 5525 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 19401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 89 - - uid: 5735 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 19402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 89 - - uid: 9503 + pos: 32.5,-0.5 + parent: 2 + - uid: 19403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 89 - - uid: 10834 + pos: 34.5,-2.5 + parent: 2 + - uid: 19404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 89 - - uid: 17165 + pos: 34.5,-3.5 + parent: 2 + - uid: 19405 components: - type: Transform - pos: 17.5,-4.5 - parent: 89 - - uid: 17650 + pos: 33.5,-0.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 19406 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 - - uid: 21027 + pos: 37.5,-3.5 + parent: 2 + - uid: 19407 components: - type: Transform - pos: 20.5,-4.5 - parent: 89 -- proto: StoolBar + pos: 30.5,-3.5 + parent: 2 +- proto: TableFrame entities: - - uid: 63 + - uid: 19408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-4.5 - parent: 89 - - uid: 64 + pos: -6.5,41.5 + parent: 2 + - uid: 19409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 89 - - uid: 65 + pos: 2.5,37.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 19410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 89 - - uid: 66 + pos: -13.5,-15.5 + parent: 2 + - uid: 19411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 89 - - uid: 68 + pos: -16.5,-15.5 + parent: 2 + - uid: 19412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 - parent: 89 - - uid: 69 + pos: -15.5,-15.5 + parent: 2 + - uid: 19413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 89 - - uid: 70 + pos: -14.5,-15.5 + parent: 2 + - uid: 19414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 89 - - uid: 195 + pos: -27.5,24.5 + parent: 2 + - uid: 19415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 89 - - uid: 196 + pos: -27.5,23.5 + parent: 2 + - uid: 19416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 89 - - uid: 7757 + pos: 3.5,37.5 + parent: 2 + - uid: 19417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,45.5 - parent: 89 - - uid: 7758 + pos: 1.5,37.5 + parent: 2 + - uid: 19418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 89 - - uid: 15447 + pos: 0.5,37.5 + parent: 2 + - uid: 19419 components: - type: Transform - pos: -119.5,-14.5 - parent: 89 - - uid: 15655 + pos: -27.5,21.5 + parent: 2 + - uid: 19420 components: - type: Transform - pos: -118.5,-14.5 - parent: 89 - - uid: 16898 + pos: -32.5,21.5 + parent: 2 + - uid: 19421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 89 - - uid: 16913 + pos: -31.5,21.5 + parent: 2 + - uid: 24240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 89 - - uid: 17652 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 23919 + - uid: 24241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 - parent: 89 - - uid: 17733 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 23919 + - uid: 27889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 89 - - uid: 17739 + pos: -2.5,-11.5 + parent: 27260 + - uid: 27890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 89 -- proto: StorageCanister + pos: -2.5,-12.5 + parent: 27260 +- proto: TablePlasmaGlass entities: - - uid: 983 - components: - - type: Transform - pos: -90.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 984 - components: - - type: Transform - pos: -91.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2639 + - uid: 19422 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2640 + rot: -1.5707963267948966 rad + pos: -77.5,-24.5 + parent: 2 + - uid: 19423 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2641 + pos: -103.5,11.5 + parent: 2 + - uid: 19424 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7485 + pos: -27.5,27.5 + parent: 2 + - uid: 19425 components: - type: Transform - pos: -79.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7486 + pos: -27.5,28.5 + parent: 2 + - uid: 19426 components: - type: Transform - pos: -81.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7487 + pos: -4.5,-27.5 + parent: 2 + - uid: 19427 components: - type: Transform - pos: -80.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9613 + pos: -4.5,-28.5 + parent: 2 + - uid: 19428 components: - type: Transform - pos: -93.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9640 + pos: -5.5,-27.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 19429 components: - type: Transform - pos: -22.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14610 + rot: 3.141592653589793 rad + pos: -93.5,-4.5 + parent: 2 + - uid: 19430 components: - type: Transform - pos: -105.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14612 + rot: 3.141592653589793 rad + pos: -91.5,-11.5 + parent: 2 + - uid: 19431 components: - type: Transform - pos: -104.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15471 + rot: 3.141592653589793 rad + pos: -90.5,-11.5 + parent: 2 + - uid: 19432 components: - type: Transform - pos: 2.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15611 + rot: 3.141592653589793 rad + pos: -89.5,-11.5 + parent: 2 + - uid: 19433 components: - type: Transform - pos: 14.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24867 + rot: 3.141592653589793 rad + pos: -93.5,-5.5 + parent: 2 + - uid: 19434 components: - type: Transform - pos: -14.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24868 + rot: 3.141592653589793 rad + pos: -93.5,-6.5 + parent: 2 + - uid: 19435 components: - type: Transform - pos: -25.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: Stunbaton - entities: - - uid: 7142 + pos: -94.5,-3.5 + parent: 2 + - uid: 19436 components: - type: Transform - pos: 21.441029,-2.3814173 - parent: 89 - - uid: 21038 + pos: -24.5,-3.5 + parent: 2 + - uid: 19437 components: - type: Transform - pos: 21.644154,-2.5532923 - parent: 89 - - uid: 22659 + pos: -23.5,-3.5 + parent: 2 + - uid: 19438 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22660 + pos: -22.5,-3.5 + parent: 2 + - uid: 19439 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Stunprod - entities: - - uid: 24869 + pos: -22.5,-2.5 + parent: 2 + - uid: 19440 components: - type: Transform - pos: 3.94458,11.482362 - parent: 22565 - - uid: 24870 + pos: -22.5,-1.5 + parent: 2 + - uid: 19441 components: - type: Transform - pos: 3.616455,11.576112 - parent: 22565 -- proto: SubstationBasic - entities: - - uid: 610 + pos: 36.5,6.5 + parent: 2 + - uid: 19442 components: - - type: MetaData - name: подстанция мостик - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 1532 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 19443 components: - - type: MetaData - name: подстанция РнД - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 6498 + pos: -16.5,-5.5 + parent: 2 + - uid: 19444 components: - - type: MetaData - name: подстанция УЧ - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 8209 + pos: -16.5,-4.5 + parent: 2 + - uid: 19445 components: - - type: MetaData - name: подстанция мед 1 - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 10678 + pos: -16.5,-3.5 + parent: 2 + - uid: 19446 components: - - type: MetaData - name: подстанция карго, суд - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 10967 + pos: -16.5,-2.5 + parent: 2 + - uid: 19447 components: - - type: MetaData - name: подстанция дормы - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11233 + pos: -16.5,-1.5 + parent: 2 + - uid: 19448 components: - - type: MetaData - name: подстанция прибытие - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 11831 + pos: -10.5,-2.5 + parent: 2 + - uid: 19449 components: - - type: MetaData - name: подстанция СБ - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 12989 + pos: -10.5,-3.5 + parent: 2 + - uid: 19450 components: - - type: MetaData - name: подстанция коридоров 1 - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 13849 + pos: 57.5,2.5 + parent: 2 + - uid: 19451 components: - - type: MetaData - name: подстанция карго, бар - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 14064 + pos: 59.5,2.5 + parent: 2 + - uid: 19452 components: - - type: MetaData - name: подстанция уборщик - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 15640 + pos: 57.5,6.5 + parent: 2 + - uid: 19453 components: - - type: MetaData - name: подстанция генератора гравитации - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 16579 + pos: 59.5,6.5 + parent: 2 + - uid: 19454 components: - - type: MetaData - name: подстанция инженерного отдела - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 17149 + pos: 65.5,10.5 + parent: 2 + - uid: 19455 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 20320 + pos: 63.5,8.5 + parent: 2 + - uid: 19456 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21824 + pos: 63.5,0.5 + parent: 2 + - uid: 19457 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 24871 + pos: 65.5,13.5 + parent: 2 + - uid: 19458 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 24872 + pos: 63.5,3.5 + parent: 2 + - uid: 19459 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 24873 + pos: 63.5,5.5 + parent: 2 + - uid: 19460 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 -- proto: SubstationMachineCircuitboard - entities: - - uid: 7040 + pos: 56.5,10.5 + parent: 2 + - uid: 19461 components: - type: Transform - pos: -103.60425,-7.2144136 - parent: 89 - - uid: 7041 + pos: 55.5,10.5 + parent: 2 + - uid: 19462 components: - type: Transform - pos: -103.323,-7.4956636 - parent: 89 -- proto: SubstationWallBasic - entities: - - uid: 14562 + pos: 53.5,15.5 + parent: 2 + - uid: 19463 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 21705 + pos: 54.5,15.5 + parent: 2 + - uid: 19464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 21627 - - uid: 25574 + pos: 57.5,15.5 + parent: 2 + - uid: 19465 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 -- proto: SuitStorageAtmos - entities: - - uid: 6949 + pos: 58.5,15.5 + parent: 2 + - uid: 19466 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 7109 + pos: -5.5,-34.5 + parent: 2 + - uid: 19467 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 7111 + pos: 65.5,-1.5 + parent: 2 + - uid: 19468 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 -- proto: SuitStorageCaptain - entities: - - uid: 20798 + pos: 58.5,-6.5 + parent: 2 + - uid: 19469 components: - type: Transform - pos: 46.5,17.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageCE - entities: - - uid: 1056 + pos: 57.5,-6.5 + parent: 2 + - uid: 19470 components: - type: Transform - pos: -101.5,9.5 - parent: 89 -- proto: SuitStorageCMO - entities: - - uid: 6950 + pos: 54.5,-6.5 + parent: 2 + - uid: 19471 components: - type: Transform - pos: 22.5,34.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEngi - entities: - - uid: 478 + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 19472 components: - type: Transform - pos: -110.5,-2.5 - parent: 89 - - uid: 670 + pos: -22.5,-14.5 + parent: 2 + - uid: 19473 components: - type: Transform - pos: -110.5,10.5 - parent: 89 - - uid: 1870 + pos: -1.5,19.5 + parent: 2 + - uid: 19474 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 1883 + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 19475 components: - type: Transform - pos: -126.5,-4.5 - parent: 89 - - uid: 2245 + pos: 41.5,9.5 + parent: 2 + - uid: 19476 components: - type: Transform - pos: -106.5,2.5 - parent: 89 - - uid: 2274 + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 19477 components: - type: Transform - pos: -104.5,2.5 - parent: 89 - - uid: 2344 + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 19478 components: - type: Transform - pos: -103.5,2.5 - parent: 89 - - uid: 7128 + pos: 40.5,10.5 + parent: 2 + - uid: 19479 components: - type: Transform - pos: -105.5,2.5 - parent: 89 - - uid: 17704 + pos: 56.5,-1.5 + parent: 2 + - uid: 19480 components: - type: Transform - pos: -126.5,-5.5 - parent: 89 - - uid: 17706 + pos: 55.5,-1.5 + parent: 2 + - uid: 19481 components: - type: Transform - pos: -110.5,6.5 - parent: 89 -- proto: SuitStorageEVA - entities: - - uid: 2332 + pos: -85.5,-14.5 + parent: 2 + - uid: 19482 components: - type: Transform - pos: 32.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2217 - - 2357 - - uid: 7129 + pos: -84.5,-14.5 + parent: 2 + - uid: 19483 components: - type: Transform - pos: 31.5,5.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2144 - - 7130 - - uid: 7131 + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 19484 components: - type: Transform - pos: 32.5,7.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2330 - - 2359 - - uid: 7132 + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 19485 components: - type: Transform - pos: 30.5,7.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2326 - - 2346 - - uid: 7133 + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 19486 components: - type: Transform - pos: 30.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2333 - - 2352 -- proto: SuitStorageEVAEmergency - entities: - - uid: 9653 + pos: 37.5,3.5 + parent: 2 + - uid: 19487 components: - type: Transform - pos: -88.5,23.5 - parent: 89 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 5947 + pos: -25.5,-3.5 + parent: 2 + - uid: 19488 components: - type: Transform - pos: 14.5,-16.5 - parent: 89 - - uid: 21328 + pos: -26.5,-3.5 + parent: 2 + - uid: 19489 components: - type: Transform - pos: 56.5,-19.5 - parent: 89 - - uid: 21391 + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 19490 components: - type: Transform - pos: 56.5,-20.5 - parent: 89 -- proto: SuitStorageHOS - entities: - - uid: 7116 + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - uid: 19491 components: - type: Transform - pos: 36.5,-0.5 - parent: 89 -- proto: SuitStorageRD - entities: - - uid: 7100 + rot: -1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 19492 components: - type: Transform - pos: 4.5,-31.5 - parent: 89 -- proto: SuitStorageSalv - entities: - - uid: 5745 + pos: 25.5,-3.5 + parent: 2 + - uid: 19493 components: - type: Transform - pos: -52.5,-15.5 - parent: 89 - - uid: 7105 + pos: 54.5,2.5 + parent: 2 + - uid: 19494 components: - type: Transform - pos: -52.5,-16.5 - parent: 89 - - uid: 7112 + pos: 54.5,6.5 + parent: 2 + - uid: 19495 components: - type: Transform - pos: -52.5,-17.5 - parent: 89 -- proto: SuitStorageSec - entities: - - uid: 2360 + pos: -5.5,-36.5 + parent: 2 + - uid: 19496 components: - type: Transform - pos: 41.5,-6.5 - parent: 89 - - uid: 2999 + rot: 3.141592653589793 rad + pos: -60.5,20.5 + parent: 2 + - uid: 19497 components: - type: Transform - pos: 41.5,-7.5 - parent: 89 - - uid: 7171 + pos: -0.5,19.5 + parent: 2 + - uid: 19498 components: - type: Transform - pos: 42.5,-6.5 - parent: 89 - - uid: 7172 + pos: 17.5,-0.5 + parent: 2 + - uid: 19499 components: - type: Transform - pos: 42.5,-7.5 - parent: 89 - - uid: 7379 + pos: 15.5,-6.5 + parent: 2 + - uid: 19500 components: - type: Transform - pos: 41.5,-5.5 - parent: 89 - - uid: 7469 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 19501 components: - type: Transform - pos: 42.5,-5.5 - parent: 89 -- proto: SuitStorageWarden - entities: - - uid: 7115 + rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 19502 components: - type: Transform - pos: 7.5,-8.5 - parent: 89 -- proto: SurveillanceCameraAssembly - entities: - - uid: 24874 + rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 19503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 22565 -- proto: SurveillanceCameraCommand - entities: - - uid: 4522 + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 19504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ЕВА склад - - uid: 10972 + pos: -63.5,-3.5 + parent: 2 + - uid: 19505 components: - type: Transform - pos: 56.5,8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик офицерская палуба 2 - - uid: 14892 + pos: -62.5,-3.5 + parent: 2 + - uid: 19506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик мостика - - uid: 14963 + pos: 28.5,-5.5 + parent: 2 + - uid: 19507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Правительственный сектор - - uid: 14965 + pos: 21.5,-2.5 + parent: 2 + - uid: 19508 components: - type: Transform - pos: 48.5,-5.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Хранилище - - uid: 14966 + pos: -4.5,8.5 + parent: 2 + - uid: 19509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ЕВА склад 2 - - uid: 15741 + pos: -15.5,7.5 + parent: 2 + - uid: 19510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик вход - - uid: 15744 + pos: -6.5,27.5 + parent: 2 + - uid: 19511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Конференц зал - - uid: 16712 + pos: 19.5,-1.5 + parent: 2 + - uid: 19512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик офицерская палуба 1 - - uid: 16713 + pos: 17.5,-1.5 + parent: 2 + - uid: 19513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,6.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Кабинет ГП - - uid: 19629 + pos: 19.5,-0.5 + parent: 2 + - uid: 19514 components: - type: Transform - pos: -76.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Суд -- proto: SurveillanceCameraEngineering - entities: - - uid: 19653 + pos: -20.5,5.5 + parent: 2 + - uid: 19515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Суперматерия - - uid: 19654 + pos: -19.5,5.5 + parent: 2 + - uid: 19516 components: - type: Transform - pos: -119.5,-8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Склад техники - - uid: 19658 + pos: -20.5,7.5 + parent: 2 + - uid: 19517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,-1.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Центральная комната - - uid: 19661 + pos: -16.5,8.5 + parent: 2 + - uid: 19518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-9.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Склад запчастей - - uid: 19662 + pos: -44.5,2.5 + parent: 2 + - uid: 19519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Атмос - - uid: 19663 + pos: -45.5,0.5 + parent: 2 + - uid: 19520 components: - type: Transform - pos: -105.5,2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Центральный коридор - - uid: 19665 + pos: -45.5,1.5 + parent: 2 + - uid: 19521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,6.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Комната управления - - uid: 19666 + pos: -105.5,9.5 + parent: 2 + - uid: 19522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,17.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Зал двигателя антиматерии - - uid: 19667 + pos: -104.5,9.5 + parent: 2 + - uid: 19523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Холл СМЭСов - - uid: 19668 + pos: -103.5,9.5 + parent: 2 + - uid: 19524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Ген.грав. - - uid: 19669 + pos: -103.5,-2.5 + parent: 2 + - uid: 19525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Комната снаряжения атмоса -- proto: SurveillanceCameraGeneral - entities: - - uid: 14962 + pos: -102.5,-2.5 + parent: 2 + - uid: 19526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Зал правительственный сектор - - uid: 19620 + pos: -101.5,-2.5 + parent: 2 + - uid: 19527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общий зал - - uid: 19624 + pos: -100.5,-2.5 + parent: 2 + - uid: 19528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 1 - - uid: 19625 + pos: -104.5,0.5 + parent: 2 + - uid: 19529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 2 - - uid: 19626 + pos: -105.5,0.5 + parent: 2 + - uid: 19530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 3 - - uid: 19627 + pos: -3.5,6.5 + parent: 2 + - uid: 19531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,26.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 4 - - uid: 19812 + pos: -85.5,11.5 + parent: 2 + - uid: 19532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор РнД -- proto: SurveillanceCameraMedical - entities: - - uid: 11154 + pos: -87.5,14.5 + parent: 2 + - uid: 19533 components: - type: Transform - pos: -0.5,11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Внутренний холл Медбея - - uid: 19634 + pos: -86.5,14.5 + parent: 2 + - uid: 19534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Хим. Отдел - - uid: 19638 + pos: -61.5,8.5 + parent: 2 + - uid: 19535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Клонирование - - uid: 19640 + pos: -58.5,7.5 + parent: 2 + - uid: 19536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Внутренняя приемная - - uid: 19643 + pos: -59.5,7.5 + parent: 2 + - uid: 19537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Морг -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 9060 + pos: -58.5,21.5 + parent: 2 + - uid: 19538 components: - type: Transform - pos: -103.5,26.5 - parent: 89 - - uid: 16399 + rot: -1.5707963267948966 rad + pos: -59.5,22.5 + parent: 2 + - uid: 19539 components: - type: Transform - pos: 47.5,3.5 - parent: 89 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 1244 + rot: -1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - uid: 19540 components: - type: Transform - pos: -109.5,26.5 - parent: 89 - - uid: 9119 + pos: -8.5,-15.5 + parent: 2 + - uid: 19541 components: - type: Transform - pos: -112.5,24.5 - parent: 89 - - uid: 9120 + pos: 9.5,20.5 + parent: 2 + - uid: 19542 components: - type: Transform - pos: -111.5,24.5 - parent: 89 - - uid: 9121 + pos: -105.5,21.5 + parent: 2 + - uid: 19543 components: - type: Transform - pos: -110.5,24.5 - parent: 89 - - uid: 9130 + pos: -104.5,21.5 + parent: 2 + - uid: 19544 components: - type: Transform - pos: -110.5,26.5 - parent: 89 - - uid: 9131 + pos: -103.5,21.5 + parent: 2 + - uid: 19545 components: - type: Transform - pos: -111.5,26.5 - parent: 89 - - uid: 9132 + pos: -102.5,21.5 + parent: 2 + - uid: 19546 components: - type: Transform - pos: -112.5,26.5 - parent: 89 - - uid: 11103 + pos: -55.5,32.5 + parent: 2 + - uid: 19547 components: - type: Transform - pos: -109.5,24.5 - parent: 89 - - uid: 20072 + pos: 44.5,-15.5 + parent: 2 + - uid: 19548 components: - type: Transform - pos: -107.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 9067 + pos: -55.5,33.5 + parent: 2 + - uid: 19549 components: - type: Transform - pos: -104.5,26.5 - parent: 89 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 9052 + pos: -55.5,34.5 + parent: 2 + - uid: 19550 components: - type: Transform - pos: -102.5,26.5 - parent: 89 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 9050 + pos: -54.5,38.5 + parent: 2 + - uid: 19551 components: - type: Transform - pos: -105.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 9048 + pos: -54.5,43.5 + parent: 2 + - uid: 19552 components: - type: Transform - pos: -103.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 9049 + pos: -54.5,42.5 + parent: 2 + - uid: 19553 components: - type: Transform - pos: -104.5,24.5 - parent: 89 - - uid: 24875 + pos: -54.5,41.5 + parent: 2 + - uid: 19554 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 -- proto: SurveillanceCameraRouterService - entities: - - uid: 9047 + pos: -52.5,41.5 + parent: 2 + - uid: 19555 components: - type: Transform - pos: -102.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 5855 + pos: -52.5,45.5 + parent: 2 + - uid: 19556 components: - type: Transform - pos: -74.5,-16.5 - parent: 89 - - uid: 8588 + pos: -83.5,16.5 + parent: 2 + - uid: 19557 components: - type: Transform - pos: -106.5,24.5 - parent: 89 -- proto: SurveillanceCameraScience - entities: - - uid: 1576 + pos: -84.5,17.5 + parent: 2 + - uid: 19558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Лаборатория - - uid: 14893 + pos: -85.5,17.5 + parent: 2 + - uid: 19559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехника - - uid: 14899 + pos: -96.5,5.5 + parent: 2 + - uid: 19560 components: - type: Transform - pos: -7.5,-32.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Атмос РнД - - uid: 14901 + rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 19561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Холл РнД - - uid: 14949 + pos: -1.5,10.5 + parent: 2 + - uid: 19562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-34.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Серверная - - uid: 15096 + pos: -1.5,19.5 + parent: 2 + - uid: 19563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-38.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Ксеноархеология -- proto: SurveillanceCameraSecurity - entities: - - uid: 14889 + pos: -2.5,19.5 + parent: 2 + - uid: 19564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Медпункт брига - - uid: 14952 + pos: 31.5,18.5 + parent: 2 + - uid: 19565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Приемная брига - - uid: 15340 + pos: 30.5,18.5 + parent: 2 + - uid: 19566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 89 - - uid: 16715 + pos: 32.5,20.5 + parent: 2 + - uid: 19567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната снаряжения - - uid: 18151 + pos: 33.5,20.5 + parent: 2 + - uid: 19568 components: - type: Transform - pos: 35.5,-11.5 - parent: 89 - - uid: 19623 + pos: 5.5,16.5 + parent: 2 + - uid: 19569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Допросная - - uid: 19628 + pos: 8.5,18.5 + parent: 2 + - uid: 19570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Оружейная - - uid: 24876 + pos: 6.5,16.5 + parent: 2 + - uid: 19571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-21.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: прибытие каторги - - uid: 24877 + pos: 44.5,-16.5 + parent: 2 + - uid: 19572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 22565 - - uid: 24878 + pos: 65.5,-4.5 + parent: 2 + - uid: 19573 components: - type: Transform - pos: -11.5,1.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: пост сб каторги - - uid: 24879 + pos: 53.5,-6.5 + parent: 2 + - uid: 19574 components: - type: Transform - pos: -21.5,-0.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левое сборочное крыло каторги - - uid: 24880 + pos: 44.5,-14.5 + parent: 2 + - uid: 19575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левые дормы каторги - - uid: 24881 + pos: 44.5,-13.5 + parent: 2 + - uid: 19576 components: - type: Transform - pos: -2.5,-0.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: правое сборочное крыло каторги - - uid: 24882 + pos: 44.5,-12.5 + parent: 2 + - uid: 19577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левый строительный док каторги - - uid: 24883 + pos: -2.5,5.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 19580 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,20.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: правый строительный док каторги -- proto: SurveillanceCameraService - entities: - - uid: 19655 + parent: 2 + - uid: 19581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Морозильник - - uid: 19656 + pos: 19.5,23.5 + parent: 2 + - uid: 19582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Ботаника - - uid: 19657 + pos: 5.5,30.5 + parent: 2 + - uid: 19583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Кухня - - uid: 19659 + pos: 9.5,42.5 + parent: 2 + - uid: 19584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Раздевалка театра - - uid: 19660 + pos: 10.5,42.5 + parent: 2 + - uid: 19585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар - - uid: 19664 + pos: 5.5,29.5 + parent: 2 + - uid: 19586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Театр -- proto: SurveillanceCameraSupply - entities: - - uid: 71 + pos: 5.5,32.5 + parent: 2 + - uid: 19587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Склад - - uid: 91 + pos: 5.5,34.5 + parent: 2 + - uid: 19588 components: - type: Transform - pos: -65.5,-2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Зал снабжения - - uid: 5856 + pos: -4.5,7.5 + parent: 2 + - uid: 19589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Комната отдыха - - uid: 5858 + pos: 17.5,23.5 + parent: 2 + - uid: 19590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Офис квартирмейстера - - uid: 5859 + pos: 18.5,23.5 + parent: 2 + - uid: 19591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-19.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Выход в космос - - uid: 5860 + pos: 5.5,33.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 19593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторская -- proto: SurveillanceCameraWirelessRouterBase - entities: - - uid: 9086 + pos: 32.5,18.5 + parent: 2 + - uid: 19594 components: - type: Transform - pos: -106.5,26.5 - parent: 89 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 9085 + pos: 11.5,-8.5 + parent: 2 + - uid: 19595 components: - type: Transform - pos: -105.5,26.5 - parent: 89 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 10855 + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 19596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 - parent: 89 - - uid: 15590 + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 19597 components: - type: Transform - pos: -23.5,9.5 - parent: 89 -- proto: SurvivalKnife - entities: - - uid: 18010 + pos: 8.5,20.5 + parent: 2 + - uid: 19598 components: - type: Transform - pos: 9.49861,-25.506388 - parent: 89 -- proto: SyndicatePersonalAI - entities: - - uid: 3425 + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 19599 components: - type: Transform - pos: -88.7376,27.498827 - parent: 89 -- proto: SyndiPDA - entities: - - uid: 10133 + pos: -0.5,8.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 19601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.52689,26.55105 - parent: 89 -- proto: Syringe - entities: - - uid: 11206 + pos: -1.5,15.5 + parent: 2 + - uid: 19602 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11201 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11211 + pos: 21.5,-3.5 + parent: 2 + - uid: 19603 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11201 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11305 + pos: 34.5,20.5 + parent: 2 + - uid: 19604 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11304 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11306 + pos: -1.5,5.5 + parent: 2 + - uid: 19605 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11304 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15636 + pos: -3.5,5.5 + parent: 2 + - uid: 19606 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.236977,27.759844 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - uid: 15681 + pos: -86.5,-14.5 + parent: 2 + - uid: 19607 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.252602,27.759844 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - uid: 15696 + pos: -96.5,-6.5 + parent: 2 + - uid: 19608 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.268227,27.791094 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 -- proto: Table - entities: - - uid: 83 + pos: -96.5,-5.5 + parent: 2 + - uid: 19609 components: - type: Transform - pos: 2.5,19.5 - parent: 89 - - uid: 130 + pos: -96.5,-4.5 + parent: 2 + - uid: 19610 components: - type: Transform - pos: -29.5,-17.5 - parent: 89 - - uid: 140 + pos: -104.5,7.5 + parent: 2 + - uid: 24242 components: - type: Transform - pos: -37.5,-17.5 - parent: 89 - - uid: 147 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 + - uid: 24243 components: - type: Transform - pos: 2.5,17.5 - parent: 89 - - uid: 150 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 23919 + - uid: 24244 components: - type: Transform - pos: -5.5,-15.5 - parent: 89 - - uid: 151 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 23919 + - uid: 24245 components: - type: Transform - pos: -5.5,-16.5 - parent: 89 - - uid: 152 + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 23919 + - uid: 26823 components: - type: Transform - pos: -5.5,-17.5 - parent: 89 - - uid: 153 + pos: -13.5,-27.5 + parent: 24450 + - uid: 26824 components: - type: Transform - pos: -5.5,-18.5 - parent: 89 - - uid: 154 + pos: -9.5,7.5 + parent: 24450 + - uid: 26825 components: - type: Transform - pos: -6.5,-18.5 - parent: 89 - - uid: 160 + pos: -14.5,4.5 + parent: 24450 + - uid: 26826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,27.5 - parent: 89 - - uid: 164 + pos: -11.5,7.5 + parent: 24450 + - uid: 26827 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 165 + pos: -14.5,7.5 + parent: 24450 + - uid: 27891 components: - type: Transform - pos: 1.5,-29.5 - parent: 89 - - uid: 190 + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 27260 + - uid: 27892 components: - type: Transform - pos: 4.5,-19.5 - parent: 89 - - uid: 191 + pos: 5.5,-10.5 + parent: 27260 + - uid: 27893 components: - type: Transform - pos: 4.5,-20.5 - parent: 89 - - uid: 192 + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 27260 + - uid: 27894 components: - type: Transform - pos: 4.5,-21.5 - parent: 89 - - uid: 193 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 27260 + - uid: 27895 components: - type: Transform - pos: 4.5,-22.5 - parent: 89 - - uid: 194 + pos: -1.5,-6.5 + parent: 27260 + - uid: 27896 components: - type: Transform - pos: 4.5,-18.5 - parent: 89 - - uid: 213 + pos: -1.5,-7.5 + parent: 27260 +- proto: TableReinforcedGlass + entities: + - uid: 19611 components: - type: Transform - pos: -12.5,-23.5 - parent: 89 - - uid: 214 + pos: 32.5,-5.5 + parent: 2 + - uid: 19612 components: - type: Transform - pos: -13.5,-23.5 - parent: 89 - - uid: 215 + pos: 31.5,-5.5 + parent: 2 + - uid: 19613 components: - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 216 + pos: 33.5,-5.5 + parent: 2 + - uid: 19614 components: - type: Transform - pos: -16.5,-23.5 - parent: 89 - - uid: 217 + pos: 33.5,-6.5 + parent: 2 + - uid: 19615 components: - type: Transform - pos: -18.5,-23.5 - parent: 89 - - uid: 218 + pos: 10.5,-0.5 + parent: 2 + - uid: 19616 components: - type: Transform - pos: -19.5,-23.5 - parent: 89 - - uid: 242 + pos: 12.5,-0.5 + parent: 2 + - uid: 19617 components: - type: Transform - pos: -6.5,-38.5 - parent: 89 - - uid: 243 + pos: 12.5,-1.5 + parent: 2 + - uid: 19618 components: - type: Transform - pos: -7.5,-38.5 - parent: 89 - - uid: 307 + pos: 15.5,-0.5 + parent: 2 + - uid: 19619 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 308 + pos: 12.5,-3.5 + parent: 2 + - uid: 19620 components: - type: Transform - pos: -13.5,-0.5 - parent: 89 - - uid: 312 + pos: 13.5,-3.5 + parent: 2 + - uid: 19621 components: - type: Transform - pos: -12.5,-0.5 - parent: 89 - - uid: 1994 + pos: -98.5,-7.5 + parent: 2 + - uid: 19622 components: - type: Transform - pos: 42.5,10.5 - parent: 89 - - uid: 2528 + pos: -98.5,-8.5 + parent: 2 + - uid: 19623 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 2919 + pos: -98.5,-9.5 + parent: 2 + - uid: 19624 components: - type: Transform - pos: 27.5,-14.5 - parent: 89 - - uid: 2920 + pos: -98.5,-10.5 + parent: 2 + - uid: 19625 components: - type: Transform - pos: 24.5,-14.5 - parent: 89 - - uid: 2921 + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - uid: 19626 components: - type: Transform - pos: 21.5,-14.5 - parent: 89 - - uid: 2922 + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 2 + - uid: 19627 components: - type: Transform - pos: 18.5,-14.5 - parent: 89 - - uid: 2943 + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 19628 components: - type: Transform - pos: -13.5,-2.5 - parent: 89 - - uid: 3029 + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 +- proto: TableStone + entities: + - uid: 19629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 89 - - uid: 3986 + pos: -34.5,24.5 + parent: 2 + - uid: 19630 components: - type: Transform - pos: -8.5,-8.5 - parent: 89 - - uid: 4867 + pos: -34.5,23.5 + parent: 2 + - uid: 27897 components: - type: Transform - pos: -11.5,-0.5 - parent: 89 - - uid: 5138 + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 27260 +- proto: TableWeb + entities: + - uid: 19631 components: - type: Transform - pos: -61.5,-4.5 - parent: 89 - - uid: 5139 + rot: 3.141592653589793 rad + pos: 40.5,22.5 + parent: 2 +- proto: TableWood + entities: + - uid: 19632 components: - type: Transform - pos: -61.5,-5.5 - parent: 89 - - uid: 5794 + pos: -23.5,9.5 + parent: 2 + - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.5,12.5 - parent: 89 - - uid: 5831 + pos: 58.5,-32.5 + parent: 2 + - uid: 19634 components: - type: Transform - pos: -71.5,-11.5 - parent: 89 - - uid: 5832 + rot: 3.141592653589793 rad + pos: 58.5,-33.5 + parent: 2 + - uid: 19635 components: - type: Transform - pos: -71.5,-12.5 - parent: 89 - - uid: 5834 + rot: 3.141592653589793 rad + pos: 57.5,-33.5 + parent: 2 + - uid: 19636 components: - type: Transform - pos: -50.5,-15.5 - parent: 89 - - uid: 5835 + pos: -24.5,-0.5 + parent: 2 + - uid: 19637 components: - type: Transform - pos: -50.5,-16.5 - parent: 89 - - uid: 6841 + pos: -25.5,-0.5 + parent: 2 + - uid: 19638 components: - type: Transform - pos: -35.5,9.5 - parent: 89 - - uid: 6910 + pos: 24.5,43.5 + parent: 2 + - uid: 19639 components: - type: Transform - pos: -102.5,-5.5 - parent: 89 - - uid: 6911 + pos: 44.5,5.5 + parent: 2 + - uid: 19640 components: - type: Transform - pos: -101.5,-5.5 - parent: 89 - - uid: 6927 + pos: 35.5,13.5 + parent: 2 + - uid: 19641 components: - type: Transform - pos: -96.5,-1.5 - parent: 89 - - uid: 6928 + pos: 34.5,14.5 + parent: 2 + - uid: 19642 components: - type: Transform - pos: -96.5,-2.5 - parent: 89 - - uid: 7036 + pos: 44.5,4.5 + parent: 2 + - uid: 19643 components: - type: Transform - pos: -93.5,17.5 - parent: 89 - - uid: 7037 + pos: 44.5,6.5 + parent: 2 + - uid: 19644 components: - type: Transform - pos: -94.5,17.5 - parent: 89 - - uid: 7038 + pos: 35.5,14.5 + parent: 2 + - uid: 19645 components: - type: Transform - pos: -95.5,17.5 - parent: 89 - - uid: 7077 + pos: 34.5,13.5 + parent: 2 + - uid: 19646 components: - type: Transform - pos: -90.5,13.5 - parent: 89 - - uid: 7078 + pos: 36.5,13.5 + parent: 2 + - uid: 19647 components: - type: Transform - pos: -90.5,12.5 - parent: 89 - - uid: 7373 + pos: 36.5,14.5 + parent: 2 + - uid: 19648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,29.5 - parent: 89 - - uid: 7414 + pos: 32.5,14.5 + parent: 2 + - uid: 19649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 89 - - uid: 8201 + pos: 32.5,13.5 + parent: 2 + - uid: 19650 components: - type: Transform - pos: 0.5,27.5 - parent: 89 - - uid: 8202 + pos: 33.5,14.5 + parent: 2 + - uid: 19651 components: - type: Transform - pos: 1.5,27.5 - parent: 89 - - uid: 8397 + pos: 33.5,13.5 + parent: 2 + - uid: 19652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,11.5 - parent: 89 - - uid: 8696 + pos: -55.5,7.5 + parent: 2 + - uid: 19653 components: - type: Transform - pos: -91.5,6.5 - parent: 89 - - uid: 8698 + pos: -26.5,-8.5 + parent: 2 + - uid: 19654 components: - type: Transform - pos: -91.5,5.5 - parent: 89 - - uid: 8798 + pos: -31.5,-5.5 + parent: 2 + - uid: 19655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,14.5 - parent: 89 - - uid: 8893 + pos: -31.5,-6.5 + parent: 2 + - uid: 19656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,13.5 - parent: 89 - - uid: 9030 + pos: -30.5,0.5 + parent: 2 + - uid: 19657 components: - type: Transform - pos: -126.5,-10.5 - parent: 89 - - uid: 9494 + pos: -29.5,0.5 + parent: 2 + - uid: 19658 components: - type: Transform - pos: -41.5,7.5 - parent: 89 - - uid: 9497 + pos: -28.5,-2.5 + parent: 2 + - uid: 19659 components: - type: Transform - pos: -36.5,9.5 - parent: 89 - - uid: 10018 + pos: -33.5,-9.5 + parent: 2 + - uid: 19660 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 10210 + pos: -33.5,-3.5 + parent: 2 + - uid: 19661 components: - type: Transform - pos: -34.5,28.5 - parent: 89 - - uid: 10211 + pos: -35.5,-5.5 + parent: 2 + - uid: 19662 components: - type: Transform - pos: -34.5,27.5 - parent: 89 - - uid: 10499 + pos: -26.5,-6.5 + parent: 2 + - uid: 19663 components: - type: Transform - pos: 13.5,5.5 - parent: 89 - - uid: 10500 + pos: 48.5,10.5 + parent: 2 + - uid: 19664 components: - type: Transform - pos: 14.5,5.5 - parent: 89 - - uid: 10503 + pos: 25.5,40.5 + parent: 2 + - uid: 19665 components: - type: Transform - pos: 14.5,6.5 - parent: 89 - - uid: 10958 + pos: -19.5,-2.5 + parent: 2 + - uid: 19666 components: - type: Transform - pos: -117.5,-14.5 - parent: 89 - - uid: 10966 + pos: -19.5,-3.5 + parent: 2 + - uid: 19667 components: - type: Transform - pos: 23.5,27.5 - parent: 89 - - uid: 10983 + pos: -19.5,-5.5 + parent: 2 + - uid: 19668 components: - type: Transform - pos: -34.5,5.5 - parent: 89 - - uid: 10984 + pos: -19.5,-6.5 + parent: 2 + - uid: 19669 components: - type: Transform - pos: -35.5,5.5 - parent: 89 - - uid: 10989 + pos: -22.5,-6.5 + parent: 2 + - uid: 19670 components: - type: Transform - pos: -57.5,12.5 - parent: 89 - - uid: 10994 + pos: 47.5,10.5 + parent: 2 + - uid: 19671 components: - type: Transform - pos: -56.5,12.5 - parent: 89 - - uid: 11023 + pos: -50.5,9.5 + parent: 2 + - uid: 19672 components: - type: Transform - pos: -56.5,5.5 - parent: 89 - - uid: 11024 + pos: -49.5,9.5 + parent: 2 + - uid: 19673 components: - type: Transform - pos: -55.5,5.5 - parent: 89 - - uid: 11027 + pos: -48.5,-7.5 + parent: 2 + - uid: 19674 components: - type: Transform - pos: -61.5,5.5 - parent: 89 - - uid: 11028 + pos: -72.5,-17.5 + parent: 2 + - uid: 19675 components: - type: Transform - pos: -70.5,5.5 - parent: 89 - - uid: 11339 + pos: -71.5,-17.5 + parent: 2 + - uid: 19676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,1.5 - parent: 89 - - uid: 11340 + pos: -48.5,11.5 + parent: 2 + - uid: 19677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,2.5 - parent: 89 - - uid: 11380 + pos: -45.5,11.5 + parent: 2 + - uid: 19678 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 12007 + pos: -35.5,-7.5 + parent: 2 + - uid: 19679 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 12627 + pos: -35.5,-9.5 + parent: 2 + - uid: 19680 components: - type: Transform - pos: -126.5,-9.5 - parent: 89 - - uid: 12738 + pos: -35.5,-3.5 + parent: 2 + - uid: 19681 components: - type: Transform - pos: 8.5,9.5 - parent: 89 - - uid: 12739 + pos: -8.5,45.5 + parent: 2 + - uid: 19682 components: - type: Transform - pos: 9.5,9.5 - parent: 89 - - uid: 12740 + pos: -8.5,44.5 + parent: 2 + - uid: 19683 components: - type: Transform - pos: 9.5,8.5 - parent: 89 - - uid: 12747 + pos: 1.5,45.5 + parent: 2 + - uid: 19684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 89 - - uid: 12752 + pos: 1.5,44.5 + parent: 2 + - uid: 19685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 89 - - uid: 12772 + pos: -5.5,33.5 + parent: 2 + - uid: 19686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 89 - - uid: 12833 + pos: -5.5,32.5 + parent: 2 + - uid: 19687 components: - type: Transform - pos: 15.5,11.5 - parent: 89 - - uid: 12844 + pos: 19.5,18.5 + parent: 2 + - uid: 19688 components: - type: Transform - pos: 20.5,12.5 - parent: 89 - - uid: 12966 + pos: -34.5,32.5 + parent: 2 + - uid: 19689 components: - type: Transform - pos: -113.5,-5.5 - parent: 89 - - uid: 12967 + pos: -34.5,31.5 + parent: 2 + - uid: 19690 components: - type: Transform - pos: -113.5,-8.5 - parent: 89 - - uid: 13732 + pos: -78.5,-1.5 + parent: 2 + - uid: 19691 components: - type: Transform - pos: -113.5,-7.5 - parent: 89 - - uid: 14595 + pos: -73.5,-1.5 + parent: 2 + - uid: 19692 components: - type: Transform - pos: -91.5,25.5 - parent: 89 - - uid: 14596 + pos: -79.5,-1.5 + parent: 2 + - uid: 19693 components: - type: Transform - pos: -91.5,24.5 - parent: 89 - - uid: 14597 + pos: -74.5,-1.5 + parent: 2 + - uid: 19694 components: - type: Transform - pos: -91.5,23.5 - parent: 89 - - uid: 14719 + pos: -38.5,29.5 + parent: 2 + - uid: 19695 components: - type: Transform - pos: 15.5,-15.5 - parent: 89 - - uid: 14761 + pos: -36.5,29.5 + parent: 2 + - uid: 19696 components: - type: Transform - pos: -75.5,13.5 - parent: 89 - - uid: 14762 + pos: -23.5,27.5 + parent: 2 + - uid: 19697 components: - type: Transform - pos: -75.5,12.5 - parent: 89 - - uid: 14784 + pos: -23.5,28.5 + parent: 2 + - uid: 19698 components: - type: Transform - pos: -44.5,21.5 - parent: 89 - - uid: 14795 + pos: -23.5,29.5 + parent: 2 + - uid: 19699 components: - type: Transform - pos: 2.5,21.5 - parent: 89 - - uid: 14946 + pos: -22.5,29.5 + parent: 2 + - uid: 19700 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 15046 + pos: -19.5,29.5 + parent: 2 + - uid: 19701 components: - type: Transform - pos: 24.5,12.5 - parent: 89 - - uid: 15202 + pos: -19.5,28.5 + parent: 2 + - uid: 19702 components: - type: Transform - pos: 23.5,29.5 - parent: 89 - - uid: 15204 + pos: -19.5,27.5 + parent: 2 + - uid: 19703 components: - type: Transform - pos: 25.5,29.5 - parent: 89 - - uid: 15239 + pos: 4.5,-1.5 + parent: 2 + - uid: 19704 components: - type: Transform - pos: 24.5,13.5 - parent: 89 - - uid: 15241 + pos: 22.5,8.5 + parent: 2 + - uid: 19705 components: - type: Transform - pos: 27.5,31.5 - parent: 89 - - uid: 15250 + pos: 20.5,5.5 + parent: 2 + - uid: 19706 components: - type: Transform - pos: 21.5,31.5 - parent: 89 - - uid: 15278 + pos: 20.5,6.5 + parent: 2 + - uid: 19707 components: - type: Transform - pos: -115.5,15.5 - parent: 89 - - uid: 15282 + pos: 20.5,7.5 + parent: 2 + - uid: 19708 components: - type: Transform - pos: -115.5,14.5 - parent: 89 - - uid: 15294 + pos: 18.5,8.5 + parent: 2 + - uid: 19709 components: - type: Transform - pos: 2.5,15.5 - parent: 89 - - uid: 15354 + pos: 18.5,11.5 + parent: 2 + - uid: 19710 components: - type: Transform - pos: 26.5,13.5 - parent: 89 - - uid: 15355 + pos: -37.5,29.5 + parent: 2 + - uid: 19711 components: - type: Transform - pos: 25.5,13.5 - parent: 89 - - uid: 15474 + pos: 18.5,5.5 + parent: 2 + - uid: 19712 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15487 + pos: 17.5,5.5 + parent: 2 + - uid: 19713 components: - type: Transform - pos: -89.5,6.5 - parent: 89 - - uid: 15488 + rot: 3.141592653589793 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 19714 components: - type: Transform - pos: -84.5,4.5 - parent: 89 - - uid: 15489 + rot: 3.141592653589793 rad + pos: -76.5,-5.5 + parent: 2 + - uid: 19715 components: - type: Transform - pos: -85.5,1.5 - parent: 89 - - uid: 15507 + rot: 3.141592653589793 rad + pos: -75.5,-5.5 + parent: 2 + - uid: 19716 components: - type: Transform - pos: -74.5,7.5 - parent: 89 - - uid: 15508 + pos: -80.5,-9.5 + parent: 2 + - uid: 19717 components: - type: Transform - pos: -73.5,7.5 - parent: 89 - - uid: 15512 + pos: -79.5,-9.5 + parent: 2 + - uid: 19718 components: - type: Transform - pos: -46.5,13.5 - parent: 89 - - uid: 15554 + pos: 6.5,-26.5 + parent: 2 + - uid: 19719 components: - type: Transform - pos: 16.5,12.5 - parent: 89 - - uid: 15689 + pos: 6.5,-25.5 + parent: 2 + - uid: 19720 components: - type: Transform - pos: 16.5,11.5 - parent: 89 - - uid: 15721 + pos: 7.5,-25.5 + parent: 2 + - uid: 19721 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - uid: 15866 + pos: 7.5,-26.5 + parent: 2 + - uid: 19722 components: - type: Transform - pos: -117.5,-15.5 - parent: 89 - - uid: 16408 + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 19723 components: - type: Transform - pos: -119.5,-15.5 - parent: 89 - - uid: 16409 + pos: 19.5,17.5 + parent: 2 + - uid: 19724 components: - type: Transform - pos: -118.5,-15.5 - parent: 89 - - uid: 16422 + pos: 58.5,-31.5 + parent: 2 + - uid: 19725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-13.5 - parent: 89 - - uid: 16439 + pos: -34.5,-14.5 + parent: 2 + - uid: 19726 components: - type: Transform - pos: -113.5,-4.5 - parent: 89 - - uid: 16463 + pos: -23.5,-6.5 + parent: 2 + - uid: 19727 components: - type: Transform - pos: -100.5,2.5 - parent: 89 - - uid: 16464 + pos: 55.5,-33.5 + parent: 2 + - uid: 19728 components: - type: Transform - pos: -99.5,2.5 - parent: 89 - - uid: 16604 + pos: 56.5,-33.5 + parent: 2 + - uid: 19729 components: - type: Transform - pos: -10.5,24.5 - parent: 89 - - uid: 16619 + pos: 57.5,-31.5 + parent: 2 + - uid: 19730 components: - type: Transform - pos: -11.5,24.5 - parent: 89 - - uid: 16718 + pos: -25.5,9.5 + parent: 2 + - uid: 19731 components: - type: Transform - pos: -115.5,13.5 - parent: 89 - - uid: 16864 + pos: -1.5,39.5 + parent: 2 + - uid: 19732 components: - type: Transform - pos: -3.5,-41.5 - parent: 89 - - type: Construction - edge: 0 - - uid: 16908 + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 19733 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 16930 + pos: 45.5,-37.5 + parent: 2 + - uid: 19734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 89 - - uid: 16931 + pos: 5.5,-1.5 + parent: 2 + - uid: 19735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-25.5 - parent: 89 - - uid: 16940 + pos: 3.5,-1.5 + parent: 2 + - uid: 19736 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 16941 + pos: -23.5,8.5 + parent: 2 + - uid: 26828 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 16956 + pos: -14.5,-24.5 + parent: 24450 +- proto: TargetClown + entities: + - uid: 19737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 89 - - uid: 16958 + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 2 +- proto: TargetHuman + entities: + - uid: 19738 components: - type: Transform - pos: -2.5,-28.5 - parent: 89 - - uid: 16959 + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 19739 components: - type: Transform - pos: -0.5,-28.5 - parent: 89 - - uid: 16962 + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 2 + - uid: 19740 components: - type: Transform - pos: -14.5,-21.5 - parent: 89 - - uid: 17166 + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 19741 components: - type: Transform - pos: -41.5,-12.5 - parent: 89 - - uid: 17176 + rot: -1.5707963267948966 rad + pos: 49.5,-19.5 + parent: 2 + - uid: 19742 components: - type: Transform - pos: -41.5,-10.5 - parent: 89 - - uid: 17180 + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 19743 components: - type: Transform - pos: -41.5,-11.5 - parent: 89 - - uid: 17298 + rot: -1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 2 +- proto: TearGasGrenade + entities: + - uid: 1125 components: - type: Transform - pos: -3.5,-1.5 - parent: 89 - - uid: 17299 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1126 components: - type: Transform - pos: -3.5,-2.5 - parent: 89 - - uid: 18295 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1127 components: - type: Transform - pos: 48.5,-28.5 - parent: 89 - - uid: 18318 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27309 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 - - uid: 18341 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27310 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 18442 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27311 components: - type: Transform - pos: -98.5,9.5 - parent: 89 - - uid: 18449 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27312 components: - type: Transform - pos: -126.5,16.5 - parent: 89 - - uid: 18450 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27313 components: - type: Transform - pos: -9.5,20.5 - parent: 89 - - uid: 18453 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TegCenter + entities: + - uid: 19744 components: - type: Transform - pos: -99.5,9.5 - parent: 89 - - uid: 18455 + pos: -115.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True +- proto: TegCirculator + entities: + - uid: 19745 components: - type: Transform - pos: -108.5,-19.5 - parent: 89 - - uid: 18456 + pos: -114.5,-20.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 19746 components: - type: Transform - pos: -107.5,-19.5 - parent: 89 - - uid: 19558 + pos: -111.5,-20.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 10854 components: - type: Transform - pos: -83.5,19.5 - parent: 89 - - uid: 19577 + pos: -111.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10855 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10856 components: - type: Transform - pos: -2.5,-41.5 - parent: 89 - - type: Construction - edge: 0 - - uid: 19594 + pos: -108.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10857 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10858 components: - type: Transform - pos: -126.5,-8.5 - parent: 89 - - uid: 19611 + pos: -112.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10859 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10860 components: - type: Transform - pos: -26.5,-22.5 - parent: 89 - - uid: 19612 + pos: -112.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10861 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10862 components: - type: Transform - pos: -26.5,-21.5 - parent: 89 - - uid: 19613 + pos: -109.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10863 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10864 components: - type: Transform - pos: -26.5,-19.5 - parent: 89 - - uid: 19725 + pos: -108.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10865 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10866 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 19813 + pos: -111.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10867 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10868 components: - type: Transform - pos: 28.5,13.5 - parent: 89 - - uid: 19830 + pos: -110.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10869 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10870 components: - type: Transform - pos: -126.5,17.5 - parent: 89 - - uid: 19876 + pos: -109.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10871 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10872 components: - type: Transform - pos: 22.5,36.5 - parent: 89 - - uid: 19877 + pos: -110.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10873 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24105 components: - type: Transform - pos: 22.5,35.5 - parent: 89 - - uid: 19878 + pos: 6.5,1.5 + parent: 23919 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 24106 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 26829 components: - type: Transform - pos: 26.5,37.5 - parent: 89 - - uid: 19879 + pos: -2.5,-17.5 + parent: 24450 +- proto: TelecomServerCircuitboard + entities: + - uid: 19747 components: - type: Transform - pos: 26.5,36.5 - parent: 89 - - uid: 19880 + rot: 1.5707963267948966 rad + pos: -102.92861,21.657013 + parent: 2 +- proto: Telecrystal5 + entities: + - uid: 19748 components: - type: Transform - pos: 25.5,36.5 - parent: 89 - - uid: 20078 + pos: -114.7323,20.73551 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 19749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,6.5 - parent: 89 - - uid: 20080 + rot: -1.5707963267948966 rad + pos: -117.5,-6.5 + parent: 2 + - uid: 19750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,5.5 - parent: 89 - - uid: 20383 + rot: -1.5707963267948966 rad + pos: -118.5,-7.5 + parent: 2 + - uid: 19751 components: - type: Transform - pos: 48.5,-24.5 - parent: 89 - - uid: 21062 + rot: -1.5707963267948966 rad + pos: -118.5,-6.5 + parent: 2 + - uid: 19752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 89 - - uid: 21088 + pos: -117.5,-5.5 + parent: 2 + - uid: 19753 components: - type: Transform - pos: -18.5,-0.5 - parent: 89 - - uid: 21362 + rot: -1.5707963267948966 rad + pos: -118.5,-5.5 + parent: 2 + - uid: 19754 components: - type: Transform - pos: 47.5,-28.5 - parent: 89 - - uid: 21366 + rot: -1.5707963267948966 rad + pos: -117.5,-7.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 19755 components: - type: Transform - pos: 46.5,-26.5 - parent: 89 - - uid: 21372 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 + - uid: 19756 components: - type: Transform - pos: 47.5,-24.5 - parent: 89 - - uid: 21513 + rot: -1.5707963267948966 rad + pos: -122.5,-5.5 + parent: 2 + - uid: 19757 components: - type: Transform - pos: 46.5,-24.5 - parent: 89 - - uid: 21755 + rot: -1.5707963267948966 rad + pos: -121.5,-5.5 + parent: 2 + - uid: 19758 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 89 - - uid: 21812 + pos: -121.5,-6.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 19759 components: - type: Transform - pos: 46.5,-28.5 - parent: 89 - - uid: 21827 + pos: -105.65808,-7.229766 + parent: 2 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 19760 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22204 + pos: -105.329956,-7.557891 + parent: 2 +- proto: Thruster + entities: + - uid: 19761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,-2.5 - parent: 89 - - uid: 22370 + pos: -152.5,-13.5 + parent: 2 + - uid: 19762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-27.5 - parent: 89 - - uid: 22414 + rot: 3.141592653589793 rad + pos: -136.5,-16.5 + parent: 2 + - uid: 19763 components: - type: Transform - pos: 54.5,-13.5 - parent: 89 - - uid: 24884 + rot: 3.141592653589793 rad + pos: -149.5,-16.5 + parent: 2 + - uid: 19764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 22565 - - uid: 24885 + rot: 1.5707963267948966 rad + pos: -152.5,-8.5 + parent: 2 + - uid: 19765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 22565 - - uid: 24886 + rot: 1.5707963267948966 rad + pos: -152.5,-2.5 + parent: 2 + - uid: 19766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,1.5 - parent: 22565 - - uid: 24887 + pos: -143.5,1.5 + parent: 2 + - uid: 19767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 22565 - - uid: 24888 + pos: -149.5,1.5 + parent: 2 + - uid: 19768 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,2.5 - parent: 22565 - - uid: 24889 + pos: -142.5,-16.5 + parent: 2 + - uid: 19769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 22565 - - uid: 24890 + pos: -136.5,1.5 + parent: 2 + - uid: 23879 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 22565 - - uid: 24891 + pos: 3.5,-13.5 + parent: 23711 + - uid: 23880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 22565 - - uid: 24892 + pos: 6.5,-2.5 + parent: 23711 + - uid: 23881 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 22565 - - uid: 24893 + pos: 4.5,-13.5 + parent: 23711 + - uid: 23882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 22565 - - uid: 24894 + pos: 0.5,-2.5 + parent: 23711 + - uid: 23883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,5.5 - parent: 22565 - - uid: 24895 + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 23711 + - uid: 23884 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 22565 - - uid: 24896 + pos: 2.5,-13.5 + parent: 23711 + - uid: 23885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 23711 + - uid: 24246 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 22565 - - uid: 24897 + pos: 1.5,-11.5 + parent: 23919 + - uid: 24247 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 22565 - - uid: 24898 + pos: 0.5,-11.5 + parent: 23919 + - uid: 24248 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 22565 - - uid: 24899 + pos: 7.5,-11.5 + parent: 23919 + - uid: 24249 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 23919 + - type: Thruster + thrust: 300 + - uid: 24250 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,5.5 - parent: 22565 - - uid: 24900 + pos: 8.5,-11.5 + parent: 23919 + - uid: 24251 components: - type: Transform - pos: -4.5,7.5 - parent: 22565 - - uid: 24901 + pos: 8.5,-2.5 + parent: 23919 + - type: Thruster + thrust: 300 + - uid: 24252 components: - type: Transform - pos: 1.5,7.5 - parent: 22565 - - uid: 24902 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 23919 + - uid: 24253 components: - type: Transform - pos: -5.5,7.5 - parent: 22565 - - uid: 24903 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 23919 + - uid: 24423 components: - type: Transform - pos: -3.5,7.5 - parent: 22565 - - uid: 24904 + pos: 2.5,0.5 + parent: 24340 + - uid: 24424 components: - type: Transform - pos: -18.5,7.5 - parent: 22565 - - uid: 24905 + pos: -1.5,0.5 + parent: 24340 + - uid: 24425 components: - type: Transform - pos: -19.5,7.5 - parent: 22565 - - uid: 24906 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 24340 + - uid: 24426 components: - type: Transform - pos: -0.5,7.5 - parent: 22565 - - uid: 24907 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 24340 + - uid: 24427 components: - type: Transform - pos: 0.5,7.5 - parent: 22565 - - uid: 24908 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 24340 + - uid: 24428 components: - type: Transform - pos: -20.5,7.5 - parent: 22565 - - uid: 24909 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 24340 + - uid: 26830 components: - type: Transform - pos: -23.5,7.5 - parent: 22565 - - uid: 24910 + rot: 3.141592653589793 rad + pos: -23.5,25.5 + parent: 24450 + - uid: 27898 components: - type: Transform - pos: -25.5,7.5 - parent: 22565 - - uid: 24911 + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 27260 + - uid: 27899 components: - type: Transform - pos: -24.5,7.5 - parent: 22565 - - uid: 24912 + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 27260 + - uid: 27900 components: - type: Transform - pos: 3.5,11.5 - parent: 22565 - - uid: 24913 + pos: -6.5,1.5 + parent: 27260 + - uid: 27901 components: - type: Transform - pos: 4.5,11.5 - parent: 22565 - - uid: 25575 + pos: 7.5,1.5 + parent: 27260 + - uid: 27902 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 18153 - - uid: 25677 + pos: -1.5,-15.5 + parent: 27260 + - uid: 27903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 89 - - uid: 25678 + pos: -7.5,-15.5 + parent: 27260 +- proto: TintedWindow + entities: + - uid: 19770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 89 - - uid: 25846 + pos: -2.5,11.5 + parent: 2 + - uid: 19771 components: - type: Transform - pos: -25.5,16.5 - parent: 89 -- proto: TableCarpet - entities: - - uid: 108 + pos: 5.5,15.5 + parent: 2 + - uid: 19772 components: - type: Transform - pos: -44.5,-17.5 - parent: 89 - - uid: 109 + pos: 6.5,15.5 + parent: 2 + - uid: 19773 components: - type: Transform - pos: -44.5,-16.5 - parent: 89 - - uid: 110 + pos: 1.5,9.5 + parent: 2 + - uid: 19774 components: - type: Transform - pos: -43.5,-17.5 - parent: 89 - - uid: 4688 + pos: 1.5,8.5 + parent: 2 + - uid: 19775 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 4690 + pos: -7.5,19.5 + parent: 2 + - uid: 19776 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 5416 + pos: -7.5,20.5 + parent: 2 + - uid: 19777 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 5424 + pos: -48.5,-5.5 + parent: 2 + - uid: 19778 components: - type: Transform - pos: -45.5,8.5 - parent: 89 - - uid: 7880 + pos: -38.5,-0.5 + parent: 2 + - uid: 19779 components: - type: Transform - pos: -7.5,41.5 - parent: 89 - - uid: 7881 + pos: 1.5,6.5 + parent: 2 + - uid: 19780 components: - type: Transform - pos: -7.5,40.5 - parent: 89 - - uid: 7886 + pos: 1.5,5.5 + parent: 2 + - uid: 19781 components: - type: Transform - pos: -6.5,40.5 - parent: 89 - - uid: 14628 + pos: -50.5,-5.5 + parent: 2 + - uid: 19782 components: - type: Transform - pos: -98.5,17.5 - parent: 89 - - uid: 14629 + pos: -52.5,-5.5 + parent: 2 + - uid: 19783 components: - type: Transform - pos: -97.5,17.5 - parent: 89 - - uid: 17289 + pos: -2.5,13.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 19784 components: - type: Transform - pos: -51.5,48.5 - parent: 89 - - uid: 17290 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - uid: 19785 components: - type: Transform - pos: -51.5,47.5 - parent: 89 - - uid: 18427 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,39.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,43.5 + parent: 2 + - uid: 19790 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 89 - - uid: 19998 + pos: -23.5,31.5 + parent: 2 + - uid: 19791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,33.5 - parent: 89 -- proto: TableCounterMetal - entities: - - uid: 920 + pos: -37.5,32.5 + parent: 2 + - uid: 19792 components: - type: Transform - pos: 54.5,4.5 - parent: 89 -- proto: TableCounterWood - entities: - - uid: 6036 + pos: 32.5,26.5 + parent: 2 + - uid: 19793 components: - type: Transform - pos: -52.5,8.5 - parent: 89 - - uid: 6037 + pos: 30.5,26.5 + parent: 2 + - uid: 19794 components: - type: Transform - pos: -52.5,7.5 - parent: 89 - - uid: 6146 + rot: 3.141592653589793 rad + pos: 49.5,-33.5 + parent: 2 + - uid: 19795 components: - type: Transform - pos: -76.5,-2.5 - parent: 89 - - uid: 7736 + rot: 3.141592653589793 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 19796 components: - type: Transform - pos: -1.5,45.5 - parent: 89 - - uid: 7737 + rot: 3.141592653589793 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 19797 components: - type: Transform - pos: -5.5,45.5 - parent: 89 - - uid: 7738 + rot: 3.141592653589793 rad + pos: 53.5,-33.5 + parent: 2 + - uid: 26831 components: - type: Transform - pos: -5.5,46.5 - parent: 89 - - uid: 7739 + pos: -13.5,-19.5 + parent: 24450 + - uid: 26832 components: - type: Transform - pos: -1.5,46.5 - parent: 89 - - uid: 7740 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 24450 + - uid: 26833 components: - type: Transform - pos: -1.5,44.5 - parent: 89 - - uid: 7743 + rot: 1.5707963267948966 rad + pos: -35.5,3.5 + parent: 24450 +- proto: ToiletEmpty + entities: + - uid: 19798 components: - type: Transform - pos: -5.5,44.5 - parent: 89 - - uid: 9989 + pos: 41.5,17.5 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 26834 components: - type: Transform - pos: -52.5,9.5 - parent: 89 - - uid: 14725 + pos: -5.469696,-16.3815 + parent: 24450 +- proto: ToolboxElectricalFilled + entities: + - uid: 19799 components: - type: Transform - pos: 8.5,-20.5 - parent: 89 - - uid: 14726 + pos: -111.51774,-13.59309 + parent: 2 + - uid: 19800 components: - type: Transform - pos: 8.5,-22.5 - parent: 89 - - uid: 25682 + pos: -16.5,-23.5 + parent: 2 + - uid: 19801 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 25683 + pos: -13.5,-23.5 + parent: 2 + - uid: 19802 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 -- proto: TableFrame - entities: - - uid: 7901 + pos: -96.50371,-1.402104 + parent: 2 + - uid: 19803 components: - type: Transform - pos: -6.5,41.5 - parent: 89 - - uid: 8035 + pos: -90.46701,13.116728 + parent: 2 + - uid: 19804 components: - type: Transform - pos: 2.5,37.5 - parent: 89 -- proto: TableGlass - entities: - - uid: 80 + pos: -115.52165,6.6174526 + parent: 2 + - uid: 19805 components: - type: Transform - pos: -13.5,-15.5 - parent: 89 - - uid: 85 + pos: 55.445694,-1.2600117 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: -114.47441,-12.468628 + parent: 2 + - uid: 24254 + components: + - type: Transform + pos: 6.430176,1.8029289 + parent: 23919 + - uid: 26835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.060518,7.6108303 + parent: 24450 + - uid: 26836 components: - type: Transform - pos: -16.5,-15.5 - parent: 89 - - uid: 86 + rot: -1.5707963267948966 rad + pos: 5.3748856,2.002956 + parent: 24450 +- proto: ToolboxEmergencyFilled + entities: + - uid: 19807 components: - type: Transform - pos: -15.5,-15.5 - parent: 89 - - uid: 87 + pos: -1.5040388,-1.8151927 + parent: 2 + - uid: 19808 components: - type: Transform - pos: -14.5,-15.5 - parent: 89 - - uid: 2091 + pos: -35.505363,5.63023 + parent: 2 + - uid: 19809 components: - type: Transform - pos: -133.5,-2.5 - parent: 89 - - uid: 5780 + pos: -94.388885,17.812685 + parent: 2 + - uid: 19810 components: - type: Transform - pos: -27.5,24.5 - parent: 89 - - uid: 5783 + pos: -46.504913,13.563406 + parent: 2 + - uid: 19811 components: - type: Transform - pos: -27.5,23.5 - parent: 89 - - uid: 8033 + pos: -100.41629,2.6556427 + parent: 2 + - uid: 19812 components: - type: Transform - pos: 3.5,37.5 - parent: 89 - - uid: 8034 + pos: -57.107525,12.612295 + parent: 2 + - uid: 19813 components: - type: Transform - pos: 1.5,37.5 - parent: 89 - - uid: 8036 + pos: 56.070694,-1.3381367 + parent: 2 + - uid: 26837 components: - type: Transform - pos: 0.5,37.5 - parent: 89 - - uid: 10153 + rot: -1.5707963267948966 rad + pos: -29.602055,1.9329305 + parent: 24450 +- proto: ToolboxGoldFilled + entities: + - uid: 19814 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 10156 + rot: -1.5707963267948966 rad + pos: 50.29707,-2.3414707 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 19815 components: - type: Transform - pos: -32.5,21.5 - parent: 89 - - uid: 10157 + pos: -6.4346533,-18.417767 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 19816 components: - type: Transform - pos: -31.5,21.5 - parent: 89 -- proto: TablePlasmaGlass - entities: - - uid: 2560 + pos: -111.48105,-13.2261715 + parent: 2 + - uid: 19817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-24.5 - parent: 89 - - uid: 6897 + pos: 42.93365,-4.077855 + parent: 2 + - uid: 19818 components: - type: Transform - pos: -103.5,11.5 - parent: 89 - - uid: 10202 + pos: -19.52074,-23.483624 + parent: 2 + - uid: 19819 components: - type: Transform - pos: -27.5,27.5 - parent: 89 - - uid: 10203 + pos: -96.50371,-1.870854 + parent: 2 + - uid: 19820 components: - type: Transform - pos: -27.5,28.5 - parent: 89 - - uid: 11214 + pos: -55.47563,5.573606 + parent: 2 + - uid: 19821 components: - type: Transform - pos: -4.5,-27.5 - parent: 89 - - uid: 12182 + pos: 55.46132,-1.4631367 + parent: 2 + - uid: 19822 components: - type: Transform - pos: -4.5,-28.5 - parent: 89 - - uid: 16416 + pos: -115.52165,6.4195633 + parent: 2 + - uid: 23886 components: - type: Transform - pos: -5.5,-27.5 - parent: 89 -- proto: TableReinforced - entities: - - uid: 47 + pos: 4.633088,-11.60843 + parent: 23711 + - uid: 26838 components: - type: Transform - pos: -24.5,-3.5 - parent: 89 - - uid: 48 + rot: -1.5707963267948966 rad + pos: -24.092844,7.5518336 + parent: 24450 +- proto: ToyAi + entities: + - uid: 19823 components: - type: Transform - pos: -23.5,-3.5 - parent: 89 - - uid: 49 + pos: 54.502815,4.6506104 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 19824 components: + - type: MetaData + desc: Перед плазма спамом спроси разрешения в АХ! + name: Упси Дупси - type: Transform - pos: -22.5,-3.5 - parent: 89 - - uid: 50 + pos: -88.41348,-27.304625 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 19825 components: - type: Transform - pos: -22.5,-2.5 - parent: 89 - - uid: 51 + pos: -50.441475,-15.588876 + parent: 2 +- proto: ToyHammer + entities: + - uid: 19826 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 52 + pos: 19.439804,-18.471947 + parent: 2 +- proto: ToyIan + entities: + - uid: 19827 components: - type: Transform - pos: 36.5,6.5 - parent: 89 - - uid: 124 + pos: -34.496696,29.825691 + parent: 2 + - uid: 19828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - uid: 132 + pos: -34.69982,27.653816 + parent: 2 + - uid: 19829 components: - type: Transform - pos: -16.5,-5.5 - parent: 89 - - uid: 133 + pos: -34.277946,27.622566 + parent: 2 + - uid: 19830 components: - type: Transform - pos: -16.5,-4.5 - parent: 89 - - uid: 134 + pos: -34.434196,28.028816 + parent: 2 + - uid: 19831 components: - type: Transform - pos: -16.5,-3.5 - parent: 89 - - uid: 135 + pos: -34.746696,28.185066 + parent: 2 + - uid: 19832 components: - type: Transform - pos: -16.5,-2.5 - parent: 89 - - uid: 136 + pos: -32.19982,29.419441 + parent: 2 + - uid: 19833 components: - type: Transform - pos: -16.5,-1.5 - parent: 89 - - uid: 309 + pos: -34.50212,28.551262 + parent: 2 +- proto: ToyMarauder + entities: + - uid: 19834 components: + - type: MetaData + desc: Мародёр с позывным "кочевник", получил огромную огласку после вторжение ксеносов на одну из колоний, где он участвовал как защитник. + name: игрушечный no_mad - type: Transform - pos: -10.5,-2.5 - parent: 89 - - uid: 310 + pos: 35.949993,14.835531 + parent: 2 +- proto: ToyMouse + entities: + - uid: 19835 components: - type: Transform - pos: -10.5,-3.5 - parent: 89 - - uid: 311 + pos: 16.494328,25.730711 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 19836 components: - type: Transform - pos: -10.5,-4.5 - parent: 89 - - uid: 388 + pos: 7.5,-28.5 + parent: 2 +- proto: ToySpawner + entities: + - uid: 19837 components: - type: Transform - pos: 57.5,2.5 - parent: 89 - - uid: 389 + pos: -43.5,-15.5 + parent: 2 + - uid: 19838 components: - type: Transform - pos: 59.5,2.5 - parent: 89 - - uid: 391 + pos: 17.5,25.5 + parent: 2 + - uid: 19839 components: - type: Transform - pos: 57.5,6.5 - parent: 89 - - uid: 392 + pos: -50.5,21.5 + parent: 2 + - uid: 19840 components: - type: Transform - pos: 59.5,6.5 - parent: 89 - - uid: 398 + pos: 21.5,17.5 + parent: 2 + - uid: 19841 components: - type: Transform - pos: 65.5,10.5 - parent: 89 - - uid: 399 + pos: -26.5,-24.5 + parent: 2 + - uid: 19842 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 400 + pos: 31.5,-3.5 + parent: 2 +- proto: TrackingImplanter + entities: + - uid: 604 components: - type: Transform - pos: 63.5,0.5 - parent: 89 - - uid: 401 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 605 components: - type: Transform - pos: 65.5,13.5 - parent: 89 - - uid: 402 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19843 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - uid: 403 + pos: 23.598495,27.541094 + parent: 2 + - uid: 19844 components: - type: Transform - pos: 63.5,5.5 - parent: 89 - - uid: 408 + pos: 23.629745,27.478594 + parent: 2 +- proto: TrashBag + entities: + - uid: 19845 components: - type: Transform - pos: 56.5,10.5 - parent: 89 - - uid: 409 + pos: -41.482098,7.89655 + parent: 2 + - uid: 19846 components: - type: Transform - pos: 55.5,10.5 - parent: 89 - - uid: 410 + pos: -41.732098,7.880925 + parent: 2 + - uid: 19847 components: - type: Transform - pos: 53.5,15.5 - parent: 89 - - uid: 411 + pos: -41.622723,7.662175 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 19848 components: - type: Transform - pos: 54.5,15.5 - parent: 89 - - uid: 412 + pos: -34.49477,-4.576667 + parent: 2 + - uid: 19849 components: - type: Transform - pos: 57.5,15.5 - parent: 89 - - uid: 413 + pos: 36.5316,-4.602179 + parent: 2 +- proto: trayScanner + entities: + - uid: 19850 components: - type: Transform - pos: 58.5,15.5 - parent: 89 - - uid: 616 + pos: -115.65394,2.6449199 + parent: 2 + - uid: 19851 components: - type: Transform - pos: 37.5,-12.5 - parent: 89 - - uid: 928 + pos: -105.63304,0.7137947 + parent: 2 + - uid: 19852 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - uid: 961 + pos: -105.19554,0.6044197 + parent: 2 + - uid: 19853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 1053 + pos: -9.853606,-35.779358 + parent: 2 + - uid: 19854 components: - type: Transform - pos: 43.5,-9.5 - parent: 89 - - uid: 1057 + pos: -119.6608,11.784174 + parent: 2 + - uid: 19855 components: - type: Transform - pos: 65.5,-1.5 - parent: 89 - - uid: 1058 + pos: -119.30142,11.612299 + parent: 2 + - uid: 19856 components: - type: Transform - pos: 58.5,-6.5 - parent: 89 - - uid: 1059 + pos: 17.648815,-0.8417225 + parent: 2 + - uid: 19857 components: - type: Transform - pos: 57.5,-6.5 - parent: 89 - - uid: 1067 + pos: 17.648815,-0.8573475 + parent: 2 + - uid: 19858 components: - type: Transform - pos: 54.5,-6.5 - parent: 89 - - uid: 1194 + pos: 17.648815,-0.8573475 + parent: 2 + - uid: 19859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 89 - - uid: 1355 + pos: -115.28436,2.6449199 + parent: 2 +- proto: Truncheon + entities: + - uid: 24546 components: - type: Transform - pos: -22.5,-14.5 - parent: 89 - - uid: 1356 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24547 components: - type: Transform - pos: -1.5,19.5 - parent: 89 - - uid: 1566 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TurboItemRecharger + entities: + - uid: 24255 components: - type: Transform - pos: 41.5,-9.5 - parent: 89 - - uid: 1663 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 89 - - uid: 1684 + pos: 4.5,3.5 + parent: 23919 +- proto: TwoWayLever + entities: + - uid: 19860 components: + - type: MetaData + name: рычаг конвеерной ленты под вратами - type: Transform - pos: 41.5,9.5 - parent: 89 - - uid: 1860 + pos: -51.5,-17.5 + parent: 2 + - uid: 19861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 89 - - uid: 2054 + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9159: + - Left: Forward + - Right: Reverse + - Middle: Off + 9160: + - Left: Forward + - Right: Reverse + - Middle: Off + 9161: + - Left: Forward + - Right: Reverse + - Middle: Off + 9162: + - Left: Forward + - Right: Reverse + - Middle: Off + 9163: + - Left: Forward + - Right: Reverse + - Middle: Off + 9154: + - Middle: Off + - Right: Forward + - Left: Reverse + 9155: + - Middle: Off + - Right: Forward + - Left: Reverse + 9156: + - Middle: Off + - Right: Forward + - Left: Reverse + 9157: + - Middle: Off + - Right: Forward + - Left: Reverse + 9158: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 19862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 89 - - uid: 2064 + pos: -65.5,-4.5 + parent: 2 + - uid: 19863 components: - type: Transform - pos: 40.5,10.5 - parent: 89 - - uid: 2602 + pos: -60.5,-4.5 + parent: 2 + - uid: 19864 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - uid: 2605 + pos: -96.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17784: + - Left: Forward + - Right: Reverse + - Middle: Off + 9181: + - Left: Forward + - Right: Reverse + - Middle: Off + 9171: + - Left: Forward + - Right: Reverse + - Middle: Off + 9176: + - Left: Forward + - Right: Reverse + - Middle: Off + 9153: + - Left: Forward + - Right: Reverse + - Middle: Off + 9175: + - Left: Forward + - Right: Reverse + - Middle: Off + 9174: + - Left: Forward + - Right: Reverse + - Middle: Off + 9172: + - Left: Forward + - Right: Reverse + - Middle: Off + 9173: + - Left: Forward + - Right: Reverse + - Middle: Off + 9179: + - Left: Forward + - Right: Reverse + - Middle: Off + 9178: + - Left: Forward + - Right: Reverse + - Middle: Off + 9177: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26839 components: - type: Transform - pos: -88.5,-13.5 - parent: 89 - - uid: 2606 + pos: -5.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25728: + - Left: Forward + - Right: Reverse + - Middle: Off + 25726: + - Left: Forward + - Right: Reverse + - Middle: Off + 25727: + - Left: Forward + - Right: Reverse + - Middle: Off + 25725: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26840 components: - type: Transform - pos: -87.5,-13.5 - parent: 89 - - uid: 2631 + pos: 1.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25737: + - Left: Forward + - Right: Reverse + - Middle: Off + 25738: + - Left: Forward + - Right: Reverse + - Middle: Off + 25739: + - Left: Forward + - Right: Reverse + - Middle: Off + 25740: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26841 components: - type: Transform - pos: 56.5,-1.5 - parent: 89 - - uid: 2633 + pos: -3.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25729: + - Left: Forward + - Right: Reverse + - Middle: Off + 25730: + - Left: Forward + - Right: Reverse + - Middle: Off + 25731: + - Left: Forward + - Right: Reverse + - Middle: Off + 25732: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26842 components: - type: Transform - pos: 55.5,-1.5 - parent: 89 - - uid: 2728 + pos: -0.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25736: + - Left: Forward + - Right: Reverse + - Middle: Off + 25735: + - Left: Forward + - Right: Reverse + - Middle: Off + 25734: + - Left: Forward + - Right: Reverse + - Middle: Off + 25733: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26843 components: - type: Transform - pos: -85.5,-13.5 - parent: 89 - - uid: 2729 + pos: -18.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25709: + - Left: Forward + - Right: Reverse + - Middle: Off + 25714: + - Left: Forward + - Right: Reverse + - Middle: Off + 25713: + - Left: Forward + - Right: Reverse + - Middle: Off + 25715: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26844 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - uid: 2872 + pos: -20.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25712: + - Left: Forward + - Right: Reverse + - Middle: Off + 25716: + - Left: Forward + - Right: Reverse + - Middle: Off + 25710: + - Left: Forward + - Right: Reverse + - Middle: Off + 25711: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 89 - - uid: 2897 + pos: -23.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25718: + - Left: Forward + - Right: Reverse + - Middle: Off + 25717: + - Left: Forward + - Right: Reverse + - Middle: Off + 25719: + - Left: Forward + - Right: Reverse + - Middle: Off + 25724: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 89 - - uid: 2903 + pos: -25.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25720: + - Left: Forward + - Right: Reverse + - Middle: Off + 25723: + - Left: Forward + - Right: Reverse + - Middle: Off + 25722: + - Left: Forward + - Right: Reverse + - Middle: Off + 25721: + - Left: Forward + - Right: Reverse + - Middle: Off + 26684: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 19865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 89 - - uid: 2904 + pos: 42.5,7.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 9231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 89 - - uid: 2905 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorGreen + entities: + - uid: 9232 components: - type: Transform - pos: 37.5,3.5 - parent: 89 - - uid: 2913 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorPurple + entities: + - uid: 9233 components: - type: Transform - pos: -25.5,-3.5 - parent: 89 - - uid: 2914 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UprightPianoInstrument + entities: + - uid: 19866 components: - type: Transform - pos: -26.5,-3.5 - parent: 89 - - uid: 2936 + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 19867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 89 - - uid: 3002 + rot: 1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 24257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 89 - - uid: 3005 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 + - uid: 24258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 89 - - uid: 3103 + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 23919 +- proto: UraniumWindoorSecureCentralCommandLocked + entities: + - uid: 24259 components: - type: Transform - pos: 47.5,-1.5 - parent: 89 - - uid: 3104 + pos: 6.5,-7.5 + parent: 23919 + - uid: 24260 components: - type: Transform - pos: 50.5,-5.5 - parent: 89 - - uid: 3105 + pos: 5.5,-7.5 + parent: 23919 +- proto: UraniumWindowDirectional + entities: + - uid: 19868 components: - type: Transform - pos: 50.5,-4.5 - parent: 89 - - uid: 3106 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 19869 components: - type: Transform - pos: 47.5,-5.5 - parent: 89 - - uid: 3165 + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 19870 components: - type: Transform - pos: 25.5,-3.5 - parent: 89 - - uid: 3274 + pos: -6.5,-5.5 + parent: 2 + - uid: 19871 components: - type: Transform - pos: 54.5,2.5 - parent: 89 - - uid: 3296 + pos: -3.5,-5.5 + parent: 2 + - uid: 19872 components: - type: Transform - pos: 48.5,-1.5 - parent: 89 - - uid: 3358 + pos: -6.5,-8.5 + parent: 2 + - uid: 19873 components: - type: Transform - pos: 54.5,6.5 - parent: 89 - - uid: 3360 + pos: -9.5,-5.5 + parent: 2 + - uid: 19874 components: - type: Transform - pos: -5.5,-36.5 - parent: 89 - - uid: 3971 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 19875 components: - type: Transform - pos: -0.5,19.5 - parent: 89 - - uid: 4040 + pos: -5.5,-5.5 + parent: 2 + - uid: 19876 components: - type: Transform - pos: 17.5,-0.5 - parent: 89 - - uid: 4201 + pos: -7.5,-5.5 + parent: 2 + - uid: 19877 components: - type: Transform - pos: 15.5,-6.5 - parent: 89 - - uid: 4202 + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 19878 components: - type: Transform - pos: 15.5,-7.5 - parent: 89 - - uid: 4341 + pos: 7.5,29.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 19879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 89 - - uid: 4486 + pos: -1.4158952,-41.295216 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 19880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 89 - - uid: 4519 + pos: -31.5,0.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 19881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 89 - - uid: 4523 + pos: -96.5,-10.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 19882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 89 - - uid: 5001 + pos: -35.5,14.5 + parent: 2 + - uid: 19883 components: - type: Transform - pos: -63.5,-3.5 - parent: 89 - - uid: 5002 + pos: -26.5,-0.5 + parent: 2 + - uid: 19884 components: - type: Transform - pos: -62.5,-3.5 - parent: 89 - - uid: 5221 + pos: 46.5,11.5 + parent: 2 + - uid: 19885 components: - type: Transform - pos: 28.5,-5.5 - parent: 89 - - uid: 5316 + pos: 1.5,46.5 + parent: 2 + - uid: 19886 components: - type: Transform - pos: 21.5,-2.5 - parent: 89 - - uid: 5619 + pos: -8.5,46.5 + parent: 2 + - uid: 19887 components: - type: Transform - pos: -4.5,8.5 - parent: 89 - - uid: 5633 + pos: -55.5,48.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 19888 components: - type: Transform - pos: -15.5,7.5 - parent: 89 - - uid: 6141 + pos: -66.5,-17.5 + parent: 2 + - uid: 19889 components: - type: Transform - pos: -6.5,27.5 - parent: 89 - - uid: 6153 + pos: -71.5,-9.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 19890 components: - type: Transform - pos: 19.5,-1.5 - parent: 89 - - uid: 6154 + pos: 44.5,10.5 + parent: 2 +- proto: VendingMachineChang + entities: + - uid: 19891 components: - type: Transform - pos: 17.5,-1.5 - parent: 89 - - uid: 6155 + pos: -51.5,-9.5 + parent: 2 + - uid: 19892 components: - type: Transform - pos: 19.5,-0.5 - parent: 89 - - uid: 6163 + pos: -2.5,37.5 + parent: 2 + - uid: 19893 components: - type: Transform - pos: -20.5,5.5 - parent: 89 - - uid: 6164 + pos: -28.5,21.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 19894 components: - type: Transform - pos: -19.5,5.5 - parent: 89 - - uid: 6165 + pos: -48.5,-6.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 19895 components: - type: Transform - pos: -20.5,7.5 - parent: 89 - - uid: 6166 + pos: -15.5,-9.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 19896 components: - type: Transform - pos: -16.5,8.5 - parent: 89 - - uid: 6796 + pos: -12.5,-5.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 19897 components: - type: Transform - pos: -44.5,2.5 - parent: 89 - - uid: 6804 + pos: 2.5,5.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 19898 components: - type: Transform - pos: -45.5,0.5 - parent: 89 - - uid: 6805 + pos: 3.5,5.5 + parent: 2 + - uid: 27904 components: - type: Transform - pos: -45.5,1.5 - parent: 89 - - uid: 6884 + pos: -5.5,-11.5 + parent: 27260 +- proto: VendingMachineChemicalsSyndicate + entities: + - uid: 19899 components: - type: Transform - pos: -105.5,9.5 - parent: 89 - - uid: 6885 + pos: -87.5,30.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 19900 components: - type: Transform - pos: -104.5,9.5 - parent: 89 - - uid: 6886 + pos: -55.5,26.5 + parent: 2 + - uid: 19901 components: - type: Transform - pos: -103.5,9.5 - parent: 89 - - uid: 6958 + pos: -63.5,31.5 + parent: 2 + - uid: 19902 components: - type: Transform - pos: -103.5,-2.5 - parent: 89 - - uid: 6959 + pos: -63.5,39.5 + parent: 2 + - uid: 19903 components: - type: Transform - pos: -102.5,-2.5 - parent: 89 - - uid: 6960 + pos: -85.5,45.5 + parent: 2 + - uid: 19904 components: - type: Transform - pos: -101.5,-2.5 - parent: 89 - - uid: 6961 + pos: -29.5,5.5 + parent: 2 + - uid: 19905 components: - type: Transform - pos: -100.5,-2.5 - parent: 89 - - uid: 6972 + pos: -58.5,12.5 + parent: 2 + - uid: 19906 components: - type: Transform - pos: -104.5,0.5 - parent: 89 - - uid: 6973 + pos: -52.5,5.5 + parent: 2 + - uid: 19907 components: - type: Transform - pos: -105.5,0.5 - parent: 89 - - uid: 7336 + pos: -53.5,5.5 + parent: 2 + - uid: 19908 components: - type: Transform - pos: -3.5,6.5 - parent: 89 - - uid: 8094 + pos: 36.5,3.5 + parent: 2 + - uid: 19909 components: - type: Transform - pos: -85.5,11.5 - parent: 89 - - uid: 8095 + pos: -33.5,15.5 + parent: 2 + - uid: 19910 components: - type: Transform - pos: -87.5,14.5 - parent: 89 - - uid: 8096 + pos: 1.5,-22.5 + parent: 2 + - uid: 19911 components: - type: Transform - pos: -86.5,14.5 - parent: 89 - - uid: 8157 + pos: 15.5,-5.5 + parent: 2 + - uid: 19912 components: - type: Transform - pos: -61.5,8.5 - parent: 89 - - uid: 8160 + pos: -23.5,-8.5 + parent: 2 + - uid: 19913 components: - type: Transform - pos: -58.5,7.5 - parent: 89 - - uid: 8161 + pos: -67.5,1.5 + parent: 2 + - uid: 19914 components: - type: Transform - pos: -59.5,7.5 - parent: 89 - - uid: 8241 + pos: -8.5,33.5 + parent: 2 + - uid: 19915 components: - type: Transform - pos: -58.5,21.5 - parent: 89 - - uid: 8245 + pos: -18.5,-10.5 + parent: 2 + - uid: 19916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,22.5 - parent: 89 - - uid: 8246 + pos: -69.5,-5.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 19917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,22.5 - parent: 89 - - uid: 8387 + pos: -95.5,12.5 + parent: 2 + - uid: 19918 components: - type: Transform - pos: -8.5,-15.5 - parent: 89 - - uid: 8399 + pos: -33.5,21.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 19919 components: - type: Transform - pos: 40.5,-9.5 - parent: 89 - - uid: 8920 + pos: 1.5,-6.5 + parent: 2 + - uid: 19920 components: - type: Transform - pos: 9.5,20.5 - parent: 89 - - uid: 9021 + pos: 1.5,-21.5 + parent: 2 + - uid: 19921 components: - type: Transform - pos: -105.5,21.5 - parent: 89 - - uid: 9022 + pos: 31.5,16.5 + parent: 2 + - uid: 19922 components: - type: Transform - pos: -104.5,21.5 - parent: 89 - - uid: 9023 + pos: -51.5,11.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 19923 components: - type: Transform - pos: -103.5,21.5 - parent: 89 - - uid: 9024 + pos: -18.5,-0.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 19924 components: - type: Transform - pos: -102.5,21.5 - parent: 89 - - uid: 9026 + pos: 16.5,8.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 19925 components: - type: Transform - pos: -111.5,21.5 - parent: 89 - - uid: 9027 + pos: -11.5,-5.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 19926 components: - type: Transform - pos: -110.5,21.5 - parent: 89 - - uid: 9795 + pos: -58.5,1.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 19927 components: - type: Transform - pos: -55.5,32.5 - parent: 89 - - uid: 9816 + pos: -98.5,0.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 19928 components: - type: Transform - pos: 44.5,-15.5 - parent: 89 - - uid: 9873 + pos: 21.5,-1.5 + parent: 2 + - uid: 19929 components: - type: Transform - pos: -55.5,33.5 - parent: 89 - - uid: 9874 + pos: -99.5,0.5 + parent: 2 + - uid: 24261 components: - type: Transform - pos: -55.5,34.5 - parent: 89 - - uid: 9917 + pos: 1.5,1.5 + parent: 23919 +- proto: VendingMachineGames + entities: + - uid: 19930 components: - type: Transform - pos: -54.5,38.5 - parent: 89 - - uid: 9919 + pos: -47.5,7.5 + parent: 2 + - uid: 19931 components: - type: Transform - pos: -54.5,43.5 - parent: 89 - - uid: 9920 + pos: -75.5,-8.5 + parent: 2 + - uid: 19932 components: - type: Transform - pos: -54.5,42.5 - parent: 89 - - uid: 9921 + pos: -71.5,7.5 + parent: 2 + - uid: 19933 components: - type: Transform - pos: -54.5,41.5 - parent: 89 - - uid: 10015 + pos: 55.5,-28.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 19934 components: - type: Transform - pos: -52.5,41.5 - parent: 89 - - uid: 10016 + pos: -33.5,-5.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 19935 components: - type: Transform - pos: -52.5,45.5 - parent: 89 - - uid: 10518 + pos: -3.5,-6.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 19936 components: - type: Transform - pos: -83.5,16.5 - parent: 89 - - uid: 10548 + pos: -35.5,8.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 19937 components: - type: Transform - pos: -84.5,17.5 - parent: 89 - - uid: 10549 + pos: -72.5,-7.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 19938 components: - type: Transform - pos: -85.5,17.5 - parent: 89 - - uid: 10797 + pos: -2.5,21.5 + parent: 2 + - uid: 19939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,5.5 - parent: 89 - - uid: 10872 + pos: 8.5,14.5 + parent: 2 + - uid: 19940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 - - uid: 10963 + pos: 11.5,34.5 + parent: 2 + - uid: 19941 components: - type: Transform - pos: -1.5,10.5 - parent: 89 - - uid: 11084 + pos: -4.5,21.5 + parent: 2 + - uid: 27905 components: - type: Transform - pos: -1.5,19.5 - parent: 89 - - uid: 11912 + pos: -3.5,-8.5 + parent: 27260 +- proto: VendingMachineMediDrobe + entities: + - uid: 19942 components: - type: Transform - pos: -2.5,19.5 - parent: 89 - - uid: 12619 + pos: 30.5,20.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 19943 components: - type: Transform - pos: 31.5,18.5 - parent: 89 - - uid: 12636 + pos: -5.5,-0.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 19944 components: - type: Transform - pos: 30.5,18.5 - parent: 89 - - uid: 12638 + pos: -11.5,-23.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 19945 components: - type: Transform - pos: 32.5,20.5 - parent: 89 - - uid: 12642 + pos: -11.5,-16.5 + parent: 2 + - uid: 19946 components: - type: Transform - pos: 33.5,20.5 - parent: 89 - - uid: 12656 + pos: -21.5,-20.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 19947 components: - type: Transform - pos: 5.5,16.5 - parent: 89 - - uid: 12664 + pos: -52.5,-14.5 + parent: 2 + - uid: 19948 components: - type: Transform - pos: 8.5,18.5 - parent: 89 - - uid: 12668 + pos: -58.5,-17.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 19949 components: - type: Transform - pos: 6.5,16.5 - parent: 89 - - uid: 14032 + pos: -11.5,-19.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 19950 components: - type: Transform - pos: 44.5,-16.5 - parent: 89 - - uid: 14110 + pos: 39.5,-4.5 + parent: 2 + - uid: 19951 components: - type: Transform - pos: 65.5,-4.5 - parent: 89 - - uid: 14112 + pos: 23.5,-6.5 + parent: 2 + - uid: 24262 components: - type: Transform - pos: 42.5,-9.5 - parent: 89 - - uid: 14119 + pos: 6.5,-7.5 + parent: 23919 + - uid: 27906 components: - type: Transform - pos: 53.5,-6.5 - parent: 89 - - uid: 14660 + pos: 2.5,-6.5 + parent: 27260 +- proto: VendingMachineSecDrobe + entities: + - uid: 19952 components: - type: Transform - pos: 44.5,-14.5 - parent: 89 - - uid: 14796 + pos: -18.5,9.5 + parent: 2 + - uid: 19953 components: - type: Transform - pos: 44.5,-13.5 - parent: 89 - - uid: 14797 + pos: -88.5,12.5 + parent: 2 + - uid: 19954 components: - type: Transform - pos: 44.5,-12.5 - parent: 89 - - uid: 14853 + pos: 22.5,-6.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 19955 components: - type: Transform - pos: -2.5,5.5 - parent: 89 - - uid: 14891 + pos: -4.5,-0.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 19956 components: - type: Transform - pos: 44.5,-11.5 - parent: 89 - - uid: 15038 + pos: -33.5,9.5 + parent: 2 + - uid: 19957 components: - type: Transform - pos: -0.5,9.5 - parent: 89 - - uid: 15079 + pos: -1.5,-4.5 + parent: 2 + - uid: 19958 components: - type: Transform - pos: -0.5,20.5 - parent: 89 - - uid: 15297 + pos: -108.5,-9.5 + parent: 2 + - uid: 19959 components: - type: Transform - pos: 19.5,23.5 - parent: 89 - - uid: 15299 + pos: 36.5,10.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 19960 components: - type: Transform - pos: 46.5,12.5 - parent: 89 - - uid: 15392 + pos: 50.5,-27.5 + parent: 2 + - uid: 19961 components: - type: Transform - pos: 5.5,30.5 - parent: 89 - - uid: 15423 + pos: 36.5,-12.5 + parent: 2 + - uid: 19962 components: - type: Transform - pos: 9.5,42.5 - parent: 89 - - uid: 15436 + pos: 40.5,-22.5 + parent: 2 + - uid: 19963 components: - type: Transform - pos: 10.5,42.5 - parent: 89 - - uid: 15441 + pos: 51.5,-27.5 + parent: 2 + - uid: 19964 components: - type: Transform - pos: 5.5,29.5 - parent: 89 - - uid: 15480 + pos: 34.5,-7.5 + parent: 2 + - uid: 19965 components: - type: Transform - pos: 5.5,32.5 - parent: 89 - - uid: 15575 + pos: 15.5,-10.5 + parent: 2 + - uid: 23887 components: - type: Transform - pos: 5.5,34.5 - parent: 89 - - uid: 15723 + pos: 5.5,-9.5 + parent: 23711 + - uid: 26847 components: - type: Transform - pos: -4.5,7.5 - parent: 89 - - uid: 15910 + pos: -27.5,-0.5 + parent: 24450 + - uid: 26848 components: - type: Transform - pos: 17.5,23.5 - parent: 89 - - uid: 15990 + pos: 3.5,-0.5 + parent: 24450 + - uid: 26849 components: - type: Transform - pos: 18.5,23.5 - parent: 89 - - uid: 16134 + pos: 3.5,0.5 + parent: 24450 + - uid: 26850 components: - type: Transform - pos: 5.5,33.5 - parent: 89 - - uid: 16185 + pos: -27.5,0.5 + parent: 24450 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 19966 components: - type: Transform - pos: 6.5,37.5 - parent: 89 - - uid: 16413 + pos: 16.5,34.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 19967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,18.5 - parent: 89 - - uid: 16885 + pos: -130.5,-0.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 19968 components: - type: Transform - pos: 49.5,-5.5 - parent: 89 - - uid: 17004 + pos: 31.5,9.5 + parent: 2 + - uid: 19969 components: - type: Transform - pos: 35.5,-0.5 - parent: 89 - - uid: 17006 + pos: -97.5,-12.5 + parent: 2 + - uid: 19970 components: - type: Transform - pos: 11.5,-8.5 - parent: 89 - - uid: 17128 + pos: 32.5,9.5 + parent: 2 + - uid: 19971 components: - type: Transform - pos: 44.5,-9.5 - parent: 89 - - uid: 17164 + pos: -93.5,-7.5 + parent: 2 + - uid: 19972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 89 - - uid: 17167 + pos: -46.5,-17.5 + parent: 2 + - uid: 19973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 89 - - uid: 17603 + pos: -96.5,0.5 + parent: 2 + - uid: 19974 components: - type: Transform - pos: 8.5,20.5 - parent: 89 - - uid: 17701 + pos: -98.5,-4.5 + parent: 2 + - uid: 19975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 89 - - uid: 17881 + pos: 46.5,18.5 + parent: 2 + - uid: 19976 components: - type: Transform - pos: -0.5,8.5 - parent: 89 - - uid: 18654 + pos: 41.5,-4.5 + parent: 2 + - uid: 27907 components: - type: Transform - pos: -8.5,17.5 - parent: 89 - - uid: 20443 + pos: 2.5,-7.5 + parent: 27260 +- proto: VendingMachineTheater + entities: + - uid: 19977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 89 - - uid: 21028 + pos: -33.5,-6.5 + parent: 2 + - uid: 19978 components: - type: Transform - pos: 21.5,-3.5 - parent: 89 - - uid: 21453 + pos: -65.5,20.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 19979 components: - type: Transform - pos: 34.5,20.5 - parent: 89 - - uid: 21544 + pos: 8.5,34.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 19980 components: - type: Transform - pos: -1.5,5.5 - parent: 89 - - uid: 21546 + rot: -1.5707963267948966 rad + pos: -99.5,18.5 + parent: 2 + - uid: 19981 components: - type: Transform - pos: -3.5,5.5 - parent: 89 - - uid: 24914 + pos: 16.5,24.5 + parent: 2 + - uid: 19982 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - uid: 24915 + pos: 19.5,16.5 + parent: 2 + - uid: 19983 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 24916 + pos: 3.5,14.5 + parent: 2 + - uid: 19984 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 24917 + pos: -6.5,4.5 + parent: 2 + - uid: 19985 components: - type: Transform - pos: -11.5,7.5 - parent: 22565 - - uid: 24918 + pos: -10.5,16.5 + parent: 2 + - uid: 19986 components: - type: Transform - pos: -14.5,7.5 - parent: 22565 -- proto: TableReinforcedGlass - entities: - - uid: 2948 + pos: 0.5,22.5 + parent: 2 + - uid: 19987 components: - type: Transform - pos: 10.5,-0.5 - parent: 89 - - uid: 2949 + pos: 1.5,14.5 + parent: 2 + - uid: 19988 components: - type: Transform - pos: 12.5,-0.5 - parent: 89 - - uid: 2950 + pos: 15.5,16.5 + parent: 2 + - uid: 19989 components: - type: Transform - pos: 12.5,-1.5 - parent: 89 - - uid: 2951 + pos: 27.5,21.5 + parent: 2 + - uid: 19990 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 - - uid: 5155 + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - uid: 19991 components: - type: Transform - pos: 12.5,-3.5 - parent: 89 - - uid: 6150 + rot: 3.141592653589793 rad + pos: -118.5,19.5 + parent: 2 + - uid: 24263 components: - type: Transform - pos: 13.5,-3.5 - parent: 89 - - uid: 6983 + pos: 5.5,-2.5 + parent: 23919 +- proto: VendingMachineYouTool + entities: + - uid: 19992 components: - type: Transform - pos: -98.5,-7.5 - parent: 89 - - uid: 6984 + pos: -98.5,-5.5 + parent: 2 + - uid: 19993 components: - type: Transform - pos: -98.5,-8.5 - parent: 89 - - uid: 6985 + pos: -92.5,17.5 + parent: 2 + - uid: 24264 components: - type: Transform - pos: -98.5,-9.5 - parent: 89 - - uid: 6986 + pos: 1.5,0.5 + parent: 23919 +- proto: WallMining + entities: + - uid: 26851 components: - type: Transform - pos: -98.5,-10.5 - parent: 89 - - uid: 16377 + pos: 2.5,-1.5 + parent: 24450 + - uid: 26852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 89 - - uid: 16378 + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 24450 + - uid: 26853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,21.5 - parent: 89 - - uid: 17625 + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 24450 + - uid: 26854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 89 - - uid: 17693 + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 24450 + - uid: 26855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,21.5 - parent: 89 -- proto: TableStone - entities: - - uid: 3042 + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 24450 + - uid: 26856 components: - - type: MetaData - name: каменный стол (Успокоительное) - type: Transform - pos: 7.5,-2.5 - parent: 89 - - type: Label - currentLabel: Успокоительное - - uid: 10237 + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 24450 + - uid: 26857 components: - type: Transform - pos: -34.5,24.5 - parent: 89 - - uid: 10238 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 24450 + - uid: 26858 components: - type: Transform - pos: -34.5,23.5 - parent: 89 -- proto: TableWeb - entities: - - uid: 21011 + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 24450 + - uid: 26859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,22.5 - parent: 89 -- proto: TableWood - entities: - - uid: 58 + pos: -26.5,-1.5 + parent: 24450 + - uid: 26860 components: - type: Transform - pos: -24.5,-0.5 - parent: 89 - - uid: 59 + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 24450 + - uid: 26861 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 - - uid: 790 + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 24450 + - uid: 26862 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - uid: 965 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 24450 + - uid: 26863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 89 - - uid: 1747 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 24450 + - uid: 26864 components: - type: Transform - pos: 44.5,5.5 - parent: 89 - - uid: 1938 + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 24450 + - uid: 26865 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 1973 + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 24450 + - uid: 26866 components: - type: Transform - pos: 34.5,14.5 - parent: 89 - - uid: 2000 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 + parent: 24450 + - uid: 26867 components: - type: Transform - pos: 44.5,4.5 - parent: 89 - - uid: 2001 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 + parent: 24450 + - uid: 26868 components: - type: Transform - pos: 44.5,6.5 - parent: 89 - - uid: 2122 + rot: 3.141592653589793 rad + pos: -19.5,20.5 + parent: 24450 + - uid: 26869 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 2125 + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 24450 + - uid: 26870 components: - type: Transform - pos: 34.5,13.5 - parent: 89 - - uid: 2126 + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 24450 + - uid: 26871 components: - type: Transform - pos: 36.5,13.5 - parent: 89 - - uid: 2127 + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 24450 + - uid: 26872 components: - type: Transform - pos: 36.5,14.5 - parent: 89 - - uid: 2128 + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 24450 + - uid: 26873 components: - type: Transform - pos: 32.5,14.5 - parent: 89 - - uid: 2129 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 24450 + - uid: 26874 components: - type: Transform - pos: 32.5,13.5 - parent: 89 - - uid: 2132 + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 24450 + - uid: 26875 components: - type: Transform - pos: 33.5,14.5 - parent: 89 - - uid: 2134 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 24450 + - uid: 26876 components: - type: Transform - pos: 33.5,13.5 - parent: 89 - - uid: 2908 + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 24450 + - uid: 26877 components: - type: Transform - pos: -55.5,7.5 - parent: 89 - - uid: 2916 + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 24450 + - uid: 26878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 89 - - uid: 3208 + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 24450 + - uid: 26879 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 89 - - uid: 3552 + pos: -24.5,14.5 + parent: 24450 + - uid: 26880 components: - type: Transform - pos: 30.5,-3.5 - parent: 89 - - uid: 3616 + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 24450 + - uid: 26881 components: - type: Transform - pos: 33.5,-0.5 - parent: 89 - - uid: 3737 + rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 24450 + - uid: 26882 components: - type: Transform - pos: -26.5,-8.5 - parent: 89 - - uid: 3819 + rot: 3.141592653589793 rad + pos: -19.5,22.5 + parent: 24450 + - uid: 26883 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 89 - - uid: 4003 + pos: -24.5,22.5 + parent: 24450 + - uid: 26884 components: - type: Transform - pos: -31.5,-5.5 - parent: 89 - - uid: 4004 + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 24450 + - uid: 26885 components: - type: Transform - pos: -31.5,-6.5 - parent: 89 - - uid: 4182 + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 24450 + - uid: 26886 components: - type: Transform - pos: -30.5,0.5 - parent: 89 - - uid: 4183 + rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 24450 + - uid: 26887 components: - type: Transform - pos: -29.5,0.5 - parent: 89 - - uid: 4184 + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 24450 + - uid: 26888 components: - type: Transform - pos: -28.5,-2.5 - parent: 89 - - uid: 4259 + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 24450 + - uid: 26889 components: - type: Transform - pos: -33.5,-9.5 - parent: 89 - - uid: 4260 + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 24450 + - uid: 26890 components: - type: Transform - pos: -33.5,-3.5 - parent: 89 - - uid: 4261 + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 24450 + - uid: 26891 components: - type: Transform - pos: -35.5,-5.5 - parent: 89 - - uid: 4498 + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 24450 + - uid: 26892 components: - type: Transform - pos: -26.5,-6.5 - parent: 89 - - uid: 4526 + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 24450 + - uid: 26893 components: - type: Transform - pos: 32.5,-0.5 - parent: 89 - - uid: 4868 + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 24450 + - uid: 26894 components: - type: Transform - pos: 48.5,10.5 - parent: 89 - - uid: 4888 + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 24450 + - uid: 26895 components: - type: Transform - pos: 25.5,40.5 - parent: 89 - - uid: 4948 + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 24450 + - uid: 26896 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 - - uid: 4949 + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 24450 + - uid: 26897 components: - type: Transform - pos: -19.5,-3.5 - parent: 89 - - uid: 4951 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 24450 + - uid: 26898 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 - - uid: 4952 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 24450 + - uid: 26899 components: - type: Transform - pos: -19.5,-6.5 - parent: 89 - - uid: 4955 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 24450 + - uid: 26900 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 - - uid: 5390 + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 24450 + - uid: 26901 components: - type: Transform - pos: 47.5,10.5 - parent: 89 - - uid: 5397 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 24450 + - uid: 26902 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 5398 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 24450 + - uid: 26903 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 5462 + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 24450 + - uid: 26904 components: - type: Transform - pos: -48.5,-7.5 - parent: 89 - - uid: 5645 + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 24450 + - uid: 26905 components: - type: Transform - pos: 30.5,-6.5 - parent: 89 - - uid: 5801 + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 24450 + - uid: 26906 components: - type: Transform - pos: -72.5,-17.5 - parent: 89 - - uid: 5802 + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 24450 + - uid: 26907 components: - type: Transform - pos: -71.5,-17.5 - parent: 89 - - uid: 6097 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 24450 + - uid: 26908 components: - type: Transform - pos: -48.5,11.5 - parent: 89 - - uid: 6120 + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 24450 + - uid: 26909 components: - type: Transform - pos: -45.5,11.5 - parent: 89 - - uid: 7425 + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 24450 + - uid: 26910 components: - type: Transform - pos: -35.5,-7.5 - parent: 89 - - uid: 7426 + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 24450 + - uid: 26911 components: - type: Transform - pos: -35.5,-9.5 - parent: 89 - - uid: 7427 + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 24450 + - uid: 26912 components: - type: Transform - pos: -35.5,-3.5 - parent: 89 - - uid: 7750 + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 24450 + - uid: 26913 components: - type: Transform - pos: -8.5,45.5 - parent: 89 - - uid: 7751 + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 24450 + - uid: 26914 components: - type: Transform - pos: -8.5,44.5 - parent: 89 - - uid: 7753 + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 24450 + - uid: 26915 components: - type: Transform - pos: 1.5,45.5 - parent: 89 - - uid: 7754 + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 24450 + - uid: 26916 components: - type: Transform - pos: 1.5,44.5 - parent: 89 - - uid: 8077 + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 24450 + - uid: 26917 components: - type: Transform - pos: -5.5,33.5 - parent: 89 - - uid: 8078 + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 24450 + - uid: 26918 components: - type: Transform - pos: -5.5,32.5 - parent: 89 - - uid: 9394 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 24450 + - uid: 26919 components: - type: Transform - pos: 19.5,18.5 - parent: 89 - - uid: 10187 + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 24450 + - uid: 26920 components: - type: Transform - pos: -34.5,32.5 - parent: 89 - - uid: 10188 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 24450 + - uid: 26921 components: - type: Transform - pos: -34.5,31.5 - parent: 89 - - uid: 10207 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 24450 + - uid: 26922 components: - type: Transform - pos: -78.5,-1.5 - parent: 89 - - uid: 10230 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 24450 + - uid: 26923 components: - type: Transform - pos: -73.5,-1.5 - parent: 89 - - uid: 10231 + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 24450 + - uid: 26924 components: - type: Transform - pos: -79.5,-1.5 - parent: 89 - - uid: 10233 + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 24450 + - uid: 26925 components: - type: Transform - pos: -74.5,-1.5 - parent: 89 - - uid: 10299 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 24450 + - uid: 26926 components: - type: Transform - pos: -38.5,29.5 - parent: 89 - - uid: 10301 + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 24450 + - uid: 26927 components: - type: Transform - pos: -36.5,29.5 - parent: 89 - - uid: 10366 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 24450 + - uid: 26928 components: - type: Transform - pos: -23.5,27.5 - parent: 89 - - uid: 10367 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 24450 + - uid: 26929 components: - type: Transform - pos: -23.5,28.5 - parent: 89 - - uid: 10368 + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 24450 + - uid: 26930 components: - type: Transform - pos: -23.5,29.5 - parent: 89 - - uid: 10369 + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 24450 + - uid: 26931 components: - type: Transform - pos: -22.5,29.5 - parent: 89 - - uid: 10370 + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 24450 + - uid: 26932 components: - type: Transform - pos: -19.5,29.5 - parent: 89 - - uid: 10371 + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 24450 + - uid: 26933 components: - type: Transform - pos: -19.5,28.5 - parent: 89 - - uid: 10372 + rot: 3.141592653589793 rad + pos: -31.5,0.5 + parent: 24450 + - uid: 26934 components: - type: Transform - pos: -19.5,27.5 - parent: 89 - - uid: 10394 + rot: 3.141592653589793 rad + pos: -32.5,0.5 + parent: 24450 + - uid: 26935 components: - type: Transform - pos: 4.5,-1.5 - parent: 89 - - uid: 10428 + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 24450 + - uid: 26936 components: - type: Transform - pos: 22.5,8.5 - parent: 89 - - uid: 10431 + rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 24450 + - uid: 26937 components: - type: Transform - pos: 20.5,5.5 - parent: 89 - - uid: 10432 + rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 24450 + - uid: 26938 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - uid: 10433 + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 24450 + - uid: 26939 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 10452 + pos: -36.5,7.5 + parent: 24450 + - uid: 26940 components: - type: Transform - pos: 18.5,8.5 - parent: 89 - - uid: 10465 + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 24450 + - uid: 26941 components: - type: Transform - pos: 18.5,11.5 - parent: 89 - - uid: 10803 + pos: -10.5,-4.5 + parent: 24450 + - uid: 26942 components: - type: Transform - pos: -37.5,29.5 - parent: 89 - - uid: 11063 + pos: -8.5,-4.5 + parent: 24450 + - uid: 26943 components: - type: Transform - pos: 33.5,-5.5 - parent: 89 - - uid: 12837 + pos: -13.5,-4.5 + parent: 24450 + - uid: 26944 components: - type: Transform - pos: 18.5,5.5 - parent: 89 - - uid: 12838 + pos: -15.5,-4.5 + parent: 24450 + - uid: 26945 components: - type: Transform - pos: 17.5,5.5 - parent: 89 - - uid: 13933 + pos: -9.5,-3.5 + parent: 24450 + - uid: 26946 components: - type: Transform - pos: -22.5,9.5 - parent: 89 - - uid: 14523 + pos: -14.5,-3.5 + parent: 24450 + - uid: 26947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-5.5 - parent: 89 - - uid: 14534 + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 24450 + - uid: 26948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-5.5 - parent: 89 - - uid: 14535 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 24450 + - uid: 26949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-5.5 - parent: 89 - - uid: 14699 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 26950 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 14700 + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 26951 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 14733 + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 24450 + - uid: 26952 components: - type: Transform - pos: 6.5,-26.5 - parent: 89 - - uid: 14734 + pos: 3.5,12.5 + parent: 24450 + - uid: 26953 components: - type: Transform - pos: 6.5,-25.5 - parent: 89 - - uid: 14735 + pos: -28.5,8.5 + parent: 24450 + - uid: 26954 components: - type: Transform - pos: 7.5,-25.5 - parent: 89 - - uid: 14736 + pos: -28.5,9.5 + parent: 24450 + - uid: 26955 components: - type: Transform - pos: 7.5,-26.5 - parent: 89 - - uid: 14928 + pos: 2.5,12.5 + parent: 24450 + - uid: 26956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 89 - - uid: 15312 + pos: 4.5,12.5 + parent: 24450 + - uid: 26957 components: - type: Transform - pos: 32.5,-5.5 - parent: 89 - - uid: 15321 + pos: -18.5,11.5 + parent: 24450 + - uid: 26958 components: - type: Transform - pos: 30.5,-5.5 - parent: 89 - - uid: 17012 + pos: -19.5,11.5 + parent: 24450 + - uid: 26959 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 17102 + pos: -28.5,12.5 + parent: 24450 + - uid: 26960 components: - type: Transform - pos: 58.5,-31.5 - parent: 89 - - uid: 17308 + pos: 4.5,-1.5 + parent: 24450 + - uid: 26961 components: - type: Transform - pos: -34.5,-14.5 - parent: 89 - - uid: 17649 + pos: 4.5,-0.5 + parent: 24450 + - uid: 26962 components: - type: Transform - pos: -23.5,-6.5 - parent: 89 - - uid: 18157 + pos: -27.5,12.5 + parent: 24450 + - uid: 26963 components: - type: Transform - pos: 56.5,-32.5 - parent: 89 - - uid: 18176 + pos: -28.5,-1.5 + parent: 24450 + - uid: 26964 components: - type: Transform - pos: 55.5,-33.5 - parent: 89 - - uid: 18177 + pos: 3.5,-1.5 + parent: 24450 + - uid: 26965 components: - type: Transform - pos: 56.5,-33.5 - parent: 89 - - uid: 18332 + pos: -27.5,-1.5 + parent: 24450 + - uid: 26966 components: - type: Transform - pos: 57.5,-32.5 - parent: 89 - - uid: 18333 + pos: -28.5,-0.5 + parent: 24450 + - uid: 26967 components: - type: Transform - pos: 57.5,-31.5 - parent: 89 - - uid: 19082 + pos: -26.5,12.5 + parent: 24450 + - uid: 26968 components: - type: Transform - pos: -22.5,8.5 - parent: 89 - - uid: 19112 + pos: -19.5,25.5 + parent: 24450 + - uid: 26969 components: - type: Transform - pos: -25.5,9.5 - parent: 89 - - uid: 19508 + pos: -24.5,26.5 + parent: 24450 + - uid: 26970 components: - type: Transform - pos: -1.5,39.5 - parent: 89 - - uid: 19961 + pos: -24.5,25.5 + parent: 24450 + - uid: 26971 components: - type: Transform - pos: 25.5,39.5 - parent: 89 - - uid: 19997 + pos: -23.5,26.5 + parent: 24450 + - uid: 26972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,21.5 - parent: 89 - - uid: 22311 + pos: -3.5,26.5 + parent: 24450 + - uid: 26973 components: - type: Transform - pos: 45.5,-37.5 - parent: 89 - - uid: 24919 + pos: -4.5,25.5 + parent: 24450 + - uid: 26974 components: - type: Transform - pos: -14.5,-24.5 - parent: 22565 - - uid: 25689 + pos: 0.5,26.5 + parent: 24450 + - uid: 26975 components: - type: Transform - pos: 5.5,-1.5 - parent: 89 - - uid: 25690 + pos: 0.5,25.5 + parent: 24450 + - uid: 26976 components: - type: Transform - pos: 3.5,-1.5 - parent: 89 -- proto: TargetClown - entities: - - uid: 17124 + pos: -20.5,26.5 + parent: 24450 + - uid: 26977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-12.5 - parent: 89 -- proto: TargetHuman - entities: - - uid: 17207 + pos: -0.5,26.5 + parent: 24450 + - uid: 26978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 89 - - uid: 17209 + pos: -4.5,12.5 + parent: 24450 + - uid: 26979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 89 - - uid: 21765 + pos: -19.5,12.5 + parent: 24450 + - uid: 26980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-18.5 - parent: 89 -- proto: TargetStrange - entities: - - uid: 21374 + pos: -4.5,11.5 + parent: 24450 + - uid: 26981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-19.5 - parent: 89 - - uid: 21831 + pos: -5.5,11.5 + parent: 24450 + - uid: 26982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 89 -- proto: TargetSyndicate - entities: - - uid: 17168 + pos: 5.5,12.5 + parent: 24450 + - uid: 26983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-15.5 - parent: 89 -- proto: TegCenter - entities: - - uid: 7322 + pos: -35.5,1.5 + parent: 24450 + - uid: 26984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: TegCirculator - entities: - - uid: 7291 + pos: -35.5,0.5 + parent: 24450 + - uid: 26985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-9.5 - parent: 89 - - type: PointLight - color: '#FF3300FF' - - uid: 7298 + pos: -34.5,0.5 + parent: 24450 + - uid: 26986 components: - type: Transform - pos: -85.5,-9.5 - parent: 89 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 24920 + pos: -29.5,12.5 + parent: 24450 + - uid: 26987 components: - type: Transform - pos: -2.5,-17.5 - parent: 22565 -- proto: TelecomServerFilled - entities: - - uid: 16415 + pos: -29.5,9.5 + parent: 24450 + - uid: 26988 components: - type: Transform - pos: -107.5,26.5 - parent: 89 -- proto: TeslaCoil - entities: - - uid: 8359 + pos: -4.5,26.5 + parent: 24450 + - uid: 26989 components: - type: Transform - pos: -118.5,-6.5 - parent: 89 - - uid: 12633 + pos: -19.5,26.5 + parent: 24450 + - uid: 26990 components: - type: Transform - pos: -150.5,0.5 - parent: 89 - - uid: 13185 + pos: -11.5,0.5 + parent: 24450 + - uid: 26991 components: - type: Transform - pos: -144.5,0.5 - parent: 89 - - uid: 13186 + pos: -8.5,-1.5 + parent: 24450 + - uid: 26992 components: - type: Transform - pos: -150.5,-15.5 - parent: 89 -- proto: TeslaGenerator - entities: - - uid: 8177 + pos: -16.5,-1.5 + parent: 24450 + - uid: 26993 components: - type: Transform - pos: -118.5,-8.5 - parent: 89 -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - - uid: 7067 + pos: 11.5,2.5 + parent: 24450 + - uid: 26994 components: - type: Transform - pos: -105.65808,-7.229766 - parent: 89 -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 7068 + pos: -25.5,9.5 + parent: 24450 + - uid: 26995 components: - type: Transform - pos: -105.329956,-7.557891 - parent: 89 -- proto: Thruster - entities: - - uid: 21706 + pos: -24.5,10.5 + parent: 24450 + - uid: 26996 components: - type: Transform - pos: 2.5,0.5 - parent: 21627 - - uid: 21707 + pos: 10.5,7.5 + parent: 24450 + - uid: 26997 components: - type: Transform - pos: -1.5,0.5 - parent: 21627 - - uid: 21708 + pos: 11.5,10.5 + parent: 24450 + - uid: 26998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 21627 - - uid: 21709 + pos: 8.5,7.5 + parent: 24450 + - uid: 26999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 21627 - - uid: 21710 + pos: 10.5,2.5 + parent: 24450 + - uid: 27000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 21627 - - uid: 21711 + pos: -34.5,7.5 + parent: 24450 + - uid: 27001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 21627 - - uid: 22404 + pos: -33.5,7.5 + parent: 24450 + - uid: 27002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,10.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22405 + pos: -33.5,10.5 + parent: 24450 + - uid: 27003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,11.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22406 + pos: -35.5,4.5 + parent: 24450 + - uid: 27004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,12.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22407 + pos: -28.5,6.5 + parent: 24450 + - uid: 27005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,13.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22408 + pos: -9.5,-0.5 + parent: 24450 + - uid: 27006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,14.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22409 + pos: -28.5,4.5 + parent: 24450 + - uid: 27007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,15.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22410 + pos: 4.5,0.5 + parent: 24450 + - uid: 27008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,16.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22411 + pos: -28.5,0.5 + parent: 24450 + - uid: 27009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,17.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22412 + pos: 4.5,4.5 + parent: 24450 + - uid: 27010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,18.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22413 + pos: -28.5,7.5 + parent: 24450 + - uid: 27011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,19.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22420 + pos: -15.5,-1.5 + parent: 24450 + - uid: 27012 components: - type: Transform - pos: -130.5,-9.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22422 + pos: -7.5,-1.5 + parent: 24450 + - uid: 27013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-14.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 24921 + pos: -14.5,0.5 + parent: 24450 + - uid: 27014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,25.5 - parent: 22565 - - uid: 25576 + pos: -12.5,0.5 + parent: 24450 + - uid: 27015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-13.5 - parent: 18153 - - uid: 25577 + pos: -9.5,0.5 + parent: 24450 + - uid: 27016 components: - type: Transform - pos: 6.5,-2.5 - parent: 18153 - - uid: 25578 + pos: -8.5,0.5 + parent: 24450 + - uid: 27017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 18153 - - uid: 25579 + pos: -15.5,0.5 + parent: 24450 + - uid: 27018 components: - type: Transform - pos: 0.5,-2.5 - parent: 18153 - - uid: 25580 + pos: 9.5,4.5 + parent: 24450 + - uid: 27019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 18153 - - uid: 25581 + pos: 8.5,6.5 + parent: 24450 + - uid: 27020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 18153 - - uid: 25582 + pos: -24.5,9.5 + parent: 24450 + - uid: 27021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 18153 -- proto: TintedWindow - entities: - - uid: 4734 + pos: 8.5,10.5 + parent: 24450 + - uid: 27022 components: - type: Transform - pos: -38.5,-0.5 - parent: 89 - - uid: 5194 + pos: -32.5,10.5 + parent: 24450 + - uid: 27023 components: - type: Transform - pos: -48.5,-5.5 - parent: 89 - - uid: 9925 + pos: 9.5,10.5 + parent: 24450 + - uid: 27024 components: - type: Transform - pos: -13.5,-10.5 - parent: 89 - - uid: 10835 + pos: 10.5,10.5 + parent: 24450 + - uid: 27025 components: - type: Transform - pos: 5.5,15.5 - parent: 89 - - uid: 15044 + pos: 9.5,7.5 + parent: 24450 + - uid: 27026 components: - type: Transform - pos: 6.5,15.5 - parent: 89 - - uid: 16516 + pos: 11.5,7.5 + parent: 24450 + - uid: 27027 components: - type: Transform - pos: -7.5,20.5 - parent: 89 - - uid: 16517 + pos: 11.5,4.5 + parent: 24450 + - uid: 27028 components: - type: Transform - pos: -7.5,19.5 - parent: 89 - - uid: 16522 + pos: 10.5,4.5 + parent: 24450 + - uid: 27029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 89 - - uid: 16523 + pos: -29.5,10.5 + parent: 24450 + - uid: 27030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 89 - - uid: 16533 + pos: -29.5,11.5 + parent: 24450 + - uid: 27031 components: - type: Transform - pos: -7.5,17.5 - parent: 89 - - uid: 16548 + pos: -35.5,7.5 + parent: 24450 + - uid: 27032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,18.5 - parent: 89 - - uid: 19901 + pos: -32.5,7.5 + parent: 24450 + - uid: 27033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 89 - - uid: 19906 + pos: -34.5,10.5 + parent: 24450 + - uid: 27034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 89 - - uid: 20825 + pos: -35.5,10.5 + parent: 24450 + - uid: 27035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 - parent: 89 -- proto: ToiletDirtyWater - entities: - - uid: 1195 + pos: -32.5,6.5 + parent: 24450 + - uid: 27036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - uid: 1197 + pos: -32.5,4.5 + parent: 24450 + - uid: 27037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - uid: 1857 + pos: -33.5,4.5 + parent: 24450 + - uid: 27038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - uid: 9176 + pos: -34.5,4.5 + parent: 24450 + - uid: 27039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - uid: 10019 + pos: -14.5,-1.5 + parent: 24450 + - uid: 27040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,39.5 - parent: 89 - - uid: 10020 + pos: -34.5,2.5 + parent: 24450 + - uid: 27041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,43.5 - parent: 89 - - uid: 10355 + pos: 8.5,4.5 + parent: 24450 + - uid: 27042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,31.5 - parent: 89 - - uid: 10356 + pos: -9.5,-1.5 + parent: 24450 + - uid: 27043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 89 - - uid: 16344 + pos: -26.5,8.5 + parent: 24450 + - uid: 27044 components: - type: Transform - pos: 32.5,26.5 - parent: 89 - - uid: 18451 + pos: -26.5,7.5 + parent: 24450 + - uid: 27045 components: - type: Transform - pos: 30.5,26.5 - parent: 89 - - uid: 20297 + pos: -26.5,9.5 + parent: 24450 + - uid: 27046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-33.5 - parent: 89 - - uid: 21452 + pos: -14.5,-0.5 + parent: 24450 +- proto: WallMiningDiagonal + entities: + - uid: 27047 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-33.5 - parent: 89 - - uid: 21464 + pos: -2.5,-2.5 + parent: 24450 + - uid: 27048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 89 - - uid: 21744 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 24450 + - uid: 27049 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-33.5 - parent: 89 - - uid: 24922 + pos: 12.5,2.5 + parent: 24450 + - uid: 27050 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 24923 + rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 24450 + - uid: 27051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 22565 - - uid: 24924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 22565 -- proto: ToiletEmpty - entities: - - uid: 20881 + pos: -29.5,13.5 + parent: 24450 + - uid: 27052 components: - type: Transform - pos: 41.5,17.5 - parent: 89 -- proto: ToolboxElectrical - entities: - - uid: 24925 + pos: 5.5,13.5 + parent: 24450 + - uid: 27053 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.344622,-16.993944 - parent: 22565 -- proto: ToolboxElectricalFilled - entities: - - uid: 220 + pos: -20.5,-1.5 + parent: 24450 + - uid: 27054 components: - type: Transform - pos: -16.5,-23.5 - parent: 89 - - uid: 221 + pos: -3.5,-1.5 + parent: 24450 +- proto: WallmountTelescreenFrame + entities: + - uid: 19994 components: - type: Transform - pos: -13.5,-23.5 - parent: 89 - - uid: 6933 + pos: -72.5,-5.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 19995 components: - type: Transform - pos: -96.50371,-1.402104 - parent: 89 - - uid: 7230 + pos: -5.5,4.5 + parent: 2 + - uid: 19996 components: - type: Transform - pos: -90.46701,13.116728 - parent: 89 - - uid: 16419 + pos: -62.5,6.5 + parent: 2 + - uid: 19997 components: - type: Transform - pos: -115.52165,6.6174526 - parent: 89 - - uid: 19493 + pos: -67.5,19.5 + parent: 2 + - uid: 19998 components: - type: Transform - pos: 55.445694,-1.2600117 - parent: 89 - - uid: 24926 + pos: 28.5,4.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 19999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.060518,7.6108303 - parent: 22565 - - uid: 24927 + rot: 1.5707963267948966 rad + pos: -127.5,15.5 + parent: 2 + - uid: 20000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.3748856,2.002956 - parent: 22565 -- proto: ToolboxEmergencyFilled - entities: - - uid: 1752 + rot: 1.5707963267948966 rad + pos: -127.5,16.5 + parent: 2 + - uid: 20001 components: - type: Transform - pos: -35.505363,5.63023 - parent: 89 - - uid: 7232 + rot: 3.141592653589793 rad + pos: -53.5,-17.5 + parent: 2 + - uid: 20002 components: - type: Transform - pos: -94.388885,17.812685 - parent: 89 - - uid: 15514 + rot: 3.141592653589793 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 20003 components: - type: Transform - pos: -46.504913,13.563406 - parent: 89 - - uid: 16469 + rot: 3.141592653589793 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 20004 components: - type: Transform - pos: -100.41629,2.6556427 - parent: 89 - - uid: 16760 + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 20005 components: - type: Transform - pos: -57.107525,12.612295 - parent: 89 - - uid: 17305 + rot: 3.141592653589793 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 20006 components: - type: Transform - pos: -3.4961767,-1.7703378 - parent: 89 - - uid: 19498 + rot: 3.141592653589793 rad + pos: -57.5,-14.5 + parent: 2 + - uid: 20007 components: - type: Transform - pos: 56.070694,-1.3381367 - parent: 89 - - uid: 24928 + rot: 3.141592653589793 rad + pos: -57.5,-13.5 + parent: 2 + - uid: 20008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.602055,1.9329305 - parent: 22565 -- proto: ToolboxGoldFilled - entities: - - uid: 2650 + rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 2 + - uid: 20009 components: - type: Transform - pos: 50.511898,-4.98681 - parent: 89 - - uid: 21047 + rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 2 + - uid: 20010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.998886,-1.4111581 - parent: 89 -- proto: ToolboxMechanical - entities: - - uid: 156 + rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 2 + - uid: 20011 components: - type: Transform - pos: -6.4346533,-18.417767 - parent: 89 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2806 + rot: 3.141592653589793 rad + pos: -56.5,-11.5 + parent: 2 + - uid: 20012 components: - type: Transform - pos: -19.52074,-23.483624 - parent: 89 - - uid: 6939 + rot: 3.141592653589793 rad + pos: -55.5,-11.5 + parent: 2 + - uid: 20013 components: - type: Transform - pos: -96.50371,-1.870854 - parent: 89 - - uid: 11013 + rot: 3.141592653589793 rad + pos: -54.5,-11.5 + parent: 2 + - uid: 20014 components: - type: Transform - pos: -55.47563,5.573606 - parent: 89 - - uid: 19494 + rot: 3.141592653589793 rad + pos: -53.5,-11.5 + parent: 2 + - uid: 20015 components: - type: Transform - pos: 55.46132,-1.4631367 - parent: 89 - - uid: 20083 + rot: 3.141592653589793 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 20016 components: - type: Transform - pos: -115.52165,6.4195633 - parent: 89 - - uid: 24929 + rot: 3.141592653589793 rad + pos: 42.5,-7.5 + parent: 2 + - uid: 20017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.092844,7.5518336 - parent: 22565 - - uid: 25583 + pos: -61.5,10.5 + parent: 2 + - uid: 20018 components: - type: Transform - pos: 4.633088,-11.60843 - parent: 18153 -- proto: ToyAi - entities: - - uid: 914 + pos: -105.5,-11.5 + parent: 2 + - uid: 20019 components: - type: Transform - pos: 54.502815,4.6506104 - parent: 89 -- proto: ToyAmongPequeno - entities: - - uid: 17000 + pos: -97.5,-11.5 + parent: 2 + - uid: 20020 components: - - type: MetaData - desc: Перед плазма спамом спроси разрешения в АХ! - name: Упси Дупси - type: Transform - pos: -88.41348,-27.304625 - parent: 89 -- proto: ToyHammer - entities: - - uid: 8176 + rot: -1.5707963267948966 rad + pos: -102.5,-11.5 + parent: 2 + - uid: 20021 components: - type: Transform - pos: 19.439804,-18.471947 - parent: 89 -- proto: ToyIan - entities: - - uid: 10071 + pos: -99.5,-11.5 + parent: 2 + - uid: 20022 components: - type: Transform - pos: -34.496696,29.825691 - parent: 89 - - uid: 10072 + rot: -1.5707963267948966 rad + pos: -104.5,-11.5 + parent: 2 + - uid: 20023 components: - type: Transform - pos: -34.69982,27.653816 - parent: 89 - - uid: 10075 + pos: -98.5,-11.5 + parent: 2 + - uid: 20024 components: - type: Transform - pos: -34.277946,27.622566 - parent: 89 - - uid: 10077 + rot: 3.141592653589793 rad + pos: -93.5,-3.5 + parent: 2 + - uid: 20025 components: - type: Transform - pos: -34.434196,28.028816 - parent: 89 - - uid: 10078 + pos: -122.5,-4.5 + parent: 2 + - uid: 20026 components: - type: Transform - pos: -34.746696,28.185066 - parent: 89 - - uid: 10222 + pos: -89.5,-10.5 + parent: 2 + - uid: 20027 components: - type: Transform - pos: -32.19982,29.419441 - parent: 89 - - uid: 10228 + pos: -121.5,-4.5 + parent: 2 + - uid: 20028 components: - type: Transform - pos: -34.50212,28.551262 - parent: 89 -- proto: ToyMarauder - entities: - - uid: 17020 + pos: -121.5,-9.5 + parent: 2 + - uid: 20029 components: - - type: MetaData - desc: Мародёр с позывным "кочевник", получил огромную огласку после вторжение ксеносов на одну из колоний, где он участвовал как защитник. - name: игрушечный no_mad - type: Transform - pos: 35.949993,14.835531 - parent: 89 -- proto: ToyMouse - entities: - - uid: 6234 + pos: -110.5,-19.5 + parent: 2 + - uid: 20030 components: - type: Transform - pos: 16.494328,25.730711 - parent: 89 -- proto: ToyRubberDuck - entities: - - uid: 9185 + rot: 1.5707963267948966 rad + pos: -127.5,18.5 + parent: 2 + - uid: 20031 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 -- proto: ToySpawner - entities: - - uid: 95 + pos: -122.5,19.5 + parent: 2 + - uid: 20032 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 6123 + pos: -119.5,19.5 + parent: 2 + - uid: 20033 components: - type: Transform - pos: 37.5,-2.5 - parent: 89 - - uid: 12869 + pos: -84.5,-3.5 + parent: 2 + - uid: 20034 components: - type: Transform - pos: 17.5,25.5 - parent: 89 - - uid: 14049 + pos: -124.5,19.5 + parent: 2 + - uid: 20035 components: - type: Transform - pos: -50.5,21.5 - parent: 89 - - uid: 17620 + pos: -125.5,19.5 + parent: 2 + - uid: 20036 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 19618 + pos: -118.5,13.5 + parent: 2 + - uid: 20037 components: - type: Transform - pos: -26.5,-24.5 - parent: 89 -- proto: TrackingImplanter - entities: - - uid: 11914 + pos: -120.5,17.5 + parent: 2 + - uid: 20038 components: - type: Transform - pos: 23.598495,27.541094 - parent: 89 - - uid: 15061 + pos: -126.5,19.5 + parent: 2 + - uid: 20039 components: - type: Transform - pos: 23.629745,27.478594 - parent: 89 -- proto: TrashBag - entities: - - uid: 9507 + pos: -120.5,15.5 + parent: 2 + - uid: 20040 components: - type: Transform - pos: -41.482098,7.89655 - parent: 89 - - uid: 9508 + pos: -120.5,19.5 + parent: 2 + - uid: 20041 components: - type: Transform - pos: -41.732098,7.880925 - parent: 89 - - uid: 18356 + pos: -110.5,-13.5 + parent: 2 + - uid: 20042 components: - type: Transform - pos: -41.622723,7.662175 - parent: 89 -- proto: TrashBananaPeel - entities: - - uid: 4119 + pos: -108.5,-13.5 + parent: 2 + - uid: 20043 components: - type: Transform - pos: -34.49477,-4.576667 - parent: 89 - - uid: 21288 + pos: -120.5,18.5 + parent: 2 + - uid: 20044 components: - type: Transform - pos: 36.5316,-4.602179 - parent: 89 -- proto: trayScanner - entities: - - uid: 116 + pos: -123.5,-9.5 + parent: 2 + - uid: 20045 components: - type: Transform - pos: -115.65394,2.6449199 - parent: 89 - - uid: 6902 + pos: -122.5,-9.5 + parent: 2 + - uid: 20046 components: - type: Transform - pos: -105.63304,0.7137947 - parent: 89 - - uid: 6982 + pos: -85.5,-3.5 + parent: 2 + - uid: 20047 components: - type: Transform - pos: -105.19554,0.6044197 - parent: 89 - - uid: 14945 + pos: -96.5,-3.5 + parent: 2 + - uid: 20048 components: - type: Transform - pos: -9.853606,-35.779358 - parent: 89 - - uid: 15287 + pos: -110.5,-12.5 + parent: 2 + - uid: 20049 components: - type: Transform - pos: -119.6608,11.784174 - parent: 89 - - uid: 15291 + pos: 32.5,4.5 + parent: 2 + - uid: 20050 components: - type: Transform - pos: -119.30142,11.612299 - parent: 89 - - uid: 19700 + pos: 25.5,4.5 + parent: 2 + - uid: 20051 components: - type: Transform - pos: 17.648815,-0.8417225 - parent: 89 - - uid: 19701 + pos: -12.5,-26.5 + parent: 2 + - uid: 20052 components: - type: Transform - pos: 17.648815,-0.8573475 - parent: 89 - - uid: 19702 + pos: -13.5,-26.5 + parent: 2 + - uid: 20053 components: - type: Transform - pos: 17.648815,-0.8573475 - parent: 89 - - uid: 20088 + pos: -13.5,-25.5 + parent: 2 + - uid: 20054 components: - type: Transform - pos: -115.28436,2.6449199 - parent: 89 -- proto: Truncheon - entities: - - uid: 22661 + pos: -16.5,-18.5 + parent: 2 + - uid: 20055 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22662 + pos: 33.5,6.5 + parent: 2 + - uid: 20056 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TwoWayLever - entities: - - uid: 4841 + pos: 33.5,7.5 + parent: 2 + - uid: 20057 components: - type: Transform - pos: -61.5,-17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4827: - - Left: Forward - - Right: Reverse - - Middle: Off - 4828: - - Left: Forward - - Right: Reverse - - Middle: Off - 4829: - - Left: Forward - - Right: Reverse - - Middle: Off - 4830: - - Left: Forward - - Right: Reverse - - Middle: Off - 4831: - - Left: Forward - - Right: Reverse - - Middle: Off - 4822: - - Middle: Off - - Right: Forward - - Left: Reverse - 4823: - - Middle: Off - - Right: Forward - - Left: Reverse - 4824: - - Middle: Off - - Right: Forward - - Left: Reverse - 4825: - - Middle: Off - - Right: Forward - - Left: Reverse - 4826: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 5122 + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 20058 components: - type: Transform - pos: -65.5,-4.5 - parent: 89 - - uid: 5123 + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 20059 components: - type: Transform - pos: -60.5,-4.5 - parent: 89 - - uid: 7667 + rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - uid: 20060 components: - type: Transform - pos: -96.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7674: - - Left: Forward - - Right: Reverse - - Middle: Off - 7676: - - Left: Forward - - Right: Reverse - - Middle: Off - 7661: - - Left: Forward - - Right: Reverse - - Middle: Off - 7666: - - Left: Forward - - Right: Reverse - - Middle: Off - 3618: - - Left: Forward - - Right: Reverse - - Middle: Off - 7665: - - Left: Forward - - Right: Reverse - - Middle: Off - 7664: - - Left: Forward - - Right: Reverse - - Middle: Off - 7662: - - Left: Forward - - Right: Reverse - - Middle: Off - 7663: - - Left: Forward - - Right: Reverse - - Middle: Off - 7673: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24930 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 20061 components: - type: Transform - pos: -5.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23831: - - Left: Forward - - Right: Reverse - - Middle: Off - 23829: - - Left: Forward - - Right: Reverse - - Middle: Off - 23830: - - Left: Forward - - Right: Reverse - - Middle: Off - 23828: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24931 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 20062 components: - type: Transform - pos: 1.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23840: - - Left: Forward - - Right: Reverse - - Middle: Off - 23841: - - Left: Forward - - Right: Reverse - - Middle: Off - 23842: - - Left: Forward - - Right: Reverse - - Middle: Off - 23843: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24932 + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - uid: 20063 components: - type: Transform - pos: -3.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23832: - - Left: Forward - - Right: Reverse - - Middle: Off - 23833: - - Left: Forward - - Right: Reverse - - Middle: Off - 23834: - - Left: Forward - - Right: Reverse - - Middle: Off - 23835: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24933 + pos: 14.5,-13.5 + parent: 2 + - uid: 20064 components: - type: Transform - pos: -0.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23839: - - Left: Forward - - Right: Reverse - - Middle: Off - 23838: - - Left: Forward - - Right: Reverse - - Middle: Off - 23837: - - Left: Forward - - Right: Reverse - - Middle: Off - 23836: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24934 + pos: 13.5,-14.5 + parent: 2 + - uid: 20065 components: - type: Transform - pos: -18.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23812: - - Left: Forward - - Right: Reverse - - Middle: Off - 23817: - - Left: Forward - - Right: Reverse - - Middle: Off - 23816: - - Left: Forward - - Right: Reverse - - Middle: Off - 23818: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24935 + pos: 12.5,-14.5 + parent: 2 + - uid: 20066 components: - type: Transform - pos: -20.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23815: - - Left: Forward - - Right: Reverse - - Middle: Off - 23819: - - Left: Forward - - Right: Reverse - - Middle: Off - 23813: - - Left: Forward - - Right: Reverse - - Middle: Off - 23814: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24936 + pos: 10.5,-14.5 + parent: 2 + - uid: 20067 components: - type: Transform - pos: -23.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23821: - - Left: Forward - - Right: Reverse - - Middle: Off - 23820: - - Left: Forward - - Right: Reverse - - Middle: Off - 23822: - - Left: Forward - - Right: Reverse - - Middle: Off - 23827: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24937 + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 20068 components: - type: Transform - pos: -25.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23823: - - Left: Forward - - Right: Reverse - - Middle: Off - 23826: - - Left: Forward - - Right: Reverse - - Middle: Off - 23825: - - Left: Forward - - Right: Reverse - - Middle: Off - 23824: - - Left: Forward - - Right: Reverse - - Middle: Off - 24719: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UniformPrinter - entities: - - uid: 3346 + rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 + - uid: 20069 components: - type: Transform - pos: 42.5,7.5 - parent: 89 -- proto: UniformScrubsColorBlue - entities: + pos: 33.5,-4.5 + parent: 2 - uid: 20070 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformScrubsColorGreen - entities: + pos: 33.5,-7.5 + parent: 2 - uid: 20071 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformScrubsColorPurple - entities: - - uid: 20069 + pos: -5.5,-33.5 + parent: 2 + - uid: 20072 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UprightPianoInstrument - entities: - - uid: 3989 + pos: -8.5,-33.5 + parent: 2 + - uid: 20073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 89 - - uid: 8008 + pos: -6.5,-26.5 + parent: 2 + - uid: 20074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,41.5 - parent: 89 -- proto: Vaccinator - entities: - - uid: 15417 + pos: -4.5,-33.5 + parent: 2 + - uid: 20075 components: - type: Transform - pos: 7.5,29.5 - parent: 89 -- proto: VariantCubeBox - entities: - - uid: 8529 + pos: -6.5,-33.5 + parent: 2 + - uid: 20076 components: - type: Transform - pos: -1.4158952,-41.295216 - parent: 89 -- proto: VendingBarDrobe - entities: - - uid: 79 + pos: -7.5,-33.5 + parent: 2 + - uid: 20077 components: - type: Transform - pos: -31.5,0.5 - parent: 89 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 6997 + pos: -9.5,-33.5 + parent: 2 + - uid: 20078 components: - type: Transform - pos: -96.5,-7.5 - parent: 89 -- proto: VendingMachineBooze - entities: - - uid: 60 + pos: 14.5,35.5 + parent: 2 + - uid: 20079 components: - type: Transform - pos: -26.5,-0.5 - parent: 89 - - uid: 728 + pos: 50.5,-10.5 + parent: 2 + - uid: 20080 components: - type: Transform - pos: 46.5,11.5 - parent: 89 - - uid: 7759 + rot: 3.141592653589793 rad + pos: 39.5,18.5 + parent: 2 + - uid: 20081 components: - type: Transform - pos: 1.5,46.5 - parent: 89 - - uid: 7760 + pos: -106.5,-13.5 + parent: 2 + - uid: 20082 components: - type: Transform - pos: -8.5,46.5 - parent: 89 - - uid: 17287 + pos: 30.5,-4.5 + parent: 2 + - uid: 20083 components: - type: Transform - pos: -55.5,48.5 - parent: 89 -- proto: VendingMachineCargoDrobe - entities: - - uid: 5829 + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 20084 components: - type: Transform - pos: -71.5,-9.5 - parent: 89 -- proto: VendingMachineCart - entities: - - uid: 4521 + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 20085 components: - type: Transform - pos: 44.5,10.5 - parent: 89 -- proto: VendingMachineChang - entities: - - uid: 8159 + rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 20086 components: - type: Transform - pos: -2.5,37.5 - parent: 89 - - uid: 10152 + rot: -1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 20087 components: - type: Transform - pos: -28.5,21.5 - parent: 89 -- proto: VendingMachineChapel - entities: - - uid: 5246 + rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - uid: 20088 components: - type: Transform - pos: -48.5,-6.5 - parent: 89 -- proto: VendingMachineChefDrobe - entities: - - uid: 14542 + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 20089 components: - type: Transform - pos: -15.5,-9.5 - parent: 89 -- proto: VendingMachineChefvend - entities: - - uid: 14967 + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 20090 components: - type: Transform - pos: -12.5,-5.5 - parent: 89 -- proto: VendingMachineChemDrobe - entities: - - uid: 11095 + rot: -1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - uid: 20091 components: - type: Transform - pos: 2.5,5.5 - parent: 89 -- proto: VendingMachineChemicals - entities: - - uid: 16916 + rot: -1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - uid: 20092 components: - type: Transform - pos: 3.5,5.5 - parent: 89 -- proto: VendingMachineCigs - entities: - - uid: 2520 + rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 20093 components: - type: Transform - pos: -53.5,5.5 - parent: 89 - - uid: 3006 + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 20094 components: - type: Transform - pos: 36.5,3.5 - parent: 89 - - uid: 3255 + rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 2 + - uid: 20095 components: - type: Transform - pos: -33.5,15.5 - parent: 89 - - uid: 4042 + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 20096 components: - type: Transform - pos: 1.5,-22.5 - parent: 89 - - uid: 4228 + pos: -5.5,-26.5 + parent: 2 + - uid: 20097 components: - type: Transform - pos: 15.5,-5.5 - parent: 89 - - uid: 5598 + pos: -4.5,-26.5 + parent: 2 + - uid: 20098 components: - type: Transform - pos: -23.5,-8.5 - parent: 89 - - uid: 6098 + pos: 47.5,-10.5 + parent: 2 + - uid: 20099 components: - type: Transform - pos: -67.5,1.5 - parent: 89 - - uid: 8084 + pos: 48.5,-10.5 + parent: 2 + - uid: 20100 components: - type: Transform - pos: -8.5,33.5 - parent: 89 -- proto: VendingMachineClothing - entities: - - uid: 7079 + pos: 46.5,-10.5 + parent: 2 + - uid: 20101 components: - type: Transform - pos: -95.5,12.5 - parent: 89 - - uid: 10155 + pos: -106.5,-12.5 + parent: 2 + - uid: 20102 components: - type: Transform - pos: -33.5,21.5 - parent: 89 -- proto: VendingMachineCoffee - entities: - - uid: 188 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 + parent: 2 + - uid: 20103 components: - type: Transform - pos: 1.5,-21.5 - parent: 89 - - uid: 2169 + pos: -106.5,-11.5 + parent: 2 + - uid: 20104 components: - type: Transform - pos: 31.5,16.5 - parent: 89 - - uid: 6108 + rot: -1.5707963267948966 rad + pos: -103.5,-11.5 + parent: 2 + - uid: 20105 components: - type: Transform - pos: -51.5,11.5 - parent: 89 -- proto: VendingMachineCola - entities: - - uid: 3018 + pos: -101.5,-11.5 + parent: 2 + - uid: 20106 components: - type: Transform - pos: 37.5,6.5 - parent: 89 -- proto: VendingMachineCondiments - entities: - - uid: 21087 + pos: -100.5,-11.5 + parent: 2 + - uid: 20107 components: - type: Transform - pos: -18.5,-0.5 - parent: 89 -- proto: VendingMachineDetDrobe - entities: - - uid: 10506 + pos: -100.5,6.5 + parent: 2 + - uid: 20108 components: - type: Transform - pos: 16.5,8.5 - parent: 89 -- proto: VendingMachineDinnerware - entities: - - uid: 320 + pos: -82.5,-10.5 + parent: 2 + - uid: 20109 components: - type: Transform - pos: -11.5,-5.5 - parent: 89 -- proto: VendingMachineDiscount - entities: - - uid: 3019 + pos: -83.5,-10.5 + parent: 2 + - uid: 20110 components: - type: Transform - pos: 37.5,5.5 - parent: 89 - - uid: 6101 + pos: -83.5,-9.5 + parent: 2 + - uid: 20111 components: - type: Transform - pos: -58.5,1.5 - parent: 89 -- proto: VendingMachineEngiDrobe - entities: - - uid: 6912 + pos: -97.5,-10.5 + parent: 2 + - uid: 20112 components: - type: Transform - pos: -98.5,0.5 - parent: 89 -- proto: VendingMachineEngivend - entities: - - uid: 6918 + pos: -97.5,-9.5 + parent: 2 + - uid: 20113 components: - type: Transform - pos: -99.5,0.5 - parent: 89 -- proto: VendingMachineGames - entities: - - uid: 7619 + pos: -97.5,-8.5 + parent: 2 + - uid: 20114 components: - type: Transform - pos: -47.5,7.5 - parent: 89 - - uid: 14539 + pos: -97.5,-7.5 + parent: 2 + - uid: 20115 components: - type: Transform - pos: -75.5,-8.5 - parent: 89 - - uid: 15511 + pos: -97.5,-6.5 + parent: 2 + - uid: 20116 components: - type: Transform - pos: -71.5,7.5 - parent: 89 - - uid: 18175 + pos: -100.5,7.5 + parent: 2 + - uid: 20117 components: - type: Transform - pos: 55.5,-28.5 - parent: 89 -- proto: VendingMachineHydrobe - entities: - - uid: 4333 + pos: -100.5,8.5 + parent: 2 + - uid: 20118 components: - type: Transform - pos: -5.5,-5.5 - parent: 89 -- proto: VendingMachineJaniDrobe - entities: - - uid: 6919 + pos: -100.5,9.5 + parent: 2 + - uid: 20119 components: - type: Transform - pos: -35.5,8.5 - parent: 89 -- proto: VendingMachineLawDrobe - entities: - - uid: 14544 + pos: -100.5,10.5 + parent: 2 + - uid: 20120 components: - type: Transform - pos: -72.5,-7.5 - parent: 89 -- proto: VendingMachineMedical - entities: - - uid: 5814 + pos: -100.5,11.5 + parent: 2 + - uid: 20121 components: - type: Transform - pos: -2.5,21.5 - parent: 89 - - uid: 12209 + pos: -101.5,6.5 + parent: 2 + - uid: 20122 components: - type: Transform - pos: 8.5,14.5 - parent: 89 - - uid: 15401 + pos: -101.5,11.5 + parent: 2 + - uid: 20123 components: - type: Transform - pos: 11.5,34.5 - parent: 89 - - uid: 19795 + pos: -101.5,12.5 + parent: 2 + - uid: 20124 components: - type: Transform - pos: -4.5,21.5 - parent: 89 -- proto: VendingMachineMediDrobe - entities: - - uid: 12703 + pos: -102.5,12.5 + parent: 2 + - uid: 20125 components: - type: Transform - pos: 30.5,20.5 - parent: 89 -- proto: VendingMachineNutri - entities: - - uid: 9652 + pos: -103.5,12.5 + parent: 2 + - uid: 20126 components: - type: Transform - pos: -5.5,-4.5 - parent: 89 - - uid: 9720 + pos: -104.5,12.5 + parent: 2 + - uid: 20127 components: - type: Transform - pos: -5.5,-0.5 - parent: 89 -- proto: VendingMachineRoboDrobe - entities: - - uid: 2136 + pos: -105.5,12.5 + parent: 2 + - uid: 20128 components: - type: Transform - pos: -11.5,-23.5 - parent: 89 -- proto: VendingMachineRobotics - entities: - - uid: 21097 + pos: -106.5,12.5 + parent: 2 + - uid: 20129 components: - type: Transform - pos: -21.5,-20.5 - parent: 89 -- proto: VendingMachineSalvage - entities: - - uid: 5830 + pos: -106.5,6.5 + parent: 2 + - uid: 20130 components: - type: Transform - pos: -50.5,-9.5 - parent: 89 -- proto: VendingMachineSciDrobe - entities: - - uid: 1939 + pos: -106.5,10.5 + parent: 2 + - uid: 20131 components: - type: Transform - pos: -11.5,-19.5 - parent: 89 -- proto: VendingMachineSec - entities: - - uid: 2557 + pos: -106.5,11.5 + parent: 2 + - uid: 20132 components: - type: Transform - pos: 36.5,-12.5 - parent: 89 - - uid: 4869 + rot: -1.5707963267948966 rad + pos: -89.5,-6.5 + parent: 2 + - uid: 20133 components: - type: Transform - pos: 23.5,-6.5 - parent: 89 -- proto: VendingMachineSecDrobe - entities: - - uid: 6135 + pos: 36.5,-18.5 + parent: 2 + - uid: 20134 components: - type: Transform - pos: 22.5,-6.5 - parent: 89 -- proto: VendingMachineSovietSoda - entities: - - uid: 17657 + pos: 43.5,-1.5 + parent: 2 + - uid: 20135 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 -- proto: VendingMachineSustenance - entities: - - uid: 21352 + pos: 42.5,-1.5 + parent: 2 + - uid: 20136 components: - type: Transform - pos: 40.5,-22.5 - parent: 89 - - uid: 24938 + pos: 44.5,-1.5 + parent: 2 + - uid: 20137 components: - type: Transform - pos: -27.5,-0.5 - parent: 22565 - - uid: 24939 + pos: 41.5,-1.5 + parent: 2 + - uid: 20138 components: - type: Transform - pos: 3.5,-0.5 - parent: 22565 - - uid: 24940 + pos: 40.5,-1.5 + parent: 2 + - uid: 20139 components: - type: Transform - pos: 3.5,0.5 - parent: 22565 - - uid: 24941 + pos: 0.5,-26.5 + parent: 2 + - uid: 20140 components: - type: Transform - pos: -27.5,0.5 - parent: 22565 - - uid: 25381 + pos: 0.5,-27.5 + parent: 2 + - uid: 20141 components: - type: Transform - pos: 51.5,-27.5 - parent: 89 - - uid: 25584 + pos: 0.5,-28.5 + parent: 2 + - uid: 20142 components: - type: Transform - pos: 5.5,-9.5 - parent: 18153 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 8895 + pos: 0.5,-29.5 + parent: 2 + - uid: 20143 components: - type: Transform - pos: -130.5,-0.5 - parent: 89 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 817 + pos: -3.5,-26.5 + parent: 2 + - uid: 20144 components: - type: Transform - pos: -93.5,-7.5 - parent: 89 - - uid: 2209 + pos: -3.5,-27.5 + parent: 2 + - uid: 20145 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2680 + pos: -3.5,-28.5 + parent: 2 + - uid: 20146 components: - type: Transform - pos: -86.5,-13.5 - parent: 89 - - uid: 5519 + pos: -2.5,-32.5 + parent: 2 + - uid: 20147 components: - type: Transform - pos: -46.5,-17.5 - parent: 89 - - uid: 6925 + pos: -3.5,-31.5 + parent: 2 + - uid: 20148 components: - type: Transform - pos: -96.5,0.5 - parent: 89 - - uid: 20090 + pos: -3.5,-32.5 + parent: 2 + - uid: 20149 components: - type: Transform - pos: -98.5,-4.5 - parent: 89 - - uid: 21114 + pos: -0.5,-32.5 + parent: 2 + - uid: 20150 components: - type: Transform - pos: 46.5,18.5 - parent: 89 -- proto: VendingMachineTheater - entities: - - uid: 4247 + pos: -3.5,-29.5 + parent: 2 + - uid: 20151 components: - type: Transform - pos: -33.5,-6.5 - parent: 89 -- proto: VendingMachineViroDrobe - entities: - - uid: 7970 + pos: -9.5,-26.5 + parent: 2 + - uid: 20152 components: - type: Transform - pos: 8.5,34.5 - parent: 89 -- proto: VendingMachineWallMedical - entities: - - uid: 7257 + pos: -10.5,-27.5 + parent: 2 + - uid: 20153 components: - type: Transform - pos: 1.5,14.5 - parent: 89 - - uid: 12846 + pos: -10.5,-28.5 + parent: 2 + - uid: 20154 components: - type: Transform - pos: 15.5,16.5 - parent: 89 - - uid: 15865 + pos: -10.5,-29.5 + parent: 2 + - uid: 20155 components: - type: Transform - pos: 27.5,21.5 - parent: 89 - - uid: 21583 + pos: -10.5,-31.5 + parent: 2 + - uid: 20156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,18.5 - parent: 89 -- proto: VendingMachineYouTool - entities: - - uid: 7034 + pos: -10.5,-30.5 + parent: 2 + - uid: 20157 components: - type: Transform - pos: -98.5,-5.5 - parent: 89 - - uid: 7035 + pos: -10.5,-32.5 + parent: 2 + - uid: 20158 components: - type: Transform - pos: -92.5,17.5 - parent: 89 -- proto: WallMining - entities: - - uid: 24942 + pos: -10.5,-33.5 + parent: 2 + - uid: 20159 components: - type: Transform - pos: 2.5,-1.5 - parent: 22565 - - uid: 24943 + pos: -8.5,-26.5 + parent: 2 + - uid: 20160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 22565 - - uid: 24944 + pos: -7.5,-26.5 + parent: 2 + - uid: 20161 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 22565 - - uid: 24945 + pos: -95.5,-22.5 + parent: 2 + - uid: 20162 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 22565 - - uid: 24946 + pos: -101.5,-22.5 + parent: 2 + - uid: 20163 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 22565 - - uid: 24947 + pos: -101.5,-23.5 + parent: 2 + - uid: 20164 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 22565 - - uid: 24948 + pos: -101.5,-24.5 + parent: 2 + - uid: 20165 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 22565 - - uid: 24949 + pos: -101.5,-25.5 + parent: 2 + - uid: 20166 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 22565 - - uid: 24950 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 22565 - - uid: 24951 + pos: -98.5,-26.5 + parent: 2 + - uid: 20167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 22565 - - uid: 24952 + rot: 3.141592653589793 rad + pos: -101.5,-26.5 + parent: 2 + - uid: 20168 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 22565 - - uid: 24953 + pos: -100.5,-26.5 + parent: 2 + - uid: 20169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 22565 - - uid: 24954 + rot: 3.141592653589793 rad + pos: -99.5,-22.5 + parent: 2 + - uid: 20170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 22565 - - uid: 24955 + rot: 3.141592653589793 rad + pos: -99.5,-26.5 + parent: 2 + - uid: 20171 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,14.5 - parent: 22565 - - uid: 24956 + pos: -99.5,-25.5 + parent: 2 + - uid: 20172 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 22565 - - uid: 24957 + pos: -99.5,-24.5 + parent: 2 + - uid: 20173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 22565 - - uid: 24958 + rot: 3.141592653589793 rad + pos: -99.5,-23.5 + parent: 2 + - uid: 20174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 - parent: 22565 - - uid: 24959 + rot: 3.141592653589793 rad + pos: -97.5,-26.5 + parent: 2 + - uid: 20175 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,20.5 - parent: 22565 - - uid: 24960 + pos: -97.5,-25.5 + parent: 2 + - uid: 20176 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,16.5 - parent: 22565 - - uid: 24961 + pos: -97.5,-24.5 + parent: 2 + - uid: 20177 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 22565 - - uid: 24962 + pos: -97.5,-23.5 + parent: 2 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 22565 - - uid: 24963 + pos: -97.5,-22.5 + parent: 2 + - uid: 20179 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 22565 - - uid: 24964 + pos: -96.5,-26.5 + parent: 2 + - uid: 20180 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 22565 - - uid: 24965 + pos: -95.5,-26.5 + parent: 2 + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 22565 - - uid: 24966 + pos: -95.5,-25.5 + parent: 2 + - uid: 20182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 - parent: 22565 - - uid: 24967 + rot: 3.141592653589793 rad + pos: -95.5,-24.5 + parent: 2 + - uid: 20183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 22565 - - uid: 24968 + rot: 3.141592653589793 rad + pos: -95.5,-23.5 + parent: 2 + - uid: 20184 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,11.5 - parent: 22565 - - uid: 24969 + pos: -94.5,-26.5 + parent: 2 + - uid: 20185 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,18.5 - parent: 22565 - - uid: 24970 + pos: -93.5,-26.5 + parent: 2 + - uid: 20186 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 22565 - - uid: 24971 + pos: -93.5,-25.5 + parent: 2 + - uid: 20187 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 22565 - - uid: 24972 + pos: -93.5,-24.5 + parent: 2 + - uid: 20188 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 22565 - - uid: 24973 + pos: -93.5,-23.5 + parent: 2 + - uid: 20189 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 22565 - - uid: 24974 + pos: -93.5,-22.5 + parent: 2 + - uid: 20190 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 22565 - - uid: 24975 + pos: -92.5,-26.5 + parent: 2 + - uid: 20191 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 22565 - - uid: 24976 + pos: -91.5,-26.5 + parent: 2 + - uid: 20192 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 22565 - - uid: 24977 + pos: -91.5,-25.5 + parent: 2 + - uid: 20193 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 22565 - - uid: 24978 + pos: -91.5,-24.5 + parent: 2 + - uid: 20194 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 22565 - - uid: 24979 + pos: -91.5,-23.5 + parent: 2 + - uid: 20195 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,22.5 - parent: 22565 - - uid: 24980 + pos: -91.5,-22.5 + parent: 2 + - uid: 20196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 22565 - - uid: 24981 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 20197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 22565 - - uid: 24982 + pos: -86.5,11.5 + parent: 2 + - uid: 20198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 22565 - - uid: 24983 + pos: -83.5,17.5 + parent: 2 + - uid: 20199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 22565 - - uid: 24984 + pos: -83.5,15.5 + parent: 2 + - uid: 20200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 22565 - - uid: 24985 + pos: 50.5,-6.5 + parent: 2 + - uid: 20201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 22565 - - uid: 24986 + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - uid: 20202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 22565 - - uid: 24987 + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 20203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 22565 - - uid: 24988 + rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 2 + - uid: 20204 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 22565 - - uid: 24989 + pos: -89.5,-22.5 + parent: 2 + - uid: 20205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 22565 - - uid: 24990 + pos: 49.5,-10.5 + parent: 2 + - uid: 20206 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 22565 - - uid: 24991 + pos: 42.5,2.5 + parent: 2 + - uid: 20207 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 22565 - - uid: 24992 + pos: 39.5,-0.5 + parent: 2 + - uid: 20208 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 22565 - - uid: 24993 + pos: 38.5,-0.5 + parent: 2 + - uid: 20209 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 22565 - - uid: 24994 + pos: 37.5,-0.5 + parent: 2 + - uid: 20210 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 22565 - - uid: 24995 + pos: 37.5,0.5 + parent: 2 + - uid: 20211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 22565 - - uid: 24996 + rot: 3.141592653589793 rad + pos: 36.5,0.5 + parent: 2 + - uid: 20212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 22565 - - uid: 24997 + pos: 0.5,-30.5 + parent: 2 + - uid: 20213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 22565 - - uid: 24998 + pos: 5.5,-26.5 + parent: 2 + - uid: 20214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 22565 - - uid: 24999 + pos: 5.5,-27.5 + parent: 2 + - uid: 20215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,8.5 - parent: 22565 - - uid: 25000 + pos: -3.5,-36.5 + parent: 2 + - uid: 20216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 22565 - - uid: 25001 + pos: -10.5,-26.5 + parent: 2 + - uid: 20217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 22565 - - uid: 25002 + pos: 4.5,-26.5 + parent: 2 + - uid: 20218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 22565 - - uid: 25003 + pos: 0.5,-31.5 + parent: 2 + - uid: 20219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 22565 - - uid: 25004 + pos: -3.5,-34.5 + parent: 2 + - uid: 20220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 22565 - - uid: 25005 + pos: -3.5,-33.5 + parent: 2 + - uid: 20221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 22565 - - uid: 25006 + pos: 41.5,7.5 + parent: 2 + - uid: 20222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 22565 - - uid: 25007 + pos: 17.5,9.5 + parent: 2 + - uid: 20223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 22565 - - uid: 25008 + pos: 16.5,9.5 + parent: 2 + - uid: 20224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 22565 - - uid: 25009 + rot: 3.141592653589793 rad + pos: -89.5,-24.5 + parent: 2 + - uid: 20225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 22565 - - uid: 25010 + rot: 3.141592653589793 rad + pos: -89.5,-23.5 + parent: 2 + - uid: 20226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 22565 - - uid: 25011 + rot: 3.141592653589793 rad + pos: -89.5,-25.5 + parent: 2 + - uid: 20227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 22565 - - uid: 25012 + rot: 3.141592653589793 rad + pos: -89.5,-26.5 + parent: 2 + - uid: 20228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 22565 - - uid: 25013 + rot: 3.141592653589793 rad + pos: -90.5,-26.5 + parent: 2 + - uid: 20229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 22565 - - uid: 25014 + rot: 3.141592653589793 rad + pos: -88.5,-26.5 + parent: 2 + - uid: 20230 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 22565 - - uid: 25015 + pos: -87.5,-26.5 + parent: 2 + - uid: 20231 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 22565 - - uid: 25016 + pos: -87.5,-25.5 + parent: 2 + - uid: 20232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 22565 - - uid: 25017 + rot: 3.141592653589793 rad + pos: -87.5,-24.5 + parent: 2 + - uid: 20233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 22565 - - uid: 25018 + rot: 3.141592653589793 rad + pos: -87.5,-23.5 + parent: 2 + - uid: 20234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 22565 - - uid: 25019 + rot: 3.141592653589793 rad + pos: -87.5,-22.5 + parent: 2 + - uid: 20235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 22565 - - uid: 25020 + rot: 3.141592653589793 rad + pos: -86.5,-26.5 + parent: 2 + - uid: 20236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 22565 - - uid: 25021 + rot: 3.141592653589793 rad + pos: -85.5,-26.5 + parent: 2 + - uid: 20237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 22565 - - uid: 25022 + rot: 3.141592653589793 rad + pos: -85.5,-25.5 + parent: 2 + - uid: 20238 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 22565 - - uid: 25023 + pos: -85.5,-24.5 + parent: 2 + - uid: 20239 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 22565 - - uid: 25024 + pos: -85.5,-23.5 + parent: 2 + - uid: 20240 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,0.5 - parent: 22565 - - uid: 25025 + pos: -85.5,-22.5 + parent: 2 + - uid: 20241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,0.5 - parent: 22565 - - uid: 25026 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - uid: 20242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 22565 - - uid: 25027 + pos: 32.5,17.5 + parent: 2 + - uid: 20243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 22565 - - uid: 25028 + pos: 31.5,17.5 + parent: 2 + - uid: 20244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 - parent: 22565 - - uid: 25029 + pos: 29.5,16.5 + parent: 2 + - uid: 20245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,4.5 - parent: 22565 - - uid: 25030 + pos: 29.5,17.5 + parent: 2 + - uid: 20246 components: - type: Transform - pos: -36.5,7.5 - parent: 22565 - - uid: 25031 + pos: 30.5,17.5 + parent: 2 + - uid: 20247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,10.5 - parent: 22565 - - uid: 25032 + pos: 29.5,11.5 + parent: 2 + - uid: 20248 components: - type: Transform - pos: -10.5,-4.5 - parent: 22565 - - uid: 25033 + pos: 29.5,12.5 + parent: 2 + - uid: 20249 components: - type: Transform - pos: -8.5,-4.5 - parent: 22565 - - uid: 25034 + pos: 29.5,13.5 + parent: 2 + - uid: 20250 components: - type: Transform - pos: -13.5,-4.5 - parent: 22565 - - uid: 25035 + pos: 29.5,14.5 + parent: 2 + - uid: 20251 components: - type: Transform - pos: -15.5,-4.5 - parent: 22565 - - uid: 25036 + pos: 29.5,15.5 + parent: 2 + - uid: 20252 components: - type: Transform - pos: -9.5,-3.5 - parent: 22565 - - uid: 25037 + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - uid: 20253 components: - type: Transform - pos: -14.5,-3.5 - parent: 22565 - - uid: 25038 + rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 20254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 22565 - - uid: 25039 + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 20255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 22565 - - uid: 25040 + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 20256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 25041 + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 20257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 25042 + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - uid: 20258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 22565 -- proto: WallMiningDiagonal - entities: - - uid: 25043 + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 + - uid: 20259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 22565 - - uid: 25044 + rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 + - uid: 20260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 22565 - - uid: 25045 + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - uid: 20261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 22565 - - uid: 25046 + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - uid: 20262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 22565 - - uid: 25047 + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 20263 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 22565 - - uid: 25048 + pos: 33.5,4.5 + parent: 2 + - uid: 20264 components: - type: Transform - pos: 5.5,13.5 - parent: 22565 - - uid: 25049 + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - uid: 20265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 22565 - - uid: 25050 + pos: 33.5,8.5 + parent: 2 + - uid: 20266 components: - type: Transform - pos: -3.5,-1.5 - parent: 22565 -- proto: WallmountTelescreenFrame - entities: - - uid: 16866 + pos: 29.5,7.5 + parent: 2 + - uid: 20267 components: - type: Transform - pos: -72.5,-5.5 - parent: 89 -- proto: WallmountTelevision - entities: - - uid: 17249 + rot: -1.5707963267948966 rad + pos: -78.5,-22.5 + parent: 2 + - uid: 20268 components: - type: Transform - pos: -5.5,4.5 - parent: 89 - - uid: 19783 + rot: -1.5707963267948966 rad + pos: -78.5,-26.5 + parent: 2 + - uid: 20269 components: - type: Transform - pos: -62.5,6.5 - parent: 89 - - uid: 19784 + rot: -1.5707963267948966 rad + pos: -82.5,-26.5 + parent: 2 + - uid: 20270 components: - type: Transform - pos: -67.5,19.5 - parent: 89 - - uid: 19785 + rot: -1.5707963267948966 rad + pos: -82.5,-22.5 + parent: 2 + - uid: 20271 components: - type: Transform - pos: 28.5,4.5 - parent: 89 -- proto: WallReinforced - entities: - - uid: 113 + rot: -1.5707963267948966 rad + pos: -82.5,-23.5 + parent: 2 + - uid: 20272 components: - type: Transform - pos: 11.5,38.5 - parent: 89 - - uid: 146 + rot: -1.5707963267948966 rad + pos: -82.5,-25.5 + parent: 2 + - uid: 20273 components: - type: Transform - pos: 26.5,29.5 - parent: 89 - - uid: 170 + pos: 33.5,17.5 + parent: 2 + - uid: 20274 components: - type: Transform - pos: -8.5,-42.5 - parent: 89 - - uid: 244 + pos: 34.5,17.5 + parent: 2 + - uid: 20275 components: - type: Transform - pos: -2.5,-44.5 - parent: 89 - - uid: 247 + pos: 35.5,17.5 + parent: 2 + - uid: 20276 components: - type: Transform - pos: -2.5,-45.5 - parent: 89 - - uid: 255 + pos: 36.5,17.5 + parent: 2 + - uid: 20277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-42.5 - parent: 89 - - uid: 257 + pos: 37.5,17.5 + parent: 2 + - uid: 20278 components: - type: Transform - pos: -2.5,-46.5 - parent: 89 - - uid: 269 + pos: 38.5,17.5 + parent: 2 + - uid: 20279 components: - type: Transform - pos: -5.5,-33.5 - parent: 89 - - uid: 271 + pos: 39.5,17.5 + parent: 2 + - uid: 20280 components: - type: Transform - pos: -8.5,-33.5 - parent: 89 - - uid: 285 + pos: 39.5,16.5 + parent: 2 + - uid: 20281 components: - type: Transform - pos: -6.5,-26.5 - parent: 89 - - uid: 286 + pos: 35.5,0.5 + parent: 2 + - uid: 20282 components: - type: Transform - pos: -4.5,-33.5 - parent: 89 - - uid: 287 + pos: 34.5,0.5 + parent: 2 + - uid: 20283 components: - type: Transform - pos: -6.5,-33.5 - parent: 89 - - uid: 288 + pos: 33.5,0.5 + parent: 2 + - uid: 20284 components: - type: Transform - pos: -7.5,-33.5 - parent: 89 - - uid: 289 + pos: 29.5,0.5 + parent: 2 + - uid: 20285 components: - type: Transform - pos: -9.5,-33.5 - parent: 89 - - uid: 301 + pos: 36.5,-15.5 + parent: 2 + - uid: 20286 components: - type: Transform - pos: 14.5,35.5 - parent: 89 - - uid: 393 + pos: 34.5,-15.5 + parent: 2 + - uid: 20287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 89 - - uid: 394 + pos: 35.5,-15.5 + parent: 2 + - uid: 20288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 89 - - uid: 397 + pos: 33.5,-15.5 + parent: 2 + - uid: 20289 components: - type: Transform - pos: 50.5,-10.5 - parent: 89 - - uid: 459 + pos: 32.5,-15.5 + parent: 2 + - uid: 20290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,15.5 - parent: 89 - - uid: 460 + pos: 31.5,-15.5 + parent: 2 + - uid: 20291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,14.5 - parent: 89 - - uid: 461 + pos: 30.5,-15.5 + parent: 2 + - uid: 20292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,18.5 - parent: 89 - - uid: 462 + pos: 29.5,-15.5 + parent: 2 + - uid: 20293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,15.5 - parent: 89 - - uid: 465 + pos: 27.5,-15.5 + parent: 2 + - uid: 20294 components: - type: Transform - pos: 47.5,-9.5 - parent: 89 - - uid: 468 + pos: 26.5,-15.5 + parent: 2 + - uid: 20295 components: - type: Transform - pos: -106.5,-13.5 - parent: 89 - - uid: 470 + pos: 24.5,-15.5 + parent: 2 + - uid: 20296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 89 - - uid: 471 + pos: 23.5,-15.5 + parent: 2 + - uid: 20297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,12.5 - parent: 89 - - uid: 472 + pos: 17.5,-12.5 + parent: 2 + - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,11.5 - parent: 89 - - uid: 473 + pos: 17.5,-11.5 + parent: 2 + - uid: 20299 components: - type: Transform - pos: 49.5,19.5 - parent: 89 - - uid: 474 + pos: 17.5,-13.5 + parent: 2 + - uid: 20300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 89 - - uid: 475 + pos: 21.5,-15.5 + parent: 2 + - uid: 20301 components: - type: Transform - pos: 30.5,-4.5 - parent: 89 - - uid: 479 + pos: 17.5,-14.5 + parent: 2 + - uid: 20302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 89 - - uid: 483 + pos: 20.5,-15.5 + parent: 2 + - uid: 20303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 89 - - uid: 484 + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 20304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 89 - - uid: 485 + pos: 14.5,-11.5 + parent: 2 + - uid: 20305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 89 - - uid: 486 + pos: 15.5,-11.5 + parent: 2 + - uid: 20306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,11.5 - parent: 89 - - uid: 487 + pos: 1.5,-14.5 + parent: 2 + - uid: 20307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 89 - - uid: 488 + pos: 1.5,-13.5 + parent: 2 + - uid: 20308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,11.5 - parent: 89 - - uid: 489 + pos: 2.5,-14.5 + parent: 2 + - uid: 20309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 89 - - uid: 491 + pos: 3.5,-14.5 + parent: 2 + - uid: 20310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,11.5 - parent: 89 - - uid: 492 + pos: 4.5,-14.5 + parent: 2 + - uid: 20311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,10.5 - parent: 89 - - uid: 499 + pos: 5.5,-14.5 + parent: 2 + - uid: 20312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,5.5 - parent: 89 - - uid: 500 + pos: 6.5,-14.5 + parent: 2 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,4.5 - parent: 89 - - uid: 501 + pos: 6.5,-13.5 + parent: 2 + - uid: 20314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,4.5 - parent: 89 - - uid: 502 + pos: 8.5,-13.5 + parent: 2 + - uid: 20315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 89 - - uid: 503 + pos: 9.5,-13.5 + parent: 2 + - uid: 20316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,2.5 - parent: 89 - - uid: 504 + pos: 10.5,-13.5 + parent: 2 + - uid: 20317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 89 - - uid: 505 + pos: 10.5,-12.5 + parent: 2 + - uid: 20318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,4.5 - parent: 89 - - uid: 506 + pos: 10.5,-11.5 + parent: 2 + - uid: 20319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 89 - - uid: 507 + pos: 7.5,-13.5 + parent: 2 + - uid: 20320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,6.5 - parent: 89 - - uid: 508 + pos: 36.5,-13.5 + parent: 2 + - uid: 20321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 89 - - uid: 510 + pos: 2.5,0.5 + parent: 2 + - uid: 20322 components: - type: Transform - pos: -5.5,-26.5 - parent: 89 - - uid: 511 + pos: 50.5,-8.5 + parent: 2 + - uid: 20323 components: - type: Transform - pos: -4.5,-26.5 - parent: 89 - - uid: 512 + pos: 43.5,-7.5 + parent: 2 + - uid: 20324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,6.5 - parent: 89 - - uid: 513 + pos: 1.5,-3.5 + parent: 2 + - uid: 20325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,9.5 - parent: 89 - - uid: 514 + pos: 35.5,-13.5 + parent: 2 + - uid: 20326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,9.5 - parent: 89 - - uid: 515 + pos: 1.5,-9.5 + parent: 2 + - uid: 20327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 89 - - uid: 518 + pos: 2.5,-9.5 + parent: 2 + - uid: 20328 components: - type: Transform - pos: 47.5,-10.5 - parent: 89 - - uid: 519 + pos: 2.5,-8.5 + parent: 2 + - uid: 20329 components: - type: Transform - pos: 46.5,-9.5 - parent: 89 - - uid: 520 + pos: 2.5,-7.5 + parent: 2 + - uid: 20330 components: - type: Transform - pos: 46.5,-8.5 - parent: 89 - - uid: 524 + pos: 2.5,-6.5 + parent: 2 + - uid: 20331 components: - type: Transform - pos: 48.5,-10.5 - parent: 89 - - uid: 525 + pos: 2.5,-5.5 + parent: 2 + - uid: 20332 components: - type: Transform - pos: 48.5,-9.5 - parent: 89 - - uid: 526 + pos: 2.5,-4.5 + parent: 2 + - uid: 20333 components: - type: Transform - pos: 46.5,-10.5 - parent: 89 - - uid: 527 + pos: 2.5,-3.5 + parent: 2 + - uid: 20334 components: - type: Transform - pos: -106.5,-12.5 - parent: 89 - - uid: 528 + pos: 1.5,-2.5 + parent: 2 + - uid: 20335 components: - type: Transform - pos: 49.5,14.5 - parent: 89 - - uid: 534 + pos: 1.5,-1.5 + parent: 2 + - uid: 20336 components: - type: Transform - pos: 48.5,-8.5 - parent: 89 - - uid: 544 + pos: 1.5,-0.5 + parent: 2 + - uid: 20337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,4.5 - parent: 89 - - uid: 545 + pos: 1.5,0.5 + parent: 2 + - uid: 20338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,4.5 - parent: 89 - - uid: 547 + pos: 3.5,0.5 + parent: 2 + - uid: 20339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,9.5 - parent: 89 - - uid: 548 + pos: 4.5,0.5 + parent: 2 + - uid: 20340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,9.5 - parent: 89 - - uid: 549 + pos: 5.5,0.5 + parent: 2 + - uid: 20341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 89 - - uid: 551 + pos: 6.5,0.5 + parent: 2 + - uid: 20342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 89 - - uid: 552 + pos: 7.5,0.5 + parent: 2 + - uid: 20343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 89 - - uid: 553 + pos: 8.5,0.5 + parent: 2 + - uid: 20344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 89 - - uid: 555 + pos: 10.5,0.5 + parent: 2 + - uid: 20345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,7.5 - parent: 89 - - uid: 556 + pos: 11.5,0.5 + parent: 2 + - uid: 20346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,1.5 - parent: 89 - - uid: 557 + pos: 12.5,0.5 + parent: 2 + - uid: 20347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 89 - - uid: 558 + pos: 13.5,0.5 + parent: 2 + - uid: 20348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 89 - - uid: 559 + pos: 14.5,0.5 + parent: 2 + - uid: 20349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,1.5 - parent: 89 - - uid: 560 + pos: 15.5,0.5 + parent: 2 + - uid: 20350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 89 - - uid: 562 + pos: 16.5,0.5 + parent: 2 + - uid: 20351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,2.5 - parent: 89 - - uid: 563 + pos: 17.5,0.5 + parent: 2 + - uid: 20352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 89 - - uid: 564 + pos: 19.5,0.5 + parent: 2 + - uid: 20353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,4.5 - parent: 89 - - uid: 565 + pos: 20.5,0.5 + parent: 2 + - uid: 20354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,5.5 - parent: 89 - - uid: 566 + pos: 20.5,-0.5 + parent: 2 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 89 - - uid: 568 + pos: 21.5,-0.5 + parent: 2 + - uid: 20356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,7.5 - parent: 89 - - uid: 569 + pos: 22.5,-0.5 + parent: 2 + - uid: 20357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,7.5 - parent: 89 - - uid: 570 + pos: 23.5,-0.5 + parent: 2 + - uid: 20358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,7.5 - parent: 89 - - uid: 571 + pos: 24.5,-0.5 + parent: 2 + - uid: 20359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,7.5 - parent: 89 - - uid: 572 + pos: 24.5,0.5 + parent: 2 + - uid: 20360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 89 - - uid: 573 + pos: 24.5,0.5 + parent: 2 + - uid: 20361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 89 - - uid: 575 + pos: 25.5,0.5 + parent: 2 + - uid: 20362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,3.5 - parent: 89 - - uid: 576 + pos: 26.5,0.5 + parent: 2 + - uid: 20363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,2.5 - parent: 89 - - uid: 578 + pos: 27.5,0.5 + parent: 2 + - uid: 20364 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 - - uid: 579 + pos: 6.5,-9.5 + parent: 2 + - uid: 20365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-23.5 - parent: 89 - - uid: 580 + pos: 6.5,-8.5 + parent: 2 + - uid: 20366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-23.5 - parent: 89 - - uid: 581 + pos: 6.5,-7.5 + parent: 2 + - uid: 20367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-25.5 - parent: 89 - - uid: 582 + pos: 9.5,-7.5 + parent: 2 + - uid: 20368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-25.5 - parent: 89 - - uid: 583 + pos: 10.5,-7.5 + parent: 2 + - uid: 20369 components: - type: Transform - pos: 48.5,9.5 - parent: 89 - - uid: 584 + pos: 10.5,-8.5 + parent: 2 + - uid: 20370 components: - type: Transform - pos: 49.5,9.5 - parent: 89 - - uid: 585 + pos: 10.5,-10.5 + parent: 2 + - uid: 20371 components: - type: Transform - pos: 51.5,13.5 - parent: 89 - - uid: 586 + pos: 20.5,-11.5 + parent: 2 + - uid: 20372 components: - type: Transform - pos: 51.5,12.5 - parent: 89 - - uid: 587 + pos: 20.5,-12.5 + parent: 2 + - uid: 20373 components: - type: Transform - pos: 49.5,10.5 - parent: 89 - - uid: 589 + pos: 20.5,-13.5 + parent: 2 + - uid: 20374 components: - type: Transform - pos: 50.5,12.5 - parent: 89 - - uid: 598 + pos: 20.5,-14.5 + parent: 2 + - uid: 20375 components: - type: Transform - pos: -106.5,-11.5 - parent: 89 - - uid: 600 + pos: 23.5,-11.5 + parent: 2 + - uid: 20376 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 601 + pos: 23.5,-12.5 + parent: 2 + - uid: 20377 components: - type: Transform - pos: -104.5,-11.5 - parent: 89 - - uid: 602 + pos: 23.5,-13.5 + parent: 2 + - uid: 20378 components: - type: Transform - pos: -103.5,-11.5 - parent: 89 - - uid: 603 + pos: 23.5,-14.5 + parent: 2 + - uid: 20379 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 - - uid: 604 + pos: 26.5,-11.5 + parent: 2 + - uid: 20380 components: - type: Transform - pos: -101.5,-11.5 - parent: 89 - - uid: 605 + pos: 26.5,-12.5 + parent: 2 + - uid: 20381 components: - type: Transform - pos: -100.5,-11.5 - parent: 89 - - uid: 606 + pos: 26.5,-13.5 + parent: 2 + - uid: 20382 components: - type: Transform - pos: -99.5,-11.5 - parent: 89 - - uid: 607 + pos: 26.5,-14.5 + parent: 2 + - uid: 20383 components: - type: Transform - pos: -98.5,-11.5 - parent: 89 - - uid: 608 + pos: 29.5,-11.5 + parent: 2 + - uid: 20384 components: - type: Transform - pos: -97.5,-11.5 - parent: 89 - - uid: 609 + pos: 29.5,-12.5 + parent: 2 + - uid: 20385 components: - type: Transform - pos: -97.5,-12.5 - parent: 89 - - uid: 611 + pos: 29.5,-13.5 + parent: 2 + - uid: 20386 components: - type: Transform - pos: -100.5,6.5 - parent: 89 - - uid: 613 + pos: 29.5,-14.5 + parent: 2 + - uid: 20387 components: - type: Transform - pos: -95.5,-12.5 - parent: 89 - - uid: 614 + pos: 35.5,-12.5 + parent: 2 + - uid: 20388 components: - type: Transform - pos: -96.5,-6.5 - parent: 89 - - uid: 623 + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 20389 components: - type: Transform - pos: -90.5,-12.5 - parent: 89 - - uid: 625 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - uid: 20390 components: - type: Transform - pos: -89.5,-12.5 - parent: 89 - - uid: 627 + pos: 39.5,-7.5 + parent: 2 + - uid: 20391 components: - type: Transform - pos: -88.5,-12.5 - parent: 89 - - uid: 629 + pos: 24.5,-3.5 + parent: 2 + - uid: 20392 components: - type: Transform - pos: -87.5,-12.5 - parent: 89 - - uid: 631 + pos: 39.5,-8.5 + parent: 2 + - uid: 20393 components: - type: Transform - pos: -86.5,-12.5 - parent: 89 - - uid: 655 + pos: 39.5,-9.5 + parent: 2 + - uid: 20394 components: - type: Transform - pos: -102.5,-20.5 - parent: 89 - - uid: 656 + pos: 39.5,-1.5 + parent: 2 + - uid: 20395 components: - type: Transform - pos: -103.5,-20.5 - parent: 89 - - uid: 657 + pos: 38.5,-1.5 + parent: 2 + - uid: 20396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,6.5 - parent: 89 - - uid: 658 + pos: 38.5,-2.5 + parent: 2 + - uid: 20397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,6.5 - parent: 89 - - uid: 659 + pos: 38.5,-3.5 + parent: 2 + - uid: 20398 components: - type: Transform - pos: -106.5,-20.5 - parent: 89 - - uid: 663 + pos: 38.5,-4.5 + parent: 2 + - uid: 20399 components: - type: Transform - pos: -110.5,-20.5 - parent: 89 - - uid: 664 + pos: 37.5,-4.5 + parent: 2 + - uid: 20400 components: - type: Transform - pos: -106.5,-19.5 - parent: 89 - - uid: 665 + pos: 29.5,-7.5 + parent: 2 + - uid: 20401 components: - type: Transform - pos: -106.5,-18.5 - parent: 89 - - uid: 674 + pos: 29.5,-4.5 + parent: 2 + - uid: 20402 components: - type: Transform - pos: 44.5,23.5 - parent: 89 - - uid: 675 + pos: 31.5,-4.5 + parent: 2 + - uid: 20403 components: - type: Transform - pos: 43.5,23.5 - parent: 89 - - uid: 763 + pos: 29.5,-3.5 + parent: 2 + - uid: 20404 components: - type: Transform - pos: -82.5,-10.5 - parent: 89 - - uid: 764 + pos: 29.5,-2.5 + parent: 2 + - uid: 20405 components: - type: Transform - pos: -83.5,-10.5 - parent: 89 - - uid: 765 + pos: 29.5,-1.5 + parent: 2 + - uid: 20406 components: - type: Transform - pos: -83.5,-9.5 - parent: 89 - - uid: 791 + pos: 29.5,-0.5 + parent: 2 + - uid: 20407 components: - type: Transform - pos: 45.5,-6.5 - parent: 89 - - uid: 796 + pos: 24.5,-4.5 + parent: 2 + - uid: 20408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 89 - - uid: 811 + pos: 24.5,-5.5 + parent: 2 + - uid: 20409 components: - type: Transform - pos: -97.5,-10.5 - parent: 89 - - uid: 812 + pos: 24.5,-6.5 + parent: 2 + - uid: 20410 components: - type: Transform - pos: -97.5,-9.5 - parent: 89 - - uid: 813 + pos: 24.5,-7.5 + parent: 2 + - uid: 20411 components: - type: Transform - pos: -97.5,-8.5 - parent: 89 - - uid: 814 + pos: 23.5,-7.5 + parent: 2 + - uid: 20412 components: - type: Transform - pos: -97.5,-7.5 - parent: 89 - - uid: 815 + pos: 22.5,-7.5 + parent: 2 + - uid: 20413 components: - type: Transform - pos: -97.5,-6.5 - parent: 89 - - uid: 868 + pos: 21.5,-7.5 + parent: 2 + - uid: 20414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,6.5 - parent: 89 - - uid: 871 + pos: 20.5,-7.5 + parent: 2 + - uid: 20415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 89 - - uid: 872 + pos: 19.5,-7.5 + parent: 2 + - uid: 20416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-22.5 - parent: 89 - - uid: 873 + pos: 17.5,-7.5 + parent: 2 + - uid: 20417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-21.5 - parent: 89 - - uid: 876 + pos: 16.5,-7.5 + parent: 2 + - uid: 20418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-22.5 - parent: 89 - - uid: 878 + pos: 16.5,-6.5 + parent: 2 + - uid: 20419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,3.5 - parent: 89 - - uid: 879 + pos: 16.5,-5.5 + parent: 2 + - uid: 20420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,2.5 - parent: 89 - - uid: 880 + pos: 16.5,-4.5 + parent: 2 + - uid: 20421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 89 - - uid: 881 + pos: 16.5,-3.5 + parent: 2 + - uid: 20422 components: - type: Transform - pos: -100.5,7.5 - parent: 89 - - uid: 882 + pos: 20.5,-1.5 + parent: 2 + - uid: 20423 components: - type: Transform - pos: -100.5,8.5 - parent: 89 - - uid: 883 + pos: 17.5,-3.5 + parent: 2 + - uid: 20424 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 884 + pos: 18.5,-3.5 + parent: 2 + - uid: 20425 components: - type: Transform - pos: -100.5,10.5 - parent: 89 - - uid: 885 + pos: 19.5,-3.5 + parent: 2 + - uid: 20426 components: - type: Transform - pos: -100.5,11.5 - parent: 89 - - uid: 886 + pos: 20.5,-3.5 + parent: 2 + - uid: 20427 components: - type: Transform - pos: -101.5,6.5 - parent: 89 - - uid: 887 + pos: 20.5,-2.5 + parent: 2 + - uid: 20428 components: - type: Transform - pos: -101.5,11.5 - parent: 89 - - uid: 888 + pos: 16.5,-1.5 + parent: 2 + - uid: 20429 components: - type: Transform - pos: -101.5,12.5 - parent: 89 - - uid: 889 + pos: 16.5,-0.5 + parent: 2 + - uid: 20430 components: - type: Transform - pos: -102.5,12.5 - parent: 89 - - uid: 890 + pos: 10.5,-4.5 + parent: 2 + - uid: 20431 components: - type: Transform - pos: -103.5,12.5 - parent: 89 - - uid: 891 + pos: 6.5,-3.5 + parent: 2 + - uid: 20432 components: - type: Transform - pos: -104.5,12.5 - parent: 89 - - uid: 892 + pos: 7.5,-3.5 + parent: 2 + - uid: 20433 components: - type: Transform - pos: -105.5,12.5 - parent: 89 - - uid: 893 + pos: 4.5,-3.5 + parent: 2 + - uid: 20434 components: - type: Transform - pos: -106.5,12.5 - parent: 89 - - uid: 894 + pos: 3.5,-3.5 + parent: 2 + - uid: 20435 components: - type: Transform - pos: -106.5,6.5 - parent: 89 - - uid: 896 + pos: 18.5,-7.5 + parent: 2 + - uid: 20436 components: - type: Transform - pos: -106.5,10.5 - parent: 89 - - uid: 897 + pos: 38.5,20.5 + parent: 2 + - uid: 20437 components: - type: Transform - pos: -106.5,11.5 - parent: 89 - - uid: 903 + pos: 42.5,20.5 + parent: 2 + - uid: 20438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-7.5 - parent: 89 - - uid: 934 + pos: 39.5,20.5 + parent: 2 + - uid: 20439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-11.5 - parent: 89 - - uid: 941 + pos: 7.5,-27.5 + parent: 2 + - uid: 20440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-6.5 - parent: 89 - - uid: 942 + pos: 6.5,-27.5 + parent: 2 + - uid: 20441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 - - uid: 943 + pos: 40.5,-0.5 + parent: 2 + - uid: 20442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 - - uid: 944 + pos: 45.5,-0.5 + parent: 2 + - uid: 20443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-6.5 - parent: 89 - - uid: 986 + pos: 43.5,-0.5 + parent: 2 + - uid: 20444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,5.5 - parent: 89 - - uid: 995 + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 20445 components: - type: Transform - pos: 36.5,-18.5 - parent: 89 - - uid: 1003 + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 20446 components: - type: Transform - pos: 45.5,-8.5 - parent: 89 - - uid: 1004 + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + - uid: 20447 components: - type: Transform - pos: 45.5,-7.5 - parent: 89 - - uid: 1048 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 20448 components: - type: Transform - pos: 25.5,26.5 - parent: 89 - - uid: 1073 + pos: 41.5,15.5 + parent: 2 + - uid: 20449 components: - type: Transform - pos: 43.5,-1.5 - parent: 89 - - uid: 1110 + pos: 41.5,-10.5 + parent: 2 + - uid: 20450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 89 - - uid: 1118 + pos: 40.5,-10.5 + parent: 2 + - uid: 20451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 89 - - uid: 1119 + pos: 42.5,-10.5 + parent: 2 + - uid: 20452 components: - type: Transform - pos: 42.5,-1.5 - parent: 89 - - uid: 1121 + pos: 37.5,-15.5 + parent: 2 + - uid: 20453 components: - type: Transform - pos: 44.5,-1.5 - parent: 89 - - uid: 1122 + pos: 18.5,9.5 + parent: 2 + - uid: 20454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-0.5 - parent: 89 - - uid: 1123 + pos: 19.5,9.5 + parent: 2 + - uid: 20455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 89 - - uid: 1124 + pos: 37.5,-13.5 + parent: 2 + - uid: 20456 components: - type: Transform - pos: 41.5,-1.5 - parent: 89 - - uid: 1125 + pos: -46.5,2.5 + parent: 2 + - uid: 20457 components: - type: Transform - pos: 40.5,-1.5 - parent: 89 - - uid: 1130 + pos: -46.5,-14.5 + parent: 2 + - uid: 20458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-6.5 - parent: 89 - - uid: 1132 + pos: -46.5,-15.5 + parent: 2 + - uid: 20459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-5.5 - parent: 89 - - uid: 1200 + pos: -46.5,-16.5 + parent: 2 + - uid: 20460 components: - type: Transform - pos: 0.5,-26.5 - parent: 89 - - uid: 1201 + pos: -45.5,-16.5 + parent: 2 + - uid: 20461 components: - type: Transform - pos: 0.5,-27.5 - parent: 89 - - uid: 1202 + pos: -45.5,-17.5 + parent: 2 + - uid: 20462 components: - type: Transform - pos: 0.5,-28.5 - parent: 89 - - uid: 1203 + pos: -49.5,-17.5 + parent: 2 + - uid: 20463 components: - type: Transform - pos: 0.5,-29.5 - parent: 89 - - uid: 1216 + pos: -49.5,-15.5 + parent: 2 + - uid: 20464 components: - type: Transform - pos: -3.5,-26.5 - parent: 89 - - uid: 1218 + pos: -49.5,-14.5 + parent: 2 + - uid: 20465 components: - type: Transform - pos: -3.5,-27.5 - parent: 89 - - uid: 1220 + pos: -42.5,-2.5 + parent: 2 + - uid: 20466 components: - type: Transform - pos: -3.5,-28.5 - parent: 89 - - uid: 1221 + pos: 39.5,-10.5 + parent: 2 + - uid: 20467 components: - type: Transform - pos: -2.5,-32.5 - parent: 89 - - uid: 1222 + pos: -44.5,-1.5 + parent: 2 + - uid: 20468 components: - type: Transform - pos: -3.5,-31.5 - parent: 89 - - uid: 1223 + pos: -46.5,1.5 + parent: 2 + - uid: 20469 components: - type: Transform - pos: -3.5,-32.5 - parent: 89 - - uid: 1226 + pos: -46.5,0.5 + parent: 2 + - uid: 20470 components: - type: Transform - pos: -0.5,-32.5 - parent: 89 - - uid: 1227 + pos: -46.5,-0.5 + parent: 2 + - uid: 20471 components: - type: Transform - pos: -3.5,-29.5 - parent: 89 - - uid: 1228 + pos: -46.5,-1.5 + parent: 2 + - uid: 20472 components: - type: Transform - pos: -9.5,-26.5 - parent: 89 - - uid: 1229 + pos: -45.5,-1.5 + parent: 2 + - uid: 20473 components: - type: Transform - pos: -10.5,-27.5 - parent: 89 - - uid: 1230 + pos: -57.5,6.5 + parent: 2 + - uid: 20474 components: - type: Transform - pos: -10.5,-28.5 - parent: 89 - - uid: 1231 + pos: -57.5,11.5 + parent: 2 + - uid: 20475 components: - type: Transform - pos: -10.5,-29.5 - parent: 89 - - uid: 1232 + pos: -57.5,10.5 + parent: 2 + - uid: 20476 components: - type: Transform - pos: -10.5,-31.5 - parent: 89 - - uid: 1233 + pos: -57.5,9.5 + parent: 2 + - uid: 20477 components: - type: Transform - pos: -10.5,-30.5 - parent: 89 - - uid: 1234 + pos: -57.5,7.5 + parent: 2 + - uid: 20478 components: - type: Transform - pos: -10.5,-32.5 - parent: 89 - - uid: 1235 + pos: -57.5,8.5 + parent: 2 + - uid: 20479 components: - type: Transform - pos: -10.5,-33.5 - parent: 89 - - uid: 1245 + pos: 44.5,-7.5 + parent: 2 + - uid: 20480 components: - type: Transform - pos: -8.5,-26.5 - parent: 89 - - uid: 1248 + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 + - uid: 20481 components: - type: Transform - pos: -7.5,-26.5 - parent: 89 - - uid: 1249 + rot: 1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - uid: 20482 components: - type: Transform - pos: -4.5,-37.5 - parent: 89 - - uid: 1250 + rot: 1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - uid: 20483 components: - type: Transform - pos: -5.5,-37.5 - parent: 89 - - uid: 1251 + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 20484 components: - type: Transform - pos: -6.5,-37.5 - parent: 89 - - uid: 1252 + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 20485 components: - type: Transform - pos: -7.5,-37.5 - parent: 89 - - uid: 1253 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 20486 components: - type: Transform - pos: -8.5,-37.5 - parent: 89 - - uid: 1254 + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 20487 components: - type: Transform - pos: -8.5,-38.5 - parent: 89 - - uid: 1265 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 20488 components: - type: Transform - pos: 3.5,-43.5 - parent: 89 - - uid: 1266 + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - uid: 20489 components: - type: Transform - pos: 3.5,-44.5 - parent: 89 - - uid: 1267 + rot: 1.5707963267948966 rad + pos: -18.5,10.5 + parent: 2 + - uid: 20490 components: - type: Transform - pos: 3.5,-45.5 - parent: 89 - - uid: 1268 + rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 + - uid: 20491 components: - type: Transform - pos: 3.5,-46.5 - parent: 89 - - uid: 1269 + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 20492 components: - type: Transform - pos: 2.5,-46.5 - parent: 89 - - uid: 1270 + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 20493 components: - type: Transform - pos: 0.5,-46.5 - parent: 89 - - uid: 1271 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - uid: 20494 components: - type: Transform - pos: -0.5,-46.5 - parent: 89 - - uid: 1272 + pos: 15.5,4.5 + parent: 2 + - uid: 20495 components: - type: Transform - pos: -1.5,-46.5 - parent: 89 - - uid: 1273 + pos: 16.5,4.5 + parent: 2 + - uid: 20496 components: - type: Transform - pos: -3.5,-46.5 - parent: 89 - - uid: 1274 + pos: 22.5,4.5 + parent: 2 + - uid: 20497 components: - type: Transform - pos: -5.5,-46.5 - parent: 89 - - uid: 1275 + pos: 21.5,4.5 + parent: 2 + - uid: 20498 components: - type: Transform - pos: -4.5,-46.5 - parent: 89 - - uid: 1276 + pos: 28.5,4.5 + parent: 2 + - uid: 20499 components: - type: Transform - pos: -7.5,-46.5 - parent: 89 - - uid: 1277 + pos: 27.5,4.5 + parent: 2 + - uid: 20500 components: - type: Transform - pos: -8.5,-46.5 - parent: 89 - - uid: 1278 + pos: 26.5,4.5 + parent: 2 + - uid: 20501 components: - type: Transform - pos: -8.5,-45.5 - parent: 89 - - uid: 1279 + pos: 23.5,4.5 + parent: 2 + - uid: 20502 components: - type: Transform - pos: -8.5,-44.5 - parent: 89 - - uid: 1280 + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - uid: 20503 components: - type: Transform - pos: -8.5,-43.5 - parent: 89 - - uid: 1337 + pos: -43.5,-2.5 + parent: 2 + - uid: 20504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-22.5 - parent: 89 - - uid: 1364 + pos: -44.5,-2.5 + parent: 2 + - uid: 20505 components: - type: Transform - pos: 22.5,28.5 - parent: 89 - - uid: 1367 + pos: -42.5,1.5 + parent: 2 + - uid: 20506 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-22.5 - parent: 89 - - uid: 1368 + pos: -42.5,2.5 + parent: 2 + - uid: 20507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-23.5 - parent: 89 - - uid: 1369 + pos: -105.5,-6.5 + parent: 2 + - uid: 20508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-24.5 - parent: 89 - - uid: 1370 + pos: -104.5,-6.5 + parent: 2 + - uid: 20509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-25.5 - parent: 89 - - uid: 1371 + pos: -106.5,-6.5 + parent: 2 + - uid: 20510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-26.5 - parent: 89 - - uid: 1372 + pos: -106.5,-7.5 + parent: 2 + - uid: 20511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-26.5 - parent: 89 - - uid: 1373 + pos: -106.5,-8.5 + parent: 2 + - uid: 20512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-26.5 - parent: 89 - - uid: 1374 + pos: -106.5,-9.5 + parent: 2 + - uid: 20513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-22.5 - parent: 89 - - uid: 1375 + pos: -106.5,-10.5 + parent: 2 + - uid: 20514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-26.5 - parent: 89 - - uid: 1377 + pos: -98.5,-6.5 + parent: 2 + - uid: 20515 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-25.5 - parent: 89 - - uid: 1378 + pos: -61.5,19.5 + parent: 2 + - uid: 20516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-24.5 - parent: 89 - - uid: 1379 + pos: -89.5,11.5 + parent: 2 + - uid: 20517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-23.5 - parent: 89 - - uid: 1380 + pos: -89.5,12.5 + parent: 2 + - uid: 20518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-26.5 - parent: 89 - - uid: 1381 + pos: -89.5,13.5 + parent: 2 + - uid: 20519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-25.5 - parent: 89 - - uid: 1382 + pos: -89.5,15.5 + parent: 2 + - uid: 20520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-24.5 - parent: 89 - - uid: 1383 + pos: -89.5,14.5 + parent: 2 + - uid: 20521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-23.5 - parent: 89 - - uid: 1384 + pos: -89.5,-5.5 + parent: 2 + - uid: 20522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-22.5 - parent: 89 - - uid: 1386 + pos: -83.5,-4.5 + parent: 2 + - uid: 20523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-26.5 - parent: 89 - - uid: 1387 + rot: 1.5707963267948966 rad + pos: -90.5,28.5 + parent: 2 + - uid: 20524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-26.5 - parent: 89 - - uid: 1389 + pos: -86.5,-3.5 + parent: 2 + - uid: 20525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-25.5 - parent: 89 - - uid: 1390 + pos: -88.5,-3.5 + parent: 2 + - uid: 20526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-24.5 - parent: 89 - - uid: 1392 + pos: -89.5,-3.5 + parent: 2 + - uid: 20527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-23.5 - parent: 89 - - uid: 1396 + pos: -89.5,-4.5 + parent: 2 + - uid: 20528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-26.5 - parent: 89 - - uid: 1397 + pos: -87.5,-3.5 + parent: 2 + - uid: 20529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-26.5 - parent: 89 - - uid: 1399 + pos: -83.5,-3.5 + parent: 2 + - uid: 20530 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-25.5 - parent: 89 - - uid: 1401 + pos: -91.5,19.5 + parent: 2 + - uid: 20531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-24.5 - parent: 89 - - uid: 1403 + pos: -79.5,-10.5 + parent: 2 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-23.5 - parent: 89 - - uid: 1405 + pos: -80.5,-10.5 + parent: 2 + - uid: 20533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-22.5 - parent: 89 - - uid: 1406 + pos: -81.5,-10.5 + parent: 2 + - uid: 20534 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-26.5 - parent: 89 - - uid: 1408 + pos: -91.5,20.5 + parent: 2 + - uid: 20535 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-26.5 - parent: 89 - - uid: 1410 + pos: -90.5,19.5 + parent: 2 + - uid: 20536 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-25.5 - parent: 89 - - uid: 1411 + pos: -89.5,21.5 + parent: 2 + - uid: 20537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-24.5 - parent: 89 - - uid: 1413 + pos: -88.5,15.5 + parent: 2 + - uid: 20538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-23.5 - parent: 89 - - uid: 1414 + pos: -87.5,15.5 + parent: 2 + - uid: 20539 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-22.5 - parent: 89 - - uid: 1428 + pos: -90.5,21.5 + parent: 2 + - uid: 20540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 89 - - uid: 1442 + pos: -83.5,11.5 + parent: 2 + - uid: 20541 components: - type: Transform - pos: -86.5,11.5 - parent: 89 - - uid: 1475 + pos: -83.5,12.5 + parent: 2 + - uid: 20542 components: - type: Transform - pos: -83.5,17.5 - parent: 89 - - uid: 1477 + pos: -84.5,11.5 + parent: 2 + - uid: 20543 components: - type: Transform - pos: -83.5,15.5 - parent: 89 - - uid: 1509 + pos: 48.5,-7.5 + parent: 2 + - uid: 20544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 89 - - uid: 1510 + pos: 45.5,-7.5 + parent: 2 + - uid: 20545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 89 - - uid: 1517 + pos: 47.5,-7.5 + parent: 2 + - uid: 20546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 89 - - uid: 1520 + pos: 46.5,-7.5 + parent: 2 + - uid: 20547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 89 - - uid: 1562 + pos: 4.5,29.5 + parent: 2 + - uid: 20548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-22.5 - parent: 89 - - uid: 1635 + pos: -64.5,19.5 + parent: 2 + - uid: 20549 components: - type: Transform - pos: 49.5,-10.5 - parent: 89 - - uid: 1636 + pos: -63.5,19.5 + parent: 2 + - uid: 20550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 89 - - uid: 1639 + pos: -64.5,22.5 + parent: 2 + - uid: 20551 components: - type: Transform - pos: 49.5,-9.5 - parent: 89 - - uid: 1643 + pos: -64.5,23.5 + parent: 2 + - uid: 20552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 89 - - uid: 1644 + pos: -63.5,23.5 + parent: 2 + - uid: 20553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 89 - - uid: 1649 + pos: -62.5,23.5 + parent: 2 + - uid: 20554 components: - type: Transform - pos: 1.5,-37.5 - parent: 89 - - uid: 1650 + pos: -58.5,23.5 + parent: 2 + - uid: 20555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-0.5 - parent: 89 - - uid: 1651 + pos: -58.5,19.5 + parent: 2 + - uid: 20556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 - parent: 89 - - uid: 1652 + pos: -59.5,19.5 + parent: 2 + - uid: 20557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,0.5 - parent: 89 - - uid: 1654 + pos: -60.5,19.5 + parent: 2 + - uid: 20558 components: - type: Transform - pos: 3.5,-38.5 - parent: 89 - - uid: 1655 + pos: -61.5,6.5 + parent: 2 + - uid: 20559 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1660 + pos: -60.5,6.5 + parent: 2 + - uid: 20560 components: - type: Transform - pos: 0.5,-32.5 - parent: 89 - - uid: 1661 + pos: -58.5,6.5 + parent: 2 + - uid: 20561 components: - type: Transform - pos: 0.5,-36.5 - parent: 89 - - uid: 1662 + pos: -61.5,11.5 + parent: 2 + - uid: 20562 components: - type: Transform - pos: 0.5,-30.5 - parent: 89 - - uid: 1672 + pos: -58.5,11.5 + parent: 2 + - uid: 20563 components: - type: Transform - pos: 5.5,-26.5 - parent: 89 - - uid: 1673 + pos: 49.5,-7.5 + parent: 2 + - uid: 20564 components: - type: Transform - pos: 5.5,-27.5 - parent: 89 - - uid: 1683 + pos: 4.5,37.5 + parent: 2 + - uid: 20565 components: - type: Transform - pos: 9.5,-19.5 - parent: 89 - - uid: 1707 + pos: 4.5,34.5 + parent: 2 + - uid: 20566 components: - type: Transform - pos: -8.5,10.5 - parent: 89 - - uid: 1734 + pos: 4.5,33.5 + parent: 2 + - uid: 20567 components: - type: Transform - pos: -3.5,-36.5 - parent: 89 - - uid: 1843 + pos: 4.5,32.5 + parent: 2 + - uid: 20568 components: - type: Transform - pos: -10.5,-26.5 - parent: 89 - - uid: 1889 + pos: 4.5,31.5 + parent: 2 + - uid: 20569 components: - type: Transform - pos: 4.5,-26.5 - parent: 89 - - uid: 1891 + rot: 3.141592653589793 rad + pos: -88.5,11.5 + parent: 2 + - uid: 20570 components: - type: Transform - pos: 6.5,-29.5 - parent: 89 - - uid: 1893 + pos: -60.5,11.5 + parent: 2 + - uid: 20571 components: - type: Transform - pos: 5.5,-30.5 - parent: 89 - - uid: 1894 + pos: 41.5,-22.5 + parent: 2 + - uid: 20572 components: - type: Transform - pos: 5.5,-32.5 - parent: 89 - - uid: 1895 + pos: -7.5,27.5 + parent: 2 + - uid: 20573 components: - type: Transform - pos: 5.5,-31.5 - parent: 89 - - uid: 1896 + pos: -7.5,28.5 + parent: 2 + - uid: 20574 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 1899 + pos: -6.5,28.5 + parent: 2 + - uid: 20575 components: - type: Transform - pos: -18.5,24.5 - parent: 89 - - uid: 1904 + pos: -5.5,28.5 + parent: 2 + - uid: 20576 components: - type: Transform - pos: 0.5,-34.5 - parent: 89 - - uid: 1905 + pos: -9.5,24.5 + parent: 2 + - uid: 20577 components: - type: Transform - pos: 0.5,-31.5 - parent: 89 - - uid: 1907 + pos: 4.5,28.5 + parent: 2 + - uid: 20578 components: - type: Transform - pos: 0.5,-33.5 - parent: 89 - - uid: 1912 + pos: -4.5,27.5 + parent: 2 + - uid: 20579 components: - type: Transform - pos: 2.5,-37.5 - parent: 89 - - uid: 1917 + pos: -4.5,28.5 + parent: 2 + - uid: 20580 components: - type: Transform - pos: 0.5,-35.5 - parent: 89 - - uid: 1918 + pos: -8.5,27.5 + parent: 2 + - uid: 20581 components: - type: Transform - pos: 3.5,-42.5 - parent: 89 - - uid: 1919 + pos: -7.5,24.5 + parent: 2 + - uid: 20582 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 - - uid: 1920 + pos: -8.5,24.5 + parent: 2 + - uid: 20583 components: - type: Transform - pos: 3.5,-37.5 - parent: 89 - - uid: 1921 + pos: -4.5,24.5 + parent: 2 + - uid: 20584 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 - - uid: 1922 + pos: -4.5,25.5 + parent: 2 + - uid: 20585 components: - type: Transform - pos: 0.5,-37.5 - parent: 89 - - uid: 1924 + pos: -6.5,24.5 + parent: 2 + - uid: 20586 components: - type: Transform - pos: -3.5,-34.5 - parent: 89 - - uid: 1925 + pos: -5.5,24.5 + parent: 2 + - uid: 20587 components: - type: Transform - pos: -3.5,-37.5 - parent: 89 - - uid: 1926 + pos: -34.5,12.5 + parent: 2 + - uid: 20588 components: - type: Transform - pos: -3.5,-33.5 - parent: 89 - - uid: 1930 + rot: 3.141592653589793 rad + pos: -64.5,20.5 + parent: 2 + - uid: 20589 components: - type: Transform - pos: 41.5,7.5 - parent: 89 - - uid: 1935 + pos: -132.5,19.5 + parent: 2 + - uid: 20590 components: - type: Transform - pos: 17.5,9.5 - parent: 89 - - uid: 1946 + pos: -131.5,19.5 + parent: 2 + - uid: 20591 components: - type: Transform - pos: 16.5,9.5 - parent: 89 - - uid: 2038 + pos: -130.5,19.5 + parent: 2 + - uid: 20592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-24.5 - parent: 89 - - uid: 2039 + pos: -129.5,19.5 + parent: 2 + - uid: 20593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-23.5 - parent: 89 - - uid: 2040 + pos: -128.5,19.5 + parent: 2 + - uid: 20594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-25.5 - parent: 89 - - uid: 2041 + pos: -128.5,18.5 + parent: 2 + - uid: 20595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-26.5 - parent: 89 - - uid: 2042 + pos: -129.5,18.5 + parent: 2 + - uid: 20596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-26.5 - parent: 89 - - uid: 2043 + pos: -130.5,18.5 + parent: 2 + - uid: 20597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-26.5 - parent: 89 - - uid: 2044 + pos: -131.5,18.5 + parent: 2 + - uid: 20598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-26.5 - parent: 89 - - uid: 2045 + pos: -132.5,18.5 + parent: 2 + - uid: 20599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-25.5 - parent: 89 - - uid: 2046 + pos: -133.5,18.5 + parent: 2 + - uid: 20600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-24.5 - parent: 89 - - uid: 2047 + pos: -133.5,17.5 + parent: 2 + - uid: 20601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-23.5 - parent: 89 - - uid: 2048 + pos: -133.5,16.5 + parent: 2 + - uid: 20602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-22.5 - parent: 89 - - uid: 2049 + pos: -133.5,15.5 + parent: 2 + - uid: 20603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-26.5 - parent: 89 - - uid: 2050 + pos: -133.5,14.5 + parent: 2 + - uid: 20604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-26.5 - parent: 89 - - uid: 2051 + pos: -133.5,13.5 + parent: 2 + - uid: 20605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-25.5 - parent: 89 - - uid: 2052 + pos: -133.5,12.5 + parent: 2 + - uid: 20606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-24.5 - parent: 89 - - uid: 2053 + pos: -133.5,11.5 + parent: 2 + - uid: 20607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-23.5 - parent: 89 - - uid: 2055 + pos: -133.5,10.5 + parent: 2 + - uid: 20608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-22.5 - parent: 89 - - uid: 2112 + pos: -132.5,10.5 + parent: 2 + - uid: 20609 components: - type: Transform - pos: -17.5,25.5 - parent: 89 - - uid: 2146 + pos: -131.5,10.5 + parent: 2 + - uid: 20610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-28.5 - parent: 89 - - uid: 2147 + pos: -130.5,10.5 + parent: 2 + - uid: 20611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-29.5 - parent: 89 - - uid: 2148 + pos: -129.5,10.5 + parent: 2 + - uid: 20612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-28.5 - parent: 89 - - uid: 2149 + pos: -128.5,10.5 + parent: 2 + - uid: 20613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-29.5 - parent: 89 - - uid: 2150 + pos: -127.5,19.5 + parent: 2 + - uid: 20614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-28.5 - parent: 89 - - uid: 2151 + rot: 1.5707963267948966 rad + pos: -127.5,17.5 + parent: 2 + - uid: 20615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-29.5 - parent: 89 - - uid: 2152 + pos: -127.5,14.5 + parent: 2 + - uid: 20616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-28.5 - parent: 89 - - uid: 2153 + pos: -127.5,10.5 + parent: 2 + - uid: 20617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-29.5 - parent: 89 - - uid: 2154 + pos: -126.5,10.5 + parent: 2 + - uid: 20618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-28.5 - parent: 89 - - uid: 2155 + pos: -126.5,14.5 + parent: 2 + - uid: 20619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-29.5 - parent: 89 - - uid: 2156 + pos: -128.5,5.5 + parent: 2 + - uid: 20620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-28.5 - parent: 89 - - uid: 2157 + pos: -128.5,6.5 + parent: 2 + - uid: 20621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-29.5 - parent: 89 - - uid: 2158 + pos: -124.5,7.5 + parent: 2 + - uid: 20622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-28.5 - parent: 89 - - uid: 2159 + pos: -124.5,6.5 + parent: 2 + - uid: 20623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-29.5 - parent: 89 - - uid: 2160 + pos: -124.5,5.5 + parent: 2 + - uid: 20624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-28.5 - parent: 89 - - uid: 2161 + pos: -122.5,5.5 + parent: 2 + - uid: 20625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-29.5 - parent: 89 - - uid: 2162 + pos: -122.5,2.5 + parent: 2 + - uid: 20626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 89 - - uid: 2163 + pos: -122.5,1.5 + parent: 2 + - uid: 20627 components: - type: Transform - pos: 32.5,17.5 - parent: 89 - - uid: 2164 + pos: -123.5,1.5 + parent: 2 + - uid: 20628 components: - type: Transform - pos: 31.5,17.5 - parent: 89 - - uid: 2165 + pos: -124.5,2.5 + parent: 2 + - uid: 20629 components: - type: Transform - pos: 29.5,16.5 - parent: 89 - - uid: 2166 + pos: -124.5,1.5 + parent: 2 + - uid: 20630 components: - type: Transform - pos: 29.5,17.5 - parent: 89 - - uid: 2167 + pos: -124.5,0.5 + parent: 2 + - uid: 20631 components: - type: Transform - pos: 30.5,17.5 - parent: 89 - - uid: 2171 + pos: -124.5,-0.5 + parent: 2 + - uid: 20632 components: - type: Transform - pos: 29.5,11.5 - parent: 89 - - uid: 2172 + pos: -128.5,-0.5 + parent: 2 + - uid: 20633 components: - type: Transform - pos: 29.5,12.5 - parent: 89 - - uid: 2173 + pos: -128.5,0.5 + parent: 2 + - uid: 20634 components: - type: Transform - pos: 29.5,13.5 - parent: 89 - - uid: 2174 + pos: -128.5,1.5 + parent: 2 + - uid: 20635 components: - type: Transform - pos: 29.5,14.5 - parent: 89 - - uid: 2175 + pos: -128.5,2.5 + parent: 2 + - uid: 20636 components: - type: Transform - pos: 29.5,15.5 - parent: 89 - - uid: 2176 + rot: -1.5707963267948966 rad + pos: -123.5,6.5 + parent: 2 + - uid: 20637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 89 - - uid: 2177 + pos: -124.5,8.5 + parent: 2 + - uid: 20638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 89 - - uid: 2178 + rot: 3.141592653589793 rad + pos: -119.5,18.5 + parent: 2 + - uid: 20639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,10.5 - parent: 89 - - uid: 2179 + pos: 41.5,-15.5 + parent: 2 + - uid: 20640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 89 - - uid: 2181 + rot: 1.5707963267948966 rad + pos: -119.5,7.5 + parent: 2 + - uid: 20641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 89 - - uid: 2182 + rot: 1.5707963267948966 rad + pos: -119.5,0.5 + parent: 2 + - uid: 20642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-21.5 - parent: 89 - - uid: 2183 + rot: 1.5707963267948966 rad + pos: -118.5,-0.5 + parent: 2 + - uid: 20643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-21.5 - parent: 89 - - uid: 2184 + rot: 1.5707963267948966 rad + pos: -118.5,-2.5 + parent: 2 + - uid: 20644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 89 - - uid: 2185 + rot: 1.5707963267948966 rad + pos: -118.5,-3.5 + parent: 2 + - uid: 20645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 89 - - uid: 2186 + rot: 1.5707963267948966 rad + pos: -118.5,-4.5 + parent: 2 + - uid: 20646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 89 - - uid: 2187 + rot: 1.5707963267948966 rad + pos: -117.5,-4.5 + parent: 2 + - uid: 20647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 89 - - uid: 2188 + rot: 1.5707963267948966 rad + pos: -116.5,-4.5 + parent: 2 + - uid: 20648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 89 - - uid: 2194 + rot: 1.5707963267948966 rad + pos: -115.5,-4.5 + parent: 2 + - uid: 20649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 89 - - uid: 2195 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 + parent: 2 + - uid: 20650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 89 - - uid: 2196 + rot: 1.5707963267948966 rad + pos: -114.5,-5.5 + parent: 2 + - uid: 20651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,5.5 - parent: 89 - - uid: 2199 + rot: 1.5707963267948966 rad + pos: -114.5,-6.5 + parent: 2 + - uid: 20652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 89 - - uid: 2204 + rot: 1.5707963267948966 rad + pos: -114.5,-7.5 + parent: 2 + - uid: 20653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-28.5 - parent: 89 - - uid: 2205 + rot: 1.5707963267948966 rad + pos: -114.5,-8.5 + parent: 2 + - uid: 20654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-28.5 - parent: 89 - - uid: 2215 + rot: 1.5707963267948966 rad + pos: -114.5,-9.5 + parent: 2 + - uid: 20655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-29.5 - parent: 89 - - uid: 2216 + rot: 1.5707963267948966 rad + pos: -118.5,8.5 + parent: 2 + - uid: 20656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-25.5 - parent: 89 - - uid: 2218 + rot: 1.5707963267948966 rad + pos: -118.5,11.5 + parent: 2 + - uid: 20657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-25.5 - parent: 89 - - uid: 2219 + rot: 1.5707963267948966 rad + pos: -118.5,12.5 + parent: 2 + - uid: 20658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-27.5 - parent: 89 - - uid: 2238 + rot: 1.5707963267948966 rad + pos: -117.5,12.5 + parent: 2 + - uid: 20659 components: - type: Transform - pos: 29.5,7.5 - parent: 89 - - uid: 2246 + rot: 1.5707963267948966 rad + pos: -116.5,12.5 + parent: 2 + - uid: 20660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-18.5 - parent: 89 - - uid: 2247 + rot: 1.5707963267948966 rad + pos: -115.5,12.5 + parent: 2 + - uid: 20661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-19.5 - parent: 89 - - uid: 2248 + rot: 1.5707963267948966 rad + pos: -114.5,12.5 + parent: 2 + - uid: 20662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-20.5 - parent: 89 - - uid: 2251 + rot: 1.5707963267948966 rad + pos: -114.5,13.5 + parent: 2 + - uid: 20663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-18.5 - parent: 89 - - uid: 2253 + rot: 1.5707963267948966 rad + pos: -114.5,14.5 + parent: 2 + - uid: 20664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-17.5 - parent: 89 - - uid: 2256 + rot: 1.5707963267948966 rad + pos: -114.5,15.5 + parent: 2 + - uid: 20665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-15.5 - parent: 89 - - uid: 2266 + rot: 1.5707963267948966 rad + pos: -114.5,16.5 + parent: 2 + - uid: 20666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-12.5 - parent: 89 - - uid: 2267 + pos: -34.5,11.5 + parent: 2 + - uid: 20667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-12.5 - parent: 89 - - uid: 2269 + pos: -36.5,10.5 + parent: 2 + - uid: 20668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-22.5 - parent: 89 - - uid: 2273 + rot: 1.5707963267948966 rad + pos: -118.5,19.5 + parent: 2 + - uid: 20669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-26.5 - parent: 89 - - uid: 2278 + pos: 4.5,30.5 + parent: 2 + - uid: 20670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-26.5 - parent: 89 - - uid: 2279 + pos: -35.5,10.5 + parent: 2 + - uid: 20671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-22.5 - parent: 89 - - uid: 2280 + pos: -34.5,10.5 + parent: 2 + - uid: 20672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-23.5 - parent: 89 - - uid: 2282 + rot: 1.5707963267948966 rad + pos: -122.5,6.5 + parent: 2 + - uid: 20673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-25.5 - parent: 89 - - uid: 2296 + pos: 37.5,-18.5 + parent: 2 + - uid: 20674 components: - type: Transform - pos: 33.5,17.5 - parent: 89 - - uid: 2297 + rot: 3.141592653589793 rad + pos: -115.5,-9.5 + parent: 2 + - uid: 20675 components: - type: Transform - pos: 34.5,17.5 - parent: 89 - - uid: 2298 + rot: 3.141592653589793 rad + pos: -116.5,-9.5 + parent: 2 + - uid: 20676 components: - type: Transform - pos: 35.5,17.5 - parent: 89 - - uid: 2299 + rot: 3.141592653589793 rad + pos: -117.5,-9.5 + parent: 2 + - uid: 20677 components: - type: Transform - pos: 36.5,17.5 - parent: 89 - - uid: 2300 + rot: 3.141592653589793 rad + pos: -118.5,-9.5 + parent: 2 + - uid: 20678 components: - type: Transform - pos: 37.5,17.5 - parent: 89 - - uid: 2301 + rot: 3.141592653589793 rad + pos: -119.5,-9.5 + parent: 2 + - uid: 20679 components: - type: Transform - pos: 38.5,17.5 - parent: 89 - - uid: 2302 + rot: 3.141592653589793 rad + pos: -120.5,-9.5 + parent: 2 + - uid: 20680 components: - type: Transform - pos: 39.5,17.5 - parent: 89 - - uid: 2303 + rot: 3.141592653589793 rad + pos: -119.5,-4.5 + parent: 2 + - uid: 20681 components: - type: Transform - pos: 39.5,16.5 - parent: 89 - - uid: 2304 + rot: 3.141592653589793 rad + pos: -120.5,-4.5 + parent: 2 + - uid: 20682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-27.5 - parent: 89 - - uid: 2305 + pos: 37.5,-17.5 + parent: 2 + - uid: 20683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-27.5 - parent: 89 - - uid: 2308 + pos: -128.5,7.5 + parent: 2 + - uid: 20684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-28.5 - parent: 89 - - uid: 2309 + pos: -128.5,8.5 + parent: 2 + - uid: 20685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-29.5 - parent: 89 - - uid: 2310 + pos: -8.5,-34.5 + parent: 2 + - uid: 20686 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-28.5 - parent: 89 - - uid: 2311 + pos: -8.5,-35.5 + parent: 2 + - uid: 20687 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-29.5 - parent: 89 - - uid: 2312 + pos: -8.5,-36.5 + parent: 2 + - uid: 20688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-28.5 - parent: 89 - - uid: 2313 + pos: 50.5,-5.5 + parent: 2 + - uid: 20689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-29.5 - parent: 89 - - uid: 2314 + rot: 1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 2 + - uid: 20690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-28.5 - parent: 89 - - uid: 2315 + pos: 28.5,10.5 + parent: 2 + - uid: 20691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-29.5 - parent: 89 - - uid: 2316 + pos: 27.5,10.5 + parent: 2 + - uid: 20692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-28.5 - parent: 89 - - uid: 2317 + pos: 26.5,10.5 + parent: 2 + - uid: 20693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-29.5 - parent: 89 - - uid: 2321 + pos: 25.5,10.5 + parent: 2 + - uid: 20694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-27.5 - parent: 89 - - uid: 2324 + pos: 24.5,10.5 + parent: 2 + - uid: 20695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-20.5 - parent: 89 - - uid: 2325 + pos: 23.5,10.5 + parent: 2 + - uid: 20696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-20.5 - parent: 89 - - uid: 2327 + pos: 23.5,9.5 + parent: 2 + - uid: 20697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-20.5 - parent: 89 - - uid: 2328 + pos: 23.5,8.5 + parent: 2 + - uid: 20698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-20.5 - parent: 89 - - uid: 2516 + pos: 23.5,7.5 + parent: 2 + - uid: 20699 components: - type: Transform - pos: 35.5,0.5 - parent: 89 - - uid: 2517 + pos: 23.5,6.5 + parent: 2 + - uid: 20700 components: - type: Transform - pos: 34.5,0.5 - parent: 89 - - uid: 2518 + pos: 23.5,5.5 + parent: 2 + - uid: 20701 components: - type: Transform - pos: 33.5,0.5 - parent: 89 - - uid: 2522 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 + parent: 2 + - uid: 20702 components: - type: Transform - pos: 29.5,0.5 - parent: 89 - - uid: 2525 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 + parent: 2 + - uid: 20703 components: - type: Transform - pos: 8.5,-19.5 - parent: 89 - - uid: 2526 + rot: 1.5707963267948966 rad + pos: -91.5,27.5 + parent: 2 + - uid: 20704 components: - type: Transform - pos: 18.5,-15.5 - parent: 89 - - uid: 2556 + rot: 1.5707963267948966 rad + pos: -89.5,25.5 + parent: 2 + - uid: 20705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,16.5 - parent: 89 - - uid: 2575 + rot: 1.5707963267948966 rad + pos: -87.5,25.5 + parent: 2 + - uid: 20706 components: - type: Transform - pos: 36.5,-15.5 - parent: 89 - - uid: 2579 + rot: 1.5707963267948966 rad + pos: -91.5,26.5 + parent: 2 + - uid: 20707 components: - type: Transform - pos: 34.5,-15.5 - parent: 89 - - uid: 2580 + rot: 1.5707963267948966 rad + pos: -90.5,27.5 + parent: 2 + - uid: 20708 components: - type: Transform - pos: 35.5,-15.5 - parent: 89 - - uid: 2581 + pos: 23.5,11.5 + parent: 2 + - uid: 20709 components: - type: Transform - pos: 33.5,-15.5 - parent: 89 - - uid: 2582 + pos: 23.5,12.5 + parent: 2 + - uid: 20710 components: - type: Transform - pos: 32.5,-15.5 - parent: 89 - - uid: 2583 + rot: 1.5707963267948966 rad + pos: -90.5,29.5 + parent: 2 + - uid: 20711 components: - type: Transform - pos: 31.5,-15.5 - parent: 89 - - uid: 2584 + rot: 1.5707963267948966 rad + pos: -90.5,25.5 + parent: 2 + - uid: 20712 components: - type: Transform - pos: 30.5,-15.5 - parent: 89 - - uid: 2585 + rot: 1.5707963267948966 rad + pos: -90.5,26.5 + parent: 2 + - uid: 20713 components: - type: Transform - pos: 29.5,-15.5 - parent: 89 - - uid: 2586 + rot: 1.5707963267948966 rad + pos: -88.5,25.5 + parent: 2 + - uid: 20714 components: - type: Transform - pos: 28.5,-15.5 - parent: 89 - - uid: 2587 + pos: -54.5,46.5 + parent: 2 + - uid: 20715 components: - type: Transform - pos: 27.5,-15.5 - parent: 89 - - uid: 2589 + pos: -53.5,46.5 + parent: 2 + - uid: 20716 components: - type: Transform - pos: 26.5,-15.5 - parent: 89 - - uid: 2590 + pos: -52.5,46.5 + parent: 2 + - uid: 20717 components: - type: Transform - pos: 25.5,-15.5 - parent: 89 - - uid: 2591 + pos: -51.5,46.5 + parent: 2 + - uid: 20718 components: - type: Transform - pos: 24.5,-15.5 - parent: 89 - - uid: 2592 + pos: -50.5,46.5 + parent: 2 + - uid: 20719 components: - type: Transform - pos: 23.5,-15.5 - parent: 89 - - uid: 2593 + pos: -51.5,38.5 + parent: 2 + - uid: 20720 components: - type: Transform - pos: 17.5,-12.5 - parent: 89 - - uid: 2594 + pos: -57.5,37.5 + parent: 2 + - uid: 20721 components: - type: Transform - pos: 17.5,-11.5 - parent: 89 - - uid: 2595 + pos: -53.5,38.5 + parent: 2 + - uid: 20722 components: - type: Transform - pos: 22.5,-15.5 - parent: 89 - - uid: 2596 + pos: -52.5,38.5 + parent: 2 + - uid: 20723 components: - type: Transform - pos: 17.5,-13.5 - parent: 89 - - uid: 2597 + pos: -57.5,38.5 + parent: 2 + - uid: 20724 components: - type: Transform - pos: 21.5,-15.5 - parent: 89 - - uid: 2598 + pos: -57.5,39.5 + parent: 2 + - uid: 20725 components: - type: Transform - pos: 17.5,-14.5 - parent: 89 - - uid: 2599 + pos: -57.5,40.5 + parent: 2 + - uid: 20726 components: - type: Transform - pos: 20.5,-15.5 - parent: 89 - - uid: 2600 + pos: -58.5,37.5 + parent: 2 + - uid: 20727 components: - type: Transform - pos: 11.5,-11.5 - parent: 89 - - uid: 2601 + pos: -58.5,31.5 + parent: 2 + - uid: 20728 components: - type: Transform - pos: 19.5,-15.5 - parent: 89 - - uid: 2603 + pos: -55.5,31.5 + parent: 2 + - uid: 20729 components: - type: Transform - pos: 17.5,-15.5 - parent: 89 - - uid: 2604 + pos: -54.5,31.5 + parent: 2 + - uid: 20730 components: - type: Transform - pos: 12.5,-11.5 - parent: 89 - - uid: 2607 + pos: -54.5,30.5 + parent: 2 + - uid: 20731 components: - type: Transform - pos: 14.5,-11.5 - parent: 89 - - uid: 2608 + pos: -54.5,29.5 + parent: 2 + - uid: 20732 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 2609 + pos: -54.5,28.5 + parent: 2 + - uid: 20733 components: - type: Transform - pos: 16.5,-11.5 - parent: 89 - - uid: 2610 + pos: -54.5,27.5 + parent: 2 + - uid: 20734 components: - type: Transform - pos: 1.5,-14.5 - parent: 89 - - uid: 2611 + pos: -53.5,42.5 + parent: 2 + - uid: 20735 components: - type: Transform - pos: 1.5,-13.5 - parent: 89 - - uid: 2613 + pos: -52.5,42.5 + parent: 2 + - uid: 20736 components: - type: Transform - pos: 2.5,-14.5 - parent: 89 - - uid: 2614 + pos: -51.5,42.5 + parent: 2 + - uid: 20737 components: - type: Transform - pos: 3.5,-14.5 - parent: 89 - - uid: 2615 + pos: -50.5,42.5 + parent: 2 + - uid: 20738 components: - type: Transform - pos: 4.5,-14.5 - parent: 89 - - uid: 2616 + pos: -54.5,32.5 + parent: 2 + - uid: 20739 components: - type: Transform - pos: 5.5,-14.5 - parent: 89 - - uid: 2617 + pos: -54.5,33.5 + parent: 2 + - uid: 20740 components: - type: Transform - pos: 6.5,-14.5 - parent: 89 - - uid: 2618 + pos: -54.5,34.5 + parent: 2 + - uid: 20741 components: - type: Transform - pos: 6.5,-13.5 - parent: 89 - - uid: 2619 + pos: -54.5,36.5 + parent: 2 + - uid: 20742 components: - type: Transform - pos: 8.5,-13.5 - parent: 89 - - uid: 2620 + pos: -54.5,37.5 + parent: 2 + - uid: 20743 components: - type: Transform - pos: 9.5,-13.5 - parent: 89 - - uid: 2621 + pos: -53.5,37.5 + parent: 2 + - uid: 20744 components: - type: Transform - pos: 10.5,-13.5 - parent: 89 - - uid: 2622 + pos: -53.5,33.5 + parent: 2 + - uid: 20745 components: - type: Transform - pos: 10.5,-12.5 - parent: 89 - - uid: 2623 + pos: -51.5,33.5 + parent: 2 + - uid: 20746 components: - type: Transform - pos: 10.5,-11.5 - parent: 89 - - uid: 2624 + pos: -46.5,22.5 + parent: 2 + - uid: 20747 components: - type: Transform - pos: 7.5,-13.5 - parent: 89 - - uid: 2629 + pos: -45.5,22.5 + parent: 2 + - uid: 20748 components: - type: Transform - pos: 36.5,-13.5 - parent: 89 - - uid: 2632 + pos: -44.5,22.5 + parent: 2 + - uid: 20749 components: - type: Transform - pos: 2.5,0.5 - parent: 89 - - uid: 2660 + pos: -43.5,22.5 + parent: 2 + - uid: 20750 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 2661 + rot: 3.141592653589793 rad + pos: -91.5,21.5 + parent: 2 + - uid: 20751 components: - type: Transform - pos: 35.5,-13.5 - parent: 89 - - uid: 2681 + pos: -58.5,32.5 + parent: 2 + - uid: 20752 components: - type: Transform - pos: 1.5,-9.5 - parent: 89 - - uid: 2682 + pos: -58.5,36.5 + parent: 2 + - uid: 20753 components: - type: Transform - pos: 2.5,-9.5 - parent: 89 - - uid: 2683 + rot: 1.5707963267948966 rad + pos: -86.5,29.5 + parent: 2 + - uid: 20754 components: - type: Transform - pos: 2.5,-8.5 - parent: 89 - - uid: 2684 + rot: 1.5707963267948966 rad + pos: -86.5,24.5 + parent: 2 + - uid: 20755 components: - type: Transform - pos: 2.5,-7.5 - parent: 89 - - uid: 2685 + rot: 1.5707963267948966 rad + pos: -86.5,25.5 + parent: 2 + - uid: 20756 components: - type: Transform - pos: 2.5,-6.5 - parent: 89 - - uid: 2686 + rot: 1.5707963267948966 rad + pos: -86.5,28.5 + parent: 2 + - uid: 20757 components: - type: Transform - pos: 2.5,-5.5 - parent: 89 - - uid: 2687 + pos: -83.5,-8.5 + parent: 2 + - uid: 20758 components: - type: Transform - pos: 2.5,-4.5 - parent: 89 - - uid: 2688 + pos: -83.5,-7.5 + parent: 2 + - uid: 20759 components: - type: Transform - pos: 2.5,-3.5 - parent: 89 - - uid: 2689 + pos: -83.5,-6.5 + parent: 2 + - uid: 20760 components: - type: Transform - pos: 1.5,-2.5 - parent: 89 - - uid: 2690 + rot: 1.5707963267948966 rad + pos: -86.5,27.5 + parent: 2 + - uid: 20761 components: - type: Transform - pos: 1.5,-1.5 - parent: 89 - - uid: 2691 + rot: 1.5707963267948966 rad + pos: -86.5,26.5 + parent: 2 + - uid: 20762 components: - type: Transform - pos: 1.5,-0.5 - parent: 89 - - uid: 2692 + pos: -41.5,22.5 + parent: 2 + - uid: 20763 components: - type: Transform - pos: 1.5,0.5 - parent: 89 - - uid: 2694 + pos: 41.5,-11.5 + parent: 2 + - uid: 20764 components: - type: Transform - pos: 3.5,0.5 - parent: 89 - - uid: 2695 + pos: -41.5,23.5 + parent: 2 + - uid: 20765 components: - type: Transform - pos: 4.5,0.5 - parent: 89 - - uid: 2696 + pos: -41.5,25.5 + parent: 2 + - uid: 20766 components: - type: Transform - pos: 5.5,0.5 - parent: 89 - - uid: 2697 + rot: 3.141592653589793 rad + pos: -40.5,25.5 + parent: 2 + - uid: 20767 components: - type: Transform - pos: 6.5,0.5 - parent: 89 - - uid: 2698 + pos: -41.5,24.5 + parent: 2 + - uid: 20768 components: - type: Transform - pos: 7.5,0.5 - parent: 89 - - uid: 2699 + pos: -118.5,18.5 + parent: 2 + - uid: 20769 components: - type: Transform - pos: 8.5,0.5 - parent: 89 - - uid: 2701 + pos: 23.5,13.5 + parent: 2 + - uid: 20770 components: - type: Transform - pos: 10.5,0.5 - parent: 89 - - uid: 2702 + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - uid: 20771 components: - type: Transform - pos: 11.5,0.5 - parent: 89 - - uid: 2703 + pos: 22.5,13.5 + parent: 2 + - uid: 20772 components: - type: Transform - pos: 12.5,0.5 - parent: 89 - - uid: 2704 + pos: 21.5,13.5 + parent: 2 + - uid: 20773 components: - type: Transform - pos: 13.5,0.5 - parent: 89 - - uid: 2705 + pos: 20.5,13.5 + parent: 2 + - uid: 20774 components: - type: Transform - pos: 14.5,0.5 - parent: 89 - - uid: 2706 + pos: 19.5,13.5 + parent: 2 + - uid: 20775 components: - type: Transform - pos: 15.5,0.5 - parent: 89 - - uid: 2707 + pos: 18.5,13.5 + parent: 2 + - uid: 20776 components: - type: Transform - pos: 16.5,0.5 - parent: 89 - - uid: 2708 + pos: 17.5,10.5 + parent: 2 + - uid: 20777 components: - type: Transform - pos: 17.5,0.5 - parent: 89 - - uid: 2710 + pos: 17.5,12.5 + parent: 2 + - uid: 20778 components: - type: Transform - pos: 19.5,0.5 - parent: 89 - - uid: 2711 + pos: 17.5,11.5 + parent: 2 + - uid: 20779 components: - type: Transform - pos: 20.5,0.5 - parent: 89 - - uid: 2712 + pos: 20.5,10.5 + parent: 2 + - uid: 20780 components: - type: Transform - pos: 20.5,-0.5 - parent: 89 - - uid: 2713 + pos: 22.5,10.5 + parent: 2 + - uid: 20781 components: - type: Transform - pos: 21.5,-0.5 - parent: 89 - - uid: 2714 + pos: 15.5,9.5 + parent: 2 + - uid: 20782 components: - type: Transform - pos: 22.5,-0.5 - parent: 89 - - uid: 2715 + pos: 15.5,6.5 + parent: 2 + - uid: 20783 components: - type: Transform - pos: 23.5,-0.5 - parent: 89 - - uid: 2716 + pos: 15.5,5.5 + parent: 2 + - uid: 20784 components: - type: Transform - pos: 24.5,-0.5 - parent: 89 - - uid: 2717 + pos: 20.5,9.5 + parent: 2 + - uid: 20785 components: - type: Transform - pos: 24.5,0.5 - parent: 89 - - uid: 2719 + pos: 15.5,8.5 + parent: 2 + - uid: 20786 components: - type: Transform - pos: 24.5,0.5 - parent: 89 - - uid: 2720 + pos: -86.5,18.5 + parent: 2 + - uid: 20787 components: - type: Transform - pos: 25.5,0.5 - parent: 89 - - uid: 2721 + rot: 1.5707963267948966 rad + pos: -86.5,30.5 + parent: 2 + - uid: 20788 components: - type: Transform - pos: 26.5,0.5 - parent: 89 - - uid: 2722 + pos: -83.5,18.5 + parent: 2 + - uid: 20789 components: - type: Transform - pos: 27.5,0.5 - parent: 89 - - uid: 2734 + pos: -86.5,17.5 + parent: 2 + - uid: 20790 components: - type: Transform - pos: 6.5,-9.5 - parent: 89 - - uid: 2735 + pos: -86.5,15.5 + parent: 2 + - uid: 20791 components: - type: Transform - pos: 6.5,-8.5 - parent: 89 - - uid: 2736 + pos: -36.5,12.5 + parent: 2 + - uid: 20792 components: - type: Transform - pos: 6.5,-7.5 - parent: 89 - - uid: 2737 + pos: 5.5,-25.5 + parent: 2 + - uid: 20793 components: - type: Transform - pos: 9.5,-7.5 - parent: 89 - - uid: 2738 + pos: -8.5,-25.5 + parent: 2 + - uid: 20794 components: - type: Transform - pos: 10.5,-7.5 - parent: 89 - - uid: 2740 + rot: -1.5707963267948966 rad + pos: -116.5,-11.5 + parent: 2 + - uid: 20795 components: - type: Transform - pos: 10.5,-8.5 - parent: 89 - - uid: 2742 + pos: 15.5,27.5 + parent: 2 + - uid: 20796 components: - type: Transform - pos: 10.5,-10.5 - parent: 89 - - uid: 2743 + pos: 9.5,28.5 + parent: 2 + - uid: 20797 components: - type: Transform - pos: 20.5,-11.5 - parent: 89 - - uid: 2744 + pos: 11.5,28.5 + parent: 2 + - uid: 20798 components: - type: Transform - pos: 20.5,-12.5 - parent: 89 - - uid: 2745 + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 20799 components: - type: Transform - pos: 20.5,-13.5 - parent: 89 - - uid: 2746 + pos: 8.5,28.5 + parent: 2 + - uid: 20800 components: - type: Transform - pos: 20.5,-14.5 - parent: 89 - - uid: 2747 + pos: 7.5,28.5 + parent: 2 + - uid: 20801 components: - type: Transform - pos: 23.5,-11.5 - parent: 89 - - uid: 2748 + pos: 6.5,28.5 + parent: 2 + - uid: 20802 components: - type: Transform - pos: 23.5,-12.5 - parent: 89 - - uid: 2749 + pos: 5.5,28.5 + parent: 2 + - uid: 20803 components: - type: Transform - pos: 23.5,-13.5 - parent: 89 - - uid: 2750 + pos: 41.5,-21.5 + parent: 2 + - uid: 20804 components: - type: Transform - pos: 23.5,-14.5 - parent: 89 - - uid: 2751 + pos: 41.5,-25.5 + parent: 2 + - uid: 20805 components: - type: Transform - pos: 26.5,-11.5 - parent: 89 - - uid: 2752 + pos: 41.5,-23.5 + parent: 2 + - uid: 20806 components: - type: Transform - pos: 26.5,-12.5 - parent: 89 - - uid: 2753 + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 20807 components: - type: Transform - pos: 26.5,-13.5 - parent: 89 - - uid: 2754 + pos: -52.5,29.5 + parent: 2 + - uid: 20808 components: - type: Transform - pos: 26.5,-14.5 - parent: 89 - - uid: 2755 + rot: 3.141592653589793 rad + pos: -39.5,23.5 + parent: 2 + - uid: 20809 components: - type: Transform - pos: 29.5,-11.5 - parent: 89 - - uid: 2756 + rot: 3.141592653589793 rad + pos: -39.5,22.5 + parent: 2 + - uid: 20810 components: - type: Transform - pos: 29.5,-12.5 - parent: 89 - - uid: 2757 + pos: 7.5,31.5 + parent: 2 + - uid: 20811 components: - type: Transform - pos: 29.5,-13.5 - parent: 89 - - uid: 2758 + pos: 5.5,31.5 + parent: 2 + - uid: 20812 components: - type: Transform - pos: 29.5,-14.5 - parent: 89 - - uid: 2763 + pos: -52.5,28.5 + parent: 2 + - uid: 20813 components: - type: Transform - pos: 35.5,-12.5 - parent: 89 - - uid: 2776 + pos: 38.5,-21.5 + parent: 2 + - uid: 20814 components: - type: Transform - pos: 39.5,-7.5 - parent: 89 - - uid: 2777 + pos: 40.5,-21.5 + parent: 2 + - uid: 20815 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 2778 + rot: 3.141592653589793 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 20816 components: - type: Transform - pos: 24.5,-3.5 - parent: 89 - - uid: 2779 + rot: 3.141592653589793 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 20817 components: - type: Transform - pos: 39.5,-8.5 - parent: 89 - - uid: 2780 + rot: 3.141592653589793 rad + pos: -81.5,-9.5 + parent: 2 + - uid: 20818 components: - type: Transform - pos: 39.5,-9.5 - parent: 89 - - uid: 2781 + pos: 14.5,-14.5 + parent: 2 + - uid: 20819 components: - type: Transform - pos: -73.5,-18.5 - parent: 89 - - uid: 2782 + pos: 14.5,-12.5 + parent: 2 + - uid: 20820 components: - type: Transform - pos: -70.5,-18.5 - parent: 89 - - uid: 2788 + pos: 16.5,-14.5 + parent: 2 + - uid: 20821 components: - type: Transform - pos: 39.5,-1.5 - parent: 89 - - uid: 2789 + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 20822 components: - type: Transform - pos: 38.5,-1.5 - parent: 89 - - uid: 2790 + pos: 37.5,-23.5 + parent: 2 + - uid: 20823 components: - type: Transform - pos: 38.5,-2.5 - parent: 89 - - uid: 2791 + pos: 41.5,-24.5 + parent: 2 + - uid: 20824 components: - type: Transform - pos: 38.5,-3.5 - parent: 89 - - uid: 2792 + pos: 11.5,35.5 + parent: 2 + - uid: 20825 components: - type: Transform - pos: 38.5,-4.5 - parent: 89 - - uid: 2793 + pos: 5.5,35.5 + parent: 2 + - uid: 20826 components: - type: Transform - pos: 37.5,-4.5 - parent: 89 - - uid: 2794 + pos: 8.5,35.5 + parent: 2 + - uid: 20827 components: - type: Transform - pos: 29.5,-7.5 - parent: 89 - - uid: 2795 + pos: -52.5,27.5 + parent: 2 + - uid: 20828 components: - type: Transform - pos: 29.5,-4.5 - parent: 89 - - uid: 2796 + pos: -35.5,12.5 + parent: 2 + - uid: 20829 components: - type: Transform - pos: 31.5,-4.5 - parent: 89 - - uid: 2797 + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 20830 components: - type: Transform - pos: 29.5,-3.5 - parent: 89 - - uid: 2798 + pos: 37.5,-21.5 + parent: 2 + - uid: 20831 components: - type: Transform - pos: 29.5,-2.5 - parent: 89 - - uid: 2799 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 20832 components: - type: Transform - pos: 29.5,-1.5 - parent: 89 - - uid: 2800 + rot: 3.141592653589793 rad + pos: -89.5,19.5 + parent: 2 + - uid: 20833 components: - type: Transform - pos: 29.5,-0.5 - parent: 89 - - uid: 2802 + pos: -52.5,30.5 + parent: 2 + - uid: 20834 components: - type: Transform - pos: 24.5,-4.5 - parent: 89 - - uid: 2803 + pos: 4.5,36.5 + parent: 2 + - uid: 20835 components: - type: Transform - pos: 24.5,-5.5 - parent: 89 - - uid: 2804 + pos: 45.5,-10.5 + parent: 2 + - uid: 20836 components: - type: Transform - pos: 24.5,-6.5 - parent: 89 - - uid: 2805 + pos: 44.5,-10.5 + parent: 2 + - uid: 20837 components: - type: Transform - pos: 24.5,-7.5 - parent: 89 - - uid: 2807 + pos: 43.5,-10.5 + parent: 2 + - uid: 20838 components: - type: Transform - pos: 23.5,-7.5 - parent: 89 - - uid: 2808 + pos: 41.5,-16.5 + parent: 2 + - uid: 20839 components: - type: Transform - pos: 22.5,-7.5 - parent: 89 - - uid: 2809 + rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 2 + - uid: 20840 components: - type: Transform - pos: 21.5,-7.5 - parent: 89 - - uid: 2810 + pos: 37.5,-19.5 + parent: 2 + - uid: 20841 components: - type: Transform - pos: 20.5,-7.5 - parent: 89 - - uid: 2811 + pos: 35.5,-18.5 + parent: 2 + - uid: 20842 components: - type: Transform - pos: 19.5,-7.5 - parent: 89 - - uid: 2812 + rot: -1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 20843 components: - type: Transform - pos: 17.5,-7.5 - parent: 89 - - uid: 2813 + pos: 33.5,24.5 + parent: 2 + - uid: 20844 components: - type: Transform - pos: 16.5,-7.5 - parent: 89 - - uid: 2814 + pos: 33.5,25.5 + parent: 2 + - uid: 20845 components: - type: Transform - pos: 16.5,-6.5 - parent: 89 - - uid: 2815 + pos: 33.5,27.5 + parent: 2 + - uid: 20846 components: - type: Transform - pos: 16.5,-5.5 - parent: 89 - - uid: 2816 + pos: 33.5,28.5 + parent: 2 + - uid: 20847 components: - type: Transform - pos: 16.5,-4.5 - parent: 89 - - uid: 2817 + pos: 4.5,35.5 + parent: 2 + - uid: 20848 components: - type: Transform - pos: 16.5,-3.5 - parent: 89 - - uid: 2818 + pos: 15.5,28.5 + parent: 2 + - uid: 20849 components: - type: Transform - pos: 20.5,-1.5 - parent: 89 - - uid: 2819 + pos: 15.5,30.5 + parent: 2 + - uid: 20850 components: - type: Transform - pos: 17.5,-3.5 - parent: 89 - - uid: 2820 + pos: 15.5,29.5 + parent: 2 + - uid: 20851 components: - type: Transform - pos: 18.5,-3.5 - parent: 89 - - uid: 2821 + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - uid: 20852 components: - type: Transform - pos: 19.5,-3.5 - parent: 89 - - uid: 2822 + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 20853 components: - type: Transform - pos: 20.5,-3.5 - parent: 89 - - uid: 2826 + pos: 12.5,28.5 + parent: 2 + - uid: 20854 components: - type: Transform - pos: 20.5,-2.5 - parent: 89 - - uid: 2827 + pos: 15.5,32.5 + parent: 2 + - uid: 20855 components: - type: Transform - pos: 16.5,-1.5 - parent: 89 - - uid: 2828 + pos: 15.5,31.5 + parent: 2 + - uid: 20856 components: - type: Transform - pos: 16.5,-0.5 - parent: 89 - - uid: 2829 + pos: 10.5,31.5 + parent: 2 + - uid: 20857 components: - type: Transform - pos: 10.5,-4.5 - parent: 89 - - uid: 2833 + pos: 9.5,31.5 + parent: 2 + - uid: 20858 components: - type: Transform - pos: 5.5,38.5 - parent: 89 - - uid: 2839 + pos: 10.5,28.5 + parent: 2 + - uid: 20859 components: - type: Transform - pos: 6.5,-3.5 - parent: 89 - - uid: 2840 + pos: 12.5,25.5 + parent: 2 + - uid: 20860 components: - type: Transform - pos: 7.5,-3.5 - parent: 89 - - uid: 2844 + pos: 12.5,30.5 + parent: 2 + - uid: 20861 components: - type: Transform - pos: 4.5,-3.5 - parent: 89 - - uid: 2845 + pos: 9.5,30.5 + parent: 2 + - uid: 20862 components: - type: Transform - pos: 3.5,-3.5 - parent: 89 - - uid: 2915 + pos: 12.5,31.5 + parent: 2 + - uid: 20863 components: - type: Transform - pos: 8.5,38.5 - parent: 89 - - uid: 2940 + pos: -116.5,-15.5 + parent: 2 + - uid: 20864 components: - type: Transform - pos: 18.5,-7.5 - parent: 89 - - uid: 2944 + pos: -116.5,-14.5 + parent: 2 + - uid: 20865 components: - type: Transform - pos: 53.5,-10.5 - parent: 89 - - uid: 3028 + pos: 9.5,29.5 + parent: 2 + - uid: 20866 components: - type: Transform - pos: 16.5,-15.5 - parent: 89 - - uid: 3030 + pos: 11.5,31.5 + parent: 2 + - uid: 20867 components: - type: Transform - pos: 16.5,-17.5 - parent: 89 - - uid: 3035 + pos: 35.5,24.5 + parent: 2 + - uid: 20868 components: - type: Transform - pos: 38.5,20.5 - parent: 89 - - uid: 3036 + pos: 36.5,24.5 + parent: 2 + - uid: 20869 components: - type: Transform - pos: 42.5,20.5 - parent: 89 - - uid: 3037 + pos: 38.5,23.5 + parent: 2 + - uid: 20870 components: - type: Transform - pos: 39.5,20.5 - parent: 89 - - uid: 3047 + pos: 38.5,22.5 + parent: 2 + - uid: 20871 components: - type: Transform - pos: 9.5,-21.5 - parent: 89 - - uid: 3050 + pos: 38.5,21.5 + parent: 2 + - uid: 20872 components: - type: Transform - pos: 8.5,-23.5 - parent: 89 - - uid: 3051 + pos: 15.5,25.5 + parent: 2 + - uid: 20873 components: - type: Transform - pos: 8.5,-24.5 - parent: 89 - - uid: 3052 + pos: 12.5,27.5 + parent: 2 + - uid: 20874 components: - type: Transform - pos: 8.5,-25.5 - parent: 89 - - uid: 3053 + pos: 12.5,24.5 + parent: 2 + - uid: 20875 components: - type: Transform - pos: 8.5,-26.5 - parent: 89 - - uid: 3054 + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 20876 components: - type: Transform - pos: 8.5,-27.5 - parent: 89 - - uid: 3056 + rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 20877 components: - type: Transform - pos: 7.5,-27.5 - parent: 89 - - uid: 3057 + rot: -1.5707963267948966 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 20878 components: - type: Transform - pos: 6.5,-27.5 - parent: 89 - - uid: 3092 + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 20879 components: - type: Transform - pos: 24.5,-17.5 - parent: 89 - - uid: 3094 + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 + parent: 2 + - uid: 20880 components: - type: Transform - pos: 34.5,29.5 - parent: 89 - - uid: 3095 + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 2 + - uid: 20881 components: - type: Transform - pos: 17.5,-19.5 - parent: 89 - - uid: 3122 + rot: -1.5707963267948966 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 20882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 89 - - uid: 3124 + pos: 51.5,-17.5 + parent: 2 + - uid: 20883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 89 - - uid: 3128 + pos: 52.5,-17.5 + parent: 2 + - uid: 20884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 89 - - uid: 3129 + pos: 37.5,-25.5 + parent: 2 + - uid: 20885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 89 - - uid: 3131 + pos: 37.5,-24.5 + parent: 2 + - uid: 20886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 89 - - uid: 3139 + pos: 42.5,-21.5 + parent: 2 + - uid: 20887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 - parent: 89 - - uid: 3140 + pos: 43.5,-21.5 + parent: 2 + - uid: 20888 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-3.5 - parent: 89 - - uid: 3142 + pos: 41.5,-27.5 + parent: 2 + - uid: 20889 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 89 - - uid: 3143 + pos: 41.5,-26.5 + parent: 2 + - uid: 20890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-0.5 - parent: 89 - - uid: 3144 + pos: -86.5,23.5 + parent: 2 + - uid: 20891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-0.5 - parent: 89 - - uid: 3145 + pos: 50.5,-9.5 + parent: 2 + - uid: 20892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 89 - - uid: 3146 + pos: -91.5,-3.5 + parent: 2 + - uid: 20893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 89 - - uid: 3159 + pos: 35.5,-21.5 + parent: 2 + - uid: 20894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,35.5 - parent: 89 - - uid: 3174 + pos: 36.5,-21.5 + parent: 2 + - uid: 20895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 89 - - uid: 3190 + pos: 43.5,15.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 20897 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,16.5 - parent: 89 - - uid: 3192 + pos: -43.5,23.5 + parent: 2 + - uid: 20898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 89 - - uid: 3194 + pos: 30.5,0.5 + parent: 2 + - uid: 20899 components: - type: Transform - pos: 18.5,-19.5 - parent: 89 - - uid: 3195 + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 20900 components: - type: Transform - pos: 14.5,-20.5 - parent: 89 - - uid: 3196 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 20901 components: - type: Transform - pos: 12.5,-20.5 - parent: 89 - - uid: 3198 + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 20902 components: - type: Transform - pos: 13.5,-20.5 - parent: 89 - - uid: 3200 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 20903 components: - type: Transform - pos: 19.5,-17.5 - parent: 89 - - uid: 3201 + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 20904 components: - type: Transform - pos: 15.5,-20.5 - parent: 89 - - uid: 3202 + pos: 33.5,26.5 + parent: 2 + - uid: 20905 components: - type: Transform - pos: 49.5,21.5 - parent: 89 - - uid: 3203 + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - uid: 20906 components: - type: Transform - pos: 16.5,-20.5 - parent: 89 - - uid: 3207 + pos: -0.5,-26.5 + parent: 2 + - uid: 20907 components: - type: Transform - pos: 16.5,-19.5 - parent: 89 - - uid: 3211 + rot: 3.141592653589793 rad + pos: 55.5,-27.5 + parent: 2 + - uid: 20908 components: - type: Transform - pos: 18.5,-17.5 - parent: 89 - - uid: 3257 + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 2 + - uid: 20909 components: - type: Transform - pos: 41.5,15.5 - parent: 89 - - uid: 3273 + pos: 59.5,-38.5 + parent: 2 + - uid: 20910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,17.5 - parent: 89 - - uid: 3276 + pos: 62.5,-18.5 + parent: 2 + - uid: 20911 components: - type: Transform - pos: 23.5,-17.5 - parent: 89 - - uid: 3279 + rot: -1.5707963267948966 rad + pos: 54.5,-33.5 + parent: 2 + - uid: 20912 components: - type: Transform - pos: 20.5,-18.5 - parent: 89 - - uid: 3284 + pos: 40.5,15.5 + parent: 2 + - uid: 20913 components: - type: Transform - pos: 21.5,-18.5 - parent: 89 - - uid: 3288 + pos: -83.5,-5.5 + parent: 2 + - uid: 20914 components: - type: Transform - pos: 30.5,-17.5 - parent: 89 - - uid: 3289 + rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 2 + - uid: 20915 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-42.5 - parent: 89 - - uid: 3298 + pos: 40.5,18.5 + parent: 2 + - uid: 20916 components: - type: Transform - pos: 31.5,-17.5 - parent: 89 - - uid: 3316 + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 + - uid: 20917 components: - type: Transform - pos: 41.5,-10.5 - parent: 89 - - uid: 3335 + pos: 38.5,18.5 + parent: 2 + - uid: 20918 components: - type: Transform - pos: 40.5,-10.5 - parent: 89 - - uid: 3336 + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 20919 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 3347 + rot: 3.141592653589793 rad + pos: 55.5,-26.5 + parent: 2 + - uid: 20920 components: - type: Transform - pos: 37.5,-14.5 - parent: 89 - - uid: 3348 + rot: 3.141592653589793 rad + pos: 55.5,-25.5 + parent: 2 + - uid: 20921 components: - type: Transform - pos: 37.5,-15.5 - parent: 89 - - uid: 3352 + rot: -1.5707963267948966 rad + pos: 54.5,-32.5 + parent: 2 + - uid: 20922 components: - type: Transform - pos: 18.5,9.5 - parent: 89 - - uid: 3355 + rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 2 + - uid: 20923 components: - type: Transform - pos: 19.5,9.5 - parent: 89 - - uid: 3393 + pos: 52.5,-21.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 37.5,-13.5 - parent: 89 - - uid: 3397 + pos: 53.5,-21.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 45.5,-2.5 - parent: 89 - - uid: 3484 + pos: 54.5,-21.5 + parent: 2 + - uid: 20926 components: - type: Transform - pos: 52.5,-10.5 - parent: 89 - - uid: 3534 + pos: 52.5,-27.5 + parent: 2 + - uid: 20927 components: - type: Transform - pos: 32.5,-17.5 - parent: 89 - - uid: 3536 + rot: -1.5707963267948966 rad + pos: 54.5,-24.5 + parent: 2 + - uid: 20928 components: - type: Transform - pos: 25.5,-17.5 - parent: 89 - - uid: 3638 + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 20929 components: - type: Transform - pos: 20.5,-17.5 - parent: 89 - - uid: 3695 + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 33.5,-17.5 - parent: 89 - - uid: 3698 + rot: -1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 2 + - uid: 20931 components: - type: Transform - pos: 34.5,-17.5 - parent: 89 - - uid: 3925 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 2 + - uid: 20932 components: - type: Transform - pos: -36.5,-8.5 - parent: 89 - - uid: 3926 + rot: 3.141592653589793 rad + pos: 52.5,-32.5 + parent: 2 + - uid: 20933 components: - type: Transform - pos: -38.5,-8.5 - parent: 89 - - uid: 3950 + pos: 51.5,-26.5 + parent: 2 + - uid: 20934 components: - type: Transform - pos: -38.5,-9.5 - parent: 89 - - uid: 3952 + pos: 52.5,-19.5 + parent: 2 + - uid: 20935 components: - type: Transform - pos: -37.5,-10.5 - parent: 89 - - uid: 3953 + pos: 52.5,-18.5 + parent: 2 + - uid: 20936 components: - type: Transform - pos: -36.5,-10.5 - parent: 89 - - uid: 4181 + rot: 3.141592653589793 rad + pos: 50.5,-33.5 + parent: 2 + - uid: 20937 components: - type: Transform - pos: 51.5,-10.5 - parent: 89 - - uid: 4256 + rot: -1.5707963267948966 rad + pos: 54.5,-27.5 + parent: 2 + - uid: 20938 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 4290 + rot: 3.141592653589793 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 20939 components: - type: Transform - pos: 27.5,-17.5 - parent: 89 - - uid: 4326 + pos: 52.5,-23.5 + parent: 2 + - uid: 20940 components: - type: Transform - pos: -46.5,2.5 - parent: 89 - - uid: 4470 + pos: 53.5,-27.5 + parent: 2 + - uid: 20941 components: - type: Transform - pos: -65.5,-18.5 - parent: 89 - - uid: 4482 + rot: 3.141592653589793 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 20942 components: - type: Transform - pos: -61.5,-21.5 - parent: 89 - - uid: 4483 + pos: 52.5,-26.5 + parent: 2 + - uid: 20943 components: - type: Transform - pos: -64.5,-21.5 - parent: 89 - - uid: 4484 + rot: 3.141592653589793 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 20944 components: - type: Transform - pos: -64.5,-20.5 - parent: 89 - - uid: 4485 + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 20945 components: - type: Transform - pos: -64.5,-19.5 - parent: 89 - - uid: 4489 + rot: 3.141592653589793 rad + pos: 50.5,-26.5 + parent: 2 + - uid: 20946 components: - type: Transform - pos: -68.5,-18.5 - parent: 89 - - uid: 4490 + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 20947 components: - type: Transform - pos: -69.5,-18.5 - parent: 89 - - uid: 4495 + rot: 3.141592653589793 rad + pos: 54.5,-31.5 + parent: 2 + - uid: 20948 components: - type: Transform - pos: -74.5,-18.5 - parent: 89 - - uid: 4497 + rot: 3.141592653589793 rad + pos: 54.5,-28.5 + parent: 2 + - uid: 20949 components: - type: Transform - pos: -68.5,-17.5 - parent: 89 - - uid: 4499 + rot: 3.141592653589793 rad + pos: 52.5,-33.5 + parent: 2 + - uid: 20950 components: - type: Transform - pos: -68.5,-15.5 - parent: 89 - - uid: 4500 + rot: 3.141592653589793 rad + pos: 54.5,-29.5 + parent: 2 + - uid: 20951 components: - type: Transform - pos: -68.5,-14.5 - parent: 89 - - uid: 4501 + rot: 3.141592653589793 rad + pos: 50.5,-21.5 + parent: 2 + - uid: 20952 components: - type: Transform - pos: -69.5,-14.5 - parent: 89 - - uid: 4502 + rot: 3.141592653589793 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 20953 components: - type: Transform - pos: -74.5,-11.5 - parent: 89 - - uid: 4503 + rot: 3.141592653589793 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 20954 components: - type: Transform - pos: -71.5,-14.5 - parent: 89 - - uid: 4504 + pos: 47.5,-38.5 + parent: 2 + - uid: 20955 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 4505 + pos: 63.5,-29.5 + parent: 2 + - uid: 20956 components: - type: Transform - pos: -74.5,-14.5 - parent: 89 - - uid: 4506 + pos: 36.5,-35.5 + parent: 2 + - uid: 20957 components: - type: Transform - pos: -75.5,-14.5 - parent: 89 - - uid: 4507 + rot: -1.5707963267948966 rad + pos: 53.5,-24.5 + parent: 2 + - uid: 20958 components: - type: Transform - pos: -75.5,-15.5 - parent: 89 - - uid: 4508 + rot: -1.5707963267948966 rad + pos: 55.5,-24.5 + parent: 2 + - uid: 20959 components: - type: Transform - pos: -75.5,-16.5 - parent: 89 - - uid: 4509 + pos: -2.5,-26.5 + parent: 2 + - uid: 20960 components: - type: Transform - pos: -75.5,-17.5 - parent: 89 - - uid: 4510 + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - uid: 20961 components: - type: Transform - pos: -74.5,-12.5 - parent: 89 - - uid: 4514 + pos: 42.5,-8.5 + parent: 2 + - uid: 20962 components: - type: Transform - pos: -72.5,-11.5 - parent: 89 - - uid: 4515 + pos: 35.5,-14.5 + parent: 2 + - uid: 20963 components: - type: Transform - pos: -72.5,-12.5 - parent: 89 - - uid: 4516 + pos: -12.5,-14.5 + parent: 2 + - uid: 20964 components: - type: Transform - pos: -72.5,-13.5 - parent: 89 - - uid: 4600 + pos: -16.5,-24.5 + parent: 2 + - uid: 20965 components: - type: Transform - pos: -46.5,-14.5 - parent: 89 - - uid: 4601 + pos: -17.5,-20.5 + parent: 2 + - uid: 20966 components: - type: Transform - pos: -46.5,-15.5 - parent: 89 - - uid: 4602 + pos: -17.5,-18.5 + parent: 2 + - uid: 20967 components: - type: Transform - pos: -46.5,-16.5 - parent: 89 - - uid: 4604 + pos: -16.5,-14.5 + parent: 2 + - uid: 20968 components: - type: Transform - pos: -45.5,-16.5 - parent: 89 - - uid: 4605 + pos: -23.5,-17.5 + parent: 2 + - uid: 20969 components: - type: Transform - pos: -45.5,-17.5 - parent: 89 - - uid: 4606 + pos: -14.5,-20.5 + parent: 2 + - uid: 20970 components: - type: Transform - pos: -45.5,-18.5 - parent: 89 - - uid: 4608 + pos: -13.5,-20.5 + parent: 2 + - uid: 20971 components: - type: Transform - pos: -46.5,-18.5 - parent: 89 - - uid: 4612 + pos: -16.5,-20.5 + parent: 2 + - uid: 20972 components: - type: Transform - pos: -44.5,-18.5 - parent: 89 - - uid: 4613 + pos: -17.5,-19.5 + parent: 2 + - uid: 20973 components: - type: Transform - pos: -43.5,-18.5 - parent: 89 - - uid: 4614 + pos: -17.5,-15.5 + parent: 2 + - uid: 20974 components: - type: Transform - pos: -42.5,-18.5 - parent: 89 - - uid: 4615 + pos: -17.5,-14.5 + parent: 2 + - uid: 20975 components: - type: Transform - pos: -41.5,-18.5 - parent: 89 - - uid: 4616 + pos: -23.5,-14.5 + parent: 2 + - uid: 20976 components: - type: Transform - pos: -40.5,-18.5 - parent: 89 - - uid: 4617 + pos: -7.5,-15.5 + parent: 2 + - uid: 20977 components: - type: Transform - pos: -39.5,-18.5 - parent: 89 - - uid: 4618 + pos: -14.5,-14.5 + parent: 2 + - uid: 20978 components: - type: Transform - pos: -38.5,-18.5 - parent: 89 - - uid: 4620 + pos: -15.5,-14.5 + parent: 2 + - uid: 20979 components: - type: Transform - pos: -53.5,-17.5 - parent: 89 - - uid: 4621 + pos: -12.5,-15.5 + parent: 2 + - uid: 20980 components: - type: Transform - pos: -49.5,-18.5 - parent: 89 - - uid: 4622 + pos: -7.5,-14.5 + parent: 2 + - uid: 20981 components: - type: Transform - pos: -58.5,-20.5 - parent: 89 - - uid: 4623 + pos: -6.5,-14.5 + parent: 2 + - uid: 20982 components: - type: Transform - pos: -53.5,-18.5 - parent: 89 - - uid: 4627 + pos: -5.5,-14.5 + parent: 2 + - uid: 20983 components: - type: Transform - pos: -57.5,-18.5 - parent: 89 - - uid: 4629 + pos: -21.5,-21.5 + parent: 2 + - uid: 20984 components: - type: Transform - pos: -58.5,-19.5 - parent: 89 - - uid: 4630 + pos: -4.5,-14.5 + parent: 2 + - uid: 20985 components: - type: Transform - pos: -58.5,-21.5 - parent: 89 - - uid: 4631 + pos: -4.5,-15.5 + parent: 2 + - uid: 20986 components: - type: Transform - pos: -61.5,-20.5 - parent: 89 - - uid: 4632 + pos: -4.5,-16.5 + parent: 2 + - uid: 20987 components: - type: Transform - pos: -61.5,-19.5 - parent: 89 - - uid: 4633 + pos: -4.5,-17.5 + parent: 2 + - uid: 20988 components: - type: Transform - pos: -61.5,-18.5 - parent: 89 - - uid: 4635 + pos: -4.5,-18.5 + parent: 2 + - uid: 20989 components: - type: Transform - pos: -53.5,-15.5 - parent: 89 - - uid: 4636 + pos: -3.5,-18.5 + parent: 2 + - uid: 20990 components: - type: Transform - pos: -53.5,-14.5 - parent: 89 - - uid: 4638 + pos: 0.5,-18.5 + parent: 2 + - uid: 20991 components: - type: Transform - pos: -57.5,-17.5 - parent: 89 - - uid: 4639 + pos: 3.5,-17.5 + parent: 2 + - uid: 20992 components: - type: Transform - pos: -57.5,-16.5 - parent: 89 - - uid: 4640 + pos: 4.5,-17.5 + parent: 2 + - uid: 20993 components: - type: Transform - pos: -57.5,-15.5 - parent: 89 - - uid: 4641 + pos: 5.5,-17.5 + parent: 2 + - uid: 20994 components: - type: Transform - pos: -57.5,-14.5 - parent: 89 - - uid: 4642 + pos: -20.5,-21.5 + parent: 2 + - uid: 20995 components: - type: Transform - pos: -57.5,-13.5 - parent: 89 - - uid: 4643 + pos: -23.5,-21.5 + parent: 2 + - uid: 20996 components: - type: Transform - pos: -57.5,-12.5 - parent: 89 - - uid: 4654 + pos: -23.5,-20.5 + parent: 2 + - uid: 20997 components: - type: Transform - pos: -53.5,-12.5 - parent: 89 - - uid: 4693 + pos: -23.5,-19.5 + parent: 2 + - uid: 20998 components: - type: Transform - pos: -49.5,-17.5 - parent: 89 - - uid: 4696 + pos: -23.5,-18.5 + parent: 2 + - uid: 20999 components: - type: Transform - pos: -49.5,-15.5 - parent: 89 - - uid: 4699 + pos: -23.5,-15.5 + parent: 2 + - uid: 21000 components: - type: Transform - pos: -49.5,-14.5 - parent: 89 - - uid: 4701 + pos: -15.5,-20.5 + parent: 2 + - uid: 21001 components: - type: Transform - pos: -52.5,-18.5 - parent: 89 - - uid: 4703 + pos: -10.5,-21.5 + parent: 2 + - uid: 21002 components: - type: Transform - pos: -50.5,-18.5 - parent: 89 - - uid: 4885 + pos: -10.5,-20.5 + parent: 2 + - uid: 21003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 89 - - uid: 4886 + pos: 0.5,-19.5 + parent: 2 + - uid: 21004 components: - type: Transform - pos: 53.5,-12.5 - parent: 89 - - uid: 5003 + pos: 0.5,-20.5 + parent: 2 + - uid: 21005 components: - type: Transform - pos: 44.5,-2.5 - parent: 89 - - uid: 5004 + pos: 0.5,-21.5 + parent: 2 + - uid: 21006 components: - type: Transform - pos: 45.5,-9.5 - parent: 89 - - uid: 5077 + pos: -23.5,-22.5 + parent: 2 + - uid: 21007 components: - type: Transform - pos: -57.5,-11.5 - parent: 89 - - uid: 5117 + pos: -23.5,-23.5 + parent: 2 + - uid: 21008 components: - type: Transform - pos: -42.5,-2.5 - parent: 89 - - uid: 5175 + pos: -23.5,-24.5 + parent: 2 + - uid: 21009 components: - type: Transform - pos: -56.5,-11.5 - parent: 89 - - uid: 5176 + pos: -22.5,-24.5 + parent: 2 + - uid: 21010 components: - type: Transform - pos: -55.5,-11.5 - parent: 89 - - uid: 5178 + pos: -21.5,-24.5 + parent: 2 + - uid: 21011 components: - type: Transform - pos: -54.5,-11.5 - parent: 89 - - uid: 5179 + pos: -20.5,-24.5 + parent: 2 + - uid: 21012 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 5386 + pos: -19.5,-24.5 + parent: 2 + - uid: 21013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 89 - - uid: 5421 + pos: -18.5,-24.5 + parent: 2 + - uid: 21014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 89 - - uid: 5451 + pos: -17.5,-24.5 + parent: 2 + - uid: 21015 components: - type: Transform - pos: 39.5,-10.5 - parent: 89 - - uid: 5459 + pos: -14.5,-24.5 + parent: 2 + - uid: 21016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 89 - - uid: 5469 + pos: -13.5,-24.5 + parent: 2 + - uid: 21017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 89 - - uid: 5513 + pos: -15.5,-24.5 + parent: 2 + - uid: 21018 components: - type: Transform - pos: -44.5,-1.5 - parent: 89 - - uid: 5514 + pos: -12.5,-24.5 + parent: 2 + - uid: 21019 components: - type: Transform - pos: -46.5,1.5 - parent: 89 - - uid: 5515 + pos: -20.5,-23.5 + parent: 2 + - uid: 21020 components: - type: Transform - pos: -46.5,0.5 - parent: 89 - - uid: 5516 + pos: -10.5,-23.5 + parent: 2 + - uid: 21021 components: - type: Transform - pos: -46.5,-0.5 - parent: 89 - - uid: 5517 + pos: 5.5,-21.5 + parent: 2 + - uid: 21022 components: - type: Transform - pos: -46.5,-1.5 - parent: 89 - - uid: 5518 + pos: 5.5,-23.5 + parent: 2 + - uid: 21023 components: - type: Transform - pos: -45.5,-1.5 - parent: 89 - - uid: 5791 + pos: -16.5,-19.5 + parent: 2 + - uid: 21024 components: - type: Transform - pos: -74.5,-13.5 - parent: 89 - - uid: 5792 + pos: 4.5,-23.5 + parent: 2 + - uid: 21025 components: - type: Transform - pos: -73.5,-11.5 - parent: 89 - - uid: 5950 + pos: -3.5,-23.5 + parent: 2 + - uid: 21026 components: - type: Transform - pos: -57.5,6.5 - parent: 89 - - uid: 5951 + pos: -21.5,-14.5 + parent: 2 + - uid: 21027 components: - type: Transform - pos: -57.5,11.5 - parent: 89 - - uid: 5952 + pos: 0.5,-23.5 + parent: 2 + - uid: 21028 components: - type: Transform - pos: -57.5,10.5 - parent: 89 - - uid: 5953 + pos: -3.5,-21.5 + parent: 2 + - uid: 21029 components: - type: Transform - pos: -57.5,9.5 - parent: 89 - - uid: 5954 + pos: -3.5,-20.5 + parent: 2 + - uid: 21030 components: - type: Transform - pos: -57.5,7.5 - parent: 89 - - uid: 5955 + pos: -4.5,-19.5 + parent: 2 + - uid: 21031 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 6015 + pos: -5.5,-19.5 + parent: 2 + - uid: 21032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-3.5 - parent: 89 - - uid: 6039 + pos: -7.5,-19.5 + parent: 2 + - uid: 21033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-18.5 - parent: 89 - - uid: 6122 + pos: -9.5,-19.5 + parent: 2 + - uid: 21034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-0.5 - parent: 89 - - uid: 6159 + pos: -10.5,-19.5 + parent: 2 + - uid: 21035 components: - type: Transform - pos: 53.5,-11.5 - parent: 89 - - uid: 6174 + pos: -6.5,-19.5 + parent: 2 + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 89 - - uid: 6175 + pos: -11.5,-20.5 + parent: 2 + - uid: 21037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 89 - - uid: 6181 + pos: -12.5,-20.5 + parent: 2 + - uid: 21038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,4.5 - parent: 89 - - uid: 6182 + pos: 5.5,-22.5 + parent: 2 + - uid: 21039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 89 - - uid: 6185 + pos: 5.5,-18.5 + parent: 2 + - uid: 21040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 89 - - uid: 6186 + pos: 5.5,-19.5 + parent: 2 + - uid: 21041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,8.5 - parent: 89 - - uid: 6187 + pos: -22.5,-21.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 21044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 89 - - uid: 6188 + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 21045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 89 - - uid: 6189 + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - uid: 21046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 89 - - uid: 6190 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 21047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,10.5 - parent: 89 - - uid: 6191 + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - uid: 21048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 89 - - uid: 6192 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 21049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 89 - - uid: 6193 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 21050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 89 - - uid: 6194 + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 21051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 89 - - uid: 6295 + pos: -13.5,-14.5 + parent: 2 + - uid: 21052 components: - type: Transform - pos: 15.5,4.5 - parent: 89 - - uid: 6296 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 21053 components: - type: Transform - pos: 16.5,4.5 - parent: 89 - - uid: 6301 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 21054 components: - type: Transform - pos: 22.5,4.5 - parent: 89 - - uid: 6302 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 21055 components: - type: Transform - pos: 21.5,4.5 - parent: 89 - - uid: 6303 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 21056 components: - type: Transform - pos: 28.5,4.5 - parent: 89 - - uid: 6304 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 21057 components: - type: Transform - pos: 27.5,4.5 - parent: 89 - - uid: 6305 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 21058 components: - type: Transform - pos: 26.5,4.5 - parent: 89 - - uid: 6308 + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 21059 components: - type: Transform - pos: 23.5,4.5 - parent: 89 - - uid: 6320 + pos: 5.5,-20.5 + parent: 2 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,24.5 - parent: 89 - - uid: 6380 + pos: -3.5,-22.5 + parent: 2 + - uid: 21061 components: - type: Transform - pos: -27.5,-19.5 - parent: 89 - - uid: 6454 + pos: -3.5,-19.5 + parent: 2 + - uid: 21062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,31.5 - parent: 89 - - uid: 6455 + pos: 0.5,-22.5 + parent: 2 + - uid: 21063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,29.5 - parent: 89 - - uid: 6461 + pos: -4.5,10.5 + parent: 2 + - uid: 21064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,31.5 - parent: 89 - - uid: 6464 + pos: -2.5,10.5 + parent: 2 + - uid: 21065 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,29.5 - parent: 89 - - uid: 6470 + pos: -3.5,10.5 + parent: 2 + - uid: 21066 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,38.5 - parent: 89 - - uid: 6475 + pos: -4.5,5.5 + parent: 2 + - uid: 21067 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,38.5 - parent: 89 - - uid: 6545 - components: - - type: Transform - pos: -82.5,40.5 - parent: 89 - - uid: 6549 + pos: -0.5,10.5 + parent: 2 + - uid: 21068 components: - type: Transform - pos: -82.5,39.5 - parent: 89 - - uid: 6556 + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 21069 components: - type: Transform - pos: -68.5,39.5 - parent: 89 - - uid: 6562 + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 21070 components: - type: Transform - pos: 19.5,27.5 - parent: 89 - - uid: 6622 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - uid: 21071 components: - type: Transform - pos: -43.5,-2.5 - parent: 89 - - uid: 6623 + pos: 1.5,-16.5 + parent: 2 + - uid: 21072 components: - type: Transform - pos: -44.5,-2.5 - parent: 89 - - uid: 6626 + pos: 1.5,-17.5 + parent: 2 + - uid: 21073 components: - type: Transform - pos: -42.5,1.5 - parent: 89 - - uid: 6627 + pos: 1.5,-18.5 + parent: 2 + - uid: 21074 components: - type: Transform - pos: -42.5,2.5 - parent: 89 - - uid: 6658 + pos: -108.5,-8.5 + parent: 2 + - uid: 21075 components: - type: Transform - pos: -37.5,-18.5 - parent: 89 - - uid: 6659 + pos: -97.5,-5.5 + parent: 2 + - uid: 21076 components: - type: Transform - pos: -36.5,-18.5 - parent: 89 - - uid: 6660 + pos: -97.5,-4.5 + parent: 2 + - uid: 21077 components: - type: Transform - pos: -35.5,-18.5 - parent: 89 - - uid: 6661 + pos: -97.5,-3.5 + parent: 2 + - uid: 21078 components: - type: Transform - pos: -34.5,-18.5 - parent: 89 - - uid: 6662 + rot: 1.5707963267948966 rad + pos: -90.5,-3.5 + parent: 2 + - uid: 21079 components: - type: Transform - pos: -33.5,-18.5 - parent: 89 - - uid: 6663 + pos: -118.5,0.5 + parent: 2 + - uid: 21080 components: - type: Transform - pos: -32.5,-18.5 - parent: 89 - - uid: 6664 + pos: -118.5,7.5 + parent: 2 + - uid: 21081 components: - type: Transform - pos: -31.5,-18.5 - parent: 89 - - uid: 6665 + pos: -118.5,10.5 + parent: 2 + - uid: 21082 components: - type: Transform - pos: -30.5,-18.5 - parent: 89 - - uid: 6666 + pos: -115.5,16.5 + parent: 2 + - uid: 21083 components: - type: Transform - pos: -29.5,-18.5 - parent: 89 - - uid: 6667 + pos: -116.5,16.5 + parent: 2 + - uid: 21084 components: - type: Transform - pos: -28.5,-18.5 - parent: 89 - - uid: 6668 + pos: -117.5,16.5 + parent: 2 + - uid: 21085 components: - type: Transform - pos: -27.5,-18.5 - parent: 89 - - uid: 6669 + pos: -118.5,16.5 + parent: 2 + - uid: 21086 components: - type: Transform - pos: -27.5,-20.5 - parent: 89 - - uid: 6670 + pos: -118.5,14.5 + parent: 2 + - uid: 21087 components: - type: Transform - pos: -27.5,-21.5 - parent: 89 - - uid: 6671 + pos: -110.5,-8.5 + parent: 2 + - uid: 21088 components: - type: Transform - pos: -27.5,-22.5 - parent: 89 - - uid: 6672 + pos: -110.5,-9.5 + parent: 2 + - uid: 21089 components: - type: Transform - pos: -27.5,-23.5 - parent: 89 - - uid: 6673 + pos: -110.5,-10.5 + parent: 2 + - uid: 21090 components: - type: Transform - pos: -27.5,-24.5 - parent: 89 - - uid: 6674 + pos: -110.5,-11.5 + parent: 2 + - uid: 21091 components: - type: Transform - pos: -27.5,-25.5 - parent: 89 - - uid: 6675 + pos: -110.5,-15.5 + parent: 2 + - uid: 21092 components: - type: Transform - pos: -27.5,-26.5 - parent: 89 - - uid: 6676 + pos: -121.5,19.5 + parent: 2 + - uid: 21093 components: - type: Transform - pos: -27.5,-27.5 - parent: 89 - - uid: 6677 + pos: -112.5,-12.5 + parent: 2 + - uid: 21094 components: - type: Transform - pos: -27.5,-28.5 - parent: 89 - - uid: 6678 + pos: -111.5,-12.5 + parent: 2 + - uid: 21095 components: - type: Transform - pos: -13.5,-29.5 - parent: 89 - - uid: 6679 + pos: -112.5,-11.5 + parent: 2 + - uid: 21096 components: - type: Transform - pos: -26.5,-28.5 - parent: 89 - - uid: 6680 + rot: 1.5707963267948966 rad + pos: -93.5,-10.5 + parent: 2 + - uid: 21097 components: - type: Transform - pos: -25.5,-28.5 - parent: 89 - - uid: 6681 + rot: 1.5707963267948966 rad + pos: -93.5,-11.5 + parent: 2 + - uid: 21098 components: - type: Transform - pos: -24.5,-28.5 - parent: 89 - - uid: 6682 + pos: -123.5,-4.5 + parent: 2 + - uid: 21099 components: - type: Transform - pos: -23.5,-28.5 - parent: 89 - - uid: 6683 + pos: -133.5,19.5 + parent: 2 + - uid: 21100 components: - type: Transform - pos: -22.5,-28.5 - parent: 89 - - uid: 6684 + rot: 1.5707963267948966 rad + pos: 56.5,-23.5 + parent: 2 + - uid: 21101 components: - type: Transform - pos: -21.5,-28.5 - parent: 89 - - uid: 6685 + rot: 1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 2 + - uid: 21102 components: - type: Transform - pos: -20.5,-28.5 - parent: 89 - - uid: 6686 + rot: 1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 2 + - uid: 21103 components: - type: Transform - pos: -19.5,-28.5 - parent: 89 - - uid: 6687 + rot: 1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 2 + - uid: 21104 components: - type: Transform - pos: -18.5,-28.5 - parent: 89 - - uid: 6688 + rot: 1.5707963267948966 rad + pos: 55.5,-23.5 + parent: 2 + - uid: 21105 components: - type: Transform - pos: -17.5,-28.5 - parent: 89 - - uid: 6689 + pos: -123.5,19.5 + parent: 2 + - uid: 27055 components: - type: Transform - pos: -16.5,-28.5 - parent: 89 - - uid: 6690 + pos: -16.5,-18.5 + parent: 24450 + - uid: 27056 components: - type: Transform - pos: -15.5,-28.5 - parent: 89 - - uid: 6691 + pos: -14.5,-19.5 + parent: 24450 + - uid: 27057 components: - type: Transform - pos: -14.5,-28.5 - parent: 89 - - uid: 6692 + pos: -16.5,-20.5 + parent: 24450 + - uid: 27058 components: - type: Transform - pos: -13.5,-28.5 - parent: 89 - - uid: 6693 + pos: -14.5,-20.5 + parent: 24450 + - uid: 27059 components: - type: Transform - pos: -13.5,-30.5 - parent: 89 - - uid: 6694 + pos: -14.5,-18.5 + parent: 24450 + - uid: 27060 components: - type: Transform - pos: -13.5,-31.5 - parent: 89 - - uid: 6695 + pos: -16.5,-19.5 + parent: 24450 + - uid: 27061 components: - type: Transform - pos: -13.5,-32.5 - parent: 89 - - uid: 6696 + pos: -8.5,-22.5 + parent: 24450 + - uid: 27062 components: - type: Transform - pos: -13.5,-33.5 - parent: 89 - - uid: 6923 + pos: -12.5,-20.5 + parent: 24450 + - uid: 27063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,-13.5 - parent: 89 - - uid: 6934 + pos: -8.5,-25.5 + parent: 24450 + - uid: 27064 components: - type: Transform - pos: -38.5,-10.5 - parent: 89 - - uid: 7026 + pos: -18.5,-25.5 + parent: 24450 + - uid: 27065 components: - type: Transform - pos: -105.5,-6.5 - parent: 89 - - uid: 7027 + pos: -10.5,-20.5 + parent: 24450 + - uid: 27066 components: - type: Transform - pos: -104.5,-6.5 - parent: 89 - - uid: 7028 + pos: -16.5,-27.5 + parent: 24450 + - uid: 27067 components: - type: Transform - pos: -106.5,-6.5 - parent: 89 - - uid: 7029 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 24450 + - uid: 27068 components: - type: Transform - pos: -106.5,-7.5 - parent: 89 - - uid: 7030 + pos: -18.5,-22.5 + parent: 24450 + - uid: 27069 components: - type: Transform - pos: -106.5,-8.5 - parent: 89 - - uid: 7031 + pos: -10.5,-27.5 + parent: 24450 + - uid: 27070 components: - type: Transform - pos: -106.5,-9.5 - parent: 89 - - uid: 7032 + pos: -12.5,-19.5 + parent: 24450 + - uid: 27071 components: - type: Transform - pos: -106.5,-10.5 - parent: 89 - - uid: 7033 + pos: -10.5,-19.5 + parent: 24450 + - uid: 27072 components: - type: Transform - pos: -98.5,-6.5 - parent: 89 - - uid: 7082 + pos: -10.5,-18.5 + parent: 24450 + - uid: 27073 components: - type: Transform - pos: -119.5,-16.5 - parent: 89 - - uid: 7083 + pos: -12.5,-18.5 + parent: 24450 + - uid: 27074 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,20.5 - parent: 89 - - uid: 7084 + pos: -13.5,-18.5 + parent: 24450 + - uid: 27075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,19.5 - parent: 89 - - uid: 7085 + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 24450 + - uid: 27076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,19.5 - parent: 89 - - uid: 7086 + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 24450 + - uid: 27077 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,19.5 - parent: 89 - - uid: 7087 + pos: -4.5,-18.5 + parent: 24450 + - uid: 27078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,19.5 - parent: 89 - - uid: 7156 + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 24450 + - uid: 27079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,19.5 - parent: 89 - - uid: 7163 + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 24450 + - uid: 27080 components: - type: Transform - pos: 18.5,-18.5 - parent: 89 - - uid: 7215 + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 24450 + - uid: 27081 components: - type: Transform - pos: -89.5,11.5 - parent: 89 - - uid: 7216 + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 24450 + - uid: 27082 components: - type: Transform - pos: -89.5,12.5 - parent: 89 - - uid: 7217 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 24450 + - uid: 27083 components: - type: Transform - pos: -89.5,13.5 - parent: 89 - - uid: 7218 + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 24450 + - uid: 27084 components: - type: Transform - pos: -89.5,15.5 - parent: 89 - - uid: 7219 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 24450 + - uid: 27085 components: - type: Transform - pos: -89.5,14.5 - parent: 89 - - uid: 7258 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 24450 + - uid: 27086 components: - type: Transform - pos: -46.5,26.5 - parent: 89 - - uid: 7325 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 24450 + - uid: 27087 components: - type: Transform - pos: -89.5,-5.5 - parent: 89 - - uid: 7341 + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 24450 + - uid: 27088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,19.5 - parent: 89 - - uid: 7351 + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 24450 + - uid: 27089 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,19.5 - parent: 89 - - uid: 7352 + pos: -4.5,-15.5 + parent: 24450 + - uid: 27090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,19.5 - parent: 89 - - uid: 7353 + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 24450 + - uid: 27091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,19.5 - parent: 89 - - uid: 7354 + pos: -16.5,-9.5 + parent: 24450 + - uid: 27092 components: - type: Transform rot: 3.141592653589793 rad - pos: -109.5,19.5 - parent: 89 - - uid: 7367 + pos: -3.5,-15.5 + parent: 24450 + - uid: 27093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-5.5 - parent: 89 - - uid: 7382 + pos: -21.5,-10.5 + parent: 24450 + - uid: 27094 components: - type: Transform - pos: -86.5,-5.5 - parent: 89 - - uid: 7438 + pos: -21.5,-11.5 + parent: 24450 + - uid: 27095 components: - type: Transform - pos: 45.5,-5.5 - parent: 89 - - uid: 7458 + pos: -21.5,-12.5 + parent: 24450 + - uid: 27096 components: - type: Transform - pos: -86.5,-3.5 - parent: 89 - - uid: 7460 + pos: -21.5,-13.5 + parent: 24450 + - uid: 27097 components: - type: Transform - pos: -88.5,-3.5 - parent: 89 - - uid: 7461 + pos: -20.5,-13.5 + parent: 24450 + - uid: 27098 components: - type: Transform - pos: -89.5,-3.5 - parent: 89 - - uid: 7462 + pos: -19.5,-13.5 + parent: 24450 + - uid: 27099 components: - type: Transform - pos: -89.5,-4.5 - parent: 89 - - uid: 7463 + pos: -18.5,-13.5 + parent: 24450 + - uid: 27100 components: - type: Transform - pos: -87.5,-3.5 - parent: 89 - - uid: 7468 + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 24450 + - uid: 27101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-13.5 - parent: 89 - - uid: 7477 + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 24450 + - uid: 27102 components: - type: Transform - pos: -86.5,-4.5 - parent: 89 - - uid: 7489 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 24450 + - uid: 27103 components: - type: Transform - pos: -93.5,30.5 - parent: 89 - - uid: 7493 + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 24450 + - uid: 27104 components: - type: Transform - pos: -95.5,30.5 - parent: 89 - - uid: 7494 + pos: -16.5,-13.5 + parent: 24450 + - uid: 27105 components: - type: Transform - pos: -91.5,30.5 - parent: 89 - - uid: 7495 + pos: -16.5,-10.5 + parent: 24450 + - uid: 27106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,19.5 - parent: 89 - - uid: 7499 + pos: -16.5,-11.5 + parent: 24450 + - uid: 27107 components: - type: Transform - pos: -90.5,30.5 - parent: 89 - - uid: 7500 + pos: -15.5,-13.5 + parent: 24450 + - uid: 27108 components: - type: Transform - pos: -92.5,30.5 - parent: 89 - - uid: 7503 + pos: -14.5,-13.5 + parent: 24450 + - uid: 27109 components: - type: Transform - pos: -94.5,30.5 - parent: 89 - - uid: 7505 + pos: -13.5,-13.5 + parent: 24450 + - uid: 27110 components: - type: Transform - pos: -89.5,30.5 - parent: 89 - - uid: 7510 + pos: -13.5,-7.5 + parent: 24450 + - uid: 27111 components: - type: Transform - pos: -88.5,30.5 - parent: 89 - - uid: 7514 + pos: -16.5,-8.5 + parent: 24450 + - uid: 27112 components: - type: Transform - pos: -74.5,-10.5 - parent: 89 - - uid: 7515 + pos: -16.5,-7.5 + parent: 24450 + - uid: 27113 components: - type: Transform - pos: -75.5,-10.5 - parent: 89 - - uid: 7516 + pos: -15.5,-7.5 + parent: 24450 + - uid: 27114 components: - type: Transform - pos: -76.5,-10.5 - parent: 89 - - uid: 7517 + pos: -14.5,-7.5 + parent: 24450 + - uid: 27115 components: - type: Transform - pos: -77.5,-10.5 - parent: 89 - - uid: 7518 + pos: -12.5,-13.5 + parent: 24450 + - uid: 27116 components: - type: Transform - pos: -78.5,-10.5 - parent: 89 - - uid: 7519 + pos: -12.5,-11.5 + parent: 24450 + - uid: 27117 components: - type: Transform - pos: -79.5,-10.5 - parent: 89 - - uid: 7520 + pos: -12.5,-10.5 + parent: 24450 + - uid: 27118 components: - type: Transform - pos: -80.5,-10.5 - parent: 89 - - uid: 7521 + pos: -12.5,-9.5 + parent: 24450 + - uid: 27119 components: - type: Transform - pos: -81.5,-10.5 - parent: 89 - - uid: 7530 + pos: -12.5,-8.5 + parent: 24450 + - uid: 27120 components: - type: Transform - pos: -84.5,-6.5 - parent: 89 - - uid: 7531 + pos: -12.5,-7.5 + parent: 24450 +- proto: WallRiveted + entities: + - uid: 27121 components: - type: Transform - pos: -85.5,-6.5 - parent: 89 - - uid: 7532 + pos: -18.5,-20.5 + parent: 24450 + - uid: 27122 components: - type: Transform - pos: -86.5,-6.5 - parent: 89 - - uid: 7575 + pos: -8.5,-20.5 + parent: 24450 + - uid: 27123 components: - type: Transform - pos: -100.5,30.5 - parent: 89 - - uid: 7577 + pos: -8.5,-21.5 + parent: 24450 + - uid: 27124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,30.5 - parent: 89 - - uid: 7578 + pos: -18.5,-26.5 + parent: 24450 + - uid: 27125 components: - type: Transform - pos: -101.5,28.5 - parent: 89 - - uid: 7591 + pos: -8.5,-27.5 + parent: 24450 + - uid: 27126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,20.5 - parent: 89 - - uid: 7592 + pos: -18.5,-27.5 + parent: 24450 + - uid: 27127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,19.5 - parent: 89 - - uid: 7593 + pos: -18.5,-21.5 + parent: 24450 + - uid: 27128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,21.5 - parent: 89 - - uid: 7594 + pos: -17.5,-20.5 + parent: 24450 + - uid: 27129 components: - type: Transform - pos: -88.5,15.5 - parent: 89 - - uid: 7595 + pos: -9.5,-20.5 + parent: 24450 + - uid: 27130 components: - type: Transform - pos: -87.5,15.5 - parent: 89 - - uid: 7596 + pos: -8.5,-26.5 + parent: 24450 + - uid: 27131 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,21.5 - parent: 89 - - uid: 7597 + pos: 11.5,0.5 + parent: 24450 + - uid: 27132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -134.5,-13.5 - parent: 89 - - uid: 7599 + pos: 10.5,0.5 + parent: 24450 + - uid: 27133 components: - type: Transform - pos: -83.5,11.5 - parent: 89 - - uid: 7600 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 24450 +- proto: WallRockBasaltBananium + entities: + - uid: 27134 components: - type: Transform - pos: -83.5,12.5 - parent: 89 - - uid: 7601 + pos: -26.5,-4.5 + parent: 24450 + - uid: 27135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-1.5 - parent: 89 - - uid: 7616 + pos: -25.5,-5.5 + parent: 24450 + - uid: 27136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,51.5 - parent: 89 - - uid: 7620 + pos: -37.5,1.5 + parent: 24450 + - uid: 27137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,21.5 - parent: 89 - - uid: 7622 + pos: -37.5,2.5 + parent: 24450 + - uid: 27138 components: - type: Transform - pos: -53.5,-16.5 - parent: 89 - - uid: 7623 + pos: -36.5,1.5 + parent: 24450 +- proto: WallRockBasaltGold + entities: + - uid: 27139 components: - type: Transform - pos: -84.5,11.5 - parent: 89 - - uid: 7624 + pos: -31.5,-1.5 + parent: 24450 + - uid: 27140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,23.5 - parent: 89 - - uid: 7625 + pos: -29.5,-0.5 + parent: 24450 + - uid: 27141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,24.5 - parent: 89 - - uid: 7626 + pos: -27.5,-8.5 + parent: 24450 + - uid: 27142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,25.5 - parent: 89 - - uid: 7627 + pos: -26.5,-11.5 + parent: 24450 + - uid: 27143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,26.5 - parent: 89 - - uid: 7637 + pos: -23.5,-14.5 + parent: 24450 + - uid: 27144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,36.5 - parent: 89 - - uid: 7638 + pos: 5.5,-4.5 + parent: 24450 +- proto: WallRockBasaltPlasma + entities: + - uid: 27145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,32.5 - parent: 89 - - uid: 7640 + pos: -31.5,-5.5 + parent: 24450 + - uid: 27146 components: - type: Transform - pos: -102.5,28.5 - parent: 89 - - uid: 7641 + pos: -30.5,-6.5 + parent: 24450 + - uid: 27147 components: - type: Transform - pos: -103.5,28.5 - parent: 89 - - uid: 7642 + pos: -29.5,-5.5 + parent: 24450 + - uid: 27148 components: - type: Transform - pos: -104.5,28.5 - parent: 89 - - uid: 7643 + pos: -25.5,-2.5 + parent: 24450 + - uid: 27149 components: - type: Transform - pos: -105.5,28.5 - parent: 89 - - uid: 7644 + pos: -24.5,-3.5 + parent: 24450 + - uid: 27150 components: - type: Transform - pos: -106.5,28.5 - parent: 89 - - uid: 7645 + pos: -24.5,-3.5 + parent: 24450 + - uid: 27151 components: - type: Transform - pos: -107.5,28.5 - parent: 89 - - uid: 7646 + pos: -24.5,-2.5 + parent: 24450 + - uid: 27152 components: - type: Transform - pos: -108.5,28.5 - parent: 89 - - uid: 7647 + pos: -24.5,-13.5 + parent: 24450 +- proto: WallRockBasaltQuartz + entities: + - uid: 27153 components: - type: Transform - pos: -109.5,28.5 - parent: 89 - - uid: 7648 + pos: 6.5,-6.5 + parent: 24450 + - uid: 27154 components: - type: Transform - pos: -110.5,28.5 - parent: 89 - - uid: 7649 + pos: 6.5,-0.5 + parent: 24450 + - uid: 27155 components: - type: Transform - pos: -111.5,28.5 - parent: 89 - - uid: 7650 + pos: 5.5,-0.5 + parent: 24450 + - uid: 27156 components: - type: Transform - pos: -112.5,28.5 - parent: 89 - - uid: 7651 + pos: 5.5,-1.5 + parent: 24450 + - uid: 27157 components: - type: Transform - pos: -112.5,27.5 - parent: 89 - - uid: 7652 + pos: 12.5,-0.5 + parent: 24450 + - uid: 27158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,22.5 - parent: 89 - - uid: 7659 + pos: 12.5,1.5 + parent: 24450 + - uid: 27159 components: - type: Transform - pos: -99.5,30.5 - parent: 89 - - uid: 7660 + pos: 13.5,7.5 + parent: 24450 + - uid: 27160 components: - type: Transform - pos: -97.5,30.5 - parent: 89 - - uid: 7669 + pos: 13.5,10.5 + parent: 24450 +- proto: WallRockBasaltSilver + entities: + - uid: 27161 components: - type: Transform - pos: -98.5,30.5 - parent: 89 - - uid: 7709 + pos: -15.5,-14.5 + parent: 24450 + - uid: 27162 components: - type: Transform - pos: -106.5,18.5 - parent: 89 - - uid: 7717 + pos: -15.5,-15.5 + parent: 24450 + - uid: 27163 components: - type: Transform - pos: -113.5,19.5 - parent: 89 - - uid: 7718 + pos: -14.5,-15.5 + parent: 24450 + - uid: 27164 components: - type: Transform - pos: -113.5,20.5 - parent: 89 - - uid: 7719 + pos: -14.5,-16.5 + parent: 24450 + - uid: 27165 components: - type: Transform - pos: -113.5,21.5 - parent: 89 - - uid: 7720 + pos: 1.5,-7.5 + parent: 24450 + - uid: 27166 components: - type: Transform - pos: -113.5,22.5 - parent: 89 - - uid: 7721 + pos: 3.5,-6.5 + parent: 24450 + - uid: 27167 components: - type: Transform - pos: -113.5,23.5 - parent: 89 - - uid: 7722 + pos: 4.5,-8.5 + parent: 24450 +- proto: WallRockBasaltTin + entities: + - uid: 27168 components: - type: Transform - pos: -113.5,24.5 - parent: 89 - - uid: 7723 + pos: -3.5,-3.5 + parent: 24450 + - uid: 27169 components: - type: Transform - pos: -113.5,25.5 - parent: 89 - - uid: 7724 + pos: -4.5,-4.5 + parent: 24450 + - uid: 27170 components: - type: Transform - pos: -113.5,26.5 - parent: 89 - - uid: 7725 + pos: -3.5,-4.5 + parent: 24450 + - uid: 27171 components: - type: Transform - pos: -113.5,27.5 - parent: 89 - - uid: 7726 + pos: -2.5,-3.5 + parent: 24450 + - uid: 27172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,19.5 - parent: 89 - - uid: 7727 + pos: -14.5,-14.5 + parent: 24450 + - uid: 27173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,19.5 - parent: 89 - - uid: 7730 + pos: -14.5,-16.5 + parent: 24450 + - uid: 27174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,27.5 - parent: 89 - - uid: 7734 + pos: -15.5,-16.5 + parent: 24450 + - uid: 27175 components: - type: Transform - pos: 4.5,29.5 - parent: 89 - - uid: 7765 + pos: -20.5,-14.5 + parent: 24450 + - uid: 27176 components: - type: Transform - pos: 4.5,39.5 - parent: 89 - - uid: 7766 + pos: -22.5,-14.5 + parent: 24450 + - uid: 27177 components: - type: Transform - pos: -9.5,42.5 - parent: 89 - - uid: 7767 + pos: -21.5,-14.5 + parent: 24450 +- proto: WallRockBasaltUranium + entities: + - uid: 27178 components: - type: Transform - pos: -9.5,46.5 - parent: 89 - - uid: 7768 + pos: -22.5,-7.5 + parent: 24450 + - uid: 27179 components: - type: Transform - pos: -9.5,45.5 - parent: 89 - - uid: 7769 + pos: -3.5,-9.5 + parent: 24450 + - uid: 27180 components: - type: Transform - pos: -9.5,44.5 - parent: 89 - - uid: 7770 + pos: -2.5,-5.5 + parent: 24450 + - uid: 27181 components: - type: Transform - pos: -9.5,43.5 - parent: 89 - - uid: 7772 + pos: -26.5,-6.5 + parent: 24450 + - uid: 27182 components: - type: Transform - pos: 1.5,47.5 - parent: 89 - - uid: 7773 + pos: -23.5,-4.5 + parent: 24450 + - uid: 27183 components: - type: Transform - pos: 4.5,38.5 - parent: 89 - - uid: 7774 + pos: -28.5,-3.5 + parent: 24450 +- proto: WallShuttle + entities: + - uid: 21106 components: - type: Transform - pos: -8.5,47.5 - parent: 89 - - uid: 7796 + rot: 1.5707963267948966 rad + pos: -112.5,28.5 + parent: 2 + - uid: 21107 components: - type: Transform - pos: -83.5,-12.5 - parent: 89 - - uid: 7798 + rot: 1.5707963267948966 rad + pos: -113.5,27.5 + parent: 2 + - uid: 21108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,28.5 - parent: 89 - - uid: 7799 + pos: -131.5,-0.5 + parent: 2 + - uid: 21109 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,27.5 - parent: 89 - - uid: 7800 + pos: -131.5,0.5 + parent: 2 + - uid: 21110 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,22.5 - parent: 89 - - uid: 7801 + pos: 56.5,-17.5 + parent: 2 + - uid: 21111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,26.5 - parent: 89 - - uid: 7802 + pos: -130.5,-3.5 + parent: 2 + - uid: 21112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,25.5 - parent: 89 - - uid: 7803 + rot: 1.5707963267948966 rad + pos: -68.5,-17.5 + parent: 2 + - uid: 21113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,24.5 - parent: 89 - - uid: 7804 + rot: 1.5707963267948966 rad + pos: -68.5,-15.5 + parent: 2 + - uid: 21114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,23.5 - parent: 89 - - uid: 7805 + rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - uid: 21115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,22.5 - parent: 89 - - uid: 7806 + rot: 1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - uid: 21116 components: - type: Transform - pos: -79.5,22.5 - parent: 89 - - uid: 7807 + rot: 1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 2 + - uid: 21117 components: - type: Transform - pos: -78.5,22.5 - parent: 89 - - uid: 7808 + rot: 1.5707963267948966 rad + pos: -72.5,-14.5 + parent: 2 + - uid: 21118 components: - type: Transform - pos: -77.5,22.5 - parent: 89 - - uid: 7809 + rot: 1.5707963267948966 rad + pos: -72.5,-11.5 + parent: 2 + - uid: 21119 components: - type: Transform - pos: -76.5,22.5 - parent: 89 - - uid: 7810 + rot: 1.5707963267948966 rad + pos: -72.5,-12.5 + parent: 2 + - uid: 21120 components: - type: Transform - pos: -75.5,22.5 - parent: 89 - - uid: 7811 + rot: 1.5707963267948966 rad + pos: -72.5,-13.5 + parent: 2 + - uid: 21121 components: - type: Transform - pos: -74.5,22.5 - parent: 89 - - uid: 7812 + rot: 1.5707963267948966 rad + pos: -73.5,-11.5 + parent: 2 + - uid: 21122 components: - type: Transform - pos: -73.5,22.5 - parent: 89 - - uid: 7813 + pos: -127.5,-10.5 + parent: 2 + - uid: 21123 components: - type: Transform - pos: -72.5,22.5 - parent: 89 - - uid: 7816 + pos: -127.5,-9.5 + parent: 2 + - uid: 21124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,22.5 - parent: 89 - - uid: 7842 + pos: -130.5,-1.5 + parent: 2 + - uid: 21125 components: - type: Transform - pos: -71.5,22.5 - parent: 89 - - uid: 7843 + pos: -130.5,-2.5 + parent: 2 + - uid: 21126 components: - type: Transform - pos: -70.5,22.5 - parent: 89 - - uid: 7844 + pos: -130.5,-4.5 + parent: 2 + - uid: 21127 components: - type: Transform - pos: -69.5,22.5 - parent: 89 - - uid: 7845 + pos: -129.5,-4.5 + parent: 2 + - uid: 21128 components: - type: Transform - pos: -68.5,22.5 - parent: 89 - - uid: 7846 + pos: -128.5,-4.5 + parent: 2 + - uid: 21129 components: - type: Transform - pos: -68.5,23.5 - parent: 89 - - uid: 7847 + pos: -127.5,-4.5 + parent: 2 + - uid: 21130 components: - type: Transform - pos: -68.5,24.5 - parent: 89 - - uid: 7848 + pos: -127.5,-8.5 + parent: 2 + - uid: 21131 components: - type: Transform - pos: -68.5,25.5 - parent: 89 - - uid: 7849 + pos: -127.5,-5.5 + parent: 2 + - uid: 21132 components: - type: Transform - pos: -68.5,26.5 - parent: 89 - - uid: 7850 + rot: 3.141592653589793 rad + pos: -151.5,-8.5 + parent: 2 + - uid: 21133 components: - type: Transform - pos: -68.5,27.5 - parent: 89 - - uid: 7851 + rot: 3.141592653589793 rad + pos: -151.5,-14.5 + parent: 2 + - uid: 21134 components: - type: Transform - pos: 3.5,47.5 - parent: 89 - - uid: 7852 + rot: 1.5707963267948966 rad + pos: -105.5,-20.5 + parent: 2 + - uid: 21135 components: - type: Transform - pos: 2.5,47.5 - parent: 89 - - uid: 7853 + rot: 1.5707963267948966 rad + pos: -104.5,-20.5 + parent: 2 + - uid: 21136 components: - type: Transform - pos: -1.5,47.5 - parent: 89 - - uid: 7856 + rot: 1.5707963267948966 rad + pos: -110.5,-21.5 + parent: 2 + - uid: 21137 components: - type: Transform - pos: -64.5,19.5 - parent: 89 - - uid: 7857 + rot: 3.141592653589793 rad + pos: -143.5,-15.5 + parent: 2 + - uid: 21138 components: - type: Transform - pos: -63.5,19.5 - parent: 89 - - uid: 7859 + rot: 3.141592653589793 rad + pos: -142.5,0.5 + parent: 2 + - uid: 21139 components: - type: Transform - pos: -64.5,22.5 - parent: 89 - - uid: 7860 + rot: 3.141592653589793 rad + pos: -143.5,0.5 + parent: 2 + - uid: 21140 components: - type: Transform - pos: -64.5,23.5 - parent: 89 - - uid: 7872 + rot: 3.141592653589793 rad + pos: -144.5,-15.5 + parent: 2 + - uid: 21141 components: - type: Transform - pos: -9.5,41.5 - parent: 89 - - uid: 7873 + rot: 3.141592653589793 rad + pos: -144.5,0.5 + parent: 2 + - uid: 21142 components: - type: Transform - pos: -63.5,23.5 - parent: 89 - - uid: 7874 + rot: 3.141592653589793 rad + pos: -141.5,0.5 + parent: 2 + - uid: 21143 components: - type: Transform - pos: -62.5,23.5 - parent: 89 - - uid: 7875 + rot: 3.141592653589793 rad + pos: -146.5,0.5 + parent: 2 + - uid: 21144 components: - type: Transform - pos: -9.5,40.5 - parent: 89 - - uid: 7876 + rot: 3.141592653589793 rad + pos: -133.5,-15.5 + parent: 2 + - uid: 21145 components: - type: Transform - pos: -9.5,39.5 - parent: 89 - - uid: 7878 + rot: 3.141592653589793 rad + pos: -134.5,-15.5 + parent: 2 + - uid: 21146 components: - type: Transform - pos: -9.5,38.5 - parent: 89 - - uid: 7879 + rot: 3.141592653589793 rad + pos: -138.5,0.5 + parent: 2 + - uid: 21147 components: - type: Transform - pos: -58.5,23.5 - parent: 89 - - uid: 7882 + rot: 3.141592653589793 rad + pos: -139.5,0.5 + parent: 2 + - uid: 21148 components: - type: Transform - pos: -58.5,19.5 - parent: 89 - - uid: 7883 + rot: 3.141592653589793 rad + pos: -151.5,-2.5 + parent: 2 + - uid: 21149 components: - type: Transform - pos: -59.5,19.5 - parent: 89 - - uid: 7884 + rot: 3.141592653589793 rad + pos: -151.5,-13.5 + parent: 2 + - uid: 21150 components: - type: Transform - pos: -60.5,19.5 - parent: 89 - - uid: 7930 + rot: 3.141592653589793 rad + pos: -151.5,-5.5 + parent: 2 + - uid: 21151 components: - type: Transform - pos: -61.5,6.5 - parent: 89 - - uid: 7931 + rot: 3.141592653589793 rad + pos: -151.5,-7.5 + parent: 2 + - uid: 21152 components: - type: Transform - pos: -60.5,6.5 - parent: 89 - - uid: 7932 + rot: 3.141592653589793 rad + pos: -151.5,-9.5 + parent: 2 + - uid: 21153 components: - type: Transform - pos: -59.5,6.5 - parent: 89 - - uid: 7933 + rot: 3.141592653589793 rad + pos: -142.5,-15.5 + parent: 2 + - uid: 21154 components: - type: Transform - pos: -58.5,6.5 - parent: 89 - - uid: 7934 + rot: -1.5707963267948966 rad + pos: -129.5,-12.5 + parent: 2 + - uid: 21155 components: - type: Transform - pos: -61.5,11.5 - parent: 89 - - uid: 7936 + rot: 3.141592653589793 rad + pos: -137.5,0.5 + parent: 2 + - uid: 21156 components: - type: Transform - pos: -58.5,11.5 - parent: 89 - - uid: 7991 + rot: 3.141592653589793 rad + pos: -145.5,0.5 + parent: 2 + - uid: 21157 components: - type: Transform - pos: 4.5,43.5 - parent: 89 - - uid: 7992 + rot: 3.141592653589793 rad + pos: -140.5,-15.5 + parent: 2 + - uid: 21158 components: - type: Transform - pos: 4.5,42.5 - parent: 89 - - uid: 7993 + rot: 3.141592653589793 rad + pos: -151.5,-3.5 + parent: 2 + - uid: 21159 components: - type: Transform - pos: 4.5,41.5 - parent: 89 - - uid: 7994 + rot: 3.141592653589793 rad + pos: -150.5,-15.5 + parent: 2 + - uid: 21160 components: - type: Transform - pos: 4.5,40.5 - parent: 89 - - uid: 7995 + rot: 3.141592653589793 rad + pos: -138.5,-15.5 + parent: 2 + - uid: 21161 components: - type: Transform - pos: 4.5,46.5 - parent: 89 - - uid: 7996 + rot: 1.5707963267948966 rad + pos: -119.5,-20.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-12.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -147.5,0.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -145.5,-15.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -150.5,0.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -149.5,0.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-4.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-11.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-12.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-6.5 + parent: 2 + - uid: 21171 components: - type: Transform - pos: 4.5,45.5 - parent: 89 - - uid: 7997 + rot: 3.141592653589793 rad + pos: -104.5,22.5 + parent: 2 + - uid: 21172 components: - type: Transform - pos: 4.5,44.5 - parent: 89 - - uid: 8013 + rot: 1.5707963267948966 rad + pos: -107.5,-20.5 + parent: 2 + - uid: 21173 components: - type: Transform - pos: 4.5,37.5 - parent: 89 - - uid: 8016 + rot: 1.5707963267948966 rad + pos: -107.5,-21.5 + parent: 2 + - uid: 21174 components: - type: Transform - pos: 4.5,34.5 - parent: 89 - - uid: 8017 + rot: 3.141592653589793 rad + pos: -141.5,-15.5 + parent: 2 + - uid: 21175 components: - type: Transform - pos: 4.5,33.5 - parent: 89 - - uid: 8018 + rot: 3.141592653589793 rad + pos: -132.5,-15.5 + parent: 2 + - uid: 21176 components: - type: Transform - pos: 4.5,32.5 - parent: 89 - - uid: 8019 + rot: 3.141592653589793 rad + pos: -103.5,22.5 + parent: 2 + - uid: 21177 components: - type: Transform - pos: 4.5,31.5 - parent: 89 - - uid: 8020 + rot: 3.141592653589793 rad + pos: -105.5,22.5 + parent: 2 + - uid: 21178 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,11.5 - parent: 89 - - uid: 8043 + pos: -106.5,22.5 + parent: 2 + - uid: 21179 components: - type: Transform - pos: -9.5,37.5 - parent: 89 - - uid: 8044 + rot: 3.141592653589793 rad + pos: -151.5,-0.5 + parent: 2 + - uid: 21180 components: - type: Transform - pos: -60.5,11.5 - parent: 89 - - uid: 8045 + rot: 3.141592653589793 rad + pos: -148.5,0.5 + parent: 2 + - uid: 21181 components: - type: Transform - pos: -9.5,35.5 - parent: 89 - - uid: 8046 + rot: -1.5707963267948966 rad + pos: -115.5,22.5 + parent: 2 + - uid: 21182 components: - type: Transform - pos: -9.5,34.5 - parent: 89 - - uid: 8047 + pos: -118.5,23.5 + parent: 2 + - uid: 21183 components: - type: Transform - pos: -9.5,33.5 - parent: 89 - - uid: 8067 + rot: 3.141592653589793 rad + pos: -137.5,-15.5 + parent: 2 + - uid: 21184 components: - type: Transform - pos: -9.5,32.5 - parent: 89 - - uid: 8068 + rot: 3.141592653589793 rad + pos: -132.5,-12.5 + parent: 2 + - uid: 21185 components: - type: Transform - pos: -9.5,31.5 - parent: 89 - - uid: 8086 + rot: 3.141592653589793 rad + pos: -136.5,0.5 + parent: 2 + - uid: 21186 components: - type: Transform - pos: -9.5,29.5 - parent: 89 - - uid: 8097 + rot: 3.141592653589793 rad + pos: -140.5,0.5 + parent: 2 + - uid: 21187 components: - type: Transform - pos: 41.5,-22.5 - parent: 89 - - uid: 8099 + rot: 3.141592653589793 rad + pos: -110.5,22.5 + parent: 2 + - uid: 21188 components: - type: Transform - pos: -7.5,27.5 - parent: 89 - - uid: 8108 + rot: 3.141592653589793 rad + pos: -111.5,22.5 + parent: 2 + - uid: 21189 components: - type: Transform - pos: -7.5,28.5 - parent: 89 - - uid: 8109 + rot: 3.141592653589793 rad + pos: -139.5,-15.5 + parent: 2 + - uid: 21190 components: - type: Transform - pos: -6.5,28.5 - parent: 89 - - uid: 8110 + rot: 1.5707963267948966 rad + pos: -110.5,-20.5 + parent: 2 + - uid: 21191 components: - type: Transform - pos: -5.5,28.5 - parent: 89 - - uid: 8140 + rot: 3.141592653589793 rad + pos: -136.5,-15.5 + parent: 2 + - uid: 21192 components: - type: Transform - pos: -9.5,24.5 - parent: 89 - - uid: 8141 + rot: 3.141592653589793 rad + pos: -135.5,-15.5 + parent: 2 + - uid: 21193 components: - type: Transform - pos: -9.5,25.5 - parent: 89 - - uid: 8142 + rot: 3.141592653589793 rad + pos: -149.5,-15.5 + parent: 2 + - uid: 21194 components: - type: Transform - pos: -9.5,26.5 - parent: 89 - - uid: 8143 + rot: 3.141592653589793 rad + pos: -147.5,-15.5 + parent: 2 + - uid: 21195 components: - type: Transform - pos: -9.5,27.5 - parent: 89 - - uid: 8144 + rot: 3.141592653589793 rad + pos: -132.5,-14.5 + parent: 2 + - uid: 21196 components: - type: Transform - pos: -9.5,28.5 - parent: 89 - - uid: 8145 + rot: 3.141592653589793 rad + pos: -151.5,-1.5 + parent: 2 + - uid: 21197 components: - type: Transform - pos: 4.5,28.5 - parent: 89 - - uid: 8151 + rot: 3.141592653589793 rad + pos: -151.5,-10.5 + parent: 2 + - uid: 21198 components: - type: Transform - pos: -4.5,27.5 - parent: 89 - - uid: 8152 + rot: 3.141592653589793 rad + pos: -146.5,-15.5 + parent: 2 + - uid: 21199 components: - type: Transform - pos: -4.5,28.5 - parent: 89 - - uid: 8173 + rot: 3.141592653589793 rad + pos: -148.5,-15.5 + parent: 2 + - uid: 21200 components: - type: Transform - pos: -8.5,27.5 - parent: 89 - - uid: 8180 + rot: 3.141592653589793 rad + pos: -101.5,20.5 + parent: 2 + - uid: 21201 components: - type: Transform - pos: -7.5,24.5 - parent: 89 - - uid: 8181 + rot: 3.141592653589793 rad + pos: -101.5,19.5 + parent: 2 + - uid: 21202 components: - type: Transform - pos: -8.5,24.5 - parent: 89 - - uid: 8182 + rot: 3.141592653589793 rad + pos: -104.5,19.5 + parent: 2 + - uid: 21203 components: - type: Transform - pos: -4.5,24.5 - parent: 89 - - uid: 8183 + rot: 3.141592653589793 rad + pos: -103.5,19.5 + parent: 2 + - uid: 21204 components: - type: Transform - pos: -4.5,25.5 - parent: 89 - - uid: 8184 + rot: 3.141592653589793 rad + pos: -102.5,19.5 + parent: 2 + - uid: 21205 components: - type: Transform - pos: -6.5,24.5 - parent: 89 - - uid: 8185 + rot: 3.141592653589793 rad + pos: -112.5,19.5 + parent: 2 + - uid: 21206 components: - type: Transform - pos: -5.5,24.5 - parent: 89 - - uid: 8299 + rot: 3.141592653589793 rad + pos: -105.5,19.5 + parent: 2 + - uid: 21207 components: - type: Transform - pos: -34.5,12.5 - parent: 89 - - uid: 8330 + rot: 3.141592653589793 rad + pos: -106.5,19.5 + parent: 2 + - uid: 21208 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,20.5 - parent: 89 - - uid: 8396 + pos: -107.5,19.5 + parent: 2 + - uid: 21209 components: - type: Transform - pos: -134.5,14.5 - parent: 89 - - uid: 8400 + rot: 3.141592653589793 rad + pos: -109.5,19.5 + parent: 2 + - uid: 21210 components: - type: Transform - pos: -132.5,9.5 - parent: 89 - - uid: 8401 + rot: 3.141592653589793 rad + pos: -101.5,21.5 + parent: 2 + - uid: 21211 components: - type: Transform - pos: -133.5,9.5 - parent: 89 - - uid: 8402 + rot: 3.141592653589793 rad + pos: -101.5,23.5 + parent: 2 + - uid: 21212 components: - type: Transform - pos: -131.5,9.5 - parent: 89 - - uid: 8403 + rot: 3.141592653589793 rad + pos: -101.5,24.5 + parent: 2 + - uid: 21213 components: - type: Transform - pos: -134.5,13.5 - parent: 89 - - uid: 8404 + rot: 3.141592653589793 rad + pos: -101.5,25.5 + parent: 2 + - uid: 21214 components: - type: Transform - pos: -134.5,12.5 - parent: 89 - - uid: 8406 + rot: 3.141592653589793 rad + pos: -101.5,26.5 + parent: 2 + - uid: 21215 components: - type: Transform - pos: -134.5,10.5 - parent: 89 - - uid: 8407 + rot: 3.141592653589793 rad + pos: -101.5,22.5 + parent: 2 + - uid: 21216 components: - type: Transform - pos: -134.5,11.5 - parent: 89 - - uid: 8411 + rot: 3.141592653589793 rad + pos: -111.5,19.5 + parent: 2 + - uid: 21217 components: - type: Transform - pos: -134.5,15.5 - parent: 89 - - uid: 8412 + rot: 3.141592653589793 rad + pos: -110.5,19.5 + parent: 2 + - uid: 21218 components: - type: Transform - pos: -134.5,16.5 - parent: 89 - - uid: 8413 + rot: 3.141592653589793 rad + pos: -101.5,27.5 + parent: 2 + - uid: 21219 components: - type: Transform - pos: -134.5,17.5 - parent: 89 - - uid: 8414 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 21220 components: - type: Transform - pos: -134.5,18.5 - parent: 89 - - uid: 8415 + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 21221 components: - type: Transform - pos: -134.5,19.5 - parent: 89 - - uid: 8416 + rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - uid: 21222 components: - type: Transform - pos: -133.5,19.5 - parent: 89 - - uid: 8417 + rot: 1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - uid: 21223 components: - type: Transform - pos: -132.5,19.5 - parent: 89 - - uid: 8418 + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - uid: 21224 components: - type: Transform - pos: -131.5,19.5 - parent: 89 - - uid: 8419 + rot: -1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 21225 components: - type: Transform - pos: -130.5,19.5 - parent: 89 - - uid: 8420 + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 + parent: 2 + - uid: 21226 components: - type: Transform - pos: -129.5,19.5 - parent: 89 - - uid: 8421 + rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - uid: 21227 components: - type: Transform - pos: -128.5,19.5 - parent: 89 - - uid: 8422 + rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - uid: 21228 components: - type: Transform - pos: -128.5,18.5 - parent: 89 - - uid: 8423 + rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - uid: 21229 components: - type: Transform - pos: -129.5,18.5 - parent: 89 - - uid: 8424 + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 2 + - uid: 21230 components: - type: Transform - pos: -130.5,18.5 - parent: 89 - - uid: 8425 + rot: 1.5707963267948966 rad + pos: -65.5,49.5 + parent: 2 + - uid: 21231 components: - type: Transform - pos: -131.5,18.5 - parent: 89 - - uid: 8426 + rot: 1.5707963267948966 rad + pos: -57.5,49.5 + parent: 2 + - uid: 21232 components: - type: Transform - pos: -132.5,18.5 - parent: 89 - - uid: 8427 + pos: -41.5,27.5 + parent: 2 + - uid: 21233 components: - type: Transform - pos: -133.5,18.5 - parent: 89 - - uid: 8428 + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 21234 components: - type: Transform - pos: -133.5,17.5 - parent: 89 - - uid: 8429 + rot: 3.141592653589793 rad + pos: -3.5,-43.5 + parent: 2 + - uid: 21235 components: - type: Transform - pos: -133.5,16.5 - parent: 89 - - uid: 8430 + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 2 + - uid: 21236 components: - type: Transform - pos: -133.5,15.5 - parent: 89 - - uid: 8431 + rot: -1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - uid: 21237 components: - type: Transform - pos: -133.5,14.5 - parent: 89 - - uid: 8432 + rot: -1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 21238 components: - type: Transform - pos: -133.5,13.5 - parent: 89 - - uid: 8433 + pos: -2.5,-44.5 + parent: 2 + - uid: 21239 components: - type: Transform - pos: -133.5,12.5 - parent: 89 - - uid: 8434 + pos: -2.5,-43.5 + parent: 2 + - uid: 21240 components: - type: Transform - pos: -133.5,11.5 - parent: 89 - - uid: 8435 + pos: -1.5,-42.5 + parent: 2 + - uid: 21241 components: - type: Transform - pos: -133.5,10.5 - parent: 89 - - uid: 8436 + rot: -1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 2 + - uid: 21242 components: - type: Transform - pos: -132.5,10.5 - parent: 89 - - uid: 8437 + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - uid: 21243 components: - type: Transform - pos: -131.5,10.5 - parent: 89 - - uid: 8438 + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - uid: 21244 components: - type: Transform - pos: -130.5,10.5 - parent: 89 - - uid: 8439 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 21245 components: - type: Transform - pos: -129.5,10.5 - parent: 89 - - uid: 8440 + rot: 3.141592653589793 rad + pos: 45.5,13.5 + parent: 2 + - uid: 21246 components: - type: Transform - pos: -128.5,10.5 - parent: 89 - - uid: 8441 + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 2 + - uid: 21247 components: - type: Transform - pos: -127.5,19.5 - parent: 89 - - uid: 8442 + rot: 3.141592653589793 rad + pos: 45.5,11.5 + parent: 2 + - uid: 21248 components: - type: Transform - pos: -127.5,18.5 - parent: 89 - - uid: 8443 + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - uid: 21249 components: - type: Transform - pos: -127.5,17.5 - parent: 89 - - uid: 8444 + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 2 + - uid: 21250 components: - type: Transform - pos: -127.5,16.5 - parent: 89 - - uid: 8445 + rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 2 + - uid: 21251 components: - type: Transform - pos: -127.5,15.5 - parent: 89 - - uid: 8446 + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 2 + - uid: 21252 components: - type: Transform - pos: -127.5,14.5 - parent: 89 - - uid: 8450 + rot: 3.141592653589793 rad + pos: 46.5,3.5 + parent: 2 + - uid: 21253 components: - type: Transform - pos: -127.5,10.5 - parent: 89 - - uid: 8453 + rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 2 + - uid: 21254 components: - type: Transform - pos: -126.5,10.5 - parent: 89 - - uid: 8457 + rot: 3.141592653589793 rad + pos: 46.5,5.5 + parent: 2 + - uid: 21255 components: - type: Transform - pos: -126.5,14.5 - parent: 89 - - uid: 8462 + rot: 3.141592653589793 rad + pos: 46.5,6.5 + parent: 2 + - uid: 21256 components: - type: Transform - pos: -126.5,19.5 - parent: 89 - - uid: 8483 + rot: 3.141592653589793 rad + pos: 47.5,2.5 + parent: 2 + - uid: 21257 components: - type: Transform - pos: -128.5,5.5 - parent: 89 - - uid: 8484 + rot: 3.141592653589793 rad + pos: 47.5,6.5 + parent: 2 + - uid: 21258 components: - type: Transform - pos: -128.5,6.5 - parent: 89 - - uid: 8486 + rot: 3.141592653589793 rad + pos: 47.5,9.5 + parent: 2 + - uid: 21259 components: - type: Transform - pos: -124.5,7.5 - parent: 89 - - uid: 8487 + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 + - uid: 21260 components: - type: Transform - pos: -124.5,6.5 - parent: 89 - - uid: 8488 + rot: 3.141592653589793 rad + pos: 46.5,10.5 + parent: 2 + - uid: 21261 components: - type: Transform - pos: -124.5,5.5 - parent: 89 - - uid: 8491 + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 + - uid: 21262 components: - type: Transform - pos: -122.5,5.5 - parent: 89 - - uid: 8493 + rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 2 + - uid: 21263 components: - type: Transform - pos: -122.5,2.5 - parent: 89 - - uid: 8494 + rot: -1.5707963267948966 rad + pos: 64.5,4.5 + parent: 2 + - uid: 21264 components: - type: Transform - pos: -122.5,1.5 - parent: 89 - - uid: 8495 + rot: -1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - uid: 21265 components: - type: Transform - pos: -123.5,1.5 - parent: 89 - - uid: 8496 + rot: -1.5707963267948966 rad + pos: 64.5,9.5 + parent: 2 + - uid: 21266 components: - type: Transform - pos: -124.5,2.5 - parent: 89 - - uid: 8497 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 21267 components: - type: Transform - pos: -124.5,1.5 - parent: 89 - - uid: 8498 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + - uid: 21268 components: - type: Transform - pos: -124.5,0.5 - parent: 89 - - uid: 8499 + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - uid: 21269 components: - type: Transform - pos: -124.5,-0.5 - parent: 89 - - uid: 8501 + rot: -1.5707963267948966 rad + pos: 59.5,7.5 + parent: 2 + - uid: 21270 components: - type: Transform - pos: -128.5,-0.5 - parent: 89 - - uid: 8502 + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - uid: 21271 components: - type: Transform - pos: -128.5,0.5 - parent: 89 - - uid: 8503 + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - uid: 21272 components: - type: Transform - pos: -128.5,1.5 - parent: 89 - - uid: 8504 + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 + - uid: 21273 components: - type: Transform - pos: -128.5,2.5 - parent: 89 - - uid: 8535 + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - uid: 21274 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,6.5 - parent: 89 - - uid: 8536 + pos: 54.5,1.5 + parent: 2 + - uid: 21275 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,8.5 - parent: 89 - - uid: 8541 + pos: 53.5,2.5 + parent: 2 + - uid: 21276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,18.5 - parent: 89 - - uid: 8542 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - uid: 21277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,18.5 - parent: 89 - - uid: 8574 + rot: -1.5707963267948966 rad + pos: 53.5,4.5 + parent: 2 + - uid: 21278 components: - type: Transform - pos: 41.5,-15.5 - parent: 89 - - uid: 8589 + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 + - uid: 21279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,7.5 - parent: 89 - - uid: 8595 + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - uid: 21280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,0.5 - parent: 89 - - uid: 8601 + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 2 + - uid: 21281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-0.5 - parent: 89 - - uid: 8603 + rot: -1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - uid: 21282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-2.5 - parent: 89 - - uid: 8604 + rot: -1.5707963267948966 rad + pos: 56.5,7.5 + parent: 2 + - uid: 21283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-3.5 - parent: 89 - - uid: 8605 + rot: -1.5707963267948966 rad + pos: 57.5,7.5 + parent: 2 + - uid: 21284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-4.5 - parent: 89 - - uid: 8606 + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - uid: 21285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-4.5 - parent: 89 - - uid: 8607 + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 2 + - uid: 21286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-4.5 - parent: 89 - - uid: 8608 + rot: -1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 21287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-4.5 - parent: 89 - - uid: 8609 + rot: -1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - uid: 21288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-4.5 - parent: 89 - - uid: 8610 + pos: -0.5,-37.5 + parent: 2 + - uid: 21289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-5.5 - parent: 89 - - uid: 8611 + rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 2 + - uid: 21290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-6.5 - parent: 89 - - uid: 8612 + rot: 3.141592653589793 rad + pos: 49.5,9.5 + parent: 2 + - uid: 21291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-7.5 - parent: 89 - - uid: 8613 + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 + - uid: 21292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-8.5 - parent: 89 - - uid: 8614 + rot: 3.141592653589793 rad + pos: 51.5,12.5 + parent: 2 + - uid: 21293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-9.5 - parent: 89 - - uid: 8616 + rot: 3.141592653589793 rad + pos: 49.5,10.5 + parent: 2 + - uid: 21294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,8.5 - parent: 89 - - uid: 8618 + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - uid: 21295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,10.5 - parent: 89 - - uid: 8619 + rot: -1.5707963267948966 rad + pos: -103.5,-20.5 + parent: 2 + - uid: 21296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,11.5 - parent: 89 - - uid: 8620 + rot: 3.141592653589793 rad + pos: 49.5,6.5 + parent: 2 + - uid: 21297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,12.5 - parent: 89 - - uid: 8621 + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - uid: 21298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,12.5 - parent: 89 - - uid: 8622 + rot: -1.5707963267948966 rad + pos: -106.5,-20.5 + parent: 2 + - uid: 21299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,12.5 - parent: 89 - - uid: 8623 + rot: -1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - uid: 21300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,12.5 - parent: 89 - - uid: 8624 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - uid: 21301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,12.5 - parent: 89 - - uid: 8625 + rot: -1.5707963267948966 rad + pos: 43.5,19.5 + parent: 2 + - uid: 21302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,13.5 - parent: 89 - - uid: 8626 + rot: 3.141592653589793 rad + pos: 48.5,6.5 + parent: 2 + - uid: 21303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,14.5 - parent: 89 - - uid: 8627 + rot: 3.141592653589793 rad + pos: 48.5,2.5 + parent: 2 + - uid: 21304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,15.5 - parent: 89 - - uid: 8628 + rot: 3.141592653589793 rad + pos: 50.5,3.5 + parent: 2 + - uid: 21305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,16.5 - parent: 89 - - uid: 8629 + rot: 3.141592653589793 rad + pos: 50.5,2.5 + parent: 2 + - uid: 21306 components: - type: Transform - pos: -34.5,11.5 - parent: 89 - - uid: 8630 + rot: 3.141592653589793 rad + pos: 49.5,2.5 + parent: 2 + - uid: 21307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,19.5 - parent: 89 - - uid: 8631 + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - uid: 21308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,19.5 - parent: 89 - - uid: 8632 + rot: -1.5707963267948966 rad + pos: 51.5,-6.5 + parent: 2 + - uid: 21309 components: - type: Transform - pos: -36.5,10.5 - parent: 89 - - uid: 8633 + rot: -1.5707963267948966 rad + pos: 51.5,-7.5 + parent: 2 + - uid: 21310 components: - type: Transform - pos: -111.5,-20.5 - parent: 89 - - uid: 8634 + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 2 + - uid: 21311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,19.5 - parent: 89 - - uid: 8635 + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 2 + - uid: 21312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,19.5 - parent: 89 - - uid: 8636 + rot: -1.5707963267948966 rad + pos: 60.5,-6.5 + parent: 2 + - uid: 21313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,19.5 - parent: 89 - - uid: 8637 + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 21314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,19.5 - parent: 89 - - uid: 8638 + pos: -4.5,-37.5 + parent: 2 + - uid: 21315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,19.5 - parent: 89 - - uid: 8639 + pos: -5.5,-37.5 + parent: 2 + - uid: 21316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,19.5 - parent: 89 - - uid: 8640 + pos: -6.5,-37.5 + parent: 2 + - uid: 21317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,19.5 - parent: 89 - - uid: 8641 + pos: -7.5,-37.5 + parent: 2 + - uid: 21318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,19.5 - parent: 89 - - uid: 8699 + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 21319 components: - type: Transform - pos: 4.5,30.5 - parent: 89 - - uid: 8704 + rot: -1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - uid: 21320 components: - type: Transform - pos: -35.5,10.5 - parent: 89 - - uid: 8705 + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - uid: 21321 components: - type: Transform - pos: -34.5,10.5 - parent: 89 - - uid: 8708 + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - uid: 21322 components: - type: Transform - pos: -110.5,-19.5 - parent: 89 - - uid: 8709 + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - uid: 21323 components: - type: Transform - pos: -111.5,-17.5 - parent: 89 - - uid: 8712 + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - uid: 21324 components: - type: Transform - pos: -110.5,-13.5 - parent: 89 - - uid: 8716 + rot: -1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 2 + - uid: 21325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-11.5 - parent: 89 - - uid: 8717 + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 21326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-11.5 - parent: 89 - - uid: 8718 + rot: -1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 21327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-11.5 - parent: 89 - - uid: 8719 + rot: -1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 2 + - uid: 21328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-11.5 - parent: 89 - - uid: 8762 + rot: -1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 21329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,6.5 - parent: 89 - - uid: 8767 + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 2 + - uid: 21330 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 8771 + rot: -1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + - uid: 21331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-9.5 - parent: 89 - - uid: 8772 + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 21332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-9.5 - parent: 89 - - uid: 8773 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 21333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-9.5 - parent: 89 - - uid: 8774 + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + - uid: 21334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-9.5 - parent: 89 - - uid: 8775 + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 21335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-9.5 - parent: 89 - - uid: 8776 + rot: -1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 21336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-9.5 - parent: 89 - - uid: 8777 + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - uid: 21337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-4.5 - parent: 89 - - uid: 8778 + rot: -1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 2 + - uid: 21338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-4.5 - parent: 89 - - uid: 8839 + rot: -1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - uid: 21339 components: - type: Transform - pos: -114.5,-20.5 - parent: 89 - - uid: 8843 + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 2 + - uid: 21340 components: - type: Transform - pos: 37.5,-17.5 - parent: 89 - - uid: 8852 + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 21341 components: - type: Transform rot: -1.5707963267948966 rad - pos: -131.5,-13.5 - parent: 89 - - uid: 8856 + pos: 5.5,-31.5 + parent: 2 + - uid: 21342 components: - type: Transform rot: -1.5707963267948966 rad - pos: -132.5,-13.5 - parent: 89 - - uid: 8857 + pos: 5.5,-29.5 + parent: 2 + - uid: 21343 components: - type: Transform - pos: -133.5,-1.5 - parent: 89 - - uid: 8858 + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 21344 components: - type: Transform - pos: -132.5,-1.5 - parent: 89 - - uid: 8859 + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 2 + - uid: 21345 components: - type: Transform - pos: -131.5,-1.5 - parent: 89 - - uid: 8870 + rot: -1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 2 + - uid: 21346 components: - type: Transform - pos: -127.5,-10.5 - parent: 89 - - uid: 8872 + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - uid: 21347 components: - type: Transform - pos: -127.5,-9.5 - parent: 89 - - uid: 8873 + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 21348 components: - type: Transform - pos: -129.5,-10.5 - parent: 89 - - uid: 8898 + pos: -2.5,-37.5 + parent: 2 + - uid: 21349 components: - type: Transform - pos: -130.5,-1.5 - parent: 89 - - uid: 8899 + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - uid: 21350 components: - type: Transform - pos: -130.5,-2.5 - parent: 89 - - uid: 8900 + pos: -3.5,-37.5 + parent: 2 + - uid: 21351 components: - type: Transform - pos: -130.5,-3.5 - parent: 89 - - uid: 8901 + rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 2 + - uid: 21352 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 8902 + rot: -1.5707963267948966 rad + pos: -75.5,-18.5 + parent: 2 + - uid: 21353 components: - type: Transform - pos: -129.5,-4.5 - parent: 89 - - uid: 8903 + rot: -1.5707963267948966 rad + pos: -75.5,-19.5 + parent: 2 + - uid: 21354 components: - type: Transform - pos: -128.5,-4.5 - parent: 89 - - uid: 8904 + rot: -1.5707963267948966 rad + pos: -75.5,-20.5 + parent: 2 + - uid: 21355 components: - type: Transform - pos: -127.5,-4.5 - parent: 89 - - uid: 8910 + rot: -1.5707963267948966 rad + pos: -77.5,-18.5 + parent: 2 + - uid: 21356 components: - type: Transform rot: -1.5707963267948966 rad - pos: -134.5,-1.5 - parent: 89 - - uid: 8917 + pos: -77.5,-17.5 + parent: 2 + - uid: 21357 components: - type: Transform - pos: -127.5,-8.5 - parent: 89 - - uid: 8918 + rot: -1.5707963267948966 rad + pos: -77.5,-15.5 + parent: 2 + - uid: 21358 components: - type: Transform - pos: -127.5,-5.5 - parent: 89 - - uid: 8919 + rot: -1.5707963267948966 rad + pos: -77.5,-20.5 + parent: 2 + - uid: 21359 components: - type: Transform - pos: -128.5,7.5 - parent: 89 - - uid: 8921 + rot: -1.5707963267948966 rad + pos: -78.5,-20.5 + parent: 2 + - uid: 21360 components: - type: Transform - pos: -128.5,8.5 - parent: 89 - - uid: 8939 + rot: -1.5707963267948966 rad + pos: -82.5,-20.5 + parent: 2 + - uid: 21361 components: - type: Transform rot: -1.5707963267948966 rad - pos: -135.5,-1.5 - parent: 89 - - uid: 9013 + pos: -83.5,-20.5 + parent: 2 + - uid: 21362 components: - type: Transform - pos: -110.5,-12.5 - parent: 89 - - uid: 9014 + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 21363 components: - type: Transform - pos: -111.5,-12.5 - parent: 89 - - uid: 9016 + rot: -1.5707963267948966 rad + pos: 51.5,-8.5 + parent: 2 + - uid: 21364 components: - type: Transform - pos: -110.5,-16.5 - parent: 89 - - uid: 9038 + rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - uid: 21365 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 89 - - uid: 9039 + pos: 51.5,-3.5 + parent: 2 + - uid: 21366 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 89 - - uid: 9040 + pos: 48.5,-0.5 + parent: 2 + - uid: 21367 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 89 - - uid: 9045 + pos: -73.5,-18.5 + parent: 2 + - uid: 21368 components: - type: Transform - pos: -8.5,-41.5 - parent: 89 - - uid: 9072 + rot: -1.5707963267948966 rad + pos: -70.5,-18.5 + parent: 2 + - uid: 21369 components: - type: Transform - pos: -116.5,22.5 - parent: 89 - - uid: 9155 + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 21370 components: - type: Transform - pos: -115.5,20.5 - parent: 89 - - uid: 9156 + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - uid: 21371 components: - type: Transform - pos: -115.5,22.5 - parent: 89 - - uid: 9157 + rot: -1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 21372 components: - type: Transform - pos: -115.5,24.5 - parent: 89 - - uid: 9158 + rot: -1.5707963267948966 rad + pos: 8.5,38.5 + parent: 2 + - uid: 21373 components: - type: Transform - pos: -115.5,26.5 - parent: 89 - - uid: 9159 + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - uid: 21374 components: - type: Transform - pos: -115.5,28.5 - parent: 89 - - uid: 9160 + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - uid: 21375 components: - type: Transform - pos: -113.5,30.5 - parent: 89 - - uid: 9161 + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 21376 components: - type: Transform - pos: -111.5,30.5 - parent: 89 - - uid: 9162 + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - uid: 21377 components: - type: Transform - pos: -109.5,30.5 - parent: 89 - - uid: 9163 + rot: -1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 21378 components: - type: Transform - pos: -107.5,30.5 - parent: 89 - - uid: 9164 + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 21379 components: - type: Transform - pos: -105.5,30.5 - parent: 89 - - uid: 9181 + rot: -1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 2 + - uid: 21380 components: - type: Transform - pos: 7.5,-29.5 - parent: 89 - - uid: 9183 + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 21381 components: - type: Transform - pos: 8.5,-28.5 - parent: 89 - - uid: 9234 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 21382 components: - type: Transform - pos: 21.5,27.5 - parent: 89 - - uid: 9245 + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 21383 components: - type: Transform - pos: 28.5,10.5 - parent: 89 - - uid: 9246 + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 21384 components: - type: Transform - pos: 27.5,10.5 - parent: 89 - - uid: 9247 + rot: -1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 2 + - uid: 21385 components: - type: Transform - pos: 26.5,10.5 - parent: 89 - - uid: 9248 + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 21386 components: - type: Transform - pos: 25.5,10.5 - parent: 89 - - uid: 9249 + rot: -1.5707963267948966 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 21387 components: - type: Transform - pos: 24.5,10.5 - parent: 89 - - uid: 9250 + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 21388 components: - type: Transform - pos: 23.5,10.5 - parent: 89 - - uid: 9251 + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 21389 components: - type: Transform - pos: 23.5,9.5 - parent: 89 - - uid: 9252 + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - uid: 21390 components: - type: Transform - pos: 23.5,8.5 - parent: 89 - - uid: 9253 + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 21391 components: - type: Transform - pos: 23.5,7.5 - parent: 89 - - uid: 9254 + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 21392 components: - type: Transform - pos: 23.5,6.5 - parent: 89 - - uid: 9255 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 21393 components: - type: Transform - pos: 23.5,5.5 - parent: 89 - - uid: 9332 + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 21394 components: - type: Transform - pos: -120.5,-16.5 - parent: 89 - - uid: 9334 + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 21395 components: - type: Transform - pos: 11.5,39.5 - parent: 89 - - uid: 9337 + rot: -1.5707963267948966 rad + pos: 49.5,21.5 + parent: 2 + - uid: 21396 components: - type: Transform - pos: 11.5,40.5 - parent: 89 - - uid: 9403 + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 21397 components: - type: Transform - pos: 23.5,11.5 - parent: 89 - - uid: 9404 + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 23.5,12.5 - parent: 89 - - uid: 9480 + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 21399 components: - type: Transform - pos: 10.5,43.5 - parent: 89 - - uid: 9642 + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 21400 components: - type: Transform - pos: -110.5,18.5 - parent: 89 - - uid: 9643 + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - uid: 21401 components: - type: Transform - pos: -110.5,16.5 - parent: 89 - - uid: 9644 + rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 2 + - uid: 21402 components: - type: Transform - pos: -68.5,28.5 - parent: 89 - - uid: 9648 + pos: -3.5,-42.5 + parent: 2 + - uid: 21403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,51.5 - parent: 89 - - uid: 9649 + rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 2 + - uid: 21404 components: - type: Transform - pos: -68.5,32.5 - parent: 89 - - uid: 9650 + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 21405 components: - type: Transform - pos: -68.5,36.5 - parent: 89 - - uid: 9651 + rot: -1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 2 + - uid: 21406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,51.5 - parent: 89 - - uid: 9655 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 21407 components: - type: Transform - pos: -68.5,40.5 - parent: 89 - - uid: 9656 + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 21408 components: - type: Transform - pos: -67.5,46.5 - parent: 89 - - uid: 9657 + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 21409 components: - type: Transform - pos: -67.5,47.5 - parent: 89 - - uid: 9658 + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 21410 components: - type: Transform - pos: -67.5,48.5 - parent: 89 - - uid: 9659 + rot: -1.5707963267948966 rad + pos: 51.5,-10.5 + parent: 2 + - uid: 21411 components: - type: Transform - pos: -63.5,46.5 - parent: 89 - - uid: 9660 + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 21412 components: - type: Transform - pos: -63.5,47.5 - parent: 89 - - uid: 9661 + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 21413 components: - type: Transform - pos: -63.5,48.5 - parent: 89 - - uid: 9662 + rot: -1.5707963267948966 rad + pos: -65.5,-18.5 + parent: 2 + - uid: 21414 components: - type: Transform - pos: -59.5,46.5 - parent: 89 - - uid: 9663 + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - uid: 21415 components: - type: Transform - pos: -59.5,47.5 - parent: 89 - - uid: 9664 + rot: -1.5707963267948966 rad + pos: -64.5,-20.5 + parent: 2 + - uid: 21416 components: - type: Transform - pos: -59.5,48.5 - parent: 89 - - uid: 9668 + rot: -1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 21417 components: - type: Transform - pos: -54.5,46.5 - parent: 89 - - uid: 9669 + rot: -1.5707963267948966 rad + pos: -68.5,-18.5 + parent: 2 + - uid: 21418 components: - type: Transform - pos: -53.5,46.5 - parent: 89 - - uid: 9670 + rot: -1.5707963267948966 rad + pos: -69.5,-18.5 + parent: 2 + - uid: 21419 components: - type: Transform - pos: -52.5,46.5 - parent: 89 - - uid: 9671 + rot: -1.5707963267948966 rad + pos: -74.5,-18.5 + parent: 2 + - uid: 21420 components: - type: Transform - pos: -51.5,46.5 - parent: 89 - - uid: 9672 + rot: -1.5707963267948966 rad + pos: -74.5,-11.5 + parent: 2 + - uid: 21421 components: - type: Transform - pos: -50.5,46.5 - parent: 89 - - uid: 9673 + rot: -1.5707963267948966 rad + pos: -74.5,-14.5 + parent: 2 + - uid: 21422 components: - type: Transform - pos: -49.5,46.5 - parent: 89 - - uid: 9675 + rot: -1.5707963267948966 rad + pos: -75.5,-14.5 + parent: 2 + - uid: 21423 components: - type: Transform - pos: -49.5,44.5 - parent: 89 - - uid: 9676 + rot: -1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 21424 components: - type: Transform - pos: -49.5,43.5 - parent: 89 - - uid: 9677 + rot: -1.5707963267948966 rad + pos: -75.5,-16.5 + parent: 2 + - uid: 21425 components: - type: Transform - pos: -49.5,42.5 - parent: 89 - - uid: 9679 + rot: -1.5707963267948966 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 21426 components: - type: Transform - pos: -49.5,40.5 - parent: 89 - - uid: 9680 + rot: -1.5707963267948966 rad + pos: -74.5,-12.5 + parent: 2 + - uid: 21427 components: - type: Transform - pos: -49.5,39.5 - parent: 89 - - uid: 9682 + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 21428 components: - type: Transform - pos: -50.5,38.5 - parent: 89 - - uid: 9683 + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 21429 components: - type: Transform - pos: -51.5,38.5 - parent: 89 - - uid: 9684 + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - uid: 21430 components: - type: Transform - pos: -57.5,37.5 - parent: 89 - - uid: 9685 + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 21431 components: - type: Transform - pos: -53.5,38.5 - parent: 89 - - uid: 9686 + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 2 + - uid: 21432 components: - type: Transform - pos: -52.5,38.5 - parent: 89 - - uid: 9687 + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 21433 components: - type: Transform - pos: -57.5,38.5 - parent: 89 - - uid: 9688 + rot: -1.5707963267948966 rad + pos: -40.5,-18.5 + parent: 2 + - uid: 21434 components: - type: Transform - pos: -57.5,39.5 - parent: 89 - - uid: 9689 + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 21435 components: - type: Transform - pos: -57.5,40.5 - parent: 89 - - uid: 9695 + rot: -1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + - uid: 21436 components: - type: Transform - pos: -58.5,37.5 - parent: 89 - - uid: 9696 + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 21437 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 9699 + rot: -1.5707963267948966 rad + pos: -58.5,-20.5 + parent: 2 + - uid: 21438 components: - type: Transform - pos: -55.5,31.5 - parent: 89 - - uid: 9700 + rot: -1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 2 + - uid: 21439 components: - type: Transform - pos: -54.5,31.5 - parent: 89 - - uid: 9701 + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 + - uid: 21440 components: - type: Transform - pos: -54.5,30.5 - parent: 89 - - uid: 9702 + rot: -1.5707963267948966 rad + pos: -58.5,-19.5 + parent: 2 + - uid: 21441 components: - type: Transform - pos: -54.5,29.5 - parent: 89 - - uid: 9703 + rot: -1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - uid: 21442 components: - type: Transform - pos: -54.5,28.5 - parent: 89 - - uid: 9704 + rot: -1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 2 + - uid: 21443 components: - type: Transform - pos: -54.5,27.5 - parent: 89 - - uid: 9708 + rot: -1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 2 + - uid: 21444 components: - type: Transform - pos: -68.5,41.5 - parent: 89 - - uid: 9722 + rot: -1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 21445 components: - type: Transform - pos: -53.5,42.5 - parent: 89 - - uid: 9723 + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 21446 components: - type: Transform - pos: -52.5,42.5 - parent: 89 - - uid: 9724 + pos: -0.5,-42.5 + parent: 2 + - uid: 21447 components: - type: Transform - pos: -51.5,42.5 - parent: 89 - - uid: 9725 + pos: -4.5,-42.5 + parent: 2 + - uid: 21448 components: - type: Transform - pos: -50.5,42.5 - parent: 89 - - uid: 9726 + rot: -1.5707963267948966 rad + pos: -74.5,-13.5 + parent: 2 + - uid: 21449 components: - type: Transform - pos: -54.5,32.5 - parent: 89 - - uid: 9727 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - uid: 21450 components: - type: Transform - pos: -54.5,33.5 - parent: 89 - - uid: 9728 + rot: -1.5707963267948966 rad + pos: 53.5,-11.5 + parent: 2 + - uid: 21451 components: - type: Transform - pos: -54.5,34.5 - parent: 89 - - uid: 9729 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 21452 components: - type: Transform - pos: -54.5,36.5 - parent: 89 - - uid: 9730 + rot: -1.5707963267948966 rad + pos: -82.5,31.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: -54.5,37.5 - parent: 89 - - uid: 9732 + rot: -1.5707963267948966 rad + pos: -82.5,29.5 + parent: 2 + - uid: 21454 components: - type: Transform - pos: -53.5,37.5 - parent: 89 - - uid: 9735 + rot: -1.5707963267948966 rad + pos: -68.5,31.5 + parent: 2 + - uid: 21455 components: - type: Transform - pos: -53.5,33.5 - parent: 89 - - uid: 9736 + rot: -1.5707963267948966 rad + pos: -68.5,29.5 + parent: 2 + - uid: 21456 components: - type: Transform - pos: -51.5,33.5 - parent: 89 - - uid: 9737 + rot: -1.5707963267948966 rad + pos: -82.5,38.5 + parent: 2 + - uid: 21457 components: - type: Transform - pos: -50.5,33.5 - parent: 89 - - uid: 9738 + rot: -1.5707963267948966 rad + pos: -68.5,38.5 + parent: 2 + - uid: 21458 components: - type: Transform - pos: -50.5,32.5 - parent: 89 - - uid: 9739 + rot: -1.5707963267948966 rad + pos: -82.5,40.5 + parent: 2 + - uid: 21459 components: - type: Transform - pos: -50.5,31.5 - parent: 89 - - uid: 9740 + rot: -1.5707963267948966 rad + pos: -82.5,39.5 + parent: 2 + - uid: 21460 components: - type: Transform - pos: -50.5,30.5 - parent: 89 - - uid: 9741 + rot: -1.5707963267948966 rad + pos: -68.5,39.5 + parent: 2 + - uid: 21461 components: - type: Transform - pos: -50.5,29.5 - parent: 89 - - uid: 9742 + rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - uid: 21462 components: - type: Transform - pos: -50.5,28.5 - parent: 89 - - uid: 9743 + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - uid: 21463 components: - type: Transform - pos: -50.5,27.5 - parent: 89 - - uid: 9744 + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 21464 components: - type: Transform - pos: -51.5,27.5 - parent: 89 - - uid: 9745 + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - uid: 21465 components: - type: Transform - pos: -51.5,26.5 - parent: 89 - - uid: 9746 + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 21466 components: - type: Transform - pos: -51.5,25.5 - parent: 89 - - uid: 9747 + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 21467 components: - type: Transform - pos: -51.5,24.5 - parent: 89 - - uid: 9748 + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 21468 components: - type: Transform - pos: -51.5,23.5 - parent: 89 - - uid: 9749 + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - uid: 21469 components: - type: Transform - pos: -51.5,22.5 - parent: 89 - - uid: 9750 + rot: -1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 2 + - uid: 21470 components: - type: Transform - pos: -50.5,22.5 - parent: 89 - - uid: 9751 + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 + - uid: 21471 components: - type: Transform - pos: -49.5,22.5 - parent: 89 - - uid: 9752 + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + - uid: 21472 components: - type: Transform - pos: -48.5,22.5 - parent: 89 - - uid: 9753 + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 21473 components: - type: Transform - pos: -47.5,22.5 - parent: 89 - - uid: 9754 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 21474 components: - type: Transform - pos: -46.5,22.5 - parent: 89 - - uid: 9755 + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 21475 components: - type: Transform - pos: -45.5,22.5 - parent: 89 - - uid: 9756 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 21476 components: - type: Transform - pos: -44.5,22.5 - parent: 89 - - uid: 9757 + rot: -1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - uid: 21477 components: - type: Transform - pos: -43.5,22.5 - parent: 89 - - uid: 9769 + rot: -1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 21478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,21.5 - parent: 89 - - uid: 9772 + rot: -1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 21479 components: - type: Transform - pos: -58.5,32.5 - parent: 89 - - uid: 9773 + rot: -1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + - uid: 21480 components: - type: Transform - pos: -68.5,45.5 - parent: 89 - - uid: 9774 + rot: 1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 21481 components: - type: Transform - pos: -58.5,36.5 - parent: 89 - - uid: 9778 + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 21482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -133.5,-13.5 - parent: 89 - - uid: 9790 + pos: -25.5,-28.5 + parent: 2 + - uid: 21483 components: - type: Transform - pos: -65.5,46.5 - parent: 89 - - uid: 9809 + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - uid: 21484 components: - type: Transform - pos: 9.5,43.5 - parent: 89 - - uid: 9818 + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - uid: 21485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,29.5 - parent: 89 - - uid: 9821 + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 21486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,24.5 - parent: 89 - - uid: 9837 + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - uid: 21487 components: - type: Transform - pos: -57.5,46.5 - parent: 89 - - uid: 9857 + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - uid: 21488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,25.5 - parent: 89 - - uid: 9859 + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 + - uid: 21489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,28.5 - parent: 89 - - uid: 9863 + rot: -1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - uid: 21490 components: - type: Transform - pos: -50.5,37.5 - parent: 89 - - uid: 9864 + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - uid: 21491 components: - type: Transform - pos: -50.5,36.5 - parent: 89 - - uid: 9865 + rot: -1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 2 + - uid: 21492 components: - type: Transform - pos: -50.5,35.5 - parent: 89 - - uid: 9866 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 2 + - uid: 21493 components: - type: Transform - pos: -50.5,34.5 - parent: 89 - - uid: 9883 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - uid: 21494 components: - type: Transform - pos: -50.5,49.5 - parent: 89 - - uid: 10053 + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 21495 components: - type: Transform - pos: -83.5,-8.5 - parent: 89 - - uid: 10059 + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 21496 components: - type: Transform - pos: -83.5,-7.5 - parent: 89 - - uid: 10060 + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + - uid: 21497 components: - type: Transform - pos: -83.5,-6.5 - parent: 89 - - uid: 10112 + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 + - uid: 21498 components: - type: Transform - pos: -28.5,34.5 - parent: 89 - - uid: 10113 + rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 21499 components: - type: Transform - pos: -25.5,34.5 - parent: 89 - - uid: 10115 + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 2 + - uid: 21500 components: - type: Transform - pos: -24.5,34.5 - parent: 89 - - uid: 10117 + rot: -1.5707963267948966 rad + pos: -119.5,-16.5 + parent: 2 + - uid: 21501 components: - type: Transform - pos: -26.5,34.5 - parent: 89 - - uid: 10119 + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + - uid: 21502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,27.5 - parent: 89 - - uid: 10120 + rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 2 + - uid: 21503 components: - type: Transform - pos: -35.5,34.5 - parent: 89 - - uid: 10121 + rot: -1.5707963267948966 rad + pos: 51.5,-5.5 + parent: 2 + - uid: 21504 components: - type: Transform - pos: -31.5,34.5 - parent: 89 - - uid: 10122 + rot: -1.5707963267948966 rad + pos: -93.5,30.5 + parent: 2 + - uid: 21505 components: - type: Transform - pos: -32.5,34.5 - parent: 89 - - uid: 10123 + rot: -1.5707963267948966 rad + pos: -95.5,30.5 + parent: 2 + - uid: 21506 components: - type: Transform - pos: -33.5,34.5 - parent: 89 - - uid: 10124 + rot: -1.5707963267948966 rad + pos: -91.5,30.5 + parent: 2 + - uid: 21507 components: - type: Transform - pos: -34.5,34.5 - parent: 89 - - uid: 10125 + rot: -1.5707963267948966 rad + pos: -90.5,30.5 + parent: 2 + - uid: 21508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,26.5 - parent: 89 - - uid: 10134 + rot: -1.5707963267948966 rad + pos: -92.5,30.5 + parent: 2 + - uid: 21509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,51.5 - parent: 89 - - uid: 10146 + rot: -1.5707963267948966 rad + pos: -94.5,30.5 + parent: 2 + - uid: 21510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,50.5 - parent: 89 - - uid: 10184 + rot: -1.5707963267948966 rad + pos: -89.5,30.5 + parent: 2 + - uid: 21511 components: - type: Transform - pos: -41.5,22.5 - parent: 89 - - uid: 10185 + rot: -1.5707963267948966 rad + pos: -74.5,-10.5 + parent: 2 + - uid: 21512 components: - type: Transform - pos: 41.5,-11.5 - parent: 89 - - uid: 10199 + rot: -1.5707963267948966 rad + pos: -75.5,-10.5 + parent: 2 + - uid: 21513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,49.5 - parent: 89 - - uid: 10268 + rot: -1.5707963267948966 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 21514 components: - type: Transform - pos: -41.5,23.5 - parent: 89 - - uid: 10277 + rot: -1.5707963267948966 rad + pos: -77.5,-10.5 + parent: 2 + - uid: 21515 components: - type: Transform - pos: -41.5,33.5 - parent: 89 - - uid: 10278 + rot: -1.5707963267948966 rad + pos: -100.5,30.5 + parent: 2 + - uid: 21516 components: - type: Transform - pos: -40.5,33.5 - parent: 89 - - uid: 10279 + rot: -1.5707963267948966 rad + pos: -96.5,30.5 + parent: 2 + - uid: 21517 components: - type: Transform - pos: -40.5,34.5 - parent: 89 - - uid: 10280 + rot: -1.5707963267948966 rad + pos: -101.5,28.5 + parent: 2 + - uid: 21518 components: - type: Transform - pos: -39.5,34.5 - parent: 89 - - uid: 10281 + rot: -1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - uid: 21519 components: - type: Transform - pos: -38.5,34.5 - parent: 89 - - uid: 10282 + rot: -1.5707963267948966 rad + pos: -82.5,32.5 + parent: 2 + - uid: 21520 components: - type: Transform - pos: -37.5,34.5 - parent: 89 - - uid: 10283 + rot: -1.5707963267948966 rad + pos: -102.5,28.5 + parent: 2 + - uid: 21521 components: - type: Transform - pos: -36.5,34.5 - parent: 89 - - uid: 10303 + rot: -1.5707963267948966 rad + pos: -104.5,28.5 + parent: 2 + - uid: 21522 components: - type: Transform - pos: -41.5,25.5 - parent: 89 - - uid: 10305 + rot: -1.5707963267948966 rad + pos: -106.5,28.5 + parent: 2 + - uid: 21523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,25.5 - parent: 89 - - uid: 10319 + rot: -1.5707963267948966 rad + pos: -108.5,28.5 + parent: 2 + - uid: 21524 components: - type: Transform - pos: -41.5,24.5 - parent: 89 - - uid: 10321 + rot: -1.5707963267948966 rad + pos: -110.5,28.5 + parent: 2 + - uid: 21525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,47.5 - parent: 89 - - uid: 10327 + rot: -1.5707963267948966 rad + pos: -99.5,30.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: -18.5,25.5 - parent: 89 - - uid: 10328 + rot: -1.5707963267948966 rad + pos: -97.5,30.5 + parent: 2 + - uid: 21527 components: - type: Transform - pos: -18.5,26.5 - parent: 89 - - uid: 10329 + rot: -1.5707963267948966 rad + pos: -98.5,30.5 + parent: 2 + - uid: 21528 components: - type: Transform - pos: -18.5,27.5 - parent: 89 - - uid: 10330 + rot: -1.5707963267948966 rad + pos: -113.5,19.5 + parent: 2 + - uid: 21529 components: - type: Transform - pos: -18.5,28.5 - parent: 89 - - uid: 10331 + rot: -1.5707963267948966 rad + pos: -113.5,20.5 + parent: 2 + - uid: 21530 components: - type: Transform - pos: -18.5,29.5 - parent: 89 - - uid: 10332 + rot: -1.5707963267948966 rad + pos: -113.5,21.5 + parent: 2 + - uid: 21531 components: - type: Transform - pos: -18.5,30.5 - parent: 89 - - uid: 10333 + rot: -1.5707963267948966 rad + pos: -113.5,22.5 + parent: 2 + - uid: 21532 components: - type: Transform - pos: -18.5,31.5 - parent: 89 - - uid: 10334 + rot: -1.5707963267948966 rad + pos: -113.5,23.5 + parent: 2 + - uid: 21533 components: - type: Transform - pos: -18.5,32.5 - parent: 89 - - uid: 10336 + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 + - uid: 21534 components: - type: Transform - pos: -19.5,33.5 - parent: 89 - - uid: 10338 + rot: -1.5707963267948966 rad + pos: -113.5,26.5 + parent: 2 + - uid: 21535 components: - type: Transform - pos: -20.5,34.5 - parent: 89 - - uid: 10339 + rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 2 + - uid: 21536 components: - type: Transform - pos: -21.5,34.5 - parent: 89 - - uid: 10340 + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 2 + - uid: 21537 components: - type: Transform - pos: -22.5,34.5 - parent: 89 - - uid: 10341 + rot: -1.5707963267948966 rad + pos: -9.5,46.5 + parent: 2 + - uid: 21538 components: - type: Transform - pos: -23.5,34.5 - parent: 89 - - uid: 10385 + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 21539 components: - type: Transform - pos: -107.5,16.5 - parent: 89 - - uid: 10386 + rot: -1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - uid: 21540 components: - type: Transform - pos: -109.5,16.5 - parent: 89 - - uid: 10387 + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - uid: 21541 components: - type: Transform - pos: -118.5,18.5 - parent: 89 - - uid: 10388 + rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 2 + - uid: 21542 components: - type: Transform - pos: -121.5,-15.5 - parent: 89 - - uid: 10389 + rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - uid: 21543 components: - type: Transform - pos: -121.5,-14.5 - parent: 89 - - uid: 10393 + rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 2 + - uid: 21544 components: - type: Transform - pos: 23.5,13.5 - parent: 89 - - uid: 10402 + rot: -1.5707963267948966 rad + pos: -82.5,28.5 + parent: 2 + - uid: 21545 components: - type: Transform - pos: 53.5,-15.5 - parent: 89 - - uid: 10403 + rot: -1.5707963267948966 rad + pos: -82.5,27.5 + parent: 2 + - uid: 21546 components: - type: Transform - pos: -117.5,22.5 - parent: 89 - - uid: 10404 + rot: -1.5707963267948966 rad + pos: -80.5,22.5 + parent: 2 + - uid: 21547 components: - type: Transform - pos: -118.5,22.5 - parent: 89 - - uid: 10405 + rot: -1.5707963267948966 rad + pos: -82.5,26.5 + parent: 2 + - uid: 21548 components: - type: Transform - pos: -119.5,22.5 - parent: 89 - - uid: 10408 + rot: -1.5707963267948966 rad + pos: -82.5,25.5 + parent: 2 + - uid: 21549 components: - type: Transform - pos: -111.5,-18.5 - parent: 89 - - uid: 10409 + rot: -1.5707963267948966 rad + pos: -82.5,24.5 + parent: 2 + - uid: 21550 components: - type: Transform - pos: -110.5,-15.5 - parent: 89 - - uid: 10410 + rot: -1.5707963267948966 rad + pos: -82.5,23.5 + parent: 2 + - uid: 21551 components: - type: Transform - pos: -124.5,22.5 - parent: 89 - - uid: 10411 + rot: -1.5707963267948966 rad + pos: -82.5,22.5 + parent: 2 + - uid: 21552 components: - type: Transform - pos: -125.5,22.5 - parent: 89 - - uid: 10412 + rot: -1.5707963267948966 rad + pos: -79.5,22.5 + parent: 2 + - uid: 21553 components: - type: Transform - pos: -126.5,22.5 - parent: 89 - - uid: 10413 + rot: -1.5707963267948966 rad + pos: -78.5,22.5 + parent: 2 + - uid: 21554 components: - type: Transform - pos: -127.5,22.5 - parent: 89 - - uid: 10414 + rot: -1.5707963267948966 rad + pos: -77.5,22.5 + parent: 2 + - uid: 21555 components: - type: Transform - pos: -115.5,-20.5 - parent: 89 - - uid: 10420 + rot: -1.5707963267948966 rad + pos: -73.5,22.5 + parent: 2 + - uid: 21556 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 89 - - uid: 10425 + pos: -72.5,22.5 + parent: 2 + - uid: 21557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,25.5 - parent: 89 - - uid: 10437 + rot: -1.5707963267948966 rad + pos: -81.5,22.5 + parent: 2 + - uid: 21558 components: - type: Transform - pos: 22.5,13.5 - parent: 89 - - uid: 10438 + rot: -1.5707963267948966 rad + pos: -71.5,22.5 + parent: 2 + - uid: 21559 components: - type: Transform - pos: 21.5,13.5 - parent: 89 - - uid: 10439 + rot: -1.5707963267948966 rad + pos: -70.5,22.5 + parent: 2 + - uid: 21560 components: - type: Transform - pos: 20.5,13.5 - parent: 89 - - uid: 10440 + rot: -1.5707963267948966 rad + pos: -69.5,22.5 + parent: 2 + - uid: 21561 components: - type: Transform - pos: 19.5,13.5 - parent: 89 - - uid: 10441 + rot: -1.5707963267948966 rad + pos: -68.5,22.5 + parent: 2 + - uid: 21562 components: - type: Transform - pos: 18.5,13.5 - parent: 89 - - uid: 10442 + rot: -1.5707963267948966 rad + pos: -68.5,23.5 + parent: 2 + - uid: 21563 components: - type: Transform - pos: 17.5,10.5 - parent: 89 - - uid: 10443 + rot: -1.5707963267948966 rad + pos: -68.5,24.5 + parent: 2 + - uid: 21564 components: - type: Transform - pos: 17.5,12.5 - parent: 89 - - uid: 10444 + rot: -1.5707963267948966 rad + pos: -68.5,25.5 + parent: 2 + - uid: 21565 components: - type: Transform - pos: 17.5,11.5 - parent: 89 - - uid: 10445 + rot: -1.5707963267948966 rad + pos: -68.5,26.5 + parent: 2 + - uid: 21566 components: - type: Transform - pos: 8.5,39.5 - parent: 89 - - uid: 10448 + rot: -1.5707963267948966 rad + pos: -68.5,27.5 + parent: 2 + - uid: 21567 components: - type: Transform - pos: 20.5,10.5 - parent: 89 - - uid: 10449 + rot: -1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - uid: 21568 components: - type: Transform - pos: 22.5,10.5 - parent: 89 - - uid: 10454 + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - uid: 21569 components: - type: Transform - pos: 15.5,9.5 - parent: 89 - - uid: 10455 + rot: -1.5707963267948966 rad + pos: -1.5,47.5 + parent: 2 + - uid: 21570 components: - type: Transform - pos: 15.5,6.5 - parent: 89 - - uid: 10456 + rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 2 + - uid: 21571 components: - type: Transform - pos: 15.5,5.5 - parent: 89 - - uid: 10473 + rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 21572 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 10484 + rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 2 + - uid: 21573 components: - type: Transform - pos: 15.5,8.5 - parent: 89 - - uid: 10489 + rot: -1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - uid: 21574 components: - type: Transform - pos: -111.5,-19.5 - parent: 89 - - uid: 10490 + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - uid: 21575 components: - type: Transform - pos: -112.5,-20.5 - parent: 89 - - uid: 10505 + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 2 + - uid: 21576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-6.5 - parent: 89 - - uid: 10509 + pos: 4.5,41.5 + parent: 2 + - uid: 21577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 89 - - uid: 10510 + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 2 + - uid: 21578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 89 - - uid: 10512 + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 2 + - uid: 21579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,47.5 - parent: 89 - - uid: 10513 + rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 2 + - uid: 21580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 - parent: 89 - - uid: 10514 + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 2 + - uid: 21581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,50.5 - parent: 89 - - uid: 10515 + rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 21582 components: - type: Transform - pos: -86.5,41.5 - parent: 89 - - uid: 10519 + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - uid: 21583 components: - type: Transform - pos: -86.5,18.5 - parent: 89 - - uid: 10520 + rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - uid: 21584 components: - type: Transform - pos: -87.5,31.5 - parent: 89 - - uid: 10521 + rot: -1.5707963267948966 rad + pos: -9.5,33.5 + parent: 2 + - uid: 21585 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,30.5 - parent: 89 - - uid: 10522 + pos: -9.5,32.5 + parent: 2 + - uid: 21586 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,31.5 - parent: 89 - - uid: 10523 + pos: -9.5,31.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: -87.5,34.5 - parent: 89 - - uid: 10524 + rot: -1.5707963267948966 rad + pos: -9.5,29.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: -87.5,33.5 - parent: 89 - - uid: 10525 + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: -87.5,32.5 - parent: 89 - - uid: 10527 + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - uid: 21590 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,36.5 - parent: 89 - - uid: 10528 + pos: -9.5,27.5 + parent: 2 + - uid: 21591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,36.5 - parent: 89 - - uid: 10529 + pos: -9.5,28.5 + parent: 2 + - uid: 21592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,36.5 - parent: 89 - - uid: 10532 + pos: -134.5,14.5 + parent: 2 + - uid: 21593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,40.5 - parent: 89 - - uid: 10533 + pos: -132.5,9.5 + parent: 2 + - uid: 21594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,40.5 - parent: 89 - - uid: 10534 + pos: -133.5,9.5 + parent: 2 + - uid: 21595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,40.5 - parent: 89 - - uid: 10535 + pos: -131.5,9.5 + parent: 2 + - uid: 21596 components: - type: Transform - pos: -83.5,18.5 - parent: 89 - - uid: 10536 + rot: -1.5707963267948966 rad + pos: -134.5,13.5 + parent: 2 + - uid: 21597 components: - type: Transform - pos: -86.5,17.5 - parent: 89 - - uid: 10537 + rot: -1.5707963267948966 rad + pos: -134.5,12.5 + parent: 2 + - uid: 21598 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 10565 + rot: -1.5707963267948966 rad + pos: -134.5,10.5 + parent: 2 + - uid: 21599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,46.5 - parent: 89 - - uid: 10567 + rot: -1.5707963267948966 rad + pos: -134.5,11.5 + parent: 2 + - uid: 21600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,46.5 - parent: 89 - - uid: 10568 + rot: -1.5707963267948966 rad + pos: -134.5,15.5 + parent: 2 + - uid: 21601 components: - type: Transform - pos: 53.5,-16.5 - parent: 89 - - uid: 10572 + rot: -1.5707963267948966 rad + pos: -134.5,16.5 + parent: 2 + - uid: 21602 components: - type: Transform - pos: -86.5,45.5 - parent: 89 - - uid: 10573 + rot: -1.5707963267948966 rad + pos: -134.5,17.5 + parent: 2 + - uid: 21603 components: - type: Transform - pos: -86.5,46.5 - parent: 89 - - uid: 10574 + rot: -1.5707963267948966 rad + pos: -134.5,18.5 + parent: 2 + - uid: 21604 components: - type: Transform - pos: -86.5,47.5 - parent: 89 - - uid: 10576 + rot: -1.5707963267948966 rad + pos: -134.5,19.5 + parent: 2 + - uid: 21605 components: - type: Transform - pos: -82.5,41.5 - parent: 89 - - uid: 10580 + rot: -1.5707963267948966 rad + pos: -124.5,-11.5 + parent: 2 + - uid: 21606 components: - type: Transform - pos: -82.5,45.5 - parent: 89 - - uid: 10581 + rot: -1.5707963267948966 rad + pos: -125.5,-11.5 + parent: 2 + - uid: 21607 components: - type: Transform - pos: -82.5,46.5 - parent: 89 - - uid: 10582 + rot: -1.5707963267948966 rad + pos: -126.5,-11.5 + parent: 2 + - uid: 21608 components: - type: Transform - pos: -82.5,47.5 - parent: 89 - - uid: 10600 + rot: -1.5707963267948966 rad + pos: -127.5,-11.5 + parent: 2 + - uid: 21609 components: - type: Transform - pos: 53.5,-13.5 - parent: 89 - - uid: 10610 + rot: -1.5707963267948966 rad + pos: -131.5,-13.5 + parent: 2 + - uid: 21610 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,35.5 - parent: 89 - - uid: 10626 + pos: -132.5,-13.5 + parent: 2 + - uid: 21611 components: - type: Transform - pos: -87.5,35.5 - parent: 89 - - uid: 10627 + rot: -1.5707963267948966 rad + pos: -132.5,0.5 + parent: 2 + - uid: 21612 components: - type: Transform - pos: -88.5,31.5 - parent: 89 - - uid: 10657 + rot: -1.5707963267948966 rad + pos: -131.5,-1.5 + parent: 2 + - uid: 21613 components: - type: Transform - pos: -36.5,12.5 - parent: 89 - - uid: 10662 + rot: 1.5707963267948966 rad + pos: -135.5,0.5 + parent: 2 + - uid: 21614 components: - type: Transform - pos: 5.5,-25.5 - parent: 89 - - uid: 10694 + rot: -1.5707963267948966 rad + pos: -8.5,-41.5 + parent: 2 + - uid: 21615 components: - type: Transform - pos: -8.5,-25.5 - parent: 89 - - uid: 10739 + rot: -1.5707963267948966 rad + pos: -116.5,22.5 + parent: 2 + - uid: 21616 components: - type: Transform - pos: 53.5,-14.5 - parent: 89 - - uid: 10759 + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 2 + - uid: 21617 components: - type: Transform - pos: 29.5,33.5 - parent: 89 - - uid: 10760 + rot: -1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - uid: 21618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-11.5 - parent: 89 - - uid: 10772 + pos: 8.5,-28.5 + parent: 2 + - uid: 21619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 89 - - uid: 10777 + rot: -1.5707963267948966 rad + pos: -120.5,-16.5 + parent: 2 + - uid: 21620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 89 - - uid: 10787 + rot: -1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 21621 components: - type: Transform - pos: 14.5,38.5 - parent: 89 - - uid: 10793 + rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 21622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-6.5 - parent: 89 - - uid: 10819 + pos: 10.5,43.5 + parent: 2 + - uid: 21623 components: - type: Transform - pos: -116.5,-20.5 - parent: 89 - - uid: 10824 + rot: -1.5707963267948966 rad + pos: -68.5,28.5 + parent: 2 + - uid: 21624 components: - type: Transform - pos: -119.5,-22.5 - parent: 89 - - uid: 10826 + rot: -1.5707963267948966 rad + pos: -68.5,32.5 + parent: 2 + - uid: 21625 components: - type: Transform - pos: -113.5,-20.5 - parent: 89 - - uid: 10827 + rot: -1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - uid: 21626 components: - type: Transform - pos: -115.5,-19.5 - parent: 89 - - uid: 10829 + rot: -1.5707963267948966 rad + pos: -68.5,40.5 + parent: 2 + - uid: 21627 components: - type: Transform - pos: -110.5,-21.5 - parent: 89 - - uid: 10839 + rot: -1.5707963267948966 rad + pos: -67.5,46.5 + parent: 2 + - uid: 21628 components: - type: Transform - pos: 16.5,33.5 - parent: 89 - - uid: 10864 + rot: -1.5707963267948966 rad + pos: -67.5,47.5 + parent: 2 + - uid: 21629 components: - type: Transform - pos: 15.5,27.5 - parent: 89 - - uid: 10875 + rot: -1.5707963267948966 rad + pos: -63.5,46.5 + parent: 2 + - uid: 21630 components: - type: Transform - pos: 30.5,33.5 - parent: 89 - - uid: 10876 + rot: -1.5707963267948966 rad + pos: -63.5,47.5 + parent: 2 + - uid: 21631 components: - type: Transform - pos: 26.5,31.5 - parent: 89 - - uid: 10895 + rot: -1.5707963267948966 rad + pos: -59.5,46.5 + parent: 2 + - uid: 21632 components: - type: Transform - pos: 31.5,33.5 - parent: 89 - - uid: 10896 + rot: -1.5707963267948966 rad + pos: -59.5,47.5 + parent: 2 + - uid: 21633 components: - type: Transform - pos: 32.5,33.5 - parent: 89 - - uid: 10898 + rot: -1.5707963267948966 rad + pos: -59.5,48.5 + parent: 2 + - uid: 21634 components: - type: Transform - pos: 33.5,32.5 - parent: 89 - - uid: 10899 + rot: -1.5707963267948966 rad + pos: -49.5,46.5 + parent: 2 + - uid: 21635 components: - type: Transform - pos: 33.5,33.5 - parent: 89 - - uid: 10900 + rot: -1.5707963267948966 rad + pos: -49.5,44.5 + parent: 2 + - uid: 21636 components: - type: Transform - pos: -129.5,24.5 - parent: 89 - - uid: 10903 + rot: -1.5707963267948966 rad + pos: -49.5,43.5 + parent: 2 + - uid: 21637 components: - type: Transform - pos: 28.5,33.5 - parent: 89 - - uid: 10904 + rot: -1.5707963267948966 rad + pos: -49.5,42.5 + parent: 2 + - uid: 21638 components: - type: Transform - pos: 19.5,33.5 - parent: 89 - - uid: 10918 + rot: -1.5707963267948966 rad + pos: -49.5,40.5 + parent: 2 + - uid: 21639 components: - type: Transform - pos: 26.5,32.5 - parent: 89 - - uid: 10921 + rot: -1.5707963267948966 rad + pos: -49.5,39.5 + parent: 2 + - uid: 21640 components: - type: Transform - pos: 9.5,28.5 - parent: 89 - - uid: 10923 + rot: -1.5707963267948966 rad + pos: -50.5,38.5 + parent: 2 + - uid: 21641 components: - type: Transform - pos: 18.5,33.5 - parent: 89 - - uid: 10927 + rot: -1.5707963267948966 rad + pos: -68.5,41.5 + parent: 2 + - uid: 21642 components: - type: Transform - pos: 11.5,28.5 - parent: 89 - - uid: 10928 + rot: -1.5707963267948966 rad + pos: -50.5,33.5 + parent: 2 + - uid: 21643 components: - type: Transform - pos: -128.5,22.5 - parent: 89 - - uid: 10932 + rot: -1.5707963267948966 rad + pos: -50.5,32.5 + parent: 2 + - uid: 21644 components: - type: Transform - pos: 33.5,31.5 - parent: 89 - - uid: 10956 + rot: -1.5707963267948966 rad + pos: -50.5,31.5 + parent: 2 + - uid: 21645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 89 - - uid: 10957 + pos: -50.5,30.5 + parent: 2 + - uid: 21646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 89 - - uid: 10961 + rot: -1.5707963267948966 rad + pos: -50.5,29.5 + parent: 2 + - uid: 21647 components: - type: Transform - pos: -18.5,22.5 - parent: 89 - - uid: 11000 + rot: -1.5707963267948966 rad + pos: -50.5,28.5 + parent: 2 + - uid: 21648 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 89 - - uid: 11003 + pos: -50.5,27.5 + parent: 2 + - uid: 21649 components: - type: Transform - pos: 8.5,28.5 - parent: 89 - - uid: 11004 + rot: -1.5707963267948966 rad + pos: -51.5,27.5 + parent: 2 + - uid: 21650 components: - type: Transform - pos: 7.5,28.5 - parent: 89 - - uid: 11005 + rot: -1.5707963267948966 rad + pos: -51.5,26.5 + parent: 2 + - uid: 21651 components: - type: Transform - pos: 6.5,28.5 - parent: 89 - - uid: 11006 + rot: -1.5707963267948966 rad + pos: -51.5,25.5 + parent: 2 + - uid: 21652 components: - type: Transform - pos: 5.5,28.5 - parent: 89 - - uid: 11015 + rot: -1.5707963267948966 rad + pos: -51.5,23.5 + parent: 2 + - uid: 21653 components: - type: Transform - pos: 41.5,-21.5 - parent: 89 - - uid: 11019 + rot: -1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 21654 components: - type: Transform - pos: 41.5,-25.5 - parent: 89 - - uid: 11029 + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - uid: 21655 components: - type: Transform - pos: 41.5,-23.5 - parent: 89 - - uid: 11039 + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + - uid: 21656 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 89 - - uid: 11047 + pos: -47.5,22.5 + parent: 2 + - uid: 21657 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 89 - - uid: 11099 + pos: -68.5,45.5 + parent: 2 + - uid: 21658 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 11151 + rot: -1.5707963267948966 rad + pos: -65.5,46.5 + parent: 2 + - uid: 21659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,23.5 - parent: 89 - - uid: 11152 + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 21660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 89 - - uid: 11212 + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 2 + - uid: 21661 components: - type: Transform - pos: 7.5,31.5 - parent: 89 - - uid: 11213 + rot: -1.5707963267948966 rad + pos: -50.5,37.5 + parent: 2 + - uid: 21662 components: - type: Transform - pos: 5.5,31.5 - parent: 89 - - uid: 11220 + rot: -1.5707963267948966 rad + pos: -50.5,36.5 + parent: 2 + - uid: 21663 components: - type: Transform - pos: -18.5,23.5 - parent: 89 - - uid: 11262 + rot: -1.5707963267948966 rad + pos: -50.5,35.5 + parent: 2 + - uid: 21664 components: - type: Transform - pos: -52.5,28.5 - parent: 89 - - uid: 11456 + rot: -1.5707963267948966 rad + pos: -50.5,34.5 + parent: 2 + - uid: 21665 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 89 - - uid: 11457 + pos: -50.5,49.5 + parent: 2 + - uid: 21666 components: - type: Transform - pos: -11.5,25.5 - parent: 89 - - uid: 11464 + rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 21667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 89 - - uid: 11495 + pos: -24.5,34.5 + parent: 2 + - uid: 21668 components: - type: Transform - pos: -16.5,25.5 - parent: 89 - - uid: 11600 + rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 2 + - uid: 21669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,24.5 - parent: 89 - - uid: 11659 + rot: -1.5707963267948966 rad + pos: -35.5,34.5 + parent: 2 + - uid: 21670 components: - type: Transform - pos: 38.5,-21.5 - parent: 89 - - uid: 11724 + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 40.5,-21.5 - parent: 89 - - uid: 11822 + rot: -1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - uid: 21672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-7.5 - parent: 89 - - uid: 11823 + rot: -1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - uid: 21673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-8.5 - parent: 89 - - uid: 11824 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 21674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-9.5 - parent: 89 - - uid: 11832 + rot: -1.5707963267948966 rad + pos: -41.5,33.5 + parent: 2 + - uid: 21675 components: - type: Transform - pos: 15.5,-14.5 - parent: 89 - - uid: 11833 + rot: -1.5707963267948966 rad + pos: -40.5,34.5 + parent: 2 + - uid: 21676 components: - type: Transform - pos: 14.5,-14.5 - parent: 89 - - uid: 11834 + rot: -1.5707963267948966 rad + pos: -39.5,34.5 + parent: 2 + - uid: 21677 components: - type: Transform - pos: 14.5,-12.5 - parent: 89 - - uid: 11835 + rot: -1.5707963267948966 rad + pos: -38.5,34.5 + parent: 2 + - uid: 21678 components: - type: Transform - pos: 16.5,-14.5 - parent: 89 - - uid: 11918 + rot: -1.5707963267948966 rad + pos: -37.5,34.5 + parent: 2 + - uid: 21679 components: - type: Transform - pos: 26.5,26.5 - parent: 89 - - uid: 12011 + rot: -1.5707963267948966 rad + pos: -36.5,34.5 + parent: 2 + - uid: 21680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 89 - - uid: 12571 + rot: -1.5707963267948966 rad + pos: -18.5,25.5 + parent: 2 + - uid: 21681 components: - type: Transform - pos: 26.5,27.5 - parent: 89 - - uid: 12577 + rot: -1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - uid: 21682 components: - type: Transform - pos: 37.5,-23.5 - parent: 89 - - uid: 12578 + rot: -1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - uid: 21683 components: - type: Transform - pos: 41.5,-24.5 - parent: 89 - - uid: 12587 + rot: -1.5707963267948966 rad + pos: -18.5,28.5 + parent: 2 + - uid: 21684 components: - type: Transform - pos: 22.5,27.5 - parent: 89 - - uid: 12593 + rot: -1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - uid: 21685 components: - type: Transform - pos: 11.5,35.5 - parent: 89 - - uid: 12594 + rot: -1.5707963267948966 rad + pos: -18.5,30.5 + parent: 2 + - uid: 21686 components: - type: Transform - pos: 15.5,38.5 - parent: 89 - - uid: 12595 + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 21687 components: - type: Transform - pos: 5.5,35.5 - parent: 89 - - uid: 12597 + rot: -1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 + - uid: 21688 components: - type: Transform - pos: 8.5,35.5 - parent: 89 - - uid: 12613 + rot: -1.5707963267948966 rad + pos: -19.5,33.5 + parent: 2 + - uid: 21689 components: - type: Transform - pos: 15.5,35.5 - parent: 89 - - uid: 12660 + rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - uid: 21690 components: - type: Transform - pos: -52.5,27.5 - parent: 89 - - uid: 12699 + rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - uid: 21691 components: - type: Transform - pos: 32.5,27.5 - parent: 89 - - uid: 12765 + rot: -1.5707963267948966 rad + pos: -22.5,34.5 + parent: 2 + - uid: 21692 components: - type: Transform - pos: -35.5,12.5 - parent: 89 - - uid: 12814 + rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 2 + - uid: 21693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 89 - - uid: 12818 + pos: 53.5,-15.5 + parent: 2 + - uid: 21694 components: - type: Transform - pos: -41.5,26.5 - parent: 89 - - uid: 12829 + rot: -1.5707963267948966 rad + pos: -117.5,22.5 + parent: 2 + - uid: 21695 components: - type: Transform - pos: 28.5,27.5 - parent: 89 - - uid: 12854 + rot: -1.5707963267948966 rad + pos: -118.5,22.5 + parent: 2 + - uid: 21696 components: - type: Transform - pos: 37.5,-21.5 - parent: 89 - - uid: 12861 + rot: -1.5707963267948966 rad + pos: -119.5,22.5 + parent: 2 + - uid: 21697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 89 - - uid: 12972 + rot: -1.5707963267948966 rad + pos: -124.5,22.5 + parent: 2 + - uid: 21698 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 - - uid: 12980 + rot: -1.5707963267948966 rad + pos: -125.5,22.5 + parent: 2 + - uid: 21699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,19.5 - parent: 89 - - uid: 13208 + rot: -1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 21700 components: - type: Transform - pos: 27.5,27.5 - parent: 89 - - uid: 13267 + rot: -1.5707963267948966 rad + pos: -127.5,22.5 + parent: 2 + - uid: 21701 components: - type: Transform - pos: -36.5,-9.5 - parent: 89 - - uid: 13449 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 + - uid: 21702 components: - type: Transform - pos: -52.5,30.5 - parent: 89 - - uid: 14021 + rot: -1.5707963267948966 rad + pos: -87.5,31.5 + parent: 2 + - uid: 21703 components: - type: Transform - pos: 15.5,37.5 - parent: 89 - - uid: 14025 + rot: 1.5707963267948966 rad + pos: -86.5,31.5 + parent: 2 + - uid: 21704 components: - type: Transform - pos: 4.5,36.5 - parent: 89 - - uid: 14034 + rot: -1.5707963267948966 rad + pos: -87.5,34.5 + parent: 2 + - uid: 21705 components: - type: Transform - pos: 22.5,26.5 - parent: 89 - - uid: 14051 + rot: -1.5707963267948966 rad + pos: -87.5,33.5 + parent: 2 + - uid: 21706 components: - type: Transform - pos: -9.5,-37.5 - parent: 89 - - uid: 14060 + rot: -1.5707963267948966 rad + pos: -87.5,32.5 + parent: 2 + - uid: 21707 components: - type: Transform - pos: 8.5,40.5 - parent: 89 - - uid: 14068 + rot: -1.5707963267948966 rad + pos: -86.5,36.5 + parent: 2 + - uid: 21708 components: - type: Transform - pos: -128.5,23.5 - parent: 89 - - uid: 14069 + rot: -1.5707963267948966 rad + pos: -87.5,36.5 + parent: 2 + - uid: 21709 components: - type: Transform - pos: -128.5,24.5 - parent: 89 - - uid: 14087 + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 21710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-3.5 - parent: 89 - - uid: 14092 + rot: -1.5707963267948966 rad + pos: -86.5,45.5 + parent: 2 + - uid: 21711 components: - type: Transform - pos: 45.5,-10.5 - parent: 89 - - uid: 14093 + rot: -1.5707963267948966 rad + pos: -86.5,46.5 + parent: 2 + - uid: 21712 components: - type: Transform - pos: 44.5,-10.5 - parent: 89 - - uid: 14094 + rot: -1.5707963267948966 rad + pos: -86.5,47.5 + parent: 2 + - uid: 21713 components: - type: Transform - pos: 43.5,-10.5 - parent: 89 - - uid: 14179 + rot: -1.5707963267948966 rad + pos: -82.5,41.5 + parent: 2 + - uid: 21714 components: - type: Transform - pos: 41.5,-16.5 - parent: 89 - - uid: 14194 + rot: -1.5707963267948966 rad + pos: -82.5,45.5 + parent: 2 + - uid: 21715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 89 - - uid: 14294 + rot: -1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - uid: 21716 components: - type: Transform - pos: 37.5,-19.5 - parent: 89 - - uid: 14559 + rot: -1.5707963267948966 rad + pos: -82.5,47.5 + parent: 2 + - uid: 21717 components: - type: Transform - pos: 35.5,-18.5 - parent: 89 - - uid: 14569 + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - uid: 21718 components: - type: Transform - pos: 53.5,-18.5 - parent: 89 - - uid: 14576 + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 21719 components: - type: Transform - pos: -132.5,24.5 - parent: 89 - - uid: 14579 + rot: -1.5707963267948966 rad + pos: -87.5,35.5 + parent: 2 + - uid: 21720 components: - type: Transform - pos: -133.5,24.5 - parent: 89 - - uid: 14640 + rot: -1.5707963267948966 rad + pos: -88.5,31.5 + parent: 2 + - uid: 21721 components: - type: Transform - pos: -133.5,23.5 - parent: 89 - - uid: 14641 + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 2 + - uid: 21722 components: - type: Transform - pos: -133.5,22.5 - parent: 89 - - uid: 14642 + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 21723 components: - type: Transform - pos: -133.5,20.5 - parent: 89 - - uid: 14844 + rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 2 + - uid: 21724 components: - type: Transform - pos: 30.5,27.5 - parent: 89 - - uid: 14848 + rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 21725 components: - type: Transform - pos: 16.5,27.5 - parent: 89 - - uid: 14875 + rot: -1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - uid: 21726 components: - type: Transform - pos: -10.5,-37.5 - parent: 89 - - uid: 14876 + rot: -1.5707963267948966 rad + pos: -116.5,-20.5 + parent: 2 + - uid: 21727 components: - type: Transform - pos: -11.5,-37.5 - parent: 89 - - uid: 14877 + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - uid: 21728 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14878 + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 21729 components: - type: Transform - pos: -13.5,-37.5 - parent: 89 - - uid: 14964 + rot: -1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 21730 components: - type: Transform - pos: -116.5,-13.5 - parent: 89 - - uid: 15026 + rot: -1.5707963267948966 rad + pos: 32.5,33.5 + parent: 2 + - uid: 21731 components: - type: Transform - pos: 22.5,32.5 - parent: 89 - - uid: 15039 + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 21732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 89 - - uid: 15072 + pos: -129.5,24.5 + parent: 2 + - uid: 21733 components: - type: Transform - pos: 33.5,24.5 - parent: 89 - - uid: 15073 + rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 + - uid: 21734 components: - type: Transform - pos: 33.5,25.5 - parent: 89 - - uid: 15075 + rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 21735 components: - type: Transform - pos: 33.5,27.5 - parent: 89 - - uid: 15076 + rot: -1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - uid: 21736 components: - type: Transform - pos: 33.5,28.5 - parent: 89 - - uid: 15085 + rot: -1.5707963267948966 rad + pos: -128.5,22.5 + parent: 2 + - uid: 21737 components: - type: Transform - pos: 4.5,35.5 - parent: 89 - - uid: 15087 + rot: -1.5707963267948966 rad + pos: 33.5,31.5 + parent: 2 + - uid: 21738 components: - type: Transform - pos: 23.5,26.5 - parent: 89 - - uid: 15088 + rot: -1.5707963267948966 rad + pos: -11.5,25.5 + parent: 2 + - uid: 21739 components: - type: Transform - pos: 33.5,30.5 - parent: 89 - - uid: 15094 + rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 2 + - uid: 21740 components: - type: Transform - pos: 18.5,27.5 - parent: 89 - - uid: 15097 + rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - uid: 21741 components: - type: Transform - pos: 31.5,27.5 - parent: 89 - - uid: 15107 + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - uid: 21742 components: - type: Transform - pos: 20.5,27.5 - parent: 89 - - uid: 15153 + rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - uid: 21743 components: - type: Transform - pos: 17.5,27.5 - parent: 89 - - uid: 15167 + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 21744 components: - type: Transform - pos: 15.5,28.5 - parent: 89 - - uid: 15168 + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 21745 components: - type: Transform - pos: 15.5,30.5 - parent: 89 - - uid: 15169 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 21746 components: - type: Transform - pos: 15.5,29.5 - parent: 89 - - uid: 15172 + rot: -1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - uid: 21747 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 15179 + rot: -1.5707963267948966 rad + pos: -128.5,23.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 26.5,28.5 - parent: 89 - - uid: 15190 + rot: -1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 21749 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 89 - - uid: 15210 + pos: -132.5,24.5 + parent: 2 + - uid: 21750 components: - type: Transform - pos: -115.5,-17.5 - parent: 89 - - uid: 15244 + rot: -1.5707963267948966 rad + pos: -133.5,23.5 + parent: 2 + - uid: 21751 components: - type: Transform - pos: 29.5,27.5 - parent: 89 - - uid: 15300 + rot: -1.5707963267948966 rad + pos: -133.5,22.5 + parent: 2 + - uid: 21752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,10.5 - parent: 89 - - uid: 15305 + pos: -133.5,20.5 + parent: 2 + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 89 - - uid: 15313 + pos: -10.5,-37.5 + parent: 2 + - uid: 21754 components: - type: Transform - pos: -116.5,-19.5 - parent: 89 - - uid: 15334 + rot: -1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 2 + - uid: 21755 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 89 - - uid: 15362 + pos: -12.5,-37.5 + parent: 2 + - uid: 21756 components: - type: Transform - pos: 12.5,28.5 - parent: 89 - - uid: 15378 + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - uid: 21757 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15396 + rot: 3.141592653589793 rad + pos: 45.5,10.5 + parent: 2 + - uid: 21758 components: - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,33.5 - parent: 89 - - uid: 15397 + parent: 2 + - uid: 21759 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 15398 + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 + - uid: 21760 components: - type: Transform - pos: 15.5,31.5 - parent: 89 - - uid: 15399 + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 21761 components: - type: Transform - pos: 10.5,31.5 - parent: 89 - - uid: 15400 + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 21762 components: - type: Transform - pos: 9.5,31.5 - parent: 89 - - uid: 15416 + rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 2 + - uid: 21763 components: - type: Transform - pos: 10.5,28.5 - parent: 89 - - uid: 15424 + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - uid: 21764 components: - type: Transform - pos: 15.5,36.5 - parent: 89 - - uid: 15428 + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 21765 components: - type: Transform - pos: 20.5,33.5 - parent: 89 - - uid: 15429 + rot: -1.5707963267948966 rad + pos: -116.5,-16.5 + parent: 2 + - uid: 21766 components: - type: Transform - pos: 17.5,33.5 - parent: 89 - - uid: 15432 + rot: -1.5707963267948966 rad + pos: -118.5,-16.5 + parent: 2 + - uid: 21767 components: - type: Transform - pos: -10.5,25.5 - parent: 89 - - uid: 15473 + rot: -1.5707963267948966 rad + pos: -117.5,-16.5 + parent: 2 + - uid: 21768 components: - type: Transform - pos: 12.5,25.5 - parent: 89 - - uid: 15485 + rot: -1.5707963267948966 rad + pos: -127.5,-12.5 + parent: 2 + - uid: 21769 components: - type: Transform - pos: -110.5,-18.5 - parent: 89 - - uid: 15490 + rot: -1.5707963267948966 rad + pos: -111.5,-21.5 + parent: 2 + - uid: 21770 components: - type: Transform - pos: 12.5,30.5 - parent: 89 - - uid: 15537 + rot: -1.5707963267948966 rad + pos: -112.5,-21.5 + parent: 2 + - uid: 21771 components: - type: Transform - pos: 9.5,30.5 - parent: 89 - - uid: 15540 + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 21772 components: - type: Transform - pos: 12.5,31.5 - parent: 89 - - uid: 15546 + rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2 + - uid: 21773 components: - type: Transform - pos: 15.5,34.5 - parent: 89 - - uid: 15610 + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 21774 components: - type: Transform - pos: -116.5,-15.5 - parent: 89 - - uid: 15612 + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - uid: 21775 components: - type: Transform - pos: -110.5,-17.5 - parent: 89 - - uid: 15613 + rot: -1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 21776 components: - type: Transform - pos: -116.5,-18.5 - parent: 89 - - uid: 15614 + rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - uid: 21777 components: - type: Transform - pos: -115.5,-18.5 - parent: 89 - - uid: 15615 + rot: -1.5707963267948966 rad + pos: -113.5,-21.5 + parent: 2 + - uid: 21778 components: - type: Transform - pos: -116.5,-17.5 - parent: 89 - - uid: 15616 + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - uid: 21779 components: - type: Transform - pos: -116.5,-16.5 - parent: 89 - - uid: 15617 + pos: -2.5,-42.5 + parent: 2 + - uid: 21780 components: - type: Transform - pos: -115.5,-15.5 - parent: 89 - - uid: 15618 + rot: -1.5707963267948966 rad + pos: 53.5,-17.5 + parent: 2 + - uid: 21781 components: - type: Transform - pos: -115.5,-16.5 - parent: 89 - - uid: 15620 + rot: -1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 21782 components: - type: Transform - pos: -111.5,-16.5 - parent: 89 - - uid: 15625 + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 21783 components: - type: Transform - pos: -110.5,-14.5 - parent: 89 - - uid: 15630 + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 21784 components: - type: Transform - pos: -116.5,-12.5 - parent: 89 - - uid: 15632 + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - uid: 21785 components: - type: Transform - pos: -112.5,-12.5 - parent: 89 - - uid: 15633 + rot: -1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + - uid: 21786 components: - type: Transform - pos: -113.5,-12.5 - parent: 89 - - uid: 15634 + rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,49.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,49.5 + parent: 2 + - uid: 21789 components: - type: Transform - pos: -114.5,-12.5 - parent: 89 - - uid: 15635 + rot: -1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + - uid: 21790 components: - type: Transform - pos: -116.5,-14.5 - parent: 89 - - uid: 15699 + rot: -1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - uid: 21791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-16.5 - parent: 89 - - uid: 15700 + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - uid: 21792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-16.5 - parent: 89 - - uid: 15701 + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 2 + - uid: 21793 components: - type: Transform - pos: -117.5,-23.5 - parent: 89 - - uid: 15703 + rot: -1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 2 + - uid: 21794 components: - type: Transform - pos: -114.5,-21.5 - parent: 89 - - uid: 15704 + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - uid: 21795 components: - type: Transform - pos: -127.5,-12.5 - parent: 89 - - uid: 15705 + rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 21796 components: - type: Transform - pos: -111.5,-24.5 - parent: 89 - - uid: 15706 + rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 21797 components: - type: Transform - pos: -111.5,-23.5 - parent: 89 - - uid: 15707 + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 21798 components: - type: Transform - pos: -113.5,-24.5 - parent: 89 - - uid: 15708 + rot: -1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + - uid: 21799 components: - type: Transform - pos: -111.5,-21.5 - parent: 89 - - uid: 15709 + rot: -1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 21800 components: - type: Transform - pos: -115.5,-23.5 - parent: 89 - - uid: 15710 + rot: -1.5707963267948966 rad + pos: 59.5,-29.5 + parent: 2 + - uid: 21801 components: - type: Transform - pos: -112.5,-21.5 - parent: 89 - - uid: 15711 + rot: -1.5707963267948966 rad + pos: 54.5,-34.5 + parent: 2 + - uid: 21802 components: - type: Transform - pos: -117.5,-24.5 - parent: 89 - - uid: 15712 + rot: -1.5707963267948966 rad + pos: 59.5,-28.5 + parent: 2 + - uid: 21803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-20.5 - parent: 89 - - uid: 15713 + rot: -1.5707963267948966 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 21804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-20.5 - parent: 89 - - uid: 15714 + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 + - uid: 21805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-18.5 - parent: 89 - - uid: 15715 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 21806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-18.5 - parent: 89 - - uid: 15781 + rot: -1.5707963267948966 rad + pos: -115.5,-21.5 + parent: 2 + - uid: 21807 components: - type: Transform - pos: 9.5,29.5 - parent: 89 - - uid: 15878 + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 21808 components: - type: Transform - pos: 11.5,31.5 - parent: 89 - - uid: 15919 + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 21809 components: - type: Transform - pos: 35.5,24.5 - parent: 89 - - uid: 15921 + rot: -1.5707963267948966 rad + pos: -130.5,-13.5 + parent: 2 + - uid: 21810 components: - type: Transform - pos: 34.5,28.5 - parent: 89 - - uid: 15922 + rot: -1.5707963267948966 rad + pos: -127.5,-13.5 + parent: 2 + - uid: 21811 components: - type: Transform - pos: 36.5,24.5 - parent: 89 - - uid: 15923 + rot: -1.5707963267948966 rad + pos: -129.5,-14.5 + parent: 2 + - uid: 21812 components: - type: Transform - pos: 37.5,24.5 - parent: 89 - - uid: 15924 + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 21813 components: - type: Transform - pos: 38.5,24.5 - parent: 89 - - uid: 15925 + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - uid: 21814 components: - type: Transform - pos: 38.5,23.5 - parent: 89 - - uid: 15926 + rot: -1.5707963267948966 rad + pos: 22.5,38.5 + parent: 2 + - uid: 21815 components: - type: Transform - pos: 38.5,22.5 - parent: 89 - - uid: 15927 + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + - uid: 21816 components: - type: Transform - pos: 38.5,21.5 - parent: 89 - - uid: 15989 + rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - uid: 21817 components: - type: Transform - pos: 15.5,25.5 - parent: 89 - - uid: 16128 + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + - uid: 21818 components: - type: Transform - pos: 12.5,27.5 - parent: 89 - - uid: 16171 + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 2 + - uid: 21819 components: - type: Transform - pos: 12.5,24.5 - parent: 89 - - uid: 16270 + rot: -1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + - uid: 21820 components: - type: Transform - pos: 11.5,-20.5 - parent: 89 - - uid: 16272 + rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + - uid: 21821 components: - type: Transform - pos: 35.5,28.5 - parent: 89 - - uid: 16273 + rot: -1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 + - uid: 21822 components: - type: Transform - pos: 36.5,28.5 - parent: 89 - - uid: 16436 + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - uid: 21823 components: - type: Transform - pos: -113.5,-21.5 - parent: 89 - - uid: 16551 + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - uid: 21824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 89 - - uid: 16552 + pos: 26.5,40.5 + parent: 2 + - uid: 21825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 89 - - uid: 16561 + pos: 26.5,41.5 + parent: 2 + - uid: 21826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 89 - - uid: 16714 + pos: 26.5,42.5 + parent: 2 + - uid: 21827 components: - type: Transform - pos: 27.5,37.5 - parent: 89 - - uid: 16717 + rot: -1.5707963267948966 rad + pos: 23.5,38.5 + parent: 2 + - uid: 21828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 89 - - uid: 16862 + pos: 25.5,38.5 + parent: 2 + - uid: 21829 components: - type: Transform - pos: -2.5,-43.5 - parent: 89 - - uid: 16876 + rot: -1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - uid: 21830 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 89 - - uid: 16877 + pos: 22.5,43.5 + parent: 2 + - uid: 21831 components: - type: Transform - pos: -2.5,-42.5 - parent: 89 - - uid: 16987 + rot: -1.5707963267948966 rad + pos: 59.5,-32.5 + parent: 2 + - uid: 21832 components: - type: Transform - pos: -118.5,-22.5 - parent: 89 - - uid: 16988 + rot: -1.5707963267948966 rad + pos: 59.5,-26.5 + parent: 2 + - uid: 21833 components: - type: Transform - pos: -115.5,-24.5 - parent: 89 - - uid: 16994 + rot: -1.5707963267948966 rad + pos: 59.5,-27.5 + parent: 2 + - uid: 21834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 89 - - uid: 16997 + pos: 36.5,-28.5 + parent: 2 + - uid: 21835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 89 - - uid: 17013 + pos: 56.5,-18.5 + parent: 2 + - uid: 21836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-17.5 - parent: 89 - - uid: 17014 + pos: 38.5,-27.5 + parent: 2 + - uid: 21837 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 89 - - uid: 17015 + pos: 58.5,-16.5 + parent: 2 + - uid: 21838 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 89 - - uid: 17021 + pos: 57.5,-16.5 + parent: 2 + - uid: 21839 components: - type: Transform - pos: 37.5,-25.5 - parent: 89 - - uid: 17022 + rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 21840 components: - type: Transform - pos: 37.5,-24.5 - parent: 89 - - uid: 17045 + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - uid: 21841 components: - type: Transform - pos: 42.5,-21.5 - parent: 89 - - uid: 17046 + rot: -1.5707963267948966 rad + pos: 39.5,-27.5 + parent: 2 + - uid: 21842 components: - type: Transform - pos: 43.5,-21.5 - parent: 89 - - uid: 17051 + rot: -1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - uid: 21843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-27.5 - parent: 89 - - uid: 17054 + rot: -1.5707963267948966 rad + pos: 44.5,18.5 + parent: 2 + - uid: 21844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-26.5 - parent: 89 - - uid: 17057 + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 21845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-34.5 - parent: 89 - - uid: 17058 + pos: 39.5,25.5 + parent: 2 + - uid: 21846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 89 - - uid: 17059 + pos: 10.5,-20.5 + parent: 2 + - uid: 21847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 89 - - uid: 17060 + pos: 43.5,18.5 + parent: 2 + - uid: 21848 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 89 - - uid: 17061 + pos: 37.5,25.5 + parent: 2 + - uid: 21849 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 89 - - uid: 17086 + pos: 44.5,21.5 + parent: 2 + - uid: 21850 components: - type: Transform - pos: -86.5,23.5 - parent: 89 - - uid: 17171 + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - uid: 21851 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 89 - - uid: 17223 + pos: 39.5,24.5 + parent: 2 + - uid: 21852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,16.5 - parent: 89 - - uid: 17250 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 21853 components: - type: Transform - pos: -55.5,49.5 - parent: 89 - - uid: 17251 + rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 21854 components: - type: Transform - pos: -54.5,49.5 - parent: 89 - - uid: 17647 + rot: 3.141592653589793 rad + pos: 49.5,12.5 + parent: 2 + - uid: 21855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,52.5 - parent: 89 - - uid: 17648 + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + - uid: 21856 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,52.5 - parent: 89 - - uid: 17656 + pos: 43.5,22.5 + parent: 2 + - uid: 21857 components: - type: Transform - pos: 45.5,18.5 - parent: 89 - - uid: 17668 + rot: -1.5707963267948966 rad + pos: 44.5,22.5 + parent: 2 + - uid: 21858 components: - type: Transform - pos: 45.5,21.5 - parent: 89 - - uid: 17687 + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 + parent: 2 + - uid: 21859 components: - type: Transform - pos: 26.5,33.5 - parent: 89 - - uid: 17695 + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 21860 components: - type: Transform - pos: 43.5,20.5 - parent: 89 - - uid: 18144 + rot: -1.5707963267948966 rad + pos: 52.5,-34.5 + parent: 2 + - uid: 21861 components: - type: Transform - pos: 52.5,-7.5 - parent: 89 - - uid: 18161 + rot: -1.5707963267948966 rad + pos: 49.5,-34.5 + parent: 2 + - uid: 21862 components: - type: Transform - pos: 34.5,-18.5 - parent: 89 - - uid: 18162 + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - uid: 21863 components: - type: Transform - pos: 34.5,-19.5 - parent: 89 - - uid: 18163 + rot: -1.5707963267948966 rad + pos: 51.5,-34.5 + parent: 2 + - uid: 21864 components: - type: Transform - pos: 34.5,-20.5 - parent: 89 - - uid: 18164 + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 2 + - uid: 21865 components: - type: Transform - pos: 34.5,-21.5 - parent: 89 - - uid: 18165 + rot: -1.5707963267948966 rad + pos: 58.5,-24.5 + parent: 2 + - uid: 21866 components: - type: Transform - pos: 35.5,-21.5 - parent: 89 - - uid: 18166 + rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 2 + - uid: 21867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 89 - - uid: 18167 + pos: -44.5,26.5 + parent: 2 + - uid: 21868 components: - type: Transform - pos: 36.5,-21.5 - parent: 89 - - uid: 18168 + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 21869 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 89 - - uid: 18170 + pos: -42.5,26.5 + parent: 2 + - uid: 21870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 89 - - uid: 18171 + pos: -47.5,25.5 + parent: 2 + - uid: 21871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-18.5 - parent: 89 - - uid: 18187 + rot: -1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 21872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-29.5 - parent: 89 - - uid: 18188 + rot: -1.5707963267948966 rad + pos: -47.5,23.5 + parent: 2 + - uid: 21873 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-34.5 - parent: 89 - - uid: 18194 + pos: 35.5,-28.5 + parent: 2 + - uid: 21874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-28.5 - parent: 89 - - uid: 18195 + rot: -1.5707963267948966 rad + pos: 58.5,-19.5 + parent: 2 + - uid: 21875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-30.5 - parent: 89 - - uid: 18202 + rot: -1.5707963267948966 rad + pos: 58.5,-21.5 + parent: 2 + - uid: 21876 components: - type: Transform - pos: 43.5,15.5 - parent: 89 - - uid: 18228 + rot: -1.5707963267948966 rad + pos: 59.5,-25.5 + parent: 2 + - uid: 21877 components: - type: Transform - pos: 44.5,15.5 - parent: 89 - - uid: 18345 + rot: -1.5707963267948966 rad + pos: 58.5,-23.5 + parent: 2 + - uid: 21878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,23.5 - parent: 89 - - uid: 18429 + rot: -1.5707963267948966 rad + pos: 58.5,-22.5 + parent: 2 + - uid: 21879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 89 - - uid: 18430 + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 + parent: 2 + - uid: 21880 components: - type: Transform - pos: 9.5,-23.5 - parent: 89 - - uid: 18439 + rot: -1.5707963267948966 rad + pos: 58.5,-20.5 + parent: 2 + - uid: 21881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 89 - - uid: 18650 + pos: 34.5,-28.5 + parent: 2 + - uid: 21882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 89 - - uid: 18710 + pos: 33.5,-21.5 + parent: 2 + - uid: 21883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 89 - - uid: 18711 + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 21884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 89 - - uid: 18975 + pos: 18.5,28.5 + parent: 2 + - uid: 21885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 89 - - uid: 18984 + pos: 30.5,28.5 + parent: 2 + - uid: 21886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 89 - - uid: 19252 + pos: 31.5,28.5 + parent: 2 + - uid: 21887 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 19340 + pos: 29.5,28.5 + parent: 2 + - uid: 21888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 89 - - uid: 19546 + pos: 27.5,28.5 + parent: 2 + - uid: 21889 components: - type: Transform - pos: -0.5,-26.5 - parent: 89 - - uid: 19567 + pos: 21.5,32.5 + parent: 2 + - uid: 21890 components: - type: Transform - pos: -113.5,-23.5 - parent: 89 - - uid: 19569 + pos: 20.5,31.5 + parent: 2 + - uid: 21891 components: - type: Transform - pos: -115.5,-21.5 - parent: 89 - - uid: 19570 + pos: 28.5,31.5 + parent: 2 + - uid: 21892 components: - type: Transform - pos: -116.5,-21.5 - parent: 89 - - uid: 19590 + pos: 32.5,31.5 + parent: 2 + - uid: 21893 components: - type: Transform - pos: 22.5,-18.5 - parent: 89 - - uid: 19718 + pos: 16.5,30.5 + parent: 2 + - uid: 21894 components: - type: Transform - pos: 22.5,33.5 - parent: 89 - - uid: 19764 + pos: 17.5,28.5 + parent: 2 + - uid: 21895 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-13.5 - parent: 89 - - uid: 19765 + pos: 28.5,29.5 + parent: 2 + - uid: 21896 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-14.5 - parent: 89 - - uid: 19766 + pos: 32.5,28.5 + parent: 2 + - uid: 21897 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-14.5 - parent: 89 - - uid: 19767 + pos: 32.5,29.5 + parent: 2 + - uid: 21898 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-13.5 - parent: 89 - - uid: 19768 + pos: 28.5,28.5 + parent: 2 + - uid: 21899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-14.5 - parent: 89 - - uid: 19781 + pos: 27.5,32.5 + parent: 2 + - uid: 21900 components: - type: Transform - pos: 23.5,-18.5 - parent: 89 - - uid: 19793 + pos: 32.5,32.5 + parent: 2 + - uid: 21901 components: - type: Transform - pos: 21.5,33.5 - parent: 89 - - uid: 19815 + pos: 30.5,32.5 + parent: 2 + - uid: 21902 components: - type: Transform - pos: 21.5,34.5 - parent: 89 - - uid: 19823 + pos: 29.5,32.5 + parent: 2 + - uid: 21903 components: - type: Transform - pos: 22.5,38.5 - parent: 89 - - uid: 19838 + pos: 31.5,32.5 + parent: 2 + - uid: 21904 components: - type: Transform - pos: 27.5,34.5 - parent: 89 - - uid: 19842 + pos: 28.5,32.5 + parent: 2 + - uid: 21905 components: - type: Transform - pos: 21.5,37.5 - parent: 89 - - uid: 19847 + pos: 16.5,31.5 + parent: 2 + - uid: 21906 components: - type: Transform - pos: 27.5,33.5 - parent: 89 - - uid: 19849 + pos: 19.5,32.5 + parent: 2 + - uid: 21907 components: - type: Transform - pos: 26.5,38.5 - parent: 89 - - uid: 19850 + pos: 18.5,32.5 + parent: 2 + - uid: 21908 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 22.5,39.5 - parent: 89 - - uid: 19851 + pos: 16.5,28.5 + parent: 2 + - uid: 21909 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 22.5,40.5 - parent: 89 - - uid: 19852 + pos: 16.5,29.5 + parent: 2 + - uid: 21910 components: - type: Transform - pos: 22.5,41.5 - parent: 89 - - uid: 19853 + pos: 20.5,32.5 + parent: 2 + - uid: 21911 components: - type: Transform - pos: 22.5,42.5 - parent: 89 - - uid: 19854 + pos: 17.5,32.5 + parent: 2 + - uid: 21912 components: - type: Transform - pos: 26.5,39.5 - parent: 89 - - uid: 19855 + pos: 16.5,32.5 + parent: 2 + - uid: 21913 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 26.5,40.5 - parent: 89 - - uid: 19856 + pos: 20.5,29.5 + parent: 2 + - uid: 21914 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 26.5,41.5 - parent: 89 - - uid: 19857 + pos: 20.5,28.5 + parent: 2 + - uid: 21915 components: - type: Transform - pos: 26.5,42.5 - parent: 89 - - uid: 19858 + pos: 19.5,28.5 + parent: 2 + - uid: 21916 components: - type: Transform - pos: 23.5,38.5 - parent: 89 - - uid: 19859 + pos: 21.5,28.5 + parent: 2 + - uid: 21917 components: - type: Transform - pos: 25.5,38.5 - parent: 89 - - uid: 19862 + pos: 32.5,30.5 + parent: 2 + - uid: 21918 components: - type: Transform - pos: 26.5,43.5 - parent: 89 - - uid: 19864 + rot: -1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 21919 components: - type: Transform - pos: 22.5,43.5 - parent: 89 - - uid: 20005 + rot: -1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 2 + - uid: 21920 components: - type: Transform - pos: -47.5,26.5 - parent: 89 - - uid: 20104 + rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 2 + - uid: 21921 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-32.5 - parent: 89 - - uid: 20184 + pos: 45.5,2.5 + parent: 2 + - uid: 21922 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-26.5 - parent: 89 - - uid: 20203 + pos: -3.5,-45.5 + parent: 2 + - uid: 21923 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-27.5 - parent: 89 - - uid: 20210 + pos: -1.5,-43.5 + parent: 2 + - uid: 21924 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-27.5 - parent: 89 - - uid: 20246 + pos: -1.5,-44.5 + parent: 2 + - uid: 21925 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,0.5 - parent: 89 - - uid: 20299 - components: - - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 20362 + pos: -1.5,-45.5 + parent: 2 + - uid: 21926 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 20386 + rot: 1.5707963267948966 rad + pos: -107.5,-22.5 + parent: 2 + - uid: 21927 components: - type: Transform - pos: 36.5,-28.5 - parent: 89 - - uid: 20388 + rot: 1.5707963267948966 rad + pos: -110.5,-22.5 + parent: 2 + - uid: 21928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 89 - - uid: 20393 + pos: -114.5,22.5 + parent: 2 + - uid: 21929 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-18.5 - parent: 89 - - uid: 20396 + pos: -109.5,22.5 + parent: 2 + - uid: 21930 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-17.5 - parent: 89 - - uid: 20414 + pos: -99.5,28.5 + parent: 2 + - uid: 21931 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-27.5 - parent: 89 - - uid: 20421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 89 - - uid: 20422 + pos: -102.5,22.5 + parent: 2 + - uid: 21932 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-16.5 - parent: 89 - - uid: 20426 + pos: -112.5,22.5 + parent: 2 + - uid: 21933 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-16.5 - parent: 89 - - uid: 20778 + pos: -107.5,22.5 + parent: 2 + - uid: 21934 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 89 - - uid: 20779 + pos: -129.5,-13.5 + parent: 2 + - uid: 21935 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,16.5 - parent: 89 - - uid: 20782 + pos: -89.5,31.5 + parent: 2 + - uid: 21936 components: - type: Transform - pos: 40.5,15.5 - parent: 89 - - uid: 20801 + rot: 3.141592653589793 rad + pos: -86.5,44.5 + parent: 2 + - uid: 21937 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,51.5 - parent: 89 - - uid: 20802 + pos: -86.5,43.5 + parent: 2 + - uid: 21938 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,51.5 - parent: 89 - - uid: 20808 + pos: -86.5,42.5 + parent: 2 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-27.5 - parent: 89 - - uid: 20853 + pos: -86.5,41.5 + parent: 2 + - uid: 21940 components: - type: Transform - pos: -85.5,-5.5 - parent: 89 - - uid: 20856 + rot: 3.141592653589793 rad + pos: -86.5,40.5 + parent: 2 + - uid: 23888 components: - type: Transform - pos: 50.5,15.5 - parent: 89 - - uid: 20866 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 89 - - uid: 20871 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 23711 + - uid: 23890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,18.5 - parent: 89 - - uid: 20872 + pos: 5.5,-3.5 + parent: 23711 + - uid: 23891 components: - type: Transform - pos: 44.5,18.5 - parent: 89 - - uid: 20874 + pos: 2.5,-3.5 + parent: 23711 + - uid: 23892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,18.5 - parent: 89 - - uid: 20916 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23711 + - uid: 23893 components: - type: Transform - pos: 9.5,-20.5 - parent: 89 - - uid: 20920 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 23711 + - uid: 23894 components: - type: Transform - pos: 38.5,18.5 - parent: 89 - - uid: 20924 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23711 + - uid: 23895 components: - type: Transform - pos: 39.5,25.5 - parent: 89 - - uid: 20943 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 23711 + - uid: 23896 components: - type: Transform - pos: 10.5,-20.5 - parent: 89 - - uid: 20953 + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 23711 + - uid: 23897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 89 - - uid: 20955 + pos: 0.5,-4.5 + parent: 23711 + - uid: 23898 components: - type: Transform - pos: 37.5,25.5 - parent: 89 - - uid: 20962 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 23711 + - uid: 23899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,21.5 - parent: 89 - - uid: 20967 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 89 - - uid: 20972 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 23711 + - uid: 23902 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-26.5 - parent: 89 - - uid: 20973 + pos: 6.5,-11.5 + parent: 23711 + - uid: 23903 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-26.5 - parent: 89 - - uid: 20974 + pos: 5.5,-13.5 + parent: 23711 + - uid: 23904 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-25.5 - parent: 89 - - uid: 20981 + pos: 1.5,-13.5 + parent: 23711 + - uid: 23905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 - parent: 89 - - uid: 20995 + pos: 2.5,-12.5 + parent: 23711 + - uid: 23906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,24.5 - parent: 89 - - uid: 20996 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23907 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23711 + - uid: 23908 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 23711 + - uid: 23909 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 89 - - uid: 21001 + pos: 1.5,-12.5 + parent: 23711 + - uid: 24265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 89 - - uid: 21008 + pos: 4.5,2.5 + parent: 23919 + - uid: 24266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,12.5 - parent: 89 - - uid: 21009 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 23919 + - uid: 24267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 89 - - uid: 21012 + pos: 6.5,-0.5 + parent: 23919 + - uid: 24268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-32.5 - parent: 89 - - uid: 21044 + pos: 3.5,-0.5 + parent: 23919 + - uid: 24269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,22.5 - parent: 89 - - uid: 21045 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 23919 + - uid: 24270 + components: + - type: Transform + pos: 0.5,4.5 + parent: 23919 + - uid: 24271 + components: + - type: Transform + pos: 0.5,3.5 + parent: 23919 + - uid: 24272 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,22.5 - parent: 89 - - uid: 21061 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 89 - - uid: 21292 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 23919 + - uid: 24274 components: - type: Transform - pos: 52.5,-21.5 - parent: 89 - - uid: 21293 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 23919 + - uid: 24275 components: - type: Transform - pos: 53.5,-21.5 - parent: 89 - - uid: 21294 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23919 + - uid: 24276 components: - type: Transform - pos: 54.5,-21.5 - parent: 89 - - uid: 21295 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23919 + - uid: 24277 components: - type: Transform - pos: 52.5,-27.5 - parent: 89 - - uid: 21314 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 23919 + - uid: 24278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-24.5 - parent: 89 - - uid: 21315 + pos: 8.5,0.5 + parent: 23919 + - uid: 24279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-19.5 - parent: 89 - - uid: 21332 + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 23919 + - uid: 24280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 89 - - uid: 21334 + pos: 0.5,1.5 + parent: 23919 + - uid: 24281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-18.5 - parent: 89 - - uid: 21335 + pos: 1.5,2.5 + parent: 23919 + - uid: 24282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-16.5 - parent: 89 - - uid: 21336 + pos: 8.5,1.5 + parent: 23919 + - uid: 24283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-27.5 - parent: 89 - - uid: 21337 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 23919 + - uid: 24284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-24.5 - parent: 89 - - uid: 21342 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 23919 + - uid: 24285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 89 - - uid: 21343 + pos: 7.5,-1.5 + parent: 23919 + - uid: 24286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-32.5 - parent: 89 - - uid: 21347 + pos: 7.5,-2.5 + parent: 23919 + - uid: 24287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-34.5 - parent: 89 - - uid: 21356 + pos: 7.5,-3.5 + parent: 23919 + - uid: 24288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-34.5 - parent: 89 - - uid: 21363 + pos: 7.5,-4.5 + parent: 23919 + - uid: 24289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-34.5 - parent: 89 - - uid: 21364 + pos: 7.5,-5.5 + parent: 23919 + - uid: 24290 components: - type: Transform - pos: 51.5,-26.5 - parent: 89 - - uid: 21367 + pos: 7.5,-6.5 + parent: 23919 + - uid: 24291 components: - type: Transform - pos: 52.5,-19.5 - parent: 89 - - uid: 21368 + pos: 5.5,2.5 + parent: 23919 + - uid: 24292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 89 - - uid: 21369 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23919 + - uid: 24294 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-34.5 - parent: 89 - - uid: 21378 + pos: 1.5,-10.5 + parent: 23919 + - uid: 24295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-34.5 - parent: 89 - - uid: 21382 + pos: 2.5,-10.5 + parent: 23919 + - uid: 24296 components: - type: Transform - pos: 52.5,-18.5 - parent: 89 - - uid: 21390 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 23919 + - uid: 24297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-33.5 - parent: 89 - - uid: 21458 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 23919 + - uid: 24298 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-27.5 - parent: 89 - - uid: 21460 + pos: 7.5,-10.5 + parent: 23919 + - uid: 24299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 23919 + - uid: 24300 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-24.5 - parent: 89 - - uid: 21480 + pos: 6.5,-11.5 + parent: 23919 + - uid: 24301 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-18.5 - parent: 89 - - uid: 21484 + pos: 2.5,-11.5 + parent: 23919 + - uid: 24302 components: - type: Transform - pos: -45.5,26.5 - parent: 89 - - uid: 21486 + pos: 7.5,-7.5 + parent: 23919 + - uid: 24303 components: - type: Transform - pos: -44.5,26.5 - parent: 89 - - uid: 21487 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 23919 + - uid: 24304 components: - type: Transform - pos: -43.5,26.5 - parent: 89 - - uid: 21488 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 23919 + - uid: 24305 components: - type: Transform - pos: -42.5,26.5 - parent: 89 - - uid: 21489 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23919 + - uid: 24306 components: - type: Transform - pos: -47.5,25.5 - parent: 89 - - uid: 21490 + pos: 1.5,-7.5 + parent: 23919 + - uid: 24307 components: - type: Transform - pos: -47.5,24.5 - parent: 89 - - uid: 21491 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 23919 + - uid: 24308 components: - type: Transform - pos: -47.5,23.5 - parent: 89 - - uid: 21522 + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 23919 + - uid: 24309 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 21523 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23919 + - uid: 24310 components: - type: Transform - pos: 53.5,-27.5 - parent: 89 - - uid: 21525 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 23919 + - uid: 24311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-32.5 - parent: 89 - - uid: 21611 + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 23919 + - uid: 24312 components: - type: Transform - pos: 52.5,-26.5 - parent: 89 - - uid: 21614 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 23919 + - uid: 24313 components: - type: Transform - pos: 33.5,-28.5 - parent: 89 - - uid: 21623 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 23919 + - uid: 24314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-32.5 - parent: 89 - - uid: 21743 + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 23919 + - uid: 24315 components: - type: Transform - pos: 35.5,-28.5 - parent: 89 - - uid: 21747 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 23919 + - uid: 24316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-33.5 - parent: 89 - - uid: 21753 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-26.5 - parent: 89 - - uid: 21754 + pos: 6.5,2.5 + parent: 23919 + - uid: 24318 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 89 - - uid: 21757 + pos: 0.5,-3.5 + parent: 23919 + - uid: 24319 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-31.5 - parent: 89 - - uid: 21758 + pos: 8.5,-4.5 + parent: 23919 + - uid: 24320 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-28.5 - parent: 89 - - uid: 21760 + pos: 8.5,-3.5 + parent: 23919 + - uid: 24321 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-33.5 - parent: 89 - - uid: 21763 + pos: 0.5,-4.5 + parent: 23919 + - uid: 24322 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-29.5 - parent: 89 - - uid: 21766 + pos: 8.5,2.5 + parent: 23919 + - uid: 24323 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-21.5 - parent: 89 - - uid: 21773 + pos: 0.5,2.5 + parent: 23919 + - uid: 24324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-19.5 - parent: 89 - - uid: 21774 + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 23919 + - uid: 24325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-21.5 - parent: 89 - - uid: 21775 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 23919 + - uid: 24326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 89 - - uid: 21776 + pos: 8.5,3.5 + parent: 23919 + - uid: 24327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 89 - - uid: 21788 + pos: 2.5,5.5 + parent: 23919 + - uid: 24328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-25.5 - parent: 89 - - uid: 21789 + pos: 7.5,2.5 + parent: 23919 + - uid: 24329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 89 - - uid: 21790 + pos: 3.5,1.5 + parent: 23919 + - uid: 24330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-22.5 - parent: 89 - - uid: 21814 + pos: 3.5,2.5 + parent: 23919 + - uid: 24429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-17.5 - parent: 89 - - uid: 21820 + pos: 1.5,-0.5 + parent: 24340 + - uid: 24430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-33.5 - parent: 89 - - uid: 21825 + pos: -0.5,-0.5 + parent: 24340 + - uid: 24431 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-32.5 - parent: 89 - - uid: 21828 + pos: -0.5,-4.5 + parent: 24340 + - uid: 24432 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-20.5 - parent: 89 - - uid: 21902 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 21946 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 21956 + pos: -0.5,-5.5 + parent: 24340 + - uid: 24433 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 22116 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 24340 + - uid: 24434 components: - type: Transform - pos: -130.5,-12.5 - parent: 89 - - uid: 22117 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 24340 + - uid: 24435 components: - type: Transform - pos: -130.5,-11.5 - parent: 89 - - uid: 22121 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 24340 + - uid: 24436 components: - type: Transform - pos: -130.5,-10.5 - parent: 89 - - uid: 22351 + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 24340 + - uid: 24437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-24.5 - parent: 89 - - uid: 22355 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 24340 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-24.5 - parent: 89 - - uid: 22359 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 89 - - uid: 24566 + pos: 1.5,-5.5 + parent: 24340 + - uid: 24440 components: - type: Transform - pos: -2.5,-26.5 - parent: 89 - - uid: 25051 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 24340 + - uid: 27908 components: - type: Transform - pos: -16.5,-18.5 - parent: 22565 - - uid: 25052 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 27260 + - uid: 27909 components: - type: Transform - pos: -14.5,-19.5 - parent: 22565 - - uid: 25053 + pos: 0.5,0.5 + parent: 27260 + - uid: 27910 components: - type: Transform - pos: -16.5,-20.5 - parent: 22565 - - uid: 25054 + pos: 0.5,-3.5 + parent: 27260 + - uid: 27911 components: - type: Transform - pos: -14.5,-20.5 - parent: 22565 - - uid: 25055 + pos: 2.5,0.5 + parent: 27260 + - uid: 27912 components: - type: Transform - pos: -14.5,-18.5 - parent: 22565 - - uid: 25056 + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 27260 + - uid: 27913 components: - type: Transform - pos: -16.5,-19.5 - parent: 22565 - - uid: 25057 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 27260 + - uid: 27914 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 25058 + pos: 2.5,-3.5 + parent: 27260 + - uid: 27915 components: - type: Transform - pos: -12.5,-20.5 - parent: 22565 - - uid: 25059 + pos: -1.5,0.5 + parent: 27260 + - uid: 27916 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 25060 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 27260 + - uid: 27917 components: - type: Transform - pos: -18.5,-25.5 - parent: 22565 - - uid: 25061 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 27260 + - uid: 27918 components: - type: Transform - pos: -10.5,-20.5 - parent: 22565 - - uid: 25062 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 27260 + - uid: 27919 components: - type: Transform - pos: -16.5,-27.5 - parent: 22565 - - uid: 25063 + pos: -1.5,-3.5 + parent: 27260 + - uid: 27920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 22565 - - uid: 25064 + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 27260 + - uid: 27921 components: - type: Transform - pos: -18.5,-22.5 - parent: 22565 - - uid: 25065 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 27260 + - uid: 27922 components: - type: Transform - pos: -10.5,-27.5 - parent: 22565 - - uid: 25066 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 27260 + - uid: 27923 components: - type: Transform - pos: -12.5,-19.5 - parent: 22565 - - uid: 25067 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 27260 + - uid: 27924 components: - type: Transform - pos: -10.5,-19.5 - parent: 22565 - - uid: 25068 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 27260 + - uid: 27925 components: - type: Transform - pos: -10.5,-18.5 - parent: 22565 - - uid: 25069 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 27260 + - uid: 27926 components: - type: Transform - pos: -12.5,-18.5 - parent: 22565 - - uid: 25070 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 27260 + - uid: 27927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 22565 - - uid: 25071 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 27260 + - uid: 27928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-17.5 - parent: 22565 - - uid: 25072 + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 27260 + - uid: 27929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 22565 - - uid: 25073 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 27260 + - uid: 27930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-18.5 - parent: 22565 - - uid: 25074 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 27260 + - uid: 27931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 22565 - - uid: 25075 + pos: -3.5,-3.5 + parent: 27260 + - uid: 27932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 22565 - - uid: 25076 + pos: 4.5,0.5 + parent: 27260 + - uid: 27933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 22565 - - uid: 25077 + pos: 6.5,-3.5 + parent: 27260 + - uid: 27934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 22565 - - uid: 25078 + pos: 3.5,-7.5 + parent: 27260 + - uid: 27935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 22565 - - uid: 25079 + pos: -2.5,-4.5 + parent: 27260 + - uid: 27936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 22565 - - uid: 25080 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 27260 + - uid: 27937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 22565 - - uid: 25081 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 27260 + - uid: 27938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 22565 - - uid: 25082 + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 27260 + - uid: 27939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 22565 - - uid: 25083 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 27260 + - uid: 27940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 22565 - - uid: 25084 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 27260 + - uid: 27941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 22565 - - uid: 25085 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 27260 + - uid: 27942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 22565 - - uid: 25086 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 27260 + - uid: 27943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 22565 - - uid: 25087 + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 27260 + - uid: 27944 components: - type: Transform - pos: -16.5,-9.5 - parent: 22565 - - uid: 25088 + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 27260 + - uid: 27945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 22565 - - uid: 25089 + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 27260 + - uid: 27946 components: - type: Transform - pos: -21.5,-10.5 - parent: 22565 - - uid: 25090 + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 27260 + - uid: 27947 components: - type: Transform - pos: -21.5,-11.5 - parent: 22565 - - uid: 25091 + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 27260 + - uid: 27948 components: - type: Transform - pos: -21.5,-12.5 - parent: 22565 - - uid: 25092 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 27260 + - uid: 27949 components: - type: Transform - pos: -21.5,-13.5 - parent: 22565 - - uid: 25093 + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 27260 + - uid: 27950 components: - type: Transform - pos: -20.5,-13.5 - parent: 22565 - - uid: 25094 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 27260 + - uid: 27951 components: - type: Transform - pos: -19.5,-13.5 - parent: 22565 - - uid: 25095 + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 27260 + - uid: 27952 components: - type: Transform - pos: -18.5,-13.5 - parent: 22565 - - uid: 25096 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 27260 + - uid: 27953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 22565 - - uid: 25097 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 + - uid: 27954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 22565 - - uid: 25098 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 27260 + - uid: 27955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 22565 - - uid: 25099 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 27260 + - uid: 27956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 22565 - - uid: 25100 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 27260 + - uid: 27957 components: - type: Transform - pos: -16.5,-13.5 - parent: 22565 - - uid: 25101 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 27260 + - uid: 27958 components: - type: Transform - pos: -16.5,-10.5 - parent: 22565 - - uid: 25102 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 27260 + - uid: 27959 components: - type: Transform - pos: -16.5,-11.5 - parent: 22565 - - uid: 25103 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 27260 + - uid: 27960 components: - type: Transform - pos: -15.5,-13.5 - parent: 22565 - - uid: 25104 + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 27260 + - uid: 27961 components: - type: Transform - pos: -14.5,-13.5 - parent: 22565 - - uid: 25105 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 27260 + - uid: 27962 components: - type: Transform - pos: -13.5,-13.5 - parent: 22565 - - uid: 25106 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 27260 + - uid: 27963 components: - type: Transform - pos: -13.5,-7.5 - parent: 22565 - - uid: 25107 + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27964 components: - type: Transform - pos: -16.5,-8.5 - parent: 22565 - - uid: 25108 + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 27260 + - uid: 27965 components: - type: Transform - pos: -16.5,-7.5 - parent: 22565 - - uid: 25109 + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 27260 + - uid: 27966 components: - type: Transform - pos: -15.5,-7.5 - parent: 22565 - - uid: 25110 + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 27260 + - uid: 27967 components: - type: Transform - pos: -14.5,-7.5 - parent: 22565 - - uid: 25111 + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 27260 + - uid: 27968 components: - type: Transform - pos: -12.5,-13.5 - parent: 22565 - - uid: 25112 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 27260 + - uid: 27969 components: - type: Transform - pos: -12.5,-11.5 - parent: 22565 - - uid: 25113 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 27260 + - uid: 27970 components: - type: Transform - pos: -12.5,-10.5 - parent: 22565 - - uid: 25114 + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 27260 + - uid: 27971 components: - type: Transform - pos: -12.5,-9.5 - parent: 22565 - - uid: 25115 + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 27260 + - uid: 27972 components: - type: Transform - pos: -12.5,-8.5 - parent: 22565 - - uid: 25116 + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 27260 + - uid: 27973 components: - type: Transform - pos: -12.5,-7.5 - parent: 22565 - - uid: 25355 + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 27260 + - uid: 27974 components: - type: Transform - pos: 34.5,-28.5 - parent: 89 - - uid: 25358 + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 27260 + - uid: 27975 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 89 - - uid: 25359 + pos: 7.5,-14.5 + parent: 27260 + - uid: 27976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 89 - - uid: 25362 + pos: 7.5,-13.5 + parent: 27260 + - uid: 27977 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-22.5 - parent: 89 -- proto: WallReinforcedDiagonal - entities: - - uid: 3011 + pos: 7.5,-12.5 + parent: 27260 + - uid: 27978 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 89 - - uid: 7453 + pos: 7.5,-11.5 + parent: 27260 + - uid: 27979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,28.5 - parent: 89 - - uid: 14742 + pos: 7.5,-10.5 + parent: 27260 + - uid: 27980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,9.5 - parent: 89 - - uid: 17883 + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 27260 + - uid: 27981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,52.5 - parent: 89 - - uid: 17884 + pos: 7.5,-8.5 + parent: 27260 + - uid: 27982 components: - type: Transform - pos: -31.5,52.5 - parent: 89 - - uid: 17887 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 27260 + - uid: 27983 components: - type: Transform - pos: 51.5,16.5 - parent: 89 - - uid: 17888 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 27260 + - uid: 27984 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,9.5 - parent: 89 - - uid: 17890 + pos: 5.5,0.5 + parent: 27260 + - uid: 27985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,16.5 - parent: 89 - - uid: 17891 - components: - - type: Transform - pos: 53.5,7.5 - parent: 89 - - uid: 17892 + pos: -2.5,-14.5 + parent: 27260 + - uid: 27986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,1.5 - parent: 89 - - uid: 17905 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 27260 + - uid: 27987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 89 - - uid: 17909 + pos: -4.5,-14.5 + parent: 27260 + - uid: 27988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-7.5 - parent: 89 - - uid: 17910 + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 27260 + - uid: 27989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,29.5 - parent: 89 - - uid: 19802 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 27260 + - uid: 27990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-19.5 - parent: 89 - - uid: 19804 + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 27260 + - uid: 27991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-19.5 - parent: 89 - - uid: 19805 + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 27260 + - uid: 27992 components: - type: Transform - pos: -70.5,31.5 - parent: 89 - - uid: 19844 + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 27260 + - uid: 27993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,29.5 - parent: 89 - - uid: 19848 + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 27260 + - uid: 27994 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,31.5 - parent: 89 - - uid: 19860 + pos: -6.5,-9.5 + parent: 27260 + - uid: 27995 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,38.5 - parent: 89 - - uid: 19861 + pos: -6.5,-8.5 + parent: 27260 + - uid: 27996 components: - type: Transform - pos: -70.5,38.5 - parent: 89 - - uid: 20099 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 27260 + - uid: 27997 components: - type: Transform - pos: -101.5,30.5 - parent: 89 - - uid: 20247 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 27260 + - uid: 27998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,36.5 - parent: 89 - - uid: 20257 + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 27260 + - uid: 27999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 - parent: 89 - - uid: 20381 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 27260 + - uid: 28000 components: - type: Transform - pos: -9.5,47.5 - parent: 89 - - uid: 20857 + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 27260 + - uid: 28001 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-29.5 - parent: 89 - - uid: 20861 + pos: 7.5,-15.5 + parent: 27260 + - uid: 28002 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,36.5 - parent: 89 - - uid: 20869 + pos: 2.5,-14.5 + parent: 27260 + - uid: 28003 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,38.5 - parent: 89 - - uid: 20879 + pos: -6.5,-15.5 + parent: 27260 + - uid: 28004 components: - type: Transform - pos: -68.5,46.5 - parent: 89 - - uid: 20889 + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 27260 + - uid: 28005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,49.5 - parent: 89 - - uid: 20893 + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 27260 + - uid: 28006 components: - type: Transform - pos: -59.5,49.5 - parent: 89 - - uid: 20894 + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 27260 + - uid: 28007 components: - type: Transform - pos: -67.5,49.5 - parent: 89 - - uid: 20895 + rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 27260 + - uid: 28008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,49.5 - parent: 89 - - uid: 20896 + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 27260 + - uid: 28009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 89 - - uid: 20897 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 27260 + - uid: 28010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 89 - - uid: 20898 + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 27260 + - uid: 28011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,36.5 - parent: 89 - - uid: 20900 - components: - - type: Transform - pos: -89.5,40.5 - parent: 89 - - uid: 20901 + pos: 7.5,0.5 + parent: 27260 + - uid: 28012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,48.5 - parent: 89 - - uid: 20902 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 27260 + - uid: 28013 components: - type: Transform - pos: -86.5,48.5 - parent: 89 - - uid: 20903 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 27260 + - uid: 28014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 89 - - uid: 20904 + pos: -5.5,-1.5 + parent: 27260 + - uid: 28015 components: - type: Transform - pos: -32.5,38.5 - parent: 89 - - uid: 20906 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 27260 + - uid: 28016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,40.5 - parent: 89 - - uid: 20907 + pos: 6.5,1.5 + parent: 27260 + - uid: 28017 components: - type: Transform - pos: 21.5,38.5 - parent: 89 - - uid: 20908 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 27260 + - uid: 28018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,30.5 - parent: 89 - - uid: 20911 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 27260 + - uid: 28019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-24.5 - parent: 89 - - uid: 20915 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 27260 + - uid: 28020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,38.5 - parent: 89 - - uid: 20921 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 27260 + - uid: 28021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,44.5 - parent: 89 - - uid: 20945 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 27260 + - uid: 28022 components: - type: Transform - pos: -88.5,32.5 - parent: 89 - - uid: 20952 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 27260 + - uid: 28023 components: - type: Transform - pos: -89.5,31.5 - parent: 89 - - uid: 21276 + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 27260 + - uid: 28024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,-16.5 - parent: 89 - - uid: 21297 + pos: 6.5,8.5 + parent: 27260 + - uid: 28025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,40.5 - parent: 89 - - uid: 21638 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 27260 + - uid: 28026 components: - type: Transform - pos: 22.5,44.5 - parent: 89 -- proto: WallRiveted - entities: - - uid: 25117 + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 27260 + - uid: 28027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 22565 - - uid: 25118 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 27260 + - uid: 28028 components: - type: Transform - pos: -28.5,8.5 - parent: 22565 - - uid: 25119 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 27260 + - uid: 28029 components: - type: Transform - pos: -28.5,9.5 - parent: 22565 - - uid: 25120 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 27260 + - uid: 28030 components: - type: Transform - pos: -18.5,-20.5 - parent: 22565 - - uid: 25121 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 27260 + - uid: 28031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 22565 - - uid: 25122 + pos: 7.5,15.5 + parent: 27260 + - uid: 28032 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 25123 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 27260 + - uid: 28033 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 25124 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 27260 + - uid: 28034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 22565 - - uid: 25125 + pos: -5.5,3.5 + parent: 27260 + - uid: 28035 components: - type: Transform - pos: 4.5,9.5 - parent: 22565 - - uid: 25126 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 27260 + - uid: 28036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 22565 - - uid: 25127 + pos: -5.5,5.5 + parent: 27260 + - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,11.5 - parent: 22565 - - uid: 25128 + pos: -5.5,6.5 + parent: 27260 + - uid: 28038 components: - type: Transform - pos: -18.5,-26.5 - parent: 22565 - - uid: 25129 + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 27260 + - uid: 28039 components: - type: Transform - pos: -28.5,12.5 - parent: 22565 - - uid: 25130 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 27260 + - uid: 28040 components: - type: Transform - pos: -8.5,-27.5 - parent: 22565 - - uid: 25131 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 27260 + - uid: 28041 components: - type: Transform - pos: -18.5,-27.5 - parent: 22565 - - uid: 25132 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 27260 + - uid: 28042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 22565 - - uid: 25133 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 27260 + - uid: 28043 components: - type: Transform - pos: 4.5,-1.5 - parent: 22565 - - uid: 25134 + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 27260 + - uid: 28044 components: - type: Transform - pos: 4.5,-0.5 - parent: 22565 - - uid: 25135 + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 27260 + - uid: 28045 components: - type: Transform - pos: -18.5,-21.5 - parent: 22565 - - uid: 25136 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 27260 + - uid: 28046 components: - type: Transform - pos: -17.5,-20.5 - parent: 22565 - - uid: 25137 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 27260 + - uid: 28047 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 - parent: 22565 - - uid: 25138 + pos: -7.5,0.5 + parent: 27260 + - uid: 28048 components: - type: Transform - pos: -28.5,-1.5 - parent: 22565 - - uid: 25139 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 27260 + - uid: 28049 components: - type: Transform - pos: 3.5,-1.5 - parent: 22565 - - uid: 25140 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 27260 + - uid: 28050 components: - type: Transform - pos: -27.5,-1.5 - parent: 22565 - - uid: 25141 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 27260 + - uid: 28051 components: - type: Transform - pos: -28.5,-0.5 - parent: 22565 - - uid: 25142 + pos: -6.5,15.5 + parent: 27260 + - uid: 28052 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,12.5 - parent: 22565 - - uid: 25143 + pos: 7.5,14.5 + parent: 27260 + - uid: 28053 components: - type: Transform - pos: -19.5,25.5 - parent: 22565 - - uid: 25144 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 27260 + - uid: 28054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,26.5 - parent: 22565 - - uid: 25145 + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 27260 + - uid: 28055 components: - type: Transform - pos: -24.5,25.5 - parent: 22565 - - uid: 25146 + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 27260 + - uid: 28056 components: - type: Transform - pos: -23.5,26.5 - parent: 22565 - - uid: 25147 + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 27260 + - uid: 28057 components: - type: Transform - pos: -3.5,26.5 - parent: 22565 - - uid: 25148 + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 27260 + - uid: 28058 components: - type: Transform - pos: -4.5,25.5 - parent: 22565 - - uid: 25149 + rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 27260 + - uid: 28059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 22565 - - uid: 25150 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 27260 + - uid: 28060 components: - type: Transform - pos: 0.5,25.5 - parent: 22565 - - uid: 25151 + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 27260 + - uid: 28061 components: - type: Transform - pos: -20.5,26.5 - parent: 22565 - - uid: 25152 + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 27260 + - uid: 28062 components: - type: Transform - pos: -0.5,26.5 - parent: 22565 - - uid: 25153 + rot: -1.5707963267948966 rad + pos: -5.5,17.5 + parent: 27260 + - uid: 28063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 22565 - - uid: 25154 + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 27260 + - uid: 28064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,12.5 - parent: 22565 - - uid: 25155 + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 27260 + - uid: 28065 components: - type: Transform - pos: -9.5,-20.5 - parent: 22565 - - uid: 25156 + rot: -1.5707963267948966 rad + pos: -5.5,20.5 + parent: 27260 + - uid: 28066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 22565 - - uid: 25157 + rot: -1.5707963267948966 rad + pos: -5.5,21.5 + parent: 27260 + - uid: 28067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 22565 - - uid: 25158 + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 27260 + - uid: 28068 components: - type: Transform - pos: -8.5,-26.5 - parent: 22565 - - uid: 25159 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 27260 +- proto: WallShuttleDiagonal + entities: + - uid: 21941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 22565 - - uid: 25160 + pos: 16.5,35.5 + parent: 2 + - uid: 21942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 22565 - - uid: 25161 + pos: -113.5,28.5 + parent: 2 + - uid: 21943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 22565 - - uid: 25162 + pos: -89.5,46.5 + parent: 2 + - uid: 21944 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 22565 - - uid: 25163 + pos: -127.5,23.5 + parent: 2 + - uid: 21945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 22565 - - uid: 25164 + rot: 1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 21946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,1.5 - parent: 22565 - - uid: 25165 + pos: 56.5,-16.5 + parent: 2 + - uid: 21947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 22565 - - uid: 25166 + rot: 1.5707963267948966 rad + pos: -151.5,-15.5 + parent: 2 + - uid: 21948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 22565 - - uid: 25167 + pos: -150.5,1.5 + parent: 2 + - uid: 21949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 22565 - - uid: 25168 + pos: -152.5,-0.5 + parent: 2 + - uid: 21950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 22565 - - uid: 25169 + rot: -1.5707963267948966 rad + pos: -135.5,1.5 + parent: 2 + - uid: 21951 components: - type: Transform - pos: -4.5,26.5 - parent: 22565 - - uid: 25170 + pos: -119.5,23.5 + parent: 2 + - uid: 21952 components: - type: Transform - pos: -19.5,26.5 - parent: 22565 -- proto: WallRockBasaltBananium - entities: - - uid: 25171 + pos: -118.5,26.5 + parent: 2 + - uid: 21953 components: - type: Transform - pos: -26.5,-4.5 - parent: 22565 - - uid: 25172 + rot: 3.141592653589793 rad + pos: -135.5,-16.5 + parent: 2 + - uid: 21954 components: - type: Transform - pos: -25.5,-5.5 - parent: 22565 - - uid: 25173 + rot: 3.141592653589793 rad + pos: -150.5,-0.5 + parent: 2 + - uid: 21955 components: - type: Transform - pos: -37.5,1.5 - parent: 22565 - - uid: 25174 + pos: -151.5,0.5 + parent: 2 + - uid: 21956 components: - type: Transform - pos: -37.5,2.5 - parent: 22565 - - uid: 25175 + rot: -1.5707963267948966 rad + pos: -150.5,-14.5 + parent: 2 + - uid: 21957 components: - type: Transform - pos: -36.5,1.5 - parent: 22565 -- proto: WallRockBasaltGold - entities: - - uid: 25176 + rot: 1.5707963267948966 rad + pos: -150.5,-16.5 + parent: 2 + - uid: 21958 components: - type: Transform - pos: -31.5,-1.5 - parent: 22565 - - uid: 25177 + rot: 1.5707963267948966 rad + pos: -152.5,-14.5 + parent: 2 + - uid: 21959 components: - type: Transform - pos: -29.5,-0.5 - parent: 22565 - - uid: 25178 + rot: 1.5707963267948966 rad + pos: -120.5,-20.5 + parent: 2 + - uid: 21960 components: - type: Transform - pos: -27.5,-8.5 - parent: 22565 - - uid: 25179 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 + parent: 2 + - uid: 21961 components: - type: Transform - pos: -26.5,-11.5 - parent: 22565 - - uid: 25180 + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 21962 components: - type: Transform - pos: -23.5,-14.5 - parent: 22565 - - uid: 25181 + pos: -86.5,48.5 + parent: 2 + - uid: 21963 components: - type: Transform - pos: 5.5,-4.5 - parent: 22565 -- proto: WallRockBasaltPlasma - entities: - - uid: 25182 + pos: -10.5,26.5 + parent: 2 + - uid: 21964 components: - type: Transform - pos: -31.5,-5.5 - parent: 22565 - - uid: 25183 + rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - uid: 21965 components: - type: Transform - pos: -30.5,-6.5 - parent: 22565 - - uid: 25184 + pos: -41.5,34.5 + parent: 2 + - uid: 21966 components: - type: Transform - pos: -29.5,-5.5 - parent: 22565 - - uid: 25185 + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - uid: 21967 components: - type: Transform - pos: -25.5,-2.5 - parent: 22565 - - uid: 25186 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 21968 components: - type: Transform - pos: -24.5,-3.5 - parent: 22565 - - uid: 25187 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - uid: 21969 components: - type: Transform - pos: -24.5,-3.5 - parent: 22565 - - uid: 25188 + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 21970 components: - type: Transform - pos: -24.5,-2.5 - parent: 22565 - - uid: 25189 + rot: -1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 + - uid: 21971 components: - type: Transform - pos: -24.5,-13.5 - parent: 22565 -- proto: WallRockBasaltQuartz - entities: - - uid: 25190 + pos: -32.5,38.5 + parent: 2 + - uid: 21972 components: - type: Transform - pos: 6.5,-6.5 - parent: 22565 - - uid: 25191 + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 21973 components: - type: Transform - pos: 6.5,-0.5 - parent: 22565 - - uid: 25192 + rot: 1.5707963267948966 rad + pos: 7.5,40.5 + parent: 2 + - uid: 21974 components: - type: Transform - pos: 5.5,-0.5 - parent: 22565 - - uid: 25193 + rot: -1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - uid: 21975 components: - type: Transform - pos: 5.5,-1.5 - parent: 22565 - - uid: 25194 + pos: -48.5,23.5 + parent: 2 + - uid: 21976 components: - type: Transform - pos: 12.5,-0.5 - parent: 22565 - - uid: 25195 + pos: 7.5,43.5 + parent: 2 + - uid: 21977 components: - type: Transform - pos: 12.5,1.5 - parent: 22565 - - uid: 25196 + rot: -1.5707963267948966 rad + pos: -81.5,23.5 + parent: 2 + - uid: 21978 components: - type: Transform - pos: 13.5,7.5 - parent: 22565 - - uid: 25197 + pos: -70.5,38.5 + parent: 2 + - uid: 21979 components: - type: Transform - pos: 13.5,10.5 - parent: 22565 -- proto: WallRockBasaltSilver - entities: - - uid: 25198 + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 21981 components: - type: Transform - pos: -15.5,-14.5 - parent: 22565 - - uid: 25199 + rot: 3.141592653589793 rad + pos: 5.5,-32.5 + parent: 2 + - uid: 21982 components: - type: Transform - pos: -15.5,-15.5 - parent: 22565 - - uid: 25200 + rot: -1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 2 + - uid: 21983 components: - type: Transform - pos: -14.5,-15.5 - parent: 22565 - - uid: 25201 + rot: -1.5707963267948966 rad + pos: 53.5,-10.5 + parent: 2 + - uid: 21984 components: - type: Transform - pos: -14.5,-16.5 - parent: 22565 - - uid: 25202 + rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - uid: 21985 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 25203 + pos: -33.5,35.5 + parent: 2 + - uid: 21986 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 25204 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 21987 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 -- proto: WallRockBasaltTin - entities: - - uid: 25205 + rot: 3.141592653589793 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 21988 components: - type: Transform - pos: -3.5,-3.5 - parent: 22565 - - uid: 25206 + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 + parent: 2 + - uid: 21989 components: - type: Transform - pos: -4.5,-4.5 - parent: 22565 - - uid: 25207 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 21990 components: - type: Transform - pos: -3.5,-4.5 - parent: 22565 - - uid: 25208 + pos: -69.5,23.5 + parent: 2 + - uid: 21991 components: - type: Transform - pos: -2.5,-3.5 - parent: 22565 - - uid: 25209 + rot: -1.5707963267948966 rad + pos: -50.5,23.5 + parent: 2 + - uid: 21992 components: - type: Transform - pos: -14.5,-14.5 - parent: 22565 - - uid: 25210 + rot: 1.5707963267948966 rad + pos: -116.5,-21.5 + parent: 2 + - uid: 21993 components: - type: Transform - pos: -14.5,-16.5 - parent: 22565 - - uid: 25211 + rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 2 + - uid: 21994 components: - type: Transform - pos: -15.5,-16.5 - parent: 22565 - - uid: 25212 + rot: -1.5707963267948966 rad + pos: -128.5,24.5 + parent: 2 + - uid: 21995 components: - type: Transform - pos: -20.5,-14.5 - parent: 22565 - - uid: 25213 + pos: -133.5,24.5 + parent: 2 + - uid: 21996 components: - type: Transform - pos: -22.5,-14.5 - parent: 22565 - - uid: 25214 + rot: -1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 21997 components: - type: Transform - pos: -21.5,-14.5 - parent: 22565 -- proto: WallRockBasaltUranium - entities: - - uid: 25215 + rot: 3.141592653589793 rad + pos: -127.5,-14.5 + parent: 2 + - uid: 21998 components: - type: Transform - pos: -22.5,-7.5 - parent: 22565 - - uid: 25216 + rot: 1.5707963267948966 rad + pos: -130.5,-14.5 + parent: 2 + - uid: 21999 components: - type: Transform - pos: -3.5,-9.5 - parent: 22565 - - uid: 25217 + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 2 + - uid: 22000 components: - type: Transform - pos: -2.5,-5.5 - parent: 22565 - - uid: 25218 + pos: -42.5,27.5 + parent: 2 + - uid: 22001 components: - type: Transform - pos: -26.5,-6.5 - parent: 22565 - - uid: 25219 + rot: 1.5707963267948966 rad + pos: 33.5,-28.5 + parent: 2 + - uid: 22002 components: - type: Transform - pos: -23.5,-4.5 - parent: 22565 - - uid: 25220 + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 22003 components: - type: Transform - pos: -28.5,-3.5 - parent: 22565 -- proto: WallShuttle - entities: - - uid: 724 + rot: -1.5707963267948966 rad + pos: 39.5,27.5 + parent: 2 + - uid: 22004 components: - type: Transform - pos: 18.5,28.5 - parent: 89 - - uid: 1440 + rot: 1.5707963267948966 rad + pos: -134.5,9.5 + parent: 2 + - uid: 22005 components: - type: Transform - pos: 30.5,28.5 - parent: 89 - - uid: 1779 + pos: 51.5,16.5 + parent: 2 + - uid: 22006 components: - type: Transform - pos: 31.5,28.5 - parent: 89 - - uid: 6381 + rot: 3.141592653589793 rad + pos: 66.5,9.5 + parent: 2 + - uid: 22007 components: - type: Transform - pos: 29.5,28.5 - parent: 89 - - uid: 8258 + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - uid: 22008 components: - type: Transform - pos: 27.5,28.5 - parent: 89 - - uid: 10843 + rot: 1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - uid: 22009 components: - type: Transform - pos: 21.5,32.5 - parent: 89 - - uid: 10849 + pos: 53.5,7.5 + parent: 2 + - uid: 22010 components: - type: Transform - pos: 20.5,31.5 - parent: 89 - - uid: 10862 + rot: 3.141592653589793 rad + pos: 60.5,-7.5 + parent: 2 + - uid: 22011 components: - type: Transform - pos: 28.5,31.5 - parent: 89 - - uid: 10865 + rot: -1.5707963267948966 rad + pos: 66.5,-0.5 + parent: 2 + - uid: 22012 components: - type: Transform - pos: 32.5,31.5 - parent: 89 - - uid: 10908 + rot: 1.5707963267948966 rad + pos: -70.5,36.5 + parent: 2 + - uid: 22013 components: - type: Transform - pos: 16.5,30.5 - parent: 89 - - uid: 12674 + rot: 3.141592653589793 rad + pos: -74.5,-19.5 + parent: 2 + - uid: 22014 components: - type: Transform - pos: 17.5,28.5 - parent: 89 - - uid: 14057 + rot: 3.141592653589793 rad + pos: -57.5,-19.5 + parent: 2 + - uid: 22015 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 28.5,29.5 - parent: 89 - - uid: 14058 + pos: -70.5,31.5 + parent: 2 + - uid: 22016 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 32.5,28.5 - parent: 89 - - uid: 15091 + rot: 3.141592653589793 rad + pos: -80.5,36.5 + parent: 2 + - uid: 22017 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 32.5,29.5 - parent: 89 - - uid: 15102 + rot: 3.141592653589793 rad + pos: -80.5,29.5 + parent: 2 + - uid: 22018 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 28.5,28.5 - parent: 89 - - uid: 15109 + pos: -67.5,49.5 + parent: 2 + - uid: 22019 components: - type: Transform - pos: 27.5,32.5 - parent: 89 - - uid: 15113 + pos: -101.5,30.5 + parent: 2 + - uid: 22020 components: - type: Transform - pos: 32.5,32.5 - parent: 89 - - uid: 15114 + rot: 1.5707963267948966 rad + pos: -70.5,29.5 + parent: 2 + - uid: 22021 components: - type: Transform - pos: 30.5,32.5 - parent: 89 - - uid: 15115 + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 2 + - uid: 22022 components: - type: Transform - pos: 29.5,32.5 - parent: 89 - - uid: 15116 + pos: -9.5,47.5 + parent: 2 + - uid: 22023 components: - type: Transform - pos: 31.5,32.5 - parent: 89 - - uid: 15119 + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 2 + - uid: 22024 components: - type: Transform - pos: 28.5,32.5 - parent: 89 - - uid: 15156 + rot: -1.5707963267948966 rad + pos: -80.5,31.5 + parent: 2 + - uid: 22025 components: - type: Transform - pos: 16.5,31.5 - parent: 89 - - uid: 15157 + rot: 3.141592653589793 rad + pos: -49.5,38.5 + parent: 2 + - uid: 22026 components: - type: Transform - pos: 19.5,32.5 - parent: 89 - - uid: 15158 + pos: -68.5,46.5 + parent: 2 + - uid: 22027 components: - type: Transform - pos: 18.5,32.5 - parent: 89 - - uid: 15159 + rot: -1.5707963267948966 rad + pos: -49.5,49.5 + parent: 2 + - uid: 22028 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 16.5,28.5 - parent: 89 - - uid: 15160 + pos: -59.5,49.5 + parent: 2 + - uid: 22029 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 16.5,29.5 - parent: 89 - - uid: 15162 + rot: -1.5707963267948966 rad + pos: -63.5,49.5 + parent: 2 + - uid: 22030 components: - type: Transform - pos: 20.5,32.5 - parent: 89 - - uid: 15163 + rot: -1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - uid: 22031 components: - type: Transform - pos: 17.5,32.5 - parent: 89 - - uid: 15164 + rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 2 + - uid: 22032 components: - type: Transform - pos: 16.5,32.5 - parent: 89 - - uid: 15165 + rot: -1.5707963267948966 rad + pos: -80.5,38.5 + parent: 2 + - uid: 22033 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 20.5,29.5 - parent: 89 - - uid: 15166 + rot: -1.5707963267948966 rad + pos: -82.5,48.5 + parent: 2 + - uid: 22034 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 20.5,28.5 - parent: 89 - - uid: 15251 + rot: 3.141592653589793 rad + pos: -50.5,26.5 + parent: 2 + - uid: 22035 components: - type: Transform - pos: 19.5,28.5 - parent: 89 - - uid: 15258 + pos: -47.5,26.5 + parent: 2 + - uid: 22036 components: - type: Transform - pos: 21.5,28.5 - parent: 89 - - uid: 15426 + pos: 21.5,38.5 + parent: 2 + - uid: 22037 components: - type: Transform - pos: 32.5,30.5 - parent: 89 - - uid: 21712 + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - uid: 22038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 21627 - - uid: 21713 + rot: -1.5707963267948966 rad + pos: 59.5,-24.5 + parent: 2 + - uid: 22039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 21627 - - uid: 21714 + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 22040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 21627 - - uid: 21715 + rot: -1.5707963267948966 rad + pos: 26.5,44.5 + parent: 2 + - uid: 22041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 21627 - - uid: 21716 + rot: 3.141592653589793 rad + pos: 12.5,40.5 + parent: 2 + - uid: 22042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 21627 - - uid: 21717 + pos: 22.5,44.5 + parent: 2 + - uid: 22043 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 21627 - - uid: 21718 + pos: 15.5,38.5 + parent: 2 + - uid: 22044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 21627 - - uid: 21719 + pos: 20.5,34.5 + parent: 2 + - uid: 22045 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 21627 - - uid: 25585 + pos: 5.5,39.5 + parent: 2 + - uid: 22046 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25586 + pos: -134.5,20.5 + parent: 2 + - uid: 22047 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 18153 - - uid: 25587 + pos: 3.5,-46.5 + parent: 2 + - uid: 22048 components: - type: Transform - pos: 5.5,-3.5 - parent: 18153 - - uid: 25588 + rot: 1.5707963267948966 rad + pos: -65.5,-19.5 + parent: 2 + - uid: 22049 components: - type: Transform - pos: 2.5,-3.5 - parent: 18153 - - uid: 25589 + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 22050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 18153 - - uid: 25590 + pos: -14.5,-29.5 + parent: 2 + - uid: 22051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 18153 - - uid: 25591 + rot: 1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 22052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 18153 - - uid: 25592 + pos: -9.5,-38.5 + parent: 2 + - uid: 22053 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 18153 - - uid: 25593 + pos: 17.5,-20.5 + parent: 2 + - uid: 22054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 18153 - - uid: 25594 + pos: 33.5,-20.5 + parent: 2 + - uid: 22055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 18153 - - uid: 25595 + pos: 33.5,-18.5 + parent: 2 + - uid: 22056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 18153 - - uid: 25596 + rot: -1.5707963267948966 rad + pos: 17.5,34.5 + parent: 2 + - uid: 23910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 18153 - - uid: 25597 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 23711 + - uid: 23911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 18153 - - uid: 25598 + pos: 0.5,-3.5 + parent: 23711 + - uid: 23912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 18153 - - uid: 25599 + pos: 6.5,-3.5 + parent: 23711 + - uid: 23913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 18153 - - uid: 25600 + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 23711 + - uid: 24331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 18153 - - uid: 25601 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 23919 + - uid: 24332 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 18153 - - uid: 25602 + pos: 8.5,-0.5 + parent: 23919 + - uid: 24333 components: - type: Transform - pos: 2.5,-12.5 - parent: 18153 - - uid: 25603 + pos: 0.5,-7.5 + parent: 23919 + - uid: 24334 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 18153 - - uid: 25604 + pos: 2.5,-12.5 + parent: 23919 + - uid: 24335 components: - type: Transform - pos: 3.5,-12.5 - parent: 18153 - - uid: 25605 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 23919 + - uid: 24336 components: - type: Transform - pos: 4.5,-12.5 - parent: 18153 - - uid: 25606 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 23919 + - uid: 24337 + components: + - type: Transform + pos: 0.5,5.5 + parent: 23919 + - uid: 24441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 18153 -- proto: WallShuttleDiagonal - entities: - - uid: 21720 + pos: -1.5,-3.5 + parent: 24340 + - uid: 24442 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 - parent: 21627 - - uid: 21721 + parent: 24340 + - uid: 24443 components: - type: Transform pos: -1.5,-5.5 - parent: 21627 - - uid: 21722 + parent: 24340 + - uid: 24444 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 - parent: 21627 - - uid: 21727 + parent: 24340 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 - parent: 21627 - - uid: 21728 + parent: 24340 + - uid: 24446 components: - type: Transform pos: -1.5,-0.5 - parent: 21627 - - uid: 21729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 21627 - - uid: 21730 + parent: 24340 + - uid: 24447 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 - parent: 21627 - - uid: 21731 + parent: 24340 + - uid: 24448 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 21627 - - uid: 25609 + parent: 24340 + - uid: 28069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 27260 + - uid: 28070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 27260 + - uid: 28071 + components: + - type: Transform + pos: 5.5,1.5 + parent: 27260 + - uid: 28072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 27260 + - uid: 28073 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 18153 - - uid: 25610 + pos: 7.5,12.5 + parent: 27260 + - uid: 28074 components: - type: Transform - pos: 0.5,-3.5 - parent: 18153 - - uid: 25611 + pos: -6.5,17.5 + parent: 27260 + - uid: 28075 + components: + - type: Transform + pos: -7.5,1.5 + parent: 27260 + - uid: 28076 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 18153 - - uid: 25612 + pos: 8.5,1.5 + parent: 27260 + - uid: 28077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 18153 -- proto: WallSolid + pos: -5.5,22.5 + parent: 27260 + - uid: 28078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 27260 +- proto: WallShuttleInterior entities: - - uid: 6 + - uid: 22057 components: - type: Transform - pos: -12.5,-14.5 - parent: 89 - - uid: 62 + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22058 components: - type: Transform - pos: -91.5,27.5 - parent: 89 - - uid: 90 + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 22059 components: - type: Transform - pos: -26.5,15.5 - parent: 89 - - uid: 197 + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 22060 components: - type: Transform - pos: -1.5,14.5 - parent: 89 - - uid: 228 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 22061 components: - type: Transform - pos: -16.5,-24.5 - parent: 89 - - uid: 230 + rot: -1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - uid: 22062 components: - type: Transform - pos: -17.5,-20.5 - parent: 89 - - uid: 231 + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 22063 components: - type: Transform - pos: -17.5,-18.5 - parent: 89 - - uid: 232 + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 22064 components: - type: Transform - pos: -16.5,-14.5 - parent: 89 - - uid: 233 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 22065 components: - type: Transform - pos: -23.5,-17.5 - parent: 89 - - uid: 234 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 22066 components: - type: Transform - pos: -14.5,-20.5 - parent: 89 - - uid: 235 + rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - uid: 22067 components: - type: Transform - pos: -13.5,-20.5 - parent: 89 - - uid: 236 + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 22068 components: - type: Transform - pos: -16.5,-20.5 - parent: 89 - - uid: 237 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 22069 components: - type: Transform - pos: -17.5,-19.5 - parent: 89 - - uid: 238 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 22070 components: - type: Transform - pos: -17.5,-15.5 - parent: 89 - - uid: 239 + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 22071 components: - type: Transform - pos: -17.5,-14.5 - parent: 89 - - uid: 262 + pos: 47.5,-34.5 + parent: 2 + - uid: 22072 components: - type: Transform - pos: -17.5,-17.5 - parent: 89 - - uid: 263 + pos: 54.5,-18.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 22073 components: - type: Transform - pos: -23.5,-14.5 - parent: 89 - - uid: 281 + pos: -18.5,23.5 + parent: 2 + - uid: 22074 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 - - uid: 283 + pos: -18.5,22.5 + parent: 2 + - uid: 22075 components: - type: Transform - pos: -7.5,-15.5 - parent: 89 - - uid: 395 + pos: -18.5,24.5 + parent: 2 + - uid: 22076 components: - type: Transform - pos: -89.5,25.5 - parent: 89 - - uid: 396 + rot: 1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 22077 components: - type: Transform - pos: -93.5,26.5 - parent: 89 - - uid: 762 + pos: 27.5,24.5 + parent: 2 + - uid: 22078 components: - type: Transform - pos: -24.5,22.5 - parent: 89 - - uid: 795 + pos: -7.5,17.5 + parent: 2 + - uid: 22079 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 1070 + pos: 21.5,27.5 + parent: 2 + - uid: 22080 components: - type: Transform - pos: -87.5,25.5 - parent: 89 - - uid: 1170 + pos: 32.5,27.5 + parent: 2 + - uid: 22081 components: - type: Transform - pos: -14.5,-14.5 - parent: 89 - - uid: 1171 + pos: 28.5,27.5 + parent: 2 + - uid: 22082 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1173 + pos: 27.5,27.5 + parent: 2 + - uid: 22083 components: - type: Transform - pos: -12.5,-15.5 - parent: 89 - - uid: 1174 + pos: 30.5,27.5 + parent: 2 + - uid: 22084 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1176 + pos: 18.5,27.5 + parent: 2 + - uid: 22085 components: - type: Transform - pos: -6.5,-14.5 - parent: 89 - - uid: 1177 + pos: 31.5,27.5 + parent: 2 + - uid: 22086 components: - type: Transform - pos: -5.5,-14.5 - parent: 89 - - uid: 1178 + pos: 20.5,27.5 + parent: 2 + - uid: 22087 components: - type: Transform - pos: -21.5,-21.5 - parent: 89 - - uid: 1179 + pos: 17.5,27.5 + parent: 2 + - uid: 22088 components: - type: Transform - pos: -4.5,-14.5 - parent: 89 - - uid: 1180 + pos: 29.5,27.5 + parent: 2 + - uid: 22089 components: - type: Transform - pos: -4.5,-15.5 - parent: 89 - - uid: 1181 + pos: -117.5,11.5 + parent: 2 + - uid: 22090 components: - type: Transform - pos: -4.5,-16.5 - parent: 89 - - uid: 1182 + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 22091 components: - type: Transform - pos: -4.5,-17.5 - parent: 89 - - uid: 1183 + rot: 1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 22092 components: - type: Transform - pos: -4.5,-18.5 - parent: 89 - - uid: 1184 + rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - uid: 22093 components: - type: Transform - pos: -3.5,-18.5 - parent: 89 - - uid: 1185 + pos: -106.5,18.5 + parent: 2 + - uid: 22094 components: - type: Transform - pos: -1.5,-18.5 - parent: 89 - - uid: 1186 + pos: -117.5,10.5 + parent: 2 + - uid: 22095 components: - type: Transform - pos: 0.5,-18.5 - parent: 89 - - uid: 1190 + pos: -110.5,18.5 + parent: 2 + - uid: 22096 components: - type: Transform - pos: 3.5,-17.5 - parent: 89 - - uid: 1191 + pos: -110.5,16.5 + parent: 2 + - uid: 22097 components: - type: Transform - pos: 4.5,-17.5 - parent: 89 - - uid: 1192 + pos: -107.5,16.5 + parent: 2 + - uid: 22098 components: - type: Transform - pos: 5.5,-17.5 - parent: 89 - - uid: 1258 + pos: -109.5,16.5 + parent: 2 + - uid: 22099 components: - type: Transform - pos: -20.5,-21.5 - parent: 89 - - uid: 1260 + pos: -114.5,19.5 + parent: 2 + - uid: 22100 components: - type: Transform - pos: -23.5,-21.5 - parent: 89 - - uid: 1261 + pos: -115.5,19.5 + parent: 2 + - uid: 22101 components: - type: Transform - pos: -23.5,-20.5 - parent: 89 - - uid: 1262 + pos: -115.5,20.5 + parent: 2 + - uid: 22102 components: - type: Transform - pos: -23.5,-19.5 - parent: 89 - - uid: 1263 + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 22103 components: - type: Transform - pos: -23.5,-18.5 - parent: 89 - - uid: 1264 + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 22104 components: - type: Transform - pos: -23.5,-15.5 - parent: 89 - - uid: 1282 + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 22105 components: - type: Transform - pos: -15.5,-20.5 - parent: 89 - - uid: 1338 + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 22106 components: - type: Transform - pos: -10.5,-21.5 - parent: 89 - - uid: 1339 + pos: -13.5,-10.5 + parent: 2 + - uid: 22107 components: - type: Transform - pos: -10.5,-20.5 - parent: 89 - - uid: 1351 + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - uid: 22108 components: - type: Transform - pos: 0.5,-19.5 - parent: 89 - - uid: 1352 + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 22109 components: - type: Transform - pos: 0.5,-20.5 - parent: 89 - - uid: 1353 + rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - uid: 22110 components: - type: Transform - pos: 0.5,-21.5 - parent: 89 - - uid: 1354 + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 22111 components: - type: Transform - pos: 1.5,14.5 - parent: 89 - - uid: 1358 + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 22112 components: - type: Transform - pos: -12.5,16.5 - parent: 89 - - uid: 1359 + pos: -36.5,-8.5 + parent: 2 + - uid: 22113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 89 - - uid: 1361 + pos: -38.5,-8.5 + parent: 2 + - uid: 22114 components: - type: Transform - pos: -11.5,22.5 - parent: 89 - - uid: 1362 + pos: -38.5,-9.5 + parent: 2 + - uid: 22115 components: - type: Transform - pos: -12.5,22.5 - parent: 89 - - uid: 1400 + pos: -37.5,-10.5 + parent: 2 + - uid: 22116 components: - type: Transform - pos: -23.5,-22.5 - parent: 89 - - uid: 1402 + pos: -36.5,-10.5 + parent: 2 + - uid: 22117 components: - type: Transform - pos: -23.5,-23.5 - parent: 89 - - uid: 1404 + pos: -38.5,-10.5 + parent: 2 + - uid: 22118 components: - type: Transform - pos: -23.5,-24.5 - parent: 89 - - uid: 1415 + pos: -36.5,-9.5 + parent: 2 + - uid: 22119 components: - type: Transform - pos: -22.5,-24.5 - parent: 89 - - uid: 1416 + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 22120 components: - type: Transform - pos: -21.5,-24.5 - parent: 89 - - uid: 1417 + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 22121 components: - type: Transform - pos: -20.5,-24.5 - parent: 89 - - uid: 1418 + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - uid: 22122 components: - type: Transform - pos: -19.5,-24.5 - parent: 89 - - uid: 1419 + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 + - uid: 22123 components: - type: Transform - pos: -18.5,-24.5 - parent: 89 - - uid: 1420 + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 22124 components: - type: Transform - pos: -17.5,-24.5 - parent: 89 - - uid: 1422 + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 22125 components: - type: Transform - pos: -14.5,-24.5 - parent: 89 - - uid: 1423 + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 22126 components: - type: Transform - pos: -13.5,-24.5 - parent: 89 - - uid: 1424 + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 22127 components: - type: Transform - pos: -15.5,-24.5 - parent: 89 - - uid: 1425 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 22128 components: - type: Transform - pos: -12.5,-24.5 - parent: 89 - - uid: 1430 + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 22129 components: - type: Transform - pos: -20.5,-23.5 - parent: 89 - - uid: 1465 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 22130 components: - type: Transform - pos: -91.5,26.5 - parent: 89 - - uid: 1521 + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 22131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 89 - - uid: 1645 + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 22132 components: - type: Transform - pos: 5.5,22.5 - parent: 89 - - uid: 1676 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 22133 components: - type: Transform - pos: 5.5,-21.5 - parent: 89 - - uid: 1677 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 22134 components: - type: Transform - pos: 5.5,-23.5 - parent: 89 - - uid: 1678 + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + - uid: 22135 components: - type: Transform - pos: -3.5,-23.5 - parent: 89 - - uid: 1679 + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 22136 components: - type: Transform - pos: 4.5,-23.5 - parent: 89 - - uid: 1680 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 22137 components: - type: Transform - pos: -3.5,-23.5 - parent: 89 - - uid: 1715 + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 22138 components: - type: Transform - pos: -13.5,13.5 - parent: 89 - - uid: 1794 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - uid: 22139 components: - type: Transform - pos: -21.5,-14.5 - parent: 89 - - uid: 1821 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 22140 components: - type: Transform - pos: 0.5,-23.5 - parent: 89 - - uid: 1864 + pos: -26.5,15.5 + parent: 2 + - uid: 22141 components: - type: Transform - pos: -3.5,-21.5 - parent: 89 - - uid: 1865 + pos: -1.5,14.5 + parent: 2 + - uid: 22142 components: - type: Transform - pos: -3.5,-20.5 - parent: 89 - - uid: 1872 + pos: -17.5,-17.5 + parent: 2 + - uid: 22143 components: - type: Transform - pos: -4.5,-19.5 - parent: 89 - - uid: 1873 + pos: -1.5,-23.5 + parent: 2 + - uid: 22144 components: - type: Transform - pos: -5.5,-19.5 - parent: 89 - - uid: 1875 + pos: -93.5,26.5 + parent: 2 + - uid: 22145 components: - type: Transform - pos: -7.5,-19.5 - parent: 89 - - uid: 1876 + rot: 1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - uid: 22146 components: - type: Transform - pos: -9.5,-19.5 - parent: 89 - - uid: 1877 + pos: -24.5,22.5 + parent: 2 + - uid: 22147 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 1879 + rot: 1.5707963267948966 rad + pos: -54.5,15.5 + parent: 2 + - uid: 22148 components: - type: Transform - pos: -6.5,-19.5 - parent: 89 - - uid: 1881 + pos: -1.5,-18.5 + parent: 2 + - uid: 22149 components: - type: Transform - pos: -11.5,-20.5 - parent: 89 - - uid: 1882 + pos: 1.5,14.5 + parent: 2 + - uid: 22150 components: - type: Transform - pos: -12.5,-20.5 - parent: 89 - - uid: 1885 + pos: -12.5,16.5 + parent: 2 + - uid: 22151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,7.5 - parent: 89 - - uid: 1886 + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 22152 components: - type: Transform - pos: 5.5,-22.5 - parent: 89 - - uid: 1887 + pos: -11.5,22.5 + parent: 2 + - uid: 22153 components: - type: Transform - pos: 5.5,-18.5 - parent: 89 - - uid: 1888 + pos: -12.5,22.5 + parent: 2 + - uid: 22154 components: - type: Transform - pos: 5.5,-19.5 - parent: 89 - - uid: 1890 + pos: 5.5,22.5 + parent: 2 + - uid: 22155 components: - type: Transform - pos: -22.5,-21.5 - parent: 89 - - uid: 1998 + pos: -13.5,13.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,7.5 + parent: 2 + - uid: 22157 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,8.5 - parent: 89 - - uid: 2072 + parent: 2 + - uid: 22158 components: - type: Transform pos: -31.5,24.5 - parent: 89 - - uid: 2074 + parent: 2 + - uid: 22159 components: - type: Transform pos: -24.5,31.5 - parent: 89 - - uid: 3048 + parent: 2 + - uid: 22160 components: - type: Transform pos: 31.5,21.5 - parent: 89 - - uid: 3117 + parent: 2 + - uid: 22161 components: - type: Transform - pos: -90.5,27.5 - parent: 89 - - uid: 3118 + rot: 1.5707963267948966 rad + pos: -53.5,15.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,15.5 + parent: 2 + - uid: 22163 components: - type: Transform pos: -87.5,24.5 - parent: 89 - - uid: 3133 + parent: 2 + - uid: 22164 components: - type: Transform - pos: 46.5,-1.5 - parent: 89 - - uid: 3243 + pos: -88.5,24.5 + parent: 2 + - uid: 22165 components: - type: Transform - pos: -90.5,29.5 - parent: 89 - - uid: 3266 + pos: -89.5,24.5 + parent: 2 + - uid: 22166 components: - type: Transform - pos: -88.5,24.5 - parent: 89 - - uid: 3271 + rot: 1.5707963267948966 rad + pos: -70.5,13.5 + parent: 2 + - uid: 22167 components: - type: Transform - pos: -89.5,24.5 - parent: 89 - - uid: 3295 + rot: 1.5707963267948966 rad + pos: -70.5,14.5 + parent: 2 + - uid: 22168 components: - type: Transform - pos: -90.5,25.5 - parent: 89 - - uid: 3300 + rot: 1.5707963267948966 rad + pos: -70.5,12.5 + parent: 2 + - uid: 22169 components: - type: Transform pos: -90.5,24.5 - parent: 89 - - uid: 3339 + parent: 2 + - uid: 22170 components: - type: Transform pos: -90.5,23.5 - parent: 89 - - uid: 3342 + parent: 2 + - uid: 22171 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,6.5 - parent: 89 - - uid: 3364 - components: - - type: Transform - pos: -90.5,26.5 - parent: 89 - - uid: 3409 - components: - - type: Transform - pos: -88.5,25.5 - parent: 89 - - uid: 3427 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 89 - - uid: 3450 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 89 - - uid: 3451 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 89 - - uid: 3452 + parent: 2 + - uid: 22172 components: - type: Transform - pos: -4.5,-10.5 - parent: 89 - - uid: 3460 + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - uid: 22173 components: - type: Transform - pos: -4.5,-4.5 - parent: 89 - - uid: 3461 + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - uid: 22174 components: - type: Transform - pos: -4.5,-3.5 - parent: 89 - - uid: 3462 + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - uid: 22175 components: - type: Transform - pos: -4.5,-2.5 - parent: 89 - - uid: 3463 + pos: -11.5,-10.5 + parent: 2 + - uid: 22176 components: - type: Transform - pos: -4.5,-1.5 - parent: 89 - - uid: 3464 + pos: -5.5,-10.5 + parent: 2 + - uid: 22177 components: - type: Transform - pos: -4.5,-0.5 - parent: 89 - - uid: 3465 + pos: -4.5,-10.5 + parent: 2 + - uid: 22178 components: - type: Transform pos: -4.5,0.5 - parent: 89 - - uid: 3469 + parent: 2 + - uid: 22179 components: - type: Transform pos: -5.5,0.5 - parent: 89 - - uid: 3470 + parent: 2 + - uid: 22180 components: - type: Transform pos: -6.5,0.5 - parent: 89 - - uid: 3471 + parent: 2 + - uid: 22181 components: - type: Transform pos: -7.5,0.5 - parent: 89 - - uid: 3472 + parent: 2 + - uid: 22182 components: - type: Transform pos: -8.5,0.5 - parent: 89 - - uid: 3473 + parent: 2 + - uid: 22183 components: - type: Transform pos: -9.5,0.5 - parent: 89 - - uid: 3474 + parent: 2 + - uid: 22184 components: - type: Transform pos: -10.5,0.5 - parent: 89 - - uid: 3475 + parent: 2 + - uid: 22185 components: - type: Transform pos: -11.5,0.5 - parent: 89 - - uid: 3476 + parent: 2 + - uid: 22186 components: - type: Transform pos: -12.5,0.5 - parent: 89 - - uid: 3477 + parent: 2 + - uid: 22187 components: - type: Transform pos: -13.5,0.5 - parent: 89 - - uid: 3478 + parent: 2 + - uid: 22188 components: - type: Transform pos: -14.5,0.5 - parent: 89 - - uid: 3479 + parent: 2 + - uid: 22189 components: - type: Transform pos: -15.5,0.5 - parent: 89 - - uid: 3480 + parent: 2 + - uid: 22190 components: - type: Transform pos: -16.5,0.5 - parent: 89 - - uid: 3481 + parent: 2 + - uid: 22191 components: - type: Transform pos: -16.5,-0.5 - parent: 89 - - uid: 3485 + parent: 2 + - uid: 22192 components: - type: Transform pos: -10.5,-0.5 - parent: 89 - - uid: 3489 + parent: 2 + - uid: 22193 components: - type: Transform pos: -10.5,-6.5 - parent: 89 - - uid: 3490 + parent: 2 + - uid: 22194 components: - type: Transform pos: -11.5,-6.5 - parent: 89 - - uid: 3491 + parent: 2 + - uid: 22195 components: - type: Transform pos: -12.5,-6.5 - parent: 89 - - uid: 3494 + parent: 2 + - uid: 22196 components: - type: Transform pos: -10.5,-10.5 - parent: 89 - - uid: 3498 + parent: 2 + - uid: 22197 components: - type: Transform pos: -14.5,-6.5 - parent: 89 - - uid: 3499 + parent: 2 + - uid: 22198 components: - type: Transform pos: -15.5,-6.5 - parent: 89 - - uid: 3500 + parent: 2 + - uid: 22199 components: - type: Transform pos: -16.5,-6.5 - parent: 89 - - uid: 3501 + parent: 2 + - uid: 22200 components: - type: Transform pos: -16.5,-8.5 - parent: 89 - - uid: 3502 + parent: 2 + - uid: 22201 components: - type: Transform pos: -16.5,-9.5 - parent: 89 - - uid: 3503 + parent: 2 + - uid: 22202 components: - type: Transform pos: -16.5,-10.5 - parent: 89 - - uid: 3504 + parent: 2 + - uid: 22203 components: - type: Transform pos: -15.5,-10.5 - parent: 89 - - uid: 3506 + parent: 2 + - uid: 22204 components: - type: Transform pos: -14.5,-10.5 - parent: 89 - - uid: 3507 + parent: 2 + - uid: 22205 components: - type: Transform pos: -12.5,-10.5 - parent: 89 - - uid: 3544 + parent: 2 + - uid: 22206 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,16.5 - parent: 89 - - uid: 3553 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 89 - - uid: 3555 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 89 - - uid: 3602 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 89 - - uid: 3603 + parent: 2 + - uid: 22207 components: - type: Transform pos: -11.5,-9.5 - parent: 89 - - uid: 3868 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 89 - - uid: 3869 + parent: 2 + - uid: 22208 components: - type: Transform pos: -7.5,-10.5 - parent: 89 - - uid: 3871 + parent: 2 + - uid: 22209 components: - type: Transform pos: -8.5,-10.5 - parent: 89 - - uid: 3880 + parent: 2 + - uid: 22210 components: - type: Transform pos: -23.5,-9.5 - parent: 89 - - uid: 3883 + parent: 2 + - uid: 22211 components: - type: Transform pos: -19.5,-9.5 - parent: 89 - - uid: 3884 + parent: 2 + - uid: 22212 components: - type: Transform pos: -20.5,0.5 - parent: 89 - - uid: 3886 + parent: 2 + - uid: 22213 components: - type: Transform pos: -21.5,0.5 - parent: 89 - - uid: 3887 + parent: 2 + - uid: 22214 components: - type: Transform pos: -22.5,0.5 - parent: 89 - - uid: 3888 + parent: 2 + - uid: 22215 components: - type: Transform pos: -23.5,0.5 - parent: 89 - - uid: 3889 + parent: 2 + - uid: 22216 components: - type: Transform pos: -24.5,0.5 - parent: 89 - - uid: 3890 + parent: 2 + - uid: 22217 components: - type: Transform pos: -25.5,0.5 - parent: 89 - - uid: 3891 + parent: 2 + - uid: 22218 components: - type: Transform pos: -26.5,0.5 - parent: 89 - - uid: 3892 + parent: 2 + - uid: 22219 components: - type: Transform pos: -27.5,0.5 - parent: 89 - - uid: 3893 + parent: 2 + - uid: 22220 components: - type: Transform pos: -28.5,0.5 - parent: 89 - - uid: 3894 + parent: 2 + - uid: 22221 components: - type: Transform pos: -27.5,-0.5 - parent: 89 - - uid: 3895 + parent: 2 + - uid: 22222 components: - type: Transform pos: -27.5,-2.5 - parent: 89 - - uid: 3896 + parent: 2 + - uid: 22223 components: - type: Transform pos: -27.5,-3.5 - parent: 89 - - uid: 3897 + parent: 2 + - uid: 22224 components: - type: Transform pos: -28.5,-3.5 - parent: 89 - - uid: 3898 + parent: 2 + - uid: 22225 components: - type: Transform pos: -29.5,-3.5 - parent: 89 - - uid: 3899 + parent: 2 + - uid: 22226 components: - type: Transform pos: -30.5,-3.5 - parent: 89 - - uid: 3900 + parent: 2 + - uid: 22227 components: - type: Transform pos: -31.5,-3.5 - parent: 89 - - uid: 3901 + parent: 2 + - uid: 22228 components: - type: Transform pos: -32.5,-3.5 - parent: 89 - - uid: 3902 + parent: 2 + - uid: 22229 components: - type: Transform pos: -32.5,-2.5 - parent: 89 - - uid: 3903 + parent: 2 + - uid: 22230 components: - type: Transform pos: -32.5,-1.5 - parent: 89 - - uid: 3905 + parent: 2 + - uid: 22231 components: - type: Transform pos: -28.5,1.5 - parent: 89 - - uid: 3906 + parent: 2 + - uid: 22232 components: - type: Transform pos: -29.5,1.5 - parent: 89 - - uid: 3907 + parent: 2 + - uid: 22233 components: - type: Transform pos: -30.5,1.5 - parent: 89 - - uid: 3908 + parent: 2 + - uid: 22234 components: - type: Transform pos: -31.5,1.5 - parent: 89 - - uid: 3909 + parent: 2 + - uid: 22235 components: - type: Transform pos: -32.5,1.5 - parent: 89 - - uid: 3910 + parent: 2 + - uid: 22236 components: - type: Transform pos: -33.5,1.5 - parent: 89 - - uid: 3911 + parent: 2 + - uid: 22237 components: - type: Transform pos: -34.5,1.5 - parent: 89 - - uid: 3912 + parent: 2 + - uid: 22238 components: - type: Transform pos: -35.5,1.5 - parent: 89 - - uid: 3913 + parent: 2 + - uid: 22239 components: - type: Transform pos: -36.5,1.5 - parent: 89 - - uid: 3914 + parent: 2 + - uid: 22240 components: - type: Transform pos: -37.5,1.5 - parent: 89 - - uid: 3915 + parent: 2 + - uid: 22241 components: - type: Transform pos: -38.5,1.5 - parent: 89 - - uid: 3916 + parent: 2 + - uid: 22242 components: - type: Transform pos: -32.5,0.5 - parent: 89 - - uid: 3917 + parent: 2 + - uid: 22243 components: - type: Transform pos: -33.5,-2.5 - parent: 89 - - uid: 3918 + parent: 2 + - uid: 22244 components: - type: Transform pos: -34.5,-2.5 - parent: 89 - - uid: 3919 + parent: 2 + - uid: 22245 components: - type: Transform pos: -35.5,-2.5 - parent: 89 - - uid: 3920 + parent: 2 + - uid: 22246 components: - type: Transform pos: -36.5,-2.5 - parent: 89 - - uid: 3921 + parent: 2 + - uid: 22247 components: - type: Transform pos: -36.5,-3.5 - parent: 89 - - uid: 3922 + parent: 2 + - uid: 22248 components: - type: Transform pos: -36.5,-5.5 - parent: 89 - - uid: 3923 + parent: 2 + - uid: 22249 components: - type: Transform pos: -36.5,-6.5 - parent: 89 - - uid: 3924 + parent: 2 + - uid: 22250 components: - type: Transform pos: -36.5,-7.5 - parent: 89 - - uid: 3927 + parent: 2 + - uid: 22251 components: - type: Transform pos: -35.5,-10.5 - parent: 89 - - uid: 3928 + parent: 2 + - uid: 22252 components: - type: Transform pos: -34.5,-10.5 - parent: 89 - - uid: 3929 + parent: 2 + - uid: 22253 components: - type: Transform pos: -33.5,-10.5 - parent: 89 - - uid: 3930 + parent: 2 + - uid: 22254 components: - type: Transform pos: -32.5,-10.5 - parent: 89 - - uid: 3931 + parent: 2 + - uid: 22255 components: - type: Transform pos: -31.5,-10.5 - parent: 89 - - uid: 3932 + parent: 2 + - uid: 22256 components: - type: Transform pos: -30.5,-10.5 - parent: 89 - - uid: 3933 + parent: 2 + - uid: 22257 components: - type: Transform pos: -29.5,-10.5 - parent: 89 - - uid: 3934 + parent: 2 + - uid: 22258 components: - type: Transform pos: -28.5,-10.5 - parent: 89 - - uid: 3939 + parent: 2 + - uid: 22259 components: - type: Transform pos: -28.5,-9.5 - parent: 89 - - uid: 3940 + parent: 2 + - uid: 22260 components: - type: Transform pos: -27.5,-9.5 - parent: 89 - - uid: 3943 + parent: 2 + - uid: 22261 components: - type: Transform pos: -32.5,-9.5 - parent: 89 - - uid: 3945 + parent: 2 + - uid: 22262 components: - type: Transform pos: -32.5,-6.5 - parent: 89 - - uid: 3946 + parent: 2 + - uid: 22263 components: - type: Transform pos: -32.5,-5.5 - parent: 89 - - uid: 3954 + parent: 2 + - uid: 22264 components: - type: Transform pos: -38.5,-7.5 - parent: 89 - - uid: 3955 + parent: 2 + - uid: 22265 components: - type: Transform pos: -38.5,-6.5 - parent: 89 - - uid: 3956 + parent: 2 + - uid: 22266 components: - type: Transform pos: -38.5,-5.5 - parent: 89 - - uid: 3957 + parent: 2 + - uid: 22267 components: - type: Transform pos: -38.5,-2.5 - parent: 89 - - uid: 3958 + parent: 2 + - uid: 22268 components: - type: Transform pos: -38.5,-1.5 - parent: 89 - - uid: 3960 + parent: 2 + - uid: 22269 components: - type: Transform pos: -38.5,0.5 - parent: 89 - - uid: 3961 + parent: 2 + - uid: 22270 components: - type: Transform pos: -38.5,-3.5 - parent: 89 - - uid: 4185 + parent: 2 + - uid: 22271 components: - type: Transform pos: -30.5,-2.5 - parent: 89 - - uid: 4517 + parent: 2 + - uid: 22272 components: - type: Transform pos: -46.5,-11.5 - parent: 89 - - uid: 4525 + parent: 2 + - uid: 22273 components: - type: Transform pos: -70.5,-8.5 - parent: 89 - - uid: 4530 + parent: 2 + - uid: 22274 components: - type: Transform pos: -68.5,1.5 - parent: 89 - - uid: 4531 + parent: 2 + - uid: 22275 components: - type: Transform pos: -68.5,2.5 - parent: 89 - - uid: 4533 + parent: 2 + - uid: 22276 components: - type: Transform pos: -67.5,2.5 - parent: 89 - - uid: 4536 + parent: 2 + - uid: 22277 components: - type: Transform pos: -64.5,2.5 - parent: 89 - - uid: 4539 + parent: 2 + - uid: 22278 components: - type: Transform pos: -61.5,2.5 - parent: 89 - - uid: 4542 + parent: 2 + - uid: 22279 components: - type: Transform pos: -58.5,2.5 - parent: 89 - - uid: 4543 + parent: 2 + - uid: 22280 components: - type: Transform pos: -57.5,2.5 - parent: 89 - - uid: 4544 + parent: 2 + - uid: 22281 components: - type: Transform pos: -57.5,1.5 - parent: 89 - - uid: 4548 + parent: 2 + - uid: 22282 components: - type: Transform pos: -68.5,-2.5 - parent: 89 - - uid: 4553 + parent: 2 + - uid: 22283 components: - type: Transform pos: -56.5,-4.5 - parent: 89 - - uid: 4554 + parent: 2 + - uid: 22284 components: - type: Transform pos: -57.5,-3.5 - parent: 89 - - uid: 4555 + parent: 2 + - uid: 22285 components: - type: Transform pos: -54.5,-4.5 - parent: 89 - - uid: 4556 + parent: 2 + - uid: 22286 components: - type: Transform pos: -68.5,-4.5 - parent: 89 - - uid: 4557 + parent: 2 + - uid: 22287 components: - type: Transform pos: -67.5,-3.5 - parent: 89 - - uid: 4561 + parent: 2 + - uid: 22288 components: - type: Transform pos: -65.5,-3.5 - parent: 89 - - uid: 4562 + parent: 2 + - uid: 22289 components: - type: Transform pos: -69.5,-4.5 - parent: 89 - - uid: 4563 + parent: 2 + - uid: 22290 components: - type: Transform pos: -72.5,-4.5 - parent: 89 - - uid: 4565 + parent: 2 + - uid: 22291 components: - type: Transform pos: -68.5,-3.5 - parent: 89 - - uid: 4567 + parent: 2 + - uid: 22292 components: - type: Transform pos: -71.5,-4.5 - parent: 89 - - uid: 4570 + parent: 2 + - uid: 22293 components: - type: Transform pos: -60.5,-3.5 - parent: 89 - - uid: 4571 + parent: 2 + - uid: 22294 components: - type: Transform pos: -58.5,-3.5 - parent: 89 - - uid: 4573 + parent: 2 + - uid: 22295 components: - type: Transform pos: -57.5,-4.5 - parent: 89 - - uid: 4574 + parent: 2 + - uid: 22296 components: - type: Transform pos: -57.5,-5.5 - parent: 89 - - uid: 4581 + parent: 2 + - uid: 22297 components: - type: Transform pos: -45.5,-7.5 - parent: 89 - - uid: 4582 + parent: 2 + - uid: 22298 components: - type: Transform pos: -45.5,-8.5 - parent: 89 - - uid: 4586 + parent: 2 + - uid: 22299 components: - type: Transform pos: -45.5,-10.5 - parent: 89 - - uid: 4588 + parent: 2 + - uid: 22300 components: - type: Transform pos: -45.5,-11.5 - parent: 89 - - uid: 4595 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 89 - - uid: 4596 + parent: 2 + - uid: 22301 components: - type: Transform pos: -46.5,-13.5 - parent: 89 - - uid: 4626 + parent: 2 + - uid: 22302 components: - type: Transform pos: -68.5,-8.5 - parent: 89 - - uid: 4652 + parent: 2 + - uid: 22303 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-7.5 - parent: 89 - - uid: 4665 - components: - - type: Transform - pos: -64.5,-18.5 - parent: 89 - - uid: 4666 + parent: 2 + - uid: 22304 components: - type: Transform pos: -72.5,-8.5 - parent: 89 - - uid: 4668 + parent: 2 + - uid: 22305 components: - type: Transform pos: -72.5,-3.5 - parent: 89 - - uid: 4669 + parent: 2 + - uid: 22306 components: - type: Transform pos: -57.5,-2.5 - parent: 89 - - uid: 4671 + parent: 2 + - uid: 22307 components: - type: Transform pos: -53.5,-3.5 - parent: 89 - - uid: 4672 + parent: 2 + - uid: 22308 components: - type: Transform pos: -53.5,-2.5 - parent: 89 - - uid: 4673 + parent: 2 + - uid: 22309 components: - type: Transform pos: -53.5,-1.5 - parent: 89 - - uid: 4674 + parent: 2 + - uid: 22310 components: - type: Transform pos: -53.5,-0.5 - parent: 89 - - uid: 4675 + parent: 2 + - uid: 22311 components: - type: Transform pos: -53.5,0.5 - parent: 89 - - uid: 4676 + parent: 2 + - uid: 22312 components: - type: Transform pos: -53.5,1.5 - parent: 89 - - uid: 4677 + parent: 2 + - uid: 22313 components: - type: Transform pos: -53.5,2.5 - parent: 89 - - uid: 4678 + parent: 2 + - uid: 22314 components: - type: Transform pos: -52.5,2.5 - parent: 89 - - uid: 4679 + parent: 2 + - uid: 22315 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,0.5 - parent: 89 - - uid: 4684 + parent: 2 + - uid: 22316 components: - type: Transform pos: -72.5,2.5 - parent: 89 - - uid: 4721 + parent: 2 + - uid: 22317 components: - type: Transform pos: -72.5,-9.5 - parent: 89 - - uid: 4722 + parent: 2 + - uid: 22318 components: - type: Transform pos: -71.5,-8.5 - parent: 89 - - uid: 4723 + parent: 2 + - uid: 22319 components: - type: Transform pos: -68.5,-13.5 - parent: 89 - - uid: 4882 + parent: 2 + - uid: 22320 components: - type: Transform pos: -68.5,-5.5 - parent: 89 - - uid: 4883 + parent: 2 + - uid: 22321 components: - type: Transform pos: -68.5,-7.5 - parent: 89 - - uid: 5036 + parent: 2 + - uid: 22322 components: - type: Transform pos: -53.5,-4.5 - parent: 89 - - uid: 5037 + parent: 2 + - uid: 22323 components: - type: Transform pos: -53.5,-5.5 - parent: 89 - - uid: 5115 + parent: 2 + - uid: 22324 components: - type: Transform pos: -44.5,-4.5 - parent: 89 - - uid: 5116 + parent: 2 + - uid: 22325 components: - type: Transform pos: -44.5,-3.5 - parent: 89 - - uid: 5158 + parent: 2 + - uid: 22326 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-5.5 - parent: 89 - - uid: 5172 + parent: 2 + - uid: 22327 components: - type: Transform pos: -57.5,-10.5 - parent: 89 - - uid: 5180 + parent: 2 + - uid: 22328 components: - type: Transform pos: -57.5,-7.5 - parent: 89 - - uid: 5181 + parent: 2 + - uid: 22329 components: - type: Transform pos: -53.5,-6.5 - parent: 89 - - uid: 5182 + parent: 2 + - uid: 22330 components: - type: Transform pos: -53.5,-7.5 - parent: 89 - - uid: 5183 + parent: 2 + - uid: 22331 components: - type: Transform pos: -53.5,-8.5 - parent: 89 - - uid: 5184 + parent: 2 + - uid: 22332 components: - type: Transform pos: -52.5,-8.5 - parent: 89 - - uid: 5185 + parent: 2 + - uid: 22333 components: - type: Transform pos: -51.5,-8.5 - parent: 89 - - uid: 5186 + parent: 2 + - uid: 22334 components: - type: Transform pos: -50.5,-8.5 - parent: 89 - - uid: 5187 + parent: 2 + - uid: 22335 components: - type: Transform pos: -49.5,-8.5 - parent: 89 - - uid: 5188 + parent: 2 + - uid: 22336 components: - type: Transform pos: -48.5,-8.5 - parent: 89 - - uid: 5189 + parent: 2 + - uid: 22337 components: - type: Transform pos: -47.5,-8.5 - parent: 89 - - uid: 5190 + parent: 2 + - uid: 22338 components: - type: Transform pos: -46.5,-8.5 - parent: 89 - - uid: 5452 + parent: 2 + - uid: 22339 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-5.5 - parent: 89 - - uid: 5453 + parent: 2 + - uid: 22340 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-7.5 - parent: 89 - - uid: 5472 + parent: 2 + - uid: 22341 components: - type: Transform pos: -49.5,-6.5 - parent: 89 - - uid: 5504 + parent: 2 + - uid: 22342 components: - type: Transform pos: -46.5,-3.5 - parent: 89 - - uid: 5508 + parent: 2 + - uid: 22343 components: - type: Transform pos: -46.5,-4.5 - parent: 89 - - uid: 5511 + parent: 2 + - uid: 22344 components: - type: Transform pos: -46.5,-5.5 - parent: 89 - - uid: 5641 + parent: 2 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-3.5 - parent: 89 - - uid: 5703 + parent: 2 + - uid: 22346 components: - type: Transform pos: -41.5,6.5 - parent: 89 - - uid: 5733 + parent: 2 + - uid: 22347 components: - type: Transform pos: 12.5,14.5 - parent: 89 - - uid: 5779 + parent: 2 + - uid: 22348 components: - type: Transform pos: -73.5,-4.5 - parent: 89 - - uid: 5788 + parent: 2 + - uid: 22349 components: - type: Transform pos: -75.5,-4.5 - parent: 89 - - uid: 5845 + parent: 2 + - uid: 22350 components: - type: Transform pos: -24.5,27.5 - parent: 89 - - uid: 5888 + parent: 2 + - uid: 22351 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 - parent: 89 - - uid: 5925 + parent: 2 + - uid: 22352 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,6.5 - parent: 89 - - uid: 5948 + parent: 2 + - uid: 22353 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,7.5 - parent: 89 - - uid: 5949 + parent: 2 + - uid: 22354 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,6.5 - parent: 89 - - uid: 5957 + parent: 2 + - uid: 22355 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,11.5 - parent: 89 - - uid: 5958 + parent: 2 + - uid: 22356 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,11.5 - parent: 89 - - uid: 5959 + parent: 2 + - uid: 22357 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,11.5 - parent: 89 - - uid: 5960 + parent: 2 + - uid: 22358 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,11.5 - parent: 89 - - uid: 6042 + parent: 2 + - uid: 22359 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,11.5 - parent: 89 - - uid: 6044 + parent: 2 + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,12.5 - parent: 89 - - uid: 6045 + parent: 2 + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,12.5 - parent: 89 - - uid: 6046 + parent: 2 + - uid: 22362 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,12.5 - parent: 89 - - uid: 6047 + parent: 2 + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,12.5 - parent: 89 - - uid: 6048 + parent: 2 + - uid: 22364 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,12.5 - parent: 89 - - uid: 6049 + parent: 2 + - uid: 22365 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,12.5 - parent: 89 - - uid: 6050 + parent: 2 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,12.5 - parent: 89 - - uid: 6051 + parent: 2 + - uid: 22367 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,12.5 - parent: 89 - - uid: 6052 + parent: 2 + - uid: 22368 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,12.5 - parent: 89 - - uid: 6053 + parent: 2 + - uid: 22369 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,10.5 - parent: 89 - - uid: 6054 + parent: 2 + - uid: 22370 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,10.5 - parent: 89 - - uid: 6056 + parent: 2 + - uid: 22371 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,9.5 - parent: 89 - - uid: 6057 + parent: 2 + - uid: 22372 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,8.5 - parent: 89 - - uid: 6058 + parent: 2 + - uid: 22373 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,7.5 - parent: 89 - - uid: 6059 + parent: 2 + - uid: 22374 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,6.5 - parent: 89 - - uid: 6060 + parent: 2 + - uid: 22375 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,6.5 - parent: 89 - - uid: 6119 + parent: 2 + - uid: 22376 components: - type: Transform pos: -52.5,12.5 - parent: 89 - - uid: 6124 + parent: 2 + - uid: 22377 components: - type: Transform pos: -47.5,2.5 - parent: 89 - - uid: 6254 + parent: 2 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,5.5 - parent: 89 - - uid: 6255 + parent: 2 + - uid: 22379 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,5.5 - parent: 89 - - uid: 6262 + parent: 2 + - uid: 22380 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,5.5 - parent: 89 - - uid: 6263 + parent: 2 + - uid: 22381 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,5.5 - parent: 89 - - uid: 6264 + parent: 2 + - uid: 22382 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,5.5 - parent: 89 - - uid: 6269 + parent: 2 + - uid: 22383 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,4.5 - parent: 89 - - uid: 6270 + parent: 2 + - uid: 22384 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 - parent: 89 - - uid: 6271 + parent: 2 + - uid: 22385 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 89 - - uid: 6272 + parent: 2 + - uid: 22386 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 89 - - uid: 6273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 89 - - uid: 6274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 89 - - uid: 6275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 89 - - uid: 6276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 89 - - uid: 6277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 89 - - uid: 6278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 89 - - uid: 6279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 89 - - uid: 6282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 89 - - uid: 6283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 89 - - uid: 6284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 89 - - uid: 6285 + parent: 2 + - uid: 22387 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,4.5 - parent: 89 - - uid: 6286 + parent: 2 + - uid: 22388 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 - parent: 89 - - uid: 6287 + parent: 2 + - uid: 22389 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 - parent: 89 - - uid: 6288 + parent: 2 + - uid: 22390 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 - parent: 89 - - uid: 6289 + parent: 2 + - uid: 22391 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,4.5 - parent: 89 - - uid: 6290 + parent: 2 + - uid: 22392 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 - parent: 89 - - uid: 6291 + parent: 2 + - uid: 22393 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,4.5 - parent: 89 - - uid: 6292 + parent: 2 + - uid: 22394 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,4.5 - parent: 89 - - uid: 6293 + parent: 2 + - uid: 22395 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,4.5 - parent: 89 - - uid: 6294 + parent: 2 + - uid: 22396 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,4.5 - parent: 89 - - uid: 6621 + parent: 2 + - uid: 22397 components: - type: Transform pos: -42.5,-3.5 - parent: 89 - - uid: 6630 + parent: 2 + - uid: 22398 components: - type: Transform pos: -42.5,-5.5 - parent: 89 - - uid: 6631 + parent: 2 + - uid: 22399 components: - type: Transform pos: -42.5,-6.5 - parent: 89 - - uid: 6632 + parent: 2 + - uid: 22400 components: - type: Transform pos: -42.5,-7.5 - parent: 89 - - uid: 6633 + parent: 2 + - uid: 22401 components: - type: Transform pos: -42.5,-8.5 - parent: 89 - - uid: 6634 + parent: 2 + - uid: 22402 components: - type: Transform pos: -42.5,-9.5 - parent: 89 - - uid: 6635 + parent: 2 + - uid: 22403 components: - type: Transform pos: -42.5,-10.5 - parent: 89 - - uid: 6636 + parent: 2 + - uid: 22404 components: - type: Transform pos: -42.5,-11.5 - parent: 89 - - uid: 6637 + parent: 2 + - uid: 22405 components: - type: Transform pos: -42.5,-12.5 - parent: 89 - - uid: 6638 + parent: 2 + - uid: 22406 components: - type: Transform pos: -42.5,-13.5 - parent: 89 - - uid: 6639 + parent: 2 + - uid: 22407 components: - type: Transform pos: -42.5,-14.5 - parent: 89 - - uid: 6640 + parent: 2 + - uid: 22408 components: - type: Transform pos: -41.5,-14.5 - parent: 89 - - uid: 6641 + parent: 2 + - uid: 22409 components: - type: Transform pos: -40.5,-14.5 - parent: 89 - - uid: 6642 + parent: 2 + - uid: 22410 components: - type: Transform pos: -39.5,-14.5 - parent: 89 - - uid: 6643 + parent: 2 + - uid: 22411 components: - type: Transform pos: -38.5,-14.5 - parent: 89 - - uid: 6644 + parent: 2 + - uid: 22412 components: - type: Transform pos: -37.5,-14.5 - parent: 89 - - uid: 6645 + parent: 2 + - uid: 22413 components: - type: Transform pos: -36.5,-14.5 - parent: 89 - - uid: 6649 + parent: 2 + - uid: 22414 components: - type: Transform pos: -32.5,-14.5 - parent: 89 - - uid: 6650 + parent: 2 + - uid: 22415 components: - type: Transform pos: -31.5,-14.5 - parent: 89 - - uid: 6651 + parent: 2 + - uid: 22416 components: - type: Transform pos: -30.5,-14.5 - parent: 89 - - uid: 6652 + parent: 2 + - uid: 22417 components: - type: Transform pos: -29.5,-14.5 - parent: 89 - - uid: 6653 + parent: 2 + - uid: 22418 components: - type: Transform pos: -28.5,-14.5 - parent: 89 - - uid: 6654 + parent: 2 + - uid: 22419 components: - type: Transform pos: -27.5,-14.5 - parent: 89 - - uid: 6655 + parent: 2 + - uid: 22420 components: - type: Transform pos: -26.5,-14.5 - parent: 89 - - uid: 6656 + parent: 2 + - uid: 22421 components: - type: Transform pos: -25.5,-14.5 - parent: 89 - - uid: 6657 + parent: 2 + - uid: 22422 components: - type: Transform pos: -24.5,-14.5 - parent: 89 - - uid: 6705 + parent: 2 + - uid: 22423 components: - type: Transform pos: -10.5,22.5 - parent: 89 - - uid: 6717 + parent: 2 + - uid: 22424 components: - type: Transform pos: -33.5,-15.5 - parent: 89 - - uid: 6734 + parent: 2 + - uid: 22425 components: - type: Transform pos: -23.5,-26.5 - parent: 89 - - uid: 6735 + parent: 2 + - uid: 22426 components: - type: Transform pos: -22.5,-26.5 - parent: 89 - - uid: 6736 + parent: 2 + - uid: 22427 components: - type: Transform pos: -21.5,-26.5 - parent: 89 - - uid: 6737 + parent: 2 + - uid: 22428 components: - type: Transform pos: -21.5,-27.5 - parent: 89 - - uid: 6842 + parent: 2 + - uid: 22429 components: - type: Transform pos: -40.5,9.5 - parent: 89 - - uid: 6843 + parent: 2 + - uid: 22430 components: - type: Transform pos: -40.5,10.5 - parent: 89 - - uid: 6844 + parent: 2 + - uid: 22431 components: - type: Transform pos: -39.5,10.5 - parent: 89 - - uid: 6845 + parent: 2 + - uid: 22432 components: - type: Transform pos: -38.5,10.5 - parent: 89 - - uid: 6847 + parent: 2 + - uid: 22433 components: - type: Transform pos: -68.5,-9.5 - parent: 89 - - uid: 6849 + parent: 2 + - uid: 22434 components: - type: Transform pos: -38.5,6.5 - parent: 89 - - uid: 6850 + parent: 2 + - uid: 22435 components: - type: Transform pos: -39.5,6.5 - parent: 89 - - uid: 6913 + parent: 2 + - uid: 22436 components: - type: Transform pos: -69.5,-8.5 - parent: 89 - - uid: 6914 + parent: 2 + - uid: 22437 components: - type: Transform pos: -34.5,9.5 - parent: 89 - - uid: 6915 + parent: 2 + - uid: 22438 components: - type: Transform pos: -34.5,8.5 - parent: 89 - - uid: 6916 + parent: 2 + - uid: 22439 components: - type: Transform pos: -34.5,7.5 - parent: 89 - - uid: 6917 + parent: 2 + - uid: 22440 components: - type: Transform pos: -34.5,6.5 - parent: 89 - - uid: 6922 + parent: 2 + - uid: 22441 components: - type: Transform pos: -41.5,9.5 - parent: 89 - - uid: 6943 + parent: 2 + - uid: 22442 components: - type: Transform pos: -74.5,11.5 - parent: 89 - - uid: 7000 - components: - - type: Transform - pos: -97.5,-5.5 - parent: 89 - - uid: 7001 - components: - - type: Transform - pos: -97.5,-4.5 - parent: 89 - - uid: 7002 - components: - - type: Transform - pos: -97.5,-3.5 - parent: 89 - - uid: 7005 + parent: 2 + - uid: 22443 components: - type: Transform pos: -97.5,-2.5 - parent: 89 - - uid: 7007 + parent: 2 + - uid: 22444 components: - type: Transform pos: -97.5,-1.5 - parent: 89 - - uid: 7008 + parent: 2 + - uid: 22445 components: - type: Transform pos: -97.5,-0.5 - parent: 89 - - uid: 7009 + parent: 2 + - uid: 22446 components: - type: Transform pos: -97.5,0.5 - parent: 89 - - uid: 7010 + parent: 2 + - uid: 22447 components: - type: Transform pos: -97.5,1.5 - parent: 89 - - uid: 7011 + parent: 2 + - uid: 22448 components: - type: Transform pos: -98.5,1.5 - parent: 89 - - uid: 7012 + parent: 2 + - uid: 22449 components: - type: Transform pos: -99.5,1.5 - parent: 89 - - uid: 7013 + parent: 2 + - uid: 22450 components: - type: Transform pos: -100.5,1.5 - parent: 89 - - uid: 7014 + parent: 2 + - uid: 22451 components: - type: Transform pos: -100.5,1.5 - parent: 89 - - uid: 7015 + parent: 2 + - uid: 22452 components: - type: Transform pos: -101.5,1.5 - parent: 89 - - uid: 7016 + parent: 2 + - uid: 22453 components: - type: Transform pos: -102.5,1.5 - parent: 89 - - uid: 7017 + parent: 2 + - uid: 22454 components: - type: Transform pos: -103.5,1.5 - parent: 89 - - uid: 7018 + parent: 2 + - uid: 22455 components: - type: Transform pos: -104.5,1.5 - parent: 89 - - uid: 7019 + parent: 2 + - uid: 22456 components: - type: Transform pos: -105.5,1.5 - parent: 89 - - uid: 7020 + parent: 2 + - uid: 22457 components: - type: Transform pos: -106.5,1.5 - parent: 89 - - uid: 7021 + parent: 2 + - uid: 22458 components: - type: Transform pos: -106.5,0.5 - parent: 89 - - uid: 7022 + parent: 2 + - uid: 22459 components: - type: Transform pos: -106.5,-0.5 - parent: 89 - - uid: 7023 + parent: 2 + - uid: 22460 components: - type: Transform pos: -106.5,-1.5 - parent: 89 - - uid: 7024 + parent: 2 + - uid: 22461 components: - type: Transform pos: -106.5,-2.5 - parent: 89 - - uid: 7025 + parent: 2 + - uid: 22462 components: - type: Transform pos: -106.5,-5.5 - parent: 89 - - uid: 7052 + parent: 2 + - uid: 22463 components: - type: Transform pos: -96.5,1.5 - parent: 89 - - uid: 7196 + parent: 2 + - uid: 22464 components: - type: Transform pos: -94.5,11.5 - parent: 89 - - uid: 7197 + parent: 2 + - uid: 22465 components: - type: Transform pos: -95.5,11.5 - parent: 89 - - uid: 7198 + parent: 2 + - uid: 22466 components: - type: Transform pos: -92.5,11.5 - parent: 89 - - uid: 7199 + parent: 2 + - uid: 22467 components: - type: Transform pos: -91.5,11.5 - parent: 89 - - uid: 7201 + parent: 2 + - uid: 22468 components: - type: Transform pos: -96.5,11.5 - parent: 89 - - uid: 7202 + parent: 2 + - uid: 22469 components: - type: Transform pos: -96.5,12.5 - parent: 89 - - uid: 7203 + parent: 2 + - uid: 22470 components: - type: Transform pos: -96.5,13.5 - parent: 89 - - uid: 7204 + parent: 2 + - uid: 22471 components: - type: Transform pos: -96.5,16.5 - parent: 89 - - uid: 7207 + parent: 2 + - uid: 22472 components: - type: Transform pos: -92.5,18.5 - parent: 89 - - uid: 7208 + parent: 2 + - uid: 22473 components: - type: Transform pos: -93.5,18.5 - parent: 89 - - uid: 7209 + parent: 2 + - uid: 22474 components: - type: Transform pos: -94.5,18.5 - parent: 89 - - uid: 7210 + parent: 2 + - uid: 22475 components: - type: Transform pos: -95.5,18.5 - parent: 89 - - uid: 7211 + parent: 2 + - uid: 22476 components: - type: Transform pos: -96.5,18.5 - parent: 89 - - uid: 7212 + parent: 2 + - uid: 22477 components: - type: Transform pos: -96.5,17.5 - parent: 89 - - uid: 7213 + parent: 2 + - uid: 22478 components: - type: Transform pos: -96.5,15.5 - parent: 89 - - uid: 7214 + parent: 2 + - uid: 22479 components: - type: Transform pos: -96.5,14.5 - parent: 89 - - uid: 7220 + parent: 2 + - uid: 22480 components: - type: Transform pos: -90.5,11.5 - parent: 89 - - uid: 7221 + parent: 2 + - uid: 22481 components: - type: Transform pos: -90.5,15.5 - parent: 89 - - uid: 7222 + parent: 2 + - uid: 22482 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,18.5 - parent: 89 - - uid: 7223 + parent: 2 + - uid: 22483 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,17.5 - parent: 89 - - uid: 7242 + parent: 2 + - uid: 22484 components: - type: Transform pos: -90.5,10.5 - parent: 89 - - uid: 7243 + parent: 2 + - uid: 22485 components: - type: Transform pos: -90.5,9.5 - parent: 89 - - uid: 7244 + parent: 2 + - uid: 22486 components: - type: Transform pos: -90.5,8.5 - parent: 89 - - uid: 7245 + parent: 2 + - uid: 22487 components: - type: Transform pos: -90.5,7.5 - parent: 89 - - uid: 7246 + parent: 2 + - uid: 22488 components: - type: Transform pos: -90.5,6.5 - parent: 89 - - uid: 7247 + parent: 2 + - uid: 22489 components: - type: Transform pos: -90.5,5.5 - parent: 89 - - uid: 7252 + parent: 2 + - uid: 22490 components: - type: Transform pos: -90.5,0.5 - parent: 89 - - uid: 7254 - components: - - type: Transform - pos: -90.5,-3.5 - parent: 89 - - uid: 7259 + parent: 2 + - uid: 22491 components: - type: Transform pos: -86.5,-2.5 - parent: 89 - - uid: 7260 + parent: 2 + - uid: 22492 components: - type: Transform pos: -86.5,-0.5 - parent: 89 - - uid: 7261 + parent: 2 + - uid: 22493 components: - type: Transform pos: -87.5,0.5 - parent: 89 - - uid: 7262 + parent: 2 + - uid: 22494 components: - type: Transform pos: -86.5,0.5 - parent: 89 - - uid: 7265 + parent: 2 + - uid: 22495 components: - type: Transform pos: -96.5,2.5 - parent: 89 - - uid: 7266 + parent: 2 + - uid: 22496 components: - type: Transform pos: -96.5,3.5 - parent: 89 - - uid: 7269 + parent: 2 + - uid: 22497 components: - type: Transform pos: -96.5,6.5 - parent: 89 - - uid: 7270 + parent: 2 + - uid: 22498 components: - type: Transform pos: -99.5,10.5 - parent: 89 - - uid: 7271 + parent: 2 + - uid: 22499 components: - type: Transform pos: -98.5,10.5 - parent: 89 - - uid: 7272 + parent: 2 + - uid: 22500 components: - type: Transform pos: -97.5,10.5 - parent: 89 - - uid: 7273 + parent: 2 + - uid: 22501 components: - type: Transform pos: -96.5,10.5 - parent: 89 - - uid: 7274 + parent: 2 + - uid: 22502 components: - type: Transform pos: -96.5,9.5 - parent: 89 - - uid: 7342 + parent: 2 + - uid: 22503 components: - type: Transform pos: -103.5,13.5 - parent: 89 - - uid: 7343 + parent: 2 + - uid: 22504 components: - type: Transform pos: -103.5,15.5 - parent: 89 - - uid: 7344 + parent: 2 + - uid: 22505 components: - type: Transform pos: -103.5,16.5 - parent: 89 - - uid: 7345 + parent: 2 + - uid: 22506 components: - type: Transform pos: -104.5,16.5 - parent: 89 - - uid: 7346 + parent: 2 + - uid: 22507 components: - type: Transform pos: -105.5,16.5 - parent: 89 - - uid: 7347 + parent: 2 + - uid: 22508 components: - type: Transform pos: -106.5,16.5 - parent: 89 - - uid: 7355 + parent: 2 + - uid: 22509 components: - type: Transform pos: -32.5,26.5 - parent: 89 - - uid: 7356 + parent: 2 + - uid: 22510 components: - type: Transform pos: -33.5,26.5 - parent: 89 - - uid: 7357 + parent: 2 + - uid: 22511 components: - type: Transform pos: -24.5,32.5 - parent: 89 - - uid: 7358 + parent: 2 + - uid: 22512 components: - type: Transform pos: -110.5,15.5 - parent: 89 - - uid: 7359 + parent: 2 + - uid: 22513 components: - type: Transform pos: -110.5,14.5 - parent: 89 - - uid: 7360 + parent: 2 + - uid: 22514 components: - type: Transform pos: -110.5,13.5 - parent: 89 - - uid: 7361 + parent: 2 + - uid: 22515 components: - type: Transform pos: -110.5,12.5 - parent: 89 - - uid: 7362 + parent: 2 + - uid: 22516 components: - type: Transform pos: -110.5,11.5 - parent: 89 - - uid: 7490 + parent: 2 + - uid: 22517 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,17.5 - parent: 89 - - uid: 7491 + parent: 2 + - uid: 22518 components: - type: Transform pos: -86.5,21.5 - parent: 89 - - uid: 7522 + parent: 2 + - uid: 22519 components: - type: Transform pos: -35.5,25.5 - parent: 89 - - uid: 7523 + parent: 2 + - uid: 22520 components: - type: Transform pos: -31.5,28.5 - parent: 89 - - uid: 7524 + parent: 2 + - uid: 22521 components: - type: Transform pos: -35.5,24.5 - parent: 89 - - uid: 7525 + parent: 2 + - uid: 22522 components: - type: Transform pos: -35.5,26.5 - parent: 89 - - uid: 7526 + parent: 2 + - uid: 22523 components: - type: Transform pos: -33.5,22.5 - parent: 89 - - uid: 7527 + parent: 2 + - uid: 22524 components: - type: Transform pos: -27.5,22.5 - parent: 89 - - uid: 7528 + parent: 2 + - uid: 22525 components: - type: Transform pos: -26.5,22.5 - parent: 89 - - uid: 7529 + parent: 2 + - uid: 22526 components: - type: Transform pos: -25.5,22.5 - parent: 89 - - uid: 7535 + parent: 2 + - uid: 22527 components: - type: Transform pos: -85.5,0.5 - parent: 89 - - uid: 7536 + parent: 2 + - uid: 22528 components: - type: Transform pos: -84.5,0.5 - parent: 89 - - uid: 7537 + parent: 2 + - uid: 22529 components: - type: Transform pos: -83.5,0.5 - parent: 89 - - uid: 7538 + parent: 2 + - uid: 22530 components: - type: Transform pos: -83.5,1.5 - parent: 89 - - uid: 7539 + parent: 2 + - uid: 22531 components: - type: Transform pos: -83.5,2.5 - parent: 89 - - uid: 7540 + parent: 2 + - uid: 22532 components: - type: Transform pos: -83.5,3.5 - parent: 89 - - uid: 7541 + parent: 2 + - uid: 22533 components: - type: Transform pos: -83.5,4.5 - parent: 89 - - uid: 7542 + parent: 2 + - uid: 22534 components: - type: Transform pos: -83.5,5.5 - parent: 89 - - uid: 7543 + parent: 2 + - uid: 22535 components: - type: Transform pos: -84.5,5.5 - parent: 89 - - uid: 7544 + parent: 2 + - uid: 22536 components: - type: Transform pos: -83.5,6.5 - parent: 89 - - uid: 7545 + parent: 2 + - uid: 22537 components: - type: Transform pos: -82.5,6.5 - parent: 89 - - uid: 7546 + parent: 2 + - uid: 22538 components: - type: Transform pos: -81.5,6.5 - parent: 89 - - uid: 7547 + parent: 2 + - uid: 22539 components: - type: Transform pos: -80.5,6.5 - parent: 89 - - uid: 7548 + parent: 2 + - uid: 22540 components: - type: Transform pos: -79.5,6.5 - parent: 89 - - uid: 7549 + parent: 2 + - uid: 22541 components: - type: Transform pos: -79.5,5.5 - parent: 89 - - uid: 7550 + parent: 2 + - uid: 22542 components: - type: Transform pos: -79.5,3.5 - parent: 89 - - uid: 7551 + parent: 2 + - uid: 22543 components: - type: Transform pos: -80.5,2.5 - parent: 89 - - uid: 7552 + parent: 2 + - uid: 22544 components: - type: Transform pos: -79.5,2.5 - parent: 89 - - uid: 7557 + parent: 2 + - uid: 22545 components: - type: Transform pos: -80.5,1.5 - parent: 89 - - uid: 7558 + parent: 2 + - uid: 22546 components: - type: Transform pos: -80.5,0.5 - parent: 89 - - uid: 7559 + parent: 2 + - uid: 22547 components: - type: Transform pos: -80.5,-1.5 - parent: 89 - - uid: 7568 + parent: 2 + - uid: 22548 components: - type: Transform pos: -81.5,-4.5 - parent: 89 - - uid: 7579 + parent: 2 + - uid: 22549 components: - type: Transform pos: -76.5,7.5 - parent: 89 - - uid: 7580 + parent: 2 + - uid: 22550 components: - type: Transform pos: -76.5,10.5 - parent: 89 - - uid: 7581 + parent: 2 + - uid: 22551 components: - type: Transform pos: -75.5,11.5 - parent: 89 - - uid: 7582 + parent: 2 + - uid: 22552 components: - type: Transform pos: -76.5,11.5 - parent: 89 - - uid: 7583 + parent: 2 + - uid: 22553 components: - type: Transform pos: -77.5,11.5 - parent: 89 - - uid: 7585 + parent: 2 + - uid: 22554 components: - type: Transform pos: -79.5,11.5 - parent: 89 - - uid: 7586 + parent: 2 + - uid: 22555 components: - type: Transform pos: -79.5,12.5 - parent: 89 - - uid: 7587 + parent: 2 + - uid: 22556 components: - type: Transform pos: -79.5,13.5 - parent: 89 - - uid: 7588 + parent: 2 + - uid: 22557 components: - type: Transform pos: -79.5,14.5 - parent: 89 - - uid: 7598 + parent: 2 + - uid: 22558 components: - type: Transform pos: -94.5,24.5 - parent: 89 - - uid: 7603 + parent: 2 + - uid: 22559 components: - type: Transform pos: -95.5,19.5 - parent: 89 - - uid: 7604 + parent: 2 + - uid: 22560 components: - type: Transform pos: -95.5,20.5 - parent: 89 - - uid: 7605 + parent: 2 + - uid: 22561 components: - type: Transform pos: -95.5,21.5 - parent: 89 - - uid: 7606 + parent: 2 + - uid: 22562 components: - type: Transform pos: -95.5,23.5 - parent: 89 - - uid: 7607 + parent: 2 + - uid: 22563 components: - type: Transform pos: -95.5,24.5 - parent: 89 - - uid: 7608 + parent: 2 + - uid: 22564 components: - type: Transform pos: -94.5,25.5 - parent: 89 - - uid: 7609 + parent: 2 + - uid: 22565 components: - type: Transform pos: -94.5,26.5 - parent: 89 - - uid: 7610 + parent: 2 + - uid: 22566 components: - type: Transform pos: -94.5,27.5 - parent: 89 - - uid: 7611 + parent: 2 + - uid: 22567 components: - type: Transform pos: -94.5,28.5 - parent: 89 - - uid: 7612 + parent: 2 + - uid: 22568 components: - type: Transform pos: -94.5,29.5 - parent: 89 - - uid: 7629 - components: - - type: Transform - pos: -109.5,22.5 - parent: 89 - - uid: 7631 + parent: 2 + - uid: 22569 components: - type: Transform pos: -89.5,5.5 - parent: 89 - - uid: 7653 + parent: 2 + - uid: 22570 components: - type: Transform pos: -100.5,23.5 - parent: 89 - - uid: 7654 + parent: 2 + - uid: 22571 components: - type: Transform pos: -98.5,23.5 - parent: 89 - - uid: 7655 + parent: 2 + - uid: 22572 components: - type: Transform pos: -97.5,23.5 - parent: 89 - - uid: 7656 + parent: 2 + - uid: 22573 components: - type: Transform pos: -96.5,23.5 - parent: 89 - - uid: 7677 - components: - - type: Transform - pos: -99.5,28.5 - parent: 89 - - uid: 7710 + parent: 2 + - uid: 22574 components: - type: Transform pos: -101.5,16.5 - parent: 89 - - uid: 7711 + parent: 2 + - uid: 22575 components: - type: Transform pos: -102.5,16.5 - parent: 89 - - uid: 7712 + parent: 2 + - uid: 22576 components: - type: Transform pos: -99.5,18.5 - parent: 89 - - uid: 7713 + parent: 2 + - uid: 22577 components: - type: Transform pos: -99.5,17.5 - parent: 89 - - uid: 7714 + parent: 2 + - uid: 22578 components: - type: Transform pos: -99.5,16.5 - parent: 89 - - uid: 7715 + parent: 2 + - uid: 22579 components: - type: Transform pos: -98.5,16.5 - parent: 89 - - uid: 7716 + parent: 2 + - uid: 22580 components: - type: Transform pos: -97.5,16.5 - parent: 89 - - uid: 7728 - components: - - type: Transform - pos: -102.5,22.5 - parent: 89 - - uid: 7729 - components: - - type: Transform - pos: -112.5,22.5 - parent: 89 - - uid: 7732 - components: - - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 7742 + parent: 2 + - uid: 22581 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,43.5 - parent: 89 - - uid: 7747 + parent: 2 + - uid: 22582 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,43.5 - parent: 89 - - uid: 7761 + parent: 2 + - uid: 22583 components: - type: Transform pos: 2.5,43.5 - parent: 89 - - uid: 7762 + parent: 2 + - uid: 22584 components: - type: Transform pos: 2.5,44.5 - parent: 89 - - uid: 7763 + parent: 2 + - uid: 22585 components: - type: Transform pos: 2.5,45.5 - parent: 89 - - uid: 7764 + parent: 2 + - uid: 22586 components: - type: Transform pos: 2.5,46.5 - parent: 89 - - uid: 7771 - components: - - type: Transform - pos: -5.5,47.5 - parent: 89 - - uid: 7814 + parent: 2 + - uid: 22587 components: - type: Transform pos: -79.5,19.5 - parent: 89 - - uid: 7815 + parent: 2 + - uid: 22588 components: - type: Transform pos: -78.5,19.5 - parent: 89 - - uid: 7817 + parent: 2 + - uid: 22589 components: - type: Transform pos: -77.5,18.5 - parent: 89 - - uid: 7818 + parent: 2 + - uid: 22590 components: - type: Transform pos: -75.5,18.5 - parent: 89 - - uid: 7819 + parent: 2 + - uid: 22591 components: - type: Transform pos: -74.5,18.5 - parent: 89 - - uid: 7820 + parent: 2 + - uid: 22592 components: - type: Transform pos: -74.5,19.5 - parent: 89 - - uid: 7821 + parent: 2 + - uid: 22593 components: - type: Transform pos: -74.5,17.5 - parent: 89 - - uid: 7822 + parent: 2 + - uid: 22594 components: - type: Transform pos: -77.5,19.5 - parent: 89 - - uid: 7823 + parent: 2 + - uid: 22595 components: - type: Transform pos: -74.5,15.5 - parent: 89 - - uid: 7824 + parent: 2 + - uid: 22596 components: - type: Transform pos: -74.5,14.5 - parent: 89 - - uid: 7825 + parent: 2 + - uid: 22597 components: - type: Transform pos: -74.5,13.5 - parent: 89 - - uid: 7826 + parent: 2 + - uid: 22598 components: - type: Transform pos: -74.5,12.5 - parent: 89 - - uid: 7827 + parent: 2 + - uid: 22599 components: - type: Transform pos: -75.5,14.5 - parent: 89 - - uid: 7828 + parent: 2 + - uid: 22600 components: - type: Transform pos: -76.5,14.5 - parent: 89 - - uid: 7829 + parent: 2 + - uid: 22601 components: - type: Transform pos: -78.5,14.5 - parent: 89 - - uid: 7830 + parent: 2 + - uid: 22602 components: - type: Transform pos: -73.5,19.5 - parent: 89 - - uid: 7831 + parent: 2 + - uid: 22603 components: - type: Transform pos: -72.5,19.5 - parent: 89 - - uid: 7832 + parent: 2 + - uid: 22604 components: - type: Transform pos: -71.5,19.5 - parent: 89 - - uid: 7833 + parent: 2 + - uid: 22605 components: - type: Transform pos: -70.5,19.5 - parent: 89 - - uid: 7834 + parent: 2 + - uid: 22606 components: - type: Transform pos: -69.5,19.5 - parent: 89 - - uid: 7835 + parent: 2 + - uid: 22607 components: - type: Transform pos: -68.5,19.5 - parent: 89 - - uid: 7836 + parent: 2 + - uid: 22608 components: - type: Transform pos: -67.5,19.5 - parent: 89 - - uid: 7837 + parent: 2 + - uid: 22609 components: - type: Transform pos: -66.5,19.5 - parent: 89 - - uid: 7838 + parent: 2 + - uid: 22610 components: - type: Transform pos: -65.5,19.5 - parent: 89 - - uid: 7839 + parent: 2 + - uid: 22611 components: - type: Transform pos: -67.5,22.5 - parent: 89 - - uid: 7840 + parent: 2 + - uid: 22612 components: - type: Transform pos: -66.5,22.5 - parent: 89 - - uid: 7841 + parent: 2 + - uid: 22613 components: - type: Transform pos: -65.5,22.5 - parent: 89 - - uid: 7855 + parent: 2 + - uid: 22614 components: - type: Transform pos: 2.5,38.5 - parent: 89 - - uid: 7861 + parent: 2 + - uid: 22615 components: - type: Transform pos: 1.5,38.5 - parent: 89 - - uid: 7862 + parent: 2 + - uid: 22616 components: - type: Transform pos: 0.5,38.5 - parent: 89 - - uid: 7863 + parent: 2 + - uid: 22617 components: - type: Transform pos: -0.5,38.5 - parent: 89 - - uid: 7864 + parent: 2 + - uid: 22618 components: - type: Transform pos: -1.5,38.5 - parent: 89 - - uid: 7865 + parent: 2 + - uid: 22619 components: - type: Transform pos: -2.5,38.5 - parent: 89 - - uid: 7867 + parent: 2 + - uid: 22620 components: - type: Transform pos: -4.5,38.5 - parent: 89 - - uid: 7868 + parent: 2 + - uid: 22621 components: - type: Transform pos: -5.5,38.5 - parent: 89 - - uid: 7869 + parent: 2 + - uid: 22622 components: - type: Transform pos: -6.5,38.5 - parent: 89 - - uid: 7870 + parent: 2 + - uid: 22623 components: - type: Transform pos: -7.5,38.5 - parent: 89 - - uid: 7871 + parent: 2 + - uid: 22624 components: - type: Transform pos: -8.5,38.5 - parent: 89 - - uid: 7887 + parent: 2 + - uid: 22625 components: - type: Transform pos: -78.5,6.5 - parent: 89 - - uid: 7888 + parent: 2 + - uid: 22626 components: - type: Transform pos: -77.5,6.5 - parent: 89 - - uid: 7889 + parent: 2 + - uid: 22627 components: - type: Transform pos: -76.5,6.5 - parent: 89 - - uid: 7890 + parent: 2 + - uid: 22628 components: - type: Transform pos: -75.5,6.5 - parent: 89 - - uid: 7891 + parent: 2 + - uid: 22629 components: - type: Transform pos: -74.5,6.5 - parent: 89 - - uid: 7892 + parent: 2 + - uid: 22630 components: - type: Transform pos: -73.5,6.5 - parent: 89 - - uid: 7893 + parent: 2 + - uid: 22631 components: - type: Transform pos: -72.5,6.5 - parent: 89 - - uid: 7894 + parent: 2 + - uid: 22632 components: - type: Transform pos: -71.5,6.5 - parent: 89 - - uid: 7895 + parent: 2 + - uid: 22633 components: - type: Transform pos: -70.5,6.5 - parent: 89 - - uid: 7896 + parent: 2 + - uid: 22634 components: - type: Transform pos: -69.5,6.5 - parent: 89 - - uid: 7897 + parent: 2 + - uid: 22635 components: - type: Transform pos: -68.5,6.5 - parent: 89 - - uid: 7898 + parent: 2 + - uid: 22636 components: - type: Transform pos: -67.5,6.5 - parent: 89 - - uid: 7899 + parent: 2 + - uid: 22637 components: - type: Transform pos: -70.5,7.5 - parent: 89 - - uid: 7900 + parent: 2 + - uid: 22638 components: - type: Transform pos: -70.5,8.5 - parent: 89 - - uid: 7902 + parent: 2 + - uid: 22639 components: - type: Transform pos: -70.5,11.5 - parent: 89 - - uid: 7903 + parent: 2 + - uid: 22640 components: - type: Transform pos: -70.5,15.5 - parent: 89 - - uid: 7904 + parent: 2 + - uid: 22641 components: - type: Transform pos: -69.5,15.5 - parent: 89 - - uid: 7905 + parent: 2 + - uid: 22642 components: - type: Transform pos: -68.5,15.5 - parent: 89 - - uid: 7906 + parent: 2 + - uid: 22643 components: - type: Transform pos: -67.5,15.5 - parent: 89 - - uid: 7907 + parent: 2 + - uid: 22644 components: - type: Transform pos: -66.5,15.5 - parent: 89 - - uid: 7908 + parent: 2 + - uid: 22645 components: - type: Transform pos: -65.5,15.5 - parent: 89 - - uid: 7909 + parent: 2 + - uid: 22646 components: - type: Transform pos: -64.5,15.5 - parent: 89 - - uid: 7910 + parent: 2 + - uid: 22647 components: - type: Transform pos: -63.5,15.5 - parent: 89 - - uid: 7911 + parent: 2 + - uid: 22648 components: - type: Transform pos: -62.5,15.5 - parent: 89 - - uid: 7912 + parent: 2 + - uid: 22649 components: - type: Transform pos: -61.5,15.5 - parent: 89 - - uid: 7913 + parent: 2 + - uid: 22650 components: - type: Transform pos: -60.5,15.5 - parent: 89 - - uid: 7914 + parent: 2 + - uid: 22651 components: - type: Transform pos: -59.5,15.5 - parent: 89 - - uid: 7915 + parent: 2 + - uid: 22652 components: - type: Transform pos: -58.5,15.5 - parent: 89 - - uid: 7916 + parent: 2 + - uid: 22653 components: - type: Transform pos: -57.5,15.5 - parent: 89 - - uid: 7917 + parent: 2 + - uid: 22654 components: - type: Transform pos: -56.5,15.5 - parent: 89 - - uid: 7918 + parent: 2 + - uid: 22655 components: - type: Transform pos: -55.5,15.5 - parent: 89 - - uid: 7919 + parent: 2 + - uid: 22656 components: - type: Transform pos: -51.5,15.5 - parent: 89 - - uid: 7920 + parent: 2 + - uid: 22657 components: - type: Transform pos: -50.5,15.5 - parent: 89 - - uid: 7921 + parent: 2 + - uid: 22658 components: - type: Transform pos: -61.5,12.5 - parent: 89 - - uid: 7922 + parent: 2 + - uid: 22659 components: - type: Transform pos: -65.5,12.5 - parent: 89 - - uid: 7924 + parent: 2 + - uid: 22660 components: - type: Transform pos: -64.5,6.5 - parent: 89 - - uid: 7925 + parent: 2 + - uid: 22661 components: - type: Transform pos: -63.5,6.5 - parent: 89 - - uid: 7926 + parent: 2 + - uid: 22662 components: - type: Transform pos: -62.5,6.5 - parent: 89 - - uid: 7952 + parent: 2 + - uid: 22663 components: - type: Transform pos: -46.5,15.5 - parent: 89 - - uid: 7953 + parent: 2 + - uid: 22664 components: - type: Transform pos: -45.5,15.5 - parent: 89 - - uid: 7954 + parent: 2 + - uid: 22665 components: - type: Transform pos: -44.5,15.5 - parent: 89 - - uid: 7955 + parent: 2 + - uid: 22666 components: - type: Transform pos: -43.5,15.5 - parent: 89 - - uid: 7956 + parent: 2 + - uid: 22667 components: - type: Transform pos: -42.5,15.5 - parent: 89 - - uid: 7957 + parent: 2 + - uid: 22668 components: - type: Transform pos: -41.5,15.5 - parent: 89 - - uid: 7958 + parent: 2 + - uid: 22669 components: - type: Transform pos: -40.5,15.5 - parent: 89 - - uid: 7959 + parent: 2 + - uid: 22670 components: - type: Transform pos: -39.5,15.5 - parent: 89 - - uid: 7960 + parent: 2 + - uid: 22671 components: - type: Transform pos: -38.5,15.5 - parent: 89 - - uid: 7961 + parent: 2 + - uid: 22672 components: - type: Transform pos: -37.5,15.5 - parent: 89 - - uid: 7962 + parent: 2 + - uid: 22673 components: - type: Transform pos: -38.5,14.5 - parent: 89 - - uid: 7963 + parent: 2 + - uid: 22674 components: - type: Transform pos: -45.5,14.5 - parent: 89 - - uid: 7964 + parent: 2 + - uid: 22675 components: - type: Transform pos: -45.5,13.5 - parent: 89 - - uid: 7965 + parent: 2 + - uid: 22676 components: - type: Transform pos: -42.5,12.5 - parent: 89 - - uid: 7966 + parent: 2 + - uid: 22677 components: - type: Transform pos: -41.5,12.5 - parent: 89 - - uid: 7967 + parent: 2 + - uid: 22678 components: - type: Transform pos: -40.5,12.5 - parent: 89 - - uid: 7968 + parent: 2 + - uid: 22679 components: - type: Transform pos: -39.5,12.5 - parent: 89 - - uid: 7969 + parent: 2 + - uid: 22680 components: - type: Transform pos: -38.5,12.5 - parent: 89 - - uid: 7972 + parent: 2 + - uid: 22681 components: - type: Transform pos: -34.5,13.5 - parent: 89 - - uid: 7973 + parent: 2 + - uid: 22682 components: - type: Transform pos: -34.5,14.5 - parent: 89 - - uid: 7974 + parent: 2 + - uid: 22683 components: - type: Transform pos: -34.5,15.5 - parent: 89 - - uid: 7975 + parent: 2 + - uid: 22684 components: - type: Transform pos: -35.5,15.5 - parent: 89 - - uid: 7998 + parent: 2 + - uid: 22685 components: - type: Transform pos: 3.5,38.5 - parent: 89 - - uid: 8015 + parent: 2 + - uid: 22686 components: - type: Transform pos: 2.5,14.5 - parent: 89 - - uid: 8022 + parent: 2 + - uid: 22687 components: - type: Transform pos: -1.5,37.5 - parent: 89 - - uid: 8023 + parent: 2 + - uid: 22688 components: - type: Transform pos: -1.5,33.5 - parent: 89 - - uid: 8024 + parent: 2 + - uid: 22689 components: - type: Transform pos: -0.5,33.5 - parent: 89 - - uid: 8025 + parent: 2 + - uid: 22690 components: - type: Transform pos: 0.5,33.5 - parent: 89 - - uid: 8026 + parent: 2 + - uid: 22691 components: - type: Transform pos: 1.5,33.5 - parent: 89 - - uid: 8027 + parent: 2 + - uid: 22692 components: - type: Transform pos: 2.5,33.5 - parent: 89 - - uid: 8028 + parent: 2 + - uid: 22693 components: - type: Transform pos: 3.5,33.5 - parent: 89 - - uid: 8048 + parent: 2 + - uid: 22694 components: - type: Transform pos: -4.5,37.5 - parent: 89 - - uid: 8049 + parent: 2 + - uid: 22695 components: - type: Transform pos: -4.5,35.5 - parent: 89 - - uid: 8050 + parent: 2 + - uid: 22696 components: - type: Transform pos: -4.5,34.5 - parent: 89 - - uid: 8051 + parent: 2 + - uid: 22697 components: - type: Transform pos: -5.5,34.5 - parent: 89 - - uid: 8052 + parent: 2 + - uid: 22698 components: - type: Transform pos: -6.5,34.5 - parent: 89 - - uid: 8054 + parent: 2 + - uid: 22699 components: - type: Transform pos: -8.5,34.5 - parent: 89 - - uid: 8064 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 8070 + parent: 2 + - uid: 22700 components: - type: Transform pos: -4.5,33.5 - parent: 89 - - uid: 8071 + parent: 2 + - uid: 22701 components: - type: Transform pos: -4.5,32.5 - parent: 89 - - uid: 8072 + parent: 2 + - uid: 22702 components: - type: Transform pos: -4.5,31.5 - parent: 89 - - uid: 8073 + parent: 2 + - uid: 22703 components: - type: Transform pos: -5.5,31.5 - parent: 89 - - uid: 8074 - components: - - type: Transform - pos: -6.5,31.5 - parent: 89 - - uid: 8075 + parent: 2 + - uid: 22704 components: - type: Transform pos: -7.5,31.5 - parent: 89 - - uid: 8076 + parent: 2 + - uid: 22705 components: - type: Transform pos: -8.5,31.5 - parent: 89 - - uid: 8088 + parent: 2 + - uid: 22706 components: - type: Transform pos: 2.5,31.5 - parent: 89 - - uid: 8089 + parent: 2 + - uid: 22707 components: - type: Transform pos: 3.5,31.5 - parent: 89 - - uid: 8090 + parent: 2 + - uid: 22708 components: - type: Transform pos: 3.5,29.5 - parent: 89 - - uid: 8091 + parent: 2 + - uid: 22709 components: - type: Transform pos: 2.5,29.5 - parent: 89 - - uid: 8092 + parent: 2 + - uid: 22710 components: - type: Transform pos: -8.5,29.5 - parent: 89 - - uid: 8093 + parent: 2 + - uid: 22711 components: - type: Transform pos: -7.5,29.5 - parent: 89 - - uid: 8100 + parent: 2 + - uid: 22712 components: - type: Transform pos: -0.5,28.5 - parent: 89 - - uid: 8101 - components: - - type: Transform - pos: -0.5,31.5 - parent: 89 - - uid: 8102 + parent: 2 + - uid: 22713 components: - type: Transform pos: 0.5,31.5 - parent: 89 - - uid: 8103 + parent: 2 + - uid: 22714 components: - type: Transform pos: 1.5,31.5 - parent: 89 - - uid: 8104 + parent: 2 + - uid: 22715 components: - type: Transform pos: 0.5,28.5 - parent: 89 - - uid: 8105 + parent: 2 + - uid: 22716 components: - type: Transform pos: 2.5,28.5 - parent: 89 - - uid: 8106 + parent: 2 + - uid: 22717 components: - type: Transform pos: 1.5,28.5 - parent: 89 - - uid: 8112 + parent: 2 + - uid: 22718 components: - type: Transform pos: -0.5,32.5 - parent: 89 - - uid: 8153 + parent: 2 + - uid: 22719 components: - type: Transform pos: 2.5,27.5 - parent: 89 - - uid: 8154 + parent: 2 + - uid: 22720 components: - type: Transform pos: 3.5,27.5 - parent: 89 - - uid: 8186 + parent: 2 + - uid: 22721 components: - type: Transform pos: -0.5,27.5 - parent: 89 - - uid: 8187 + parent: 2 + - uid: 22722 components: - type: Transform pos: -0.5,25.5 - parent: 89 - - uid: 8188 + parent: 2 + - uid: 22723 components: - type: Transform pos: -0.5,24.5 - parent: 89 - - uid: 8189 + parent: 2 + - uid: 22724 components: - type: Transform pos: 0.5,24.5 - parent: 89 - - uid: 8190 + parent: 2 + - uid: 22725 components: - type: Transform pos: 1.5,24.5 - parent: 89 - - uid: 8191 + parent: 2 + - uid: 22726 components: - type: Transform pos: 2.5,24.5 - parent: 89 - - uid: 8564 + parent: 2 + - uid: 22727 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,18.5 - parent: 89 - - uid: 8581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,0.5 - parent: 89 - - uid: 8583 + parent: 2 + - uid: 22728 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,0.5 - parent: 89 - - uid: 8584 + parent: 2 + - uid: 22729 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,8.5 - parent: 89 - - uid: 8585 + parent: 2 + - uid: 22730 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,7.5 - parent: 89 - - uid: 8587 + parent: 2 + - uid: 22731 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,7.5 - parent: 89 - - uid: 8594 + parent: 2 + - uid: 22732 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,0.5 - parent: 89 - - uid: 8596 + parent: 2 + - uid: 22733 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-0.5 - parent: 89 - - uid: 8597 + parent: 2 + - uid: 22734 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,0.5 - parent: 89 - - uid: 8615 + parent: 2 + - uid: 22735 components: - type: Transform pos: -113.5,-9.5 - parent: 89 - - uid: 8642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,10.5 - parent: 89 - - uid: 8643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,11.5 - parent: 89 - - uid: 8644 + parent: 2 + - uid: 22736 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,11.5 - parent: 89 - - uid: 8645 + parent: 2 + - uid: 22737 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,11.5 - parent: 89 - - uid: 8646 + parent: 2 + - uid: 22738 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,11.5 - parent: 89 - - uid: 8647 + parent: 2 + - uid: 22739 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,11.5 - parent: 89 - - uid: 8648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,12.5 - parent: 89 - - uid: 8649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,13.5 - parent: 89 - - uid: 8650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,14.5 - parent: 89 - - uid: 8651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,15.5 - parent: 89 - - uid: 8652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,16.5 - parent: 89 - - uid: 8653 + parent: 2 + - uid: 22740 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,11.5 - parent: 89 - - uid: 8654 + parent: 2 + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,10.5 - parent: 89 - - uid: 8655 + parent: 2 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,10.5 - parent: 89 - - uid: 8656 + parent: 2 + - uid: 22743 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,8.5 - parent: 89 - - uid: 8657 + parent: 2 + - uid: 22744 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,8.5 - parent: 89 - - uid: 8658 + parent: 2 + - uid: 22745 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,7.5 - parent: 89 - - uid: 8659 + parent: 2 + - uid: 22746 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,6.5 - parent: 89 - - uid: 8660 + parent: 2 + - uid: 22747 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,6.5 - parent: 89 - - uid: 8662 + parent: 2 + - uid: 22748 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,6.5 - parent: 89 - - uid: 8663 + parent: 2 + - uid: 22749 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,6.5 - parent: 89 - - uid: 8665 + parent: 2 + - uid: 22750 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,1.5 - parent: 89 - - uid: 8666 + parent: 2 + - uid: 22751 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,1.5 - parent: 89 - - uid: 8667 + parent: 2 + - uid: 22752 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,1.5 - parent: 89 - - uid: 8668 + parent: 2 + - uid: 22753 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,1.5 - parent: 89 - - uid: 8669 + parent: 2 + - uid: 22754 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,0.5 - parent: 89 - - uid: 8670 + parent: 2 + - uid: 22755 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-0.5 - parent: 89 - - uid: 8671 + parent: 2 + - uid: 22756 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-0.5 - parent: 89 - - uid: 8672 + parent: 2 + - uid: 22757 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,-2.5 - parent: 89 - - uid: 8673 + parent: 2 + - uid: 22758 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,-3.5 - parent: 89 - - uid: 8674 + parent: 2 + - uid: 22759 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,-3.5 - parent: 89 - - uid: 8675 + parent: 2 + - uid: 22760 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,-3.5 - parent: 89 - - uid: 8676 + parent: 2 + - uid: 22761 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-3.5 - parent: 89 - - uid: 8677 + parent: 2 + - uid: 22762 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-3.5 - parent: 89 - - uid: 8678 + parent: 2 + - uid: 22763 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-2.5 - parent: 89 - - uid: 8679 + parent: 2 + - uid: 22764 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-2.5 - parent: 89 - - uid: 8680 - components: - - type: Transform - pos: -121.5,-13.5 - parent: 89 - - uid: 8685 + parent: 2 + - uid: 22765 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-3.5 - parent: 89 - - uid: 8686 + parent: 2 + - uid: 22766 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-3.5 - parent: 89 - - uid: 8687 + parent: 2 + - uid: 22767 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-4.5 - parent: 89 - - uid: 8688 + parent: 2 + - uid: 22768 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-5.5 - parent: 89 - - uid: 8689 + parent: 2 + - uid: 22769 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-6.5 - parent: 89 - - uid: 8690 + parent: 2 + - uid: 22770 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-7.5 - parent: 89 - - uid: 8691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-8.5 - parent: 89 - - uid: 8692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-9.5 - parent: 89 - - uid: 8693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-10.5 - parent: 89 - - uid: 8697 + parent: 2 + - uid: 22771 components: - type: Transform pos: -34.5,26.5 - parent: 89 - - uid: 8703 + parent: 2 + - uid: 22772 components: - type: Transform pos: 2.5,30.5 - parent: 89 - - uid: 8713 + parent: 2 + - uid: 22773 components: - type: Transform pos: -119.5,-11.5 - parent: 89 - - uid: 8714 + parent: 2 + - uid: 22774 components: - type: Transform pos: -121.5,-11.5 - parent: 89 - - uid: 8715 + parent: 2 + - uid: 22775 components: - type: Transform pos: -120.5,-11.5 - parent: 89 - - uid: 8760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,7.5 - parent: 89 - - uid: 9015 - components: - - type: Transform - pos: -110.5,-11.5 - parent: 89 - - uid: 9051 + parent: 2 + - uid: 22776 components: - type: Transform pos: -20.5,11.5 - parent: 89 - - uid: 9053 + parent: 2 + - uid: 22777 components: - type: Transform pos: -28.5,6.5 - parent: 89 - - uid: 9054 + parent: 2 + - uid: 22778 components: - type: Transform pos: -28.5,7.5 - parent: 89 - - uid: 9055 + parent: 2 + - uid: 22779 components: - type: Transform pos: -28.5,8.5 - parent: 89 - - uid: 9056 + parent: 2 + - uid: 22780 components: - type: Transform pos: -28.5,9.5 - parent: 89 - - uid: 9057 + parent: 2 + - uid: 22781 components: - type: Transform pos: -28.5,10.5 - parent: 89 - - uid: 9058 + parent: 2 + - uid: 22782 components: - type: Transform pos: -28.5,11.5 - parent: 89 - - uid: 9059 + parent: 2 + - uid: 22783 components: - type: Transform pos: -28.5,12.5 - parent: 89 - - uid: 9061 + parent: 2 + - uid: 22784 components: - type: Transform pos: -27.5,10.5 - parent: 89 - - uid: 9062 + parent: 2 + - uid: 22785 components: - type: Transform pos: -26.5,10.5 - parent: 89 - - uid: 9063 + parent: 2 + - uid: 22786 components: - type: Transform pos: -25.5,10.5 - parent: 89 - - uid: 9064 + parent: 2 + - uid: 22787 components: - type: Transform pos: -24.5,10.5 - parent: 89 - - uid: 9065 + parent: 2 + - uid: 22788 components: - type: Transform pos: -23.5,10.5 - parent: 89 - - uid: 9066 + parent: 2 + - uid: 22789 components: - type: Transform pos: -22.5,10.5 - parent: 89 - - uid: 9068 + parent: 2 + - uid: 22790 components: - type: Transform pos: -20.5,12.5 - parent: 89 - - uid: 9070 + parent: 2 + - uid: 22791 components: - type: Transform pos: -20.5,14.5 - parent: 89 - - uid: 9071 + parent: 2 + - uid: 22792 components: - type: Transform pos: -20.5,15.5 - parent: 89 - - uid: 9073 + parent: 2 + - uid: 22793 components: - type: Transform pos: -21.5,15.5 - parent: 89 - - uid: 9074 + parent: 2 + - uid: 22794 components: - type: Transform pos: -22.5,15.5 - parent: 89 - - uid: 9075 + parent: 2 + - uid: 22795 components: - type: Transform pos: -23.5,15.5 - parent: 89 - - uid: 9076 + parent: 2 + - uid: 22796 components: - type: Transform pos: -24.5,15.5 - parent: 89 - - uid: 9077 + parent: 2 + - uid: 22797 components: - type: Transform pos: -25.5,15.5 - parent: 89 - - uid: 9078 + parent: 2 + - uid: 22798 components: - type: Transform pos: -27.5,15.5 - parent: 89 - - uid: 9079 + parent: 2 + - uid: 22799 components: - type: Transform pos: -28.5,14.5 - parent: 89 - - uid: 9080 + parent: 2 + - uid: 22800 components: - type: Transform pos: -28.5,15.5 - parent: 89 - - uid: 9083 + parent: 2 + - uid: 22801 components: - type: Transform pos: -28.5,18.5 - parent: 89 - - uid: 9084 + parent: 2 + - uid: 22802 components: - type: Transform pos: -28.5,19.5 - parent: 89 - - uid: 9087 + parent: 2 + - uid: 22803 components: - type: Transform pos: -34.5,21.5 - parent: 89 - - uid: 9088 + parent: 2 + - uid: 22804 components: - type: Transform pos: -25.5,21.5 - parent: 89 - - uid: 9089 + parent: 2 + - uid: 22805 components: - type: Transform pos: -31.5,19.5 - parent: 89 - - uid: 9090 + parent: 2 + - uid: 22806 components: - type: Transform pos: -32.5,19.5 - parent: 89 - - uid: 9091 + parent: 2 + - uid: 22807 components: - type: Transform pos: -33.5,19.5 - parent: 89 - - uid: 9092 + parent: 2 + - uid: 22808 components: - type: Transform pos: -34.5,19.5 - parent: 89 - - uid: 9093 + parent: 2 + - uid: 22809 components: - type: Transform pos: -35.5,19.5 - parent: 89 - - uid: 9094 + parent: 2 + - uid: 22810 components: - type: Transform pos: -36.5,19.5 - parent: 89 - - uid: 9095 + parent: 2 + - uid: 22811 components: - type: Transform pos: -37.5,19.5 - parent: 89 - - uid: 9096 + parent: 2 + - uid: 22812 components: - type: Transform pos: -38.5,19.5 - parent: 89 - - uid: 9097 + parent: 2 + - uid: 22813 components: - type: Transform pos: -39.5,19.5 - parent: 89 - - uid: 9098 + parent: 2 + - uid: 22814 components: - type: Transform pos: -40.5,19.5 - parent: 89 - - uid: 9099 + parent: 2 + - uid: 22815 components: - type: Transform pos: -41.5,19.5 - parent: 89 - - uid: 9100 + parent: 2 + - uid: 22816 components: - type: Transform pos: -42.5,19.5 - parent: 89 - - uid: 9101 + parent: 2 + - uid: 22817 components: - type: Transform pos: -43.5,19.5 - parent: 89 - - uid: 9102 + parent: 2 + - uid: 22818 components: - type: Transform pos: -44.5,19.5 - parent: 89 - - uid: 9103 + parent: 2 + - uid: 22819 components: - type: Transform pos: -45.5,19.5 - parent: 89 - - uid: 9104 + parent: 2 + - uid: 22820 components: - type: Transform pos: -46.5,19.5 - parent: 89 - - uid: 9105 + parent: 2 + - uid: 22821 components: - type: Transform pos: -47.5,19.5 - parent: 89 - - uid: 9106 + parent: 2 + - uid: 22822 components: - type: Transform pos: -26.5,12.5 - parent: 89 - - uid: 9107 + parent: 2 + - uid: 22823 components: - type: Transform pos: -26.5,11.5 - parent: 89 - - uid: 9108 + parent: 2 + - uid: 22824 components: - type: Transform pos: -24.5,12.5 - parent: 89 - - uid: 9109 + parent: 2 + - uid: 22825 components: - type: Transform pos: -24.5,11.5 - parent: 89 - - uid: 9110 + parent: 2 + - uid: 22826 components: - type: Transform pos: -22.5,12.5 - parent: 89 - - uid: 9111 + parent: 2 + - uid: 22827 components: - type: Transform pos: -22.5,11.5 - parent: 89 - - uid: 9112 - components: - - type: Transform - pos: -24.5,16.5 - parent: 89 - - uid: 9113 - components: - - type: Transform - pos: -24.5,17.5 - parent: 89 - - uid: 9114 - components: - - type: Transform - pos: -24.5,18.5 - parent: 89 - - uid: 9115 + parent: 2 + - uid: 22828 components: - type: Transform pos: -24.5,19.5 - parent: 89 - - uid: 9116 + parent: 2 + - uid: 22829 components: - type: Transform pos: -27.5,19.5 - parent: 89 - - uid: 9117 + parent: 2 + - uid: 22830 components: - type: Transform pos: -26.5,19.5 - parent: 89 - - uid: 9118 + parent: 2 + - uid: 22831 components: - type: Transform pos: -25.5,19.5 - parent: 89 - - uid: 9122 + parent: 2 + - uid: 22832 components: - type: Transform pos: -23.5,19.5 - parent: 89 - - uid: 9123 + parent: 2 + - uid: 22833 components: - type: Transform pos: -22.5,19.5 - parent: 89 - - uid: 9124 + parent: 2 + - uid: 22834 components: - type: Transform pos: -21.5,19.5 - parent: 89 - - uid: 9125 + parent: 2 + - uid: 22835 components: - type: Transform pos: -20.5,19.5 - parent: 89 - - uid: 9126 + parent: 2 + - uid: 22836 components: - type: Transform pos: -19.5,19.5 - parent: 89 - - uid: 9127 + parent: 2 + - uid: 22837 components: - type: Transform pos: -18.5,19.5 - parent: 89 - - uid: 9128 + parent: 2 + - uid: 22838 components: - type: Transform pos: -17.5,19.5 - parent: 89 - - uid: 9129 + parent: 2 + - uid: 22839 components: - type: Transform pos: -17.5,18.5 - parent: 89 - - uid: 9133 + parent: 2 + - uid: 22840 components: - type: Transform pos: -17.5,15.5 - parent: 89 - - uid: 9134 + parent: 2 + - uid: 22841 components: - type: Transform pos: -18.5,15.5 - parent: 89 - - uid: 9135 + parent: 2 + - uid: 22842 components: - type: Transform pos: -19.5,15.5 - parent: 89 - - uid: 9136 + parent: 2 + - uid: 22843 components: - type: Transform pos: -15.5,12.5 - parent: 89 - - uid: 9137 + parent: 2 + - uid: 22844 components: - type: Transform pos: -15.5,13.5 - parent: 89 - - uid: 9178 + parent: 2 + - uid: 22845 components: - type: Transform pos: -35.5,28.5 - parent: 89 - - uid: 9184 + parent: 2 + - uid: 22846 components: - type: Transform pos: -35.5,27.5 - parent: 89 - - uid: 9223 + parent: 2 + - uid: 22847 components: - type: Transform pos: -8.5,22.5 - parent: 89 - - uid: 9224 + parent: 2 + - uid: 22848 components: - type: Transform pos: -7.5,22.5 - parent: 89 - - uid: 9228 + parent: 2 + - uid: 22849 components: - type: Transform pos: -115.5,16.5 - parent: 89 - - uid: 9229 + parent: 2 + - uid: 22850 components: - type: Transform pos: -116.5,16.5 - parent: 89 - - uid: 9230 + parent: 2 + - uid: 22851 components: - type: Transform pos: -117.5,16.5 - parent: 89 - - uid: 9231 + parent: 2 + - uid: 22852 components: - type: Transform pos: -118.5,16.5 - parent: 89 - - uid: 9232 + parent: 2 + - uid: 22853 components: - type: Transform pos: -118.5,14.5 - parent: 89 - - uid: 9233 + parent: 2 + - uid: 22854 components: - type: Transform pos: -118.5,13.5 - parent: 89 - - uid: 9333 + parent: 2 + - uid: 22855 components: - type: Transform pos: 0.5,14.5 - parent: 89 - - uid: 9343 + parent: 2 + - uid: 22856 components: - type: Transform pos: -32.5,22.5 - parent: 89 - - uid: 9478 + parent: 2 + - uid: 22857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,27.5 + parent: 2 + - uid: 22858 components: - type: Transform pos: -36.5,6.5 - parent: 89 - - uid: 9479 + parent: 2 + - uid: 22859 components: - type: Transform pos: -35.5,6.5 - parent: 89 - - uid: 9551 + parent: 2 + - uid: 22860 components: - type: Transform pos: -37.5,6.5 - parent: 89 - - uid: 9615 + parent: 2 + - uid: 22861 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,21.5 - parent: 89 - - uid: 9616 + parent: 2 + - uid: 22862 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,21.5 - parent: 89 - - uid: 9619 + parent: 2 + - uid: 22863 components: - type: Transform pos: -26.5,-26.5 - parent: 89 - - uid: 9620 + parent: 2 + - uid: 22864 components: - type: Transform pos: -25.5,-26.5 - parent: 89 - - uid: 9709 + parent: 2 + - uid: 22865 components: - type: Transform pos: -61.5,42.5 - parent: 89 - - uid: 9710 + parent: 2 + - uid: 22866 components: - type: Transform pos: -63.5,36.5 - parent: 89 - - uid: 9711 + parent: 2 + - uid: 22867 components: - type: Transform pos: -62.5,42.5 - parent: 89 - - uid: 9712 + parent: 2 + - uid: 22868 components: - type: Transform pos: -63.5,42.5 - parent: 89 - - uid: 9713 + parent: 2 + - uid: 22869 components: - type: Transform pos: -63.5,41.5 - parent: 89 - - uid: 9714 + parent: 2 + - uid: 22870 components: - type: Transform pos: -63.5,40.5 - parent: 89 - - uid: 9715 + parent: 2 + - uid: 22871 components: - type: Transform pos: -56.5,27.5 - parent: 89 - - uid: 9716 + parent: 2 + - uid: 22872 components: - type: Transform pos: -55.5,27.5 - parent: 89 - - uid: 9718 + parent: 2 + - uid: 22873 components: - type: Transform pos: -61.5,27.5 - parent: 89 - - uid: 9719 + parent: 2 + - uid: 22874 components: - type: Transform pos: -62.5,27.5 - parent: 89 - - uid: 9721 + parent: 2 + - uid: 22875 components: - type: Transform pos: -63.5,28.5 - parent: 89 - - uid: 9758 + parent: 2 + - uid: 22876 components: - type: Transform pos: -49.5,19.5 - parent: 89 - - uid: 9759 + parent: 2 + - uid: 22877 components: - type: Transform pos: -50.5,19.5 - parent: 89 - - uid: 9760 + parent: 2 + - uid: 22878 components: - type: Transform pos: -51.5,19.5 - parent: 89 - - uid: 9761 + parent: 2 + - uid: 22879 components: - type: Transform pos: -52.5,19.5 - parent: 89 - - uid: 9762 + parent: 2 + - uid: 22880 components: - type: Transform pos: -53.5,19.5 - parent: 89 - - uid: 9763 + parent: 2 + - uid: 22881 components: - type: Transform pos: -54.5,19.5 - parent: 89 - - uid: 9764 + parent: 2 + - uid: 22882 components: - type: Transform pos: -54.5,20.5 - parent: 89 - - uid: 9765 + parent: 2 + - uid: 22883 components: - type: Transform pos: -54.5,21.5 - parent: 89 - - uid: 9766 + parent: 2 + - uid: 22884 components: - type: Transform pos: -54.5,22.5 - parent: 89 - - uid: 9767 + parent: 2 + - uid: 22885 components: - type: Transform pos: -54.5,23.5 - parent: 89 - - uid: 9768 + parent: 2 + - uid: 22886 components: - type: Transform pos: -54.5,24.5 - parent: 89 - - uid: 9770 + parent: 2 + - uid: 22887 components: - type: Transform pos: -54.5,26.5 - parent: 89 - - uid: 9775 + parent: 2 + - uid: 22888 components: - type: Transform pos: -63.5,32.5 - parent: 89 - - uid: 10048 + parent: 2 + - uid: 22889 components: - type: Transform pos: -24.5,23.5 - parent: 89 - - uid: 10061 + parent: 2 + - uid: 22890 components: - type: Transform pos: -24.5,24.5 - parent: 89 - - uid: 10062 + parent: 2 + - uid: 22891 components: - type: Transform pos: -24.5,25.5 - parent: 89 - - uid: 10063 + parent: 2 + - uid: 22892 components: - type: Transform pos: -24.5,26.5 - parent: 89 - - uid: 10064 + parent: 2 + - uid: 22893 components: - type: Transform pos: -25.5,26.5 - parent: 89 - - uid: 10065 + parent: 2 + - uid: 22894 components: - type: Transform pos: -26.5,26.5 - parent: 89 - - uid: 10066 + parent: 2 + - uid: 22895 components: - type: Transform pos: -27.5,26.5 - parent: 89 - - uid: 10067 + parent: 2 + - uid: 22896 components: - type: Transform pos: -28.5,26.5 - parent: 89 - - uid: 10068 + parent: 2 + - uid: 22897 components: - type: Transform pos: -28.5,24.5 - parent: 89 - - uid: 10069 + parent: 2 + - uid: 22898 components: - type: Transform pos: -28.5,23.5 - parent: 89 - - uid: 10070 + parent: 2 + - uid: 22899 components: - type: Transform pos: -77.5,-5.5 - parent: 89 - - uid: 10073 + parent: 2 + - uid: 22900 components: - type: Transform pos: -31.5,25.5 - parent: 89 - - uid: 10074 + parent: 2 + - uid: 22901 components: - type: Transform pos: -31.5,26.5 - parent: 89 - - uid: 10076 + parent: 2 + - uid: 22902 components: - type: Transform pos: -77.5,-6.5 - parent: 89 - - uid: 10079 + parent: 2 + - uid: 22903 components: - type: Transform pos: -77.5,-7.5 - parent: 89 - - uid: 10080 + parent: 2 + - uid: 22904 components: - type: Transform pos: -76.5,-7.5 - parent: 89 - - uid: 10081 + parent: 2 + - uid: 22905 components: - type: Transform pos: -75.5,-7.5 - parent: 89 - - uid: 10082 + parent: 2 + - uid: 22906 components: - type: Transform pos: -24.5,28.5 - parent: 89 - - uid: 10083 + parent: 2 + - uid: 22907 components: - type: Transform pos: -73.5,-7.5 - parent: 89 - - uid: 10084 + parent: 2 + - uid: 22908 components: - type: Transform pos: -24.5,29.5 - parent: 89 - - uid: 10085 + parent: 2 + - uid: 22909 components: - type: Transform pos: -24.5,30.5 - parent: 89 - - uid: 10087 + parent: 2 + - uid: 22910 components: - type: Transform pos: -25.5,30.5 - parent: 89 - - uid: 10088 + parent: 2 + - uid: 22911 components: - type: Transform pos: -26.5,30.5 - parent: 89 - - uid: 10089 + parent: 2 + - uid: 22912 components: - type: Transform pos: -27.5,30.5 - parent: 89 - - uid: 10090 + parent: 2 + - uid: 22913 components: - type: Transform pos: -28.5,30.5 - parent: 89 - - uid: 10091 + parent: 2 + - uid: 22914 components: - type: Transform pos: -28.5,28.5 - parent: 89 - - uid: 10092 + parent: 2 + - uid: 22915 components: - type: Transform pos: -28.5,27.5 - parent: 89 - - uid: 10093 + parent: 2 + - uid: 22916 components: - type: Transform pos: -31.5,29.5 - parent: 89 - - uid: 10094 + parent: 2 + - uid: 22917 components: - type: Transform pos: -31.5,30.5 - parent: 89 - - uid: 10095 + parent: 2 + - uid: 22918 components: - type: Transform pos: -32.5,30.5 - parent: 89 - - uid: 10096 + parent: 2 + - uid: 22919 components: - type: Transform pos: -33.5,30.5 - parent: 89 - - uid: 10097 + parent: 2 + - uid: 22920 components: - type: Transform pos: -34.5,30.5 - parent: 89 - - uid: 10098 + parent: 2 + - uid: 22921 components: - type: Transform pos: -35.5,30.5 - parent: 89 - - uid: 10099 + parent: 2 + - uid: 22922 components: - type: Transform pos: -35.5,29.5 - parent: 89 - - uid: 10100 + parent: 2 + - uid: 22923 components: - type: Transform pos: -34.5,22.5 - parent: 89 - - uid: 10101 + parent: 2 + - uid: 22924 components: - type: Transform pos: -35.5,22.5 - parent: 89 - - uid: 10102 + parent: 2 + - uid: 22925 components: - type: Transform pos: -35.5,23.5 - parent: 89 - - uid: 10104 + parent: 2 + - uid: 22926 components: - type: Transform pos: -24.5,33.5 - parent: 89 - - uid: 10105 + parent: 2 + - uid: 22927 components: - type: Transform pos: -28.5,32.5 - parent: 89 - - uid: 10107 + parent: 2 + - uid: 22928 components: - type: Transform pos: -31.5,32.5 - parent: 89 - - uid: 10108 + parent: 2 + - uid: 22929 components: - type: Transform pos: -31.5,33.5 - parent: 89 - - uid: 10109 + parent: 2 + - uid: 22930 components: - type: Transform pos: -35.5,31.5 - parent: 89 - - uid: 10110 + parent: 2 + - uid: 22931 components: - type: Transform pos: -35.5,32.5 - parent: 89 - - uid: 10111 + parent: 2 + - uid: 22932 components: - type: Transform pos: -35.5,33.5 - parent: 89 - - uid: 10135 + parent: 2 + - uid: 22933 components: - type: Transform pos: -79.5,-4.5 - parent: 89 - - uid: 10160 + parent: 2 + - uid: 22934 components: - type: Transform pos: -77.5,-4.5 - parent: 89 - - uid: 10161 + parent: 2 + - uid: 22935 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-2.5 - parent: 89 - - uid: 10162 + parent: 2 + - uid: 22936 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-1.5 - parent: 89 - - uid: 10178 + parent: 2 + - uid: 22937 components: - type: Transform pos: -76.5,-4.5 - parent: 89 - - uid: 10201 + parent: 2 + - uid: 22938 components: - type: Transform pos: 8.5,-17.5 - parent: 89 - - uid: 10205 + parent: 2 + - uid: 22939 components: - type: Transform pos: -80.5,-0.5 - parent: 89 - - uid: 10216 + parent: 2 + - uid: 22940 components: - type: Transform pos: -80.5,-4.5 - parent: 89 - - uid: 10217 + parent: 2 + - uid: 22941 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-7.5 - parent: 89 - - uid: 10235 + parent: 2 + - uid: 22942 components: - type: Transform pos: 9.5,-17.5 - parent: 89 - - uid: 10286 - components: - - type: Transform - pos: -39.5,33.5 - parent: 89 - - uid: 10287 + parent: 2 + - uid: 22943 components: - type: Transform pos: -38.5,33.5 - parent: 89 - - uid: 10288 + parent: 2 + - uid: 22944 components: - type: Transform pos: -38.5,32.5 - parent: 89 - - uid: 10290 + parent: 2 + - uid: 22945 components: - type: Transform pos: -36.5,30.5 - parent: 89 - - uid: 10291 + parent: 2 + - uid: 22946 components: - type: Transform pos: -37.5,30.5 - parent: 89 - - uid: 10292 + parent: 2 + - uid: 22947 components: - type: Transform pos: -38.5,30.5 - parent: 89 - - uid: 10304 + parent: 2 + - uid: 22948 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,1.5 - parent: 89 - - uid: 10306 + parent: 2 + - uid: 22949 components: - type: Transform pos: -38.5,25.5 - parent: 89 - - uid: 10307 - components: - - type: Transform - pos: -38.5,26.5 - parent: 89 - - uid: 10308 + parent: 2 + - uid: 22950 components: - type: Transform pos: -36.5,26.5 - parent: 89 - - uid: 10322 + parent: 2 + - uid: 22951 components: - type: Transform pos: -23.5,26.5 - parent: 89 - - uid: 10323 + parent: 2 + - uid: 22952 components: - type: Transform pos: -21.5,26.5 - parent: 89 - - uid: 10324 + parent: 2 + - uid: 22953 components: - type: Transform pos: -21.5,25.5 - parent: 89 - - uid: 10325 + parent: 2 + - uid: 22954 components: - type: Transform pos: -20.5,25.5 - parent: 89 - - uid: 10326 + parent: 2 + - uid: 22955 components: - type: Transform pos: -19.5,25.5 - parent: 89 - - uid: 10342 + parent: 2 + - uid: 22956 components: - type: Transform pos: -21.5,33.5 - parent: 89 - - uid: 10343 + parent: 2 + - uid: 22957 components: - type: Transform pos: -20.5,33.5 - parent: 89 - - uid: 10344 + parent: 2 + - uid: 22958 components: - type: Transform pos: -23.5,30.5 - parent: 89 - - uid: 10345 + parent: 2 + - uid: 22959 components: - type: Transform pos: -22.5,30.5 - parent: 89 - - uid: 10346 + parent: 2 + - uid: 22960 components: - type: Transform pos: -21.5,30.5 - parent: 89 - - uid: 10347 + parent: 2 + - uid: 22961 components: - type: Transform pos: -21.5,32.5 - parent: 89 - - uid: 10390 + parent: 2 + - uid: 22962 components: - type: Transform pos: -122.5,-11.5 - parent: 89 - - uid: 10401 + parent: 2 + - uid: 22963 components: - type: Transform pos: -123.5,-11.5 - parent: 89 - - uid: 10451 + parent: 2 + - uid: 22964 components: - type: Transform pos: 16.5,10.5 - parent: 89 - - uid: 10516 + parent: 2 + - uid: 22965 components: - type: Transform pos: -86.5,19.5 - parent: 89 - - uid: 10517 + parent: 2 + - uid: 22966 components: - type: Transform pos: -86.5,20.5 - parent: 89 - - uid: 10540 + parent: 2 + - uid: 22967 components: - type: Transform pos: -79.5,15.5 - parent: 89 - - uid: 10542 + parent: 2 + - uid: 22968 components: - type: Transform pos: -79.5,17.5 - parent: 89 - - uid: 10543 + parent: 2 + - uid: 22969 components: - type: Transform pos: -79.5,18.5 - parent: 89 - - uid: 10544 + parent: 2 + - uid: 22970 components: - type: Transform pos: -79.5,20.5 - parent: 89 - - uid: 10545 + parent: 2 + - uid: 22971 components: - type: Transform pos: -79.5,21.5 - parent: 89 - - uid: 10631 - components: - - type: Transform - pos: 4.5,5.5 - parent: 89 - - uid: 10632 + parent: 2 + - uid: 22972 components: - type: Transform pos: 14.5,10.5 - parent: 89 - - uid: 10633 + parent: 2 + - uid: 22973 components: - type: Transform pos: 13.5,10.5 - parent: 89 - - uid: 10634 + parent: 2 + - uid: 22974 components: - type: Transform pos: 12.5,10.5 - parent: 89 - - uid: 10637 + parent: 2 + - uid: 22975 components: - type: Transform pos: 11.5,10.5 - parent: 89 - - uid: 10638 + parent: 2 + - uid: 22976 components: - type: Transform pos: 8.5,10.5 - parent: 89 - - uid: 10639 + parent: 2 + - uid: 22977 components: - type: Transform pos: 8.5,10.5 - parent: 89 - - uid: 10640 + parent: 2 + - uid: 22978 components: - type: Transform pos: 7.5,10.5 - parent: 89 - - uid: 10641 + parent: 2 + - uid: 22979 components: - type: Transform pos: 10.5,10.5 - parent: 89 - - uid: 10642 + parent: 2 + - uid: 22980 components: - type: Transform pos: 10.5,10.5 - parent: 89 - - uid: 10643 + parent: 2 + - uid: 22981 components: - type: Transform pos: 9.5,10.5 - parent: 89 - - uid: 10644 - components: - - type: Transform - pos: 4.5,6.5 - parent: 89 - - uid: 10645 - components: - - type: Transform - pos: 4.5,7.5 - parent: 89 - - uid: 10646 - components: - - type: Transform - pos: 4.5,8.5 - parent: 89 - - uid: 10648 - components: - - type: Transform - pos: 4.5,9.5 - parent: 89 - - uid: 10649 - components: - - type: Transform - pos: 4.5,10.5 - parent: 89 - - uid: 10650 - components: - - type: Transform - pos: 4.5,10.5 - parent: 89 - - uid: 10651 + parent: 2 + - uid: 22982 components: - type: Transform pos: 5.5,10.5 - parent: 89 - - uid: 10654 + parent: 2 + - uid: 22983 components: - type: Transform pos: 15.5,10.5 - parent: 89 - - uid: 10663 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 89 - - uid: 10664 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 89 - - uid: 10665 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 89 - - uid: 10670 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 89 - - uid: 10756 + parent: 2 + - uid: 22984 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 - parent: 89 - - uid: 10762 + parent: 2 + - uid: 22985 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,0.5 - parent: 89 - - uid: 10768 + parent: 2 + - uid: 22986 components: - type: Transform pos: -13.5,16.5 - parent: 89 - - uid: 10804 + parent: 2 + - uid: 22987 components: - type: Transform pos: 12.5,16.5 - parent: 89 - - uid: 10805 + parent: 2 + - uid: 22988 components: - type: Transform pos: 12.5,18.5 - parent: 89 - - uid: 10806 + parent: 2 + - uid: 22989 components: - type: Transform pos: 12.5,17.5 - parent: 89 - - uid: 10807 + parent: 2 + - uid: 22990 components: - type: Transform pos: 12.5,19.5 - parent: 89 - - uid: 10833 + parent: 2 + - uid: 22991 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,19.5 - parent: 89 - - uid: 10844 + parent: 2 + - uid: 22992 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,7.5 - parent: 89 - - uid: 10847 + parent: 2 + - uid: 22993 components: - type: Transform pos: -9.5,16.5 - parent: 89 - - uid: 10859 + parent: 2 + - uid: 22994 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,15.5 - parent: 89 - - uid: 10867 + parent: 2 + - uid: 22995 components: - type: Transform pos: 12.5,18.5 - parent: 89 - - uid: 10892 + parent: 2 + - uid: 22996 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,19.5 - parent: 89 - - uid: 10917 + parent: 2 + - uid: 22997 components: - type: Transform pos: -11.5,16.5 - parent: 89 - - uid: 10920 + parent: 2 + - uid: 22998 components: - type: Transform pos: -3.5,21.5 - parent: 89 - - uid: 10929 + parent: 2 + - uid: 22999 components: - type: Transform pos: 4.5,18.5 - parent: 89 - - uid: 10931 + parent: 2 + - uid: 23000 components: - type: Transform pos: 4.5,17.5 - parent: 89 - - uid: 10933 + parent: 2 + - uid: 23001 components: - type: Transform pos: 12.5,15.5 - parent: 89 - - uid: 10935 + parent: 2 + - uid: 23002 components: - type: Transform pos: 4.5,16.5 - parent: 89 - - uid: 10975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 89 - - uid: 10982 + parent: 2 + - uid: 23003 components: - type: Transform pos: -27.5,6.5 - parent: 89 - - uid: 11051 + parent: 2 + - uid: 23004 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,19.5 - parent: 89 - - uid: 11057 - components: - - type: Transform - pos: -2.5,10.5 - parent: 89 - - uid: 11077 + parent: 2 + - uid: 23005 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,19.5 - parent: 89 - - uid: 11079 + parent: 2 + - uid: 23006 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,19.5 - parent: 89 - - uid: 11080 + parent: 2 + - uid: 23007 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,19.5 - parent: 89 - - uid: 11081 + parent: 2 + - uid: 23008 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,21.5 - parent: 89 - - uid: 11192 + parent: 2 + - uid: 23009 components: - type: Transform pos: -13.5,15.5 - parent: 89 - - uid: 11193 + parent: 2 + - uid: 23010 components: - type: Transform pos: -13.5,14.5 - parent: 89 - - uid: 11194 + parent: 2 + - uid: 23011 components: - type: Transform pos: -13.5,21.5 - parent: 89 - - uid: 11195 + parent: 2 + - uid: 23012 components: - type: Transform pos: -13.5,12.5 - parent: 89 - - uid: 11196 + parent: 2 + - uid: 23013 components: - type: Transform pos: -13.5,11.5 - parent: 89 - - uid: 11197 + parent: 2 + - uid: 23014 components: - type: Transform pos: -13.5,10.5 - parent: 89 - - uid: 11198 - components: - - type: Transform - pos: -3.5,10.5 - parent: 89 - - uid: 11311 + parent: 2 + - uid: 23015 components: - type: Transform pos: 1.5,22.5 - parent: 89 - - uid: 11352 + parent: 2 + - uid: 23016 components: - type: Transform pos: -1.5,22.5 - parent: 89 - - uid: 11377 + parent: 2 + - uid: 23017 components: - type: Transform pos: -4.5,22.5 - parent: 89 - - uid: 11379 - components: - - type: Transform - pos: -4.5,5.5 - parent: 89 - - uid: 11391 + parent: 2 + - uid: 23018 components: - type: Transform pos: 4.5,22.5 - parent: 89 - - uid: 11399 + parent: 2 + - uid: 23019 components: - type: Transform pos: 2.5,22.5 - parent: 89 - - uid: 11400 + parent: 2 + - uid: 23020 components: - type: Transform pos: 0.5,22.5 - parent: 89 - - uid: 11401 + parent: 2 + - uid: 23021 components: - type: Transform pos: -3.5,22.5 - parent: 89 - - uid: 11402 + parent: 2 + - uid: 23022 components: - type: Transform pos: -2.5,22.5 - parent: 89 - - uid: 11403 + parent: 2 + - uid: 23023 components: - type: Transform pos: -0.5,22.5 - parent: 89 - - uid: 11406 + parent: 2 + - uid: 23024 components: - type: Transform pos: 3.5,22.5 - parent: 89 - - uid: 11407 + parent: 2 + - uid: 23025 components: - type: Transform pos: -13.5,17.5 - parent: 89 - - uid: 11410 + parent: 2 + - uid: 23026 components: - type: Transform pos: -13.5,19.5 - parent: 89 - - uid: 11760 + parent: 2 + - uid: 23027 components: - type: Transform pos: -35.5,-15.5 - parent: 89 - - uid: 11764 + parent: 2 + - uid: 23028 components: - type: Transform pos: -34.5,-15.5 - parent: 89 - - uid: 12625 + parent: 2 + - uid: 23029 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,19.5 - parent: 89 - - uid: 12629 + parent: 2 + - uid: 23030 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,15.5 - parent: 89 - - uid: 12661 + parent: 2 + - uid: 23031 components: - type: Transform pos: 1.5,18.5 - parent: 89 - - uid: 12813 + parent: 2 + - uid: 23032 components: - type: Transform pos: 20.5,24.5 - parent: 89 - - uid: 12819 + parent: 2 + - uid: 23033 components: - type: Transform pos: 21.5,24.5 - parent: 89 - - uid: 12832 + parent: 2 + - uid: 23034 components: - type: Transform pos: -3.5,19.5 - parent: 89 - - uid: 14030 + parent: 2 + - uid: 23035 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,33.5 - parent: 89 - - uid: 14037 + parent: 2 + - uid: 23036 components: - type: Transform pos: -13.5,20.5 - parent: 89 - - uid: 14038 + parent: 2 + - uid: 23037 components: - type: Transform pos: -9.5,22.5 - parent: 89 - - uid: 14078 + parent: 2 + - uid: 23038 components: - type: Transform pos: 32.5,21.5 - parent: 89 - - uid: 14180 + parent: 2 + - uid: 23039 components: - type: Transform pos: 35.5,21.5 - parent: 89 - - uid: 14295 + parent: 2 + - uid: 23040 components: - type: Transform pos: 26.5,21.5 - parent: 89 - - uid: 14366 + parent: 2 + - uid: 23041 components: - type: Transform pos: -7.5,16.5 - parent: 89 - - uid: 14524 + parent: 2 + - uid: 23042 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-6.5 - parent: 89 - - uid: 14528 + parent: 2 + - uid: 23043 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-5.5 - parent: 89 - - uid: 14588 + parent: 2 + - uid: 23044 components: - type: Transform pos: -127.5,21.5 - parent: 89 - - uid: 14661 - components: - - type: Transform - pos: -0.5,14.5 - parent: 89 - - uid: 14872 + parent: 2 + - uid: 23045 components: - type: Transform pos: 25.5,21.5 - parent: 89 - - uid: 14941 - components: - - type: Transform - pos: 27.5,21.5 - parent: 89 - - uid: 14942 - components: - - type: Transform - pos: 30.5,21.5 - parent: 89 - - uid: 14943 - components: - - type: Transform - pos: 29.5,21.5 - parent: 89 - - uid: 15105 - components: - - type: Transform - pos: -6.5,22.5 - parent: 89 - - uid: 15106 - components: - - type: Transform - pos: -13.5,22.5 - parent: 89 - - uid: 15170 + parent: 2 + - uid: 23046 components: - - type: Transform - pos: -3.5,17.5 - parent: 89 - - uid: 15173 + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 23047 components: - type: Transform - pos: -13.5,18.5 - parent: 89 - - uid: 15184 + pos: 30.5,21.5 + parent: 2 + - uid: 23048 components: - type: Transform - pos: 29.5,18.5 - parent: 89 - - uid: 15207 + pos: 29.5,21.5 + parent: 2 + - uid: 23049 components: - type: Transform - pos: -0.5,10.5 - parent: 89 - - uid: 15208 + pos: -6.5,22.5 + parent: 2 + - uid: 23050 components: - type: Transform - pos: 2.5,10.5 - parent: 89 - - uid: 15213 + pos: -3.5,17.5 + parent: 2 + - uid: 23051 components: - type: Transform - pos: 3.5,10.5 - parent: 89 - - uid: 15215 + pos: -13.5,18.5 + parent: 2 + - uid: 23052 components: - type: Transform - pos: 1.5,10.5 - parent: 89 - - uid: 15256 + pos: 29.5,18.5 + parent: 2 + - uid: 23053 components: - type: Transform pos: 3.5,14.5 - parent: 89 - - uid: 15283 + parent: 2 + - uid: 23054 components: - type: Transform pos: 28.5,21.5 - parent: 89 - - uid: 15295 + parent: 2 + - uid: 23055 components: - type: Transform pos: 29.5,20.5 - parent: 89 - - uid: 15298 + parent: 2 + - uid: 23056 components: - type: Transform pos: 22.5,22.5 - parent: 89 - - uid: 15455 + parent: 2 + - uid: 23057 components: - type: Transform pos: 3.5,24.5 - parent: 89 - - uid: 15456 + parent: 2 + - uid: 23058 components: - type: Transform pos: 3.5,25.5 - parent: 89 - - uid: 15557 + parent: 2 + - uid: 23059 components: - type: Transform pos: 19.5,24.5 - parent: 89 - - uid: 15558 + parent: 2 + - uid: 23060 components: - type: Transform pos: 18.5,24.5 - parent: 89 - - uid: 15559 + parent: 2 + - uid: 23061 components: - type: Transform pos: 16.5,24.5 - parent: 89 - - uid: 15565 + parent: 2 + - uid: 23062 components: - type: Transform pos: 5.5,25.5 - parent: 89 - - uid: 15768 + parent: 2 + - uid: 23063 components: - type: Transform pos: 5.5,24.5 - parent: 89 - - uid: 15867 + parent: 2 + - uid: 23064 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,20.5 - parent: 89 - - uid: 15879 + parent: 2 + - uid: 23065 components: - type: Transform pos: 17.5,20.5 - parent: 89 - - uid: 15885 + parent: 2 + - uid: 23066 components: - type: Transform pos: 4.5,27.5 - parent: 89 - - uid: 15898 + parent: 2 + - uid: 23067 components: - type: Transform pos: 3.5,26.5 - parent: 89 - - uid: 15899 + parent: 2 + - uid: 23068 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 - parent: 89 - - uid: 15905 + parent: 2 + - uid: 23069 components: - type: Transform pos: 17.5,16.5 - parent: 89 - - uid: 15909 + parent: 2 + - uid: 23070 components: - type: Transform pos: 23.5,20.5 - parent: 89 - - uid: 15911 + parent: 2 + - uid: 23071 components: - type: Transform pos: 16.5,16.5 - parent: 89 - - uid: 15914 + parent: 2 + - uid: 23072 components: - type: Transform pos: 18.5,20.5 - parent: 89 - - uid: 15917 + parent: 2 + - uid: 23073 components: - type: Transform pos: 17.5,24.5 - parent: 89 - - uid: 15918 + parent: 2 + - uid: 23074 components: - type: Transform pos: 22.5,21.5 - parent: 89 - - uid: 15951 + parent: 2 + - uid: 23075 components: - type: Transform pos: 23.5,16.5 - parent: 89 - - uid: 15952 + parent: 2 + - uid: 23076 components: - type: Transform pos: 23.5,21.5 - parent: 89 - - uid: 16033 + parent: 2 + - uid: 23077 components: - type: Transform pos: 15.5,16.5 - parent: 89 - - uid: 16034 + parent: 2 + - uid: 23078 components: - type: Transform pos: 15.5,21.5 - parent: 89 - - uid: 16038 + parent: 2 + - uid: 23079 components: - type: Transform pos: 15.5,20.5 - parent: 89 - - uid: 16039 + parent: 2 + - uid: 23080 components: - type: Transform pos: 15.5,18.5 - parent: 89 - - uid: 16041 + parent: 2 + - uid: 23081 components: - type: Transform pos: 15.5,19.5 - parent: 89 - - uid: 16042 + parent: 2 + - uid: 23082 components: - type: Transform pos: 15.5,17.5 - parent: 89 - - uid: 16044 + parent: 2 + - uid: 23083 components: - type: Transform pos: 15.5,23.5 - parent: 89 - - uid: 16049 + parent: 2 + - uid: 23084 components: - type: Transform pos: 16.5,20.5 - parent: 89 - - uid: 16050 + parent: 2 + - uid: 23085 components: - type: Transform pos: 20.5,20.5 - parent: 89 - - uid: 16051 + parent: 2 + - uid: 23086 components: - type: Transform pos: 21.5,20.5 - parent: 89 - - uid: 16052 + parent: 2 + - uid: 23087 components: - type: Transform pos: 22.5,23.5 - parent: 89 - - uid: 16059 + parent: 2 + - uid: 23088 components: - type: Transform pos: 8.5,25.5 - parent: 89 - - uid: 16070 + parent: 2 + - uid: 23089 components: - type: Transform pos: 11.5,25.5 - parent: 89 - - uid: 16071 + parent: 2 + - uid: 23090 components: - type: Transform pos: 7.5,25.5 - parent: 89 - - uid: 16072 + parent: 2 + - uid: 23091 components: - type: Transform pos: 9.5,25.5 - parent: 89 - - uid: 16073 + parent: 2 + - uid: 23092 components: - type: Transform pos: 10.5,25.5 - parent: 89 - - uid: 16074 + parent: 2 + - uid: 23093 components: - type: Transform pos: 15.5,24.5 - parent: 89 - - uid: 16130 + parent: 2 + - uid: 23094 components: - type: Transform pos: 22.5,24.5 - parent: 89 - - uid: 16145 + parent: 2 + - uid: 23095 components: - type: Transform pos: 5.5,23.5 - parent: 89 - - uid: 16159 + parent: 2 + - uid: 23096 components: - type: Transform pos: 19.5,20.5 - parent: 89 - - uid: 16160 + parent: 2 + - uid: 23097 components: - type: Transform pos: 19.5,16.5 - parent: 89 - - uid: 16162 + parent: 2 + - uid: 23098 components: - type: Transform pos: 22.5,20.5 - parent: 89 - - uid: 16172 + parent: 2 + - uid: 23099 components: - type: Transform pos: 6.5,25.5 - parent: 89 - - uid: 16493 + parent: 2 + - uid: 23100 components: - type: Transform pos: 26.5,23.5 - parent: 89 - - uid: 16495 + parent: 2 + - uid: 23101 components: - type: Transform pos: 26.5,24.5 - parent: 89 - - uid: 16498 + parent: 2 + - uid: 23102 components: - type: Transform pos: 31.5,25.5 - parent: 89 - - uid: 16502 - components: - - type: Transform - pos: 29.5,26.5 - parent: 89 - - uid: 16514 + parent: 2 + - uid: 23103 components: - type: Transform pos: -7.5,21.5 - parent: 89 - - uid: 16629 + parent: 2 + - uid: 23104 components: - type: Transform pos: 34.5,21.5 - parent: 89 - - uid: 16657 + parent: 2 + - uid: 23105 components: - type: Transform pos: 33.5,21.5 - parent: 89 - - uid: 16689 + parent: 2 + - uid: 23106 components: - type: Transform pos: -36.5,-15.5 - parent: 89 - - uid: 16693 + parent: 2 + - uid: 23107 components: - type: Transform pos: -32.5,-15.5 - parent: 89 - - uid: 16887 + parent: 2 + - uid: 23108 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,21.5 - parent: 89 - - uid: 17126 + parent: 2 + - uid: 23109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - uid: 23111 components: - type: Transform pos: -28.5,17.5 - parent: 89 - - uid: 17147 + parent: 2 + - uid: 23112 components: - type: Transform pos: -1.5,34.5 - parent: 89 - - uid: 17896 + parent: 2 + - uid: 23113 components: - type: Transform pos: 11.5,-17.5 - parent: 89 - - uid: 17903 + parent: 2 + - uid: 23114 components: - type: Transform pos: 15.5,-17.5 - parent: 89 - - uid: 17921 + parent: 2 + - uid: 23115 components: - type: Transform pos: 11.5,-16.5 - parent: 89 - - uid: 17923 + parent: 2 + - uid: 23116 components: - type: Transform pos: 13.5,-17.5 - parent: 89 - - uid: 18143 + parent: 2 + - uid: 23117 components: - type: Transform pos: 14.5,-17.5 - parent: 89 - - uid: 18434 + parent: 2 + - uid: 23118 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,20.5 - parent: 89 - - uid: 18718 + parent: 2 + - uid: 23119 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-5.5 - parent: 89 - - uid: 18826 - components: - - type: Transform - pos: 29.5,25.5 - parent: 89 - - uid: 19057 + parent: 2 + - uid: 23120 components: - type: Transform pos: -25.5,6.5 - parent: 89 - - uid: 19059 + parent: 2 + - uid: 23121 components: - type: Transform pos: -24.5,6.5 - parent: 89 - - uid: 19060 - components: - - type: Transform - pos: -24.5,7.5 - parent: 89 - - uid: 19066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 89 - - uid: 19123 + parent: 2 + - uid: 23122 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-7.5 - parent: 89 - - uid: 19215 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 89 - - uid: 19217 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 89 - - uid: 19218 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 89 - - uid: 19251 + parent: 2 + - uid: 23123 components: - type: Transform pos: 31.5,26.5 - parent: 89 - - uid: 19581 + parent: 2 + - uid: 23124 components: - type: Transform pos: -8.5,16.5 - parent: 89 - - uid: 20125 + parent: 2 + - uid: 23125 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 - parent: 89 - - uid: 20873 + parent: 2 + - uid: 23126 components: - type: Transform pos: 10.5,-17.5 - parent: 89 - - uid: 20875 + parent: 2 + - uid: 23127 components: - type: Transform pos: 13.5,-16.5 - parent: 89 - - uid: 21231 + parent: 2 + - uid: 23128 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,22.5 - parent: 89 - - uid: 21233 + parent: 2 + - uid: 23129 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,22.5 - parent: 89 - - uid: 25221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 22565 - - uid: 25222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 22565 - - uid: 25223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 22565 - - uid: 25224 + parent: 2 + - uid: 23130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 22565 - - uid: 25225 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 23131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 22565 - - uid: 25226 + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - uid: 23132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 22565 - - uid: 25227 + pos: 28.5,23.5 + parent: 2 + - uid: 23133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 22565 - - uid: 25228 + pos: 30.5,23.5 + parent: 2 + - uid: 23134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 22565 - - uid: 25229 + pos: 29.5,23.5 + parent: 2 + - uid: 23135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 22565 - - uid: 25230 + pos: 32.5,23.5 + parent: 2 + - uid: 27184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 22565 - - uid: 25231 + pos: 4.5,9.5 + parent: 24450 + - uid: 27185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 22565 - - uid: 25232 + pos: 4.5,8.5 + parent: 24450 + - uid: 27186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 22565 - - uid: 25233 + pos: 5.5,9.5 + parent: 24450 + - uid: 27187 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,8.5 - parent: 22565 - - uid: 25234 - components: - - type: Transform - pos: -33.5,10.5 - parent: 22565 - - uid: 25235 - components: - - type: Transform - pos: -35.5,4.5 - parent: 22565 - - uid: 25236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 22565 - - uid: 25237 + parent: 24450 + - uid: 27188 components: - type: Transform pos: 2.5,10.5 - parent: 22565 - - uid: 25238 + parent: 24450 + - uid: 27189 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,8.5 - parent: 22565 - - uid: 25239 + parent: 24450 + - uid: 27190 components: - type: Transform pos: 2.5,11.5 - parent: 22565 - - uid: 25240 + parent: 24450 + - uid: 27191 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,8.5 - parent: 22565 - - uid: 25241 + parent: 24450 + - uid: 27192 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,8.5 - parent: 22565 - - uid: 25242 + parent: 24450 + - uid: 27193 components: - type: Transform pos: 2.5,9.5 - parent: 22565 - - uid: 25243 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 22565 -- proto: WallSolidDiagonal - entities: - - uid: 16867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-8.5 - parent: 89 - - uid: 20956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,27.5 - parent: 89 -- proto: WallSolidRust - entities: - - uid: 3259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 89 - - uid: 4583 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 89 - - uid: 17056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 89 - - uid: 21772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-19.5 - parent: 89 - - uid: 21896 - components: - - type: Transform - pos: 54.5,-18.5 - parent: 89 - - uid: 25244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 22565 - - uid: 25245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 22565 - - uid: 25246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 - parent: 22565 - - uid: 25247 + parent: 24450 + - uid: 27194 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,7.5 - parent: 22565 - - uid: 25248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 22565 - - uid: 25249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 22565 - - uid: 25250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 22565 - - uid: 25251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 22565 - - uid: 25252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,0.5 - parent: 22565 - - uid: 25253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 22565 - - uid: 25254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 22565 - - uid: 25255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 22565 - - uid: 25256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,0.5 - parent: 22565 - - uid: 25257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 22565 - - uid: 25258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 - - uid: 25259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 22565 - - uid: 25260 + parent: 24450 + - uid: 27195 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,10.5 - parent: 22565 - - uid: 25261 + parent: 24450 + - uid: 27196 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,9.5 - parent: 22565 - - uid: 25262 + parent: 24450 + - uid: 27197 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,7.5 - parent: 22565 - - uid: 25263 + parent: 24450 + - uid: 27198 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,10.5 - parent: 22565 - - uid: 25264 + parent: 24450 + - uid: 27199 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,11.5 - parent: 22565 - - uid: 25265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 22565 - - uid: 25266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 22565 - - uid: 25267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 22565 - - uid: 25268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 22565 - - uid: 25269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 22565 - - uid: 25270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 22565 - - uid: 25271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 22565 - - uid: 25272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 22565 - - uid: 25273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 22565 - - uid: 25274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 22565 - - uid: 25275 - components: - - type: Transform - pos: -29.5,10.5 - parent: 22565 - - uid: 25276 - components: - - type: Transform - pos: -29.5,11.5 - parent: 22565 - - uid: 25277 + parent: 24450 + - uid: 27200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 - parent: 22565 - - uid: 25278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 22565 - - uid: 25279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,10.5 - parent: 22565 - - uid: 25280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,10.5 - parent: 22565 - - uid: 25281 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,12.5 - parent: 22565 - - uid: 25282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,6.5 - parent: 22565 - - uid: 25283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 22565 - - uid: 25284 + parent: 24450 + - uid: 27201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,4.5 - parent: 22565 - - uid: 25285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 22565 - - uid: 25286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 22565 - - uid: 25287 + pos: 4.5,6.5 + parent: 24450 +- proto: WallSolidDiagonal + entities: + - uid: 23136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,2.5 - parent: 22565 - - uid: 25288 + pos: -73.5,-8.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 23137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 - parent: 22565 - - uid: 25289 + pos: -45.5,-9.5 + parent: 2 + - uid: 27202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 22565 - - uid: 25290 + pos: 8.5,12.5 + parent: 24450 + - uid: 27203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 22565 - - uid: 25291 - components: - - type: Transform - pos: -26.5,8.5 - parent: 22565 - - uid: 25292 - components: - - type: Transform - pos: -26.5,7.5 - parent: 22565 - - uid: 25293 - components: - - type: Transform - pos: -26.5,9.5 - parent: 22565 - - uid: 25294 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 22565 + pos: 8.5,8.5 + parent: 24450 - proto: WallWeaponCapacitorRecharger entities: - - uid: 3624 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 89 - - uid: 3625 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 89 - - uid: 3626 + - uid: 23138 components: - type: Transform - pos: 24.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,-14.5 + parent: 2 - proto: WallWeb entities: - - uid: 20258 + - uid: 23139 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,21.5 - parent: 89 - - uid: 20831 + parent: 2 + - uid: 23140 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,23.5 - parent: 89 - - uid: 20951 + parent: 2 + - uid: 23141 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,22.5 - parent: 89 - - uid: 20963 + parent: 2 + - uid: 23142 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,23.5 - parent: 89 - - uid: 20964 + parent: 2 + - uid: 23143 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,23.5 - parent: 89 - - uid: 21010 + parent: 2 + - uid: 23144 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,23.5 - parent: 89 + parent: 2 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 23145 + components: + - type: Transform + pos: -96.5,-9.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: -96.5,-8.5 + parent: 2 - proto: WardrobeChemistryFilled entities: - - uid: 9799 + - uid: 1101 components: - type: Transform pos: 3.5,7.5 - parent: 89 + parent: 2 - type: EntityStorage air: volume: 200 @@ -163501,3736 +181378,4161 @@ entities: showEnts: False occludes: True ents: - - 10415 + - 1102 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePrisonFilled entities: - - uid: 2959 + - uid: 23147 components: - type: Transform pos: 24.5,-12.5 - parent: 89 - - uid: 3022 + parent: 2 + - uid: 23148 components: - type: Transform pos: 27.5,-12.5 - parent: 89 - - uid: 3023 + parent: 2 + - uid: 23149 components: - type: Transform pos: 21.5,-12.5 - parent: 89 - - uid: 3088 + parent: 2 + - uid: 23150 components: - type: Transform pos: 18.5,-12.5 - parent: 89 - - uid: 21060 + parent: 2 + - uid: 23151 components: - type: Transform pos: -52.5,43.5 - parent: 89 - - uid: 21507 + parent: 2 + - uid: 23152 components: - type: Transform pos: -52.5,39.5 - parent: 89 - - uid: 21779 + parent: 2 + - uid: 23153 components: - type: Transform pos: 42.5,-25.5 - parent: 89 - - uid: 21782 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 89 - - uid: 21797 + parent: 2 + - uid: 23154 components: - type: Transform pos: 42.5,-24.5 - parent: 89 - - uid: 21800 + parent: 2 + - uid: 23155 components: - type: Transform pos: 42.5,-23.5 - parent: 89 - - uid: 25377 + parent: 2 + - uid: 23156 components: - type: Transform pos: 46.5,-21.5 - parent: 89 - - uid: 25378 + parent: 2 + - uid: 23157 components: - type: Transform pos: 46.5,-20.5 - parent: 89 - - uid: 25379 + parent: 2 + - uid: 23158 components: - type: Transform pos: 46.5,-19.5 - parent: 89 - - uid: 25380 + parent: 2 + - uid: 23159 components: - type: Transform pos: 46.5,-18.5 - parent: 89 + parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 21329 + - uid: 23160 components: - type: Transform pos: -12.5,-21.5 - parent: 89 - - uid: 21330 + parent: 2 + - uid: 23161 components: - type: Transform pos: -11.5,-21.5 - parent: 89 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 9012 + components: + - type: Transform + pos: -52.5,-15.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: + - 9013 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9014 + components: + - type: Transform + pos: -52.5,-17.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: + - 9015 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WardrobeVirologyFilled entities: - - uid: 16550 + - uid: 23162 components: - type: Transform pos: 8.5,42.5 - parent: 89 + parent: 2 - proto: WarningCO2 entities: - - uid: 1434 + - uid: 23163 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-22.5 - parent: 89 + parent: 2 - proto: WarningN2 entities: - - uid: 1432 + - uid: 23164 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-22.5 - parent: 89 + parent: 2 - proto: WarningN2O entities: - - uid: 2131 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-22.5 - parent: 89 + parent: 2 - proto: WarningO2 entities: - - uid: 1431 + - uid: 23166 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-22.5 - parent: 89 + parent: 2 - proto: WarningPlasma entities: - - uid: 1438 + - uid: 23167 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-22.5 - parent: 89 + parent: 2 - proto: WarningTritium entities: - - uid: 2137 + - uid: 23168 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-22.5 - parent: 89 + parent: 2 - proto: WarningWaste entities: - - uid: 1463 + - uid: 23169 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-22.5 - parent: 89 - - uid: 2138 + parent: 2 + - uid: 23170 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-22.5 - parent: 89 + parent: 2 - proto: WarpPoint entities: - - uid: 16800 - components: - - type: Transform - pos: -5.5,12.5 - parent: 89 - - type: WarpPoint - location: Медбей - главный зал - - uid: 19630 + - uid: 24338 components: - type: Transform - pos: -108.5,4.5 - parent: 89 + pos: 4.5,-4.5 + parent: 23919 - type: WarpPoint - location: Инженерный - главный зал - - uid: 19631 + location: Шаттл ОБР + - uid: 27204 components: - type: Transform - pos: -93.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 24450 - type: WarpPoint - location: Общий - склад инженеров - - uid: 19635 + location: Каторга + - uid: 28079 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 + pos: 0.5,-5.5 + parent: 27260 - type: WarpPoint - location: Общий - суд - - uid: 19636 + location: Охранный пост ОБР +- proto: WarpPointBombing + entities: + - uid: 23171 components: + - type: MetaData + name: РИТЭГИ - type: Transform - pos: -62.5,-10.5 - parent: 89 - - type: WarpPoint - location: Отдел доставок - главный зал - - uid: 19639 + pos: -126.5,3.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23172 components: + - type: MetaData + name: ТЭГ - type: Transform - pos: -49.5,-2.5 - parent: 89 + pos: -113.5,-16.5 + parent: 2 - type: WarpPoint - location: Общий - церковь - - uid: 19641 + location: ТЭГ + - uid: 23173 components: + - type: MetaData + name: Генератор гравитации - type: Transform - pos: -20.5,-3.5 - parent: 89 - - type: WarpPoint - location: Общий - бар - - uid: 19644 + pos: -116.5,23.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23174 components: + - type: MetaData + name: Ускоритель частиц - type: Transform - pos: 16.5,-9.5 - parent: 89 + pos: -132.5,-7.5 + parent: 2 - type: WarpPoint - location: Бриг - бриг - - uid: 19645 + location: Ускоритель частиц + - uid: 23175 components: + - type: MetaData + name: Отбытие - type: Transform - pos: -1.5,-25.5 - parent: 89 + pos: -63.5,46.5 + parent: 2 - type: WarpPoint - location: РнД - главный зал - - uid: 19647 + location: Отбытие + - uid: 23176 components: + - type: MetaData + name: Холл НИО - type: Transform - pos: -1.5,-3.5 - parent: 89 - - type: WarpPoint - location: Общий - статуи - - uid: 19649 + pos: -8.5,-21.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23177 components: + - type: MetaData + name: Отдел снабжения - type: Transform - pos: 27.5,6.5 - parent: 89 + pos: -63.5,-10.5 + parent: 2 - type: WarpPoint - location: Мостик - ЕВА - - uid: 19650 + location: Отдел снабжения + - uid: 23178 components: + - type: MetaData + name: Мостик - type: Transform pos: 57.5,4.5 - parent: 89 - - type: WarpPoint - location: Мостик - мостик - - uid: 19651 - components: - - type: Transform - pos: 34.5,13.5 - parent: 89 - - type: WarpPoint - location: Мостик - конференц зал - - uid: 19652 - components: - - type: Transform - pos: -60.5,34.5 - parent: 89 - - type: WarpPoint - location: Общий - отбытие/прибытие - - uid: 25295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 22565 - - type: WarpPoint - location: Каторга -- proto: WarpPointBeacon - entities: - - uid: 714 - components: - - type: Transform - pos: -90.5,-17.5 - parent: 89 - - type: NavMapBeacon - color: '#00B3FFFF' - text: Атмос - - type: WarpPoint - location: Инженерный - Атмос - - uid: 3365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,44.5 - parent: 89 - - type: NavMapBeacon - text: отбытие - - uid: 3366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 - - type: NavMapBeacon - color: '#C4392FFF' - text: бриг - - uid: 4879 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23179 components: + - type: MetaData + name: Жилые Помещения - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,34.5 - parent: 89 - - type: NavMapBeacon - text: Прибытие -- proto: WarpPointBombing - entities: - - uid: 1792 + pos: -30.5,29.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23180 components: + - type: MetaData + name: Химическая лаборатория - type: Transform pos: -0.5,7.5 - parent: 89 + parent: 2 - type: WarpPoint location: Химическая лаборатория - - uid: 4928 + - uid: 23181 components: + - type: MetaData + name: Сервера камер и связи - type: Transform rot: 1.5707963267948966 rad pos: -107.5,25.5 - parent: 89 + parent: 2 - type: WarpPoint location: Сервера камер и связи - - uid: 5075 + - uid: 23182 components: + - type: MetaData + name: Оружейная - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-16.5 - parent: 89 + pos: 43.5,-8.5 + parent: 2 - type: WarpPoint - location: Генератор гравитации - - uid: 5400 + location: Оружейная + - uid: 23183 components: + - type: MetaData + name: Хранилище - type: Transform - pos: 49.5,-4.5 - parent: 89 + pos: 49.5,-2.5 + parent: 2 - type: WarpPoint location: Хранилище - - uid: 5435 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 89 - - type: WarpPoint - location: Оружейная - proto: WaterCooler entities: - - uid: 198 + - uid: 23184 + components: + - type: Transform + pos: -104.5,-5.5 + parent: 2 + - uid: 23185 components: - type: Transform pos: 1.5,-20.5 - parent: 89 - - uid: 210 + parent: 2 + - uid: 23186 components: - type: Transform pos: -7.5,-20.5 - parent: 89 - - uid: 4719 + parent: 2 + - uid: 23187 components: - type: Transform pos: -46.5,11.5 - parent: 89 - - uid: 9029 - components: - - type: Transform - pos: -112.5,21.5 - parent: 89 - - uid: 10151 + parent: 2 + - uid: 23188 components: - type: Transform pos: -26.5,21.5 - parent: 89 - - uid: 10884 + parent: 2 + - uid: 23189 components: - type: Transform pos: 1.5,-5.5 - parent: 89 - - uid: 10995 + parent: 2 + - uid: 23190 components: - type: Transform pos: -77.5,10.5 - parent: 89 - - uid: 11994 + parent: 2 + - uid: 23191 components: - type: Transform pos: -7.5,10.5 - parent: 89 - - uid: 12681 + parent: 2 + - uid: 23192 components: - type: Transform pos: 7.5,11.5 - parent: 89 - - uid: 12860 + parent: 2 + - uid: 23193 components: - type: Transform pos: 16.5,13.5 - parent: 89 - - uid: 16412 + parent: 2 + - uid: 23194 components: - type: Transform pos: -117.5,-13.5 - parent: 89 - - uid: 16911 + parent: 2 + - uid: 23195 components: - type: Transform pos: -10.5,-18.5 - parent: 89 - - uid: 16967 + parent: 2 + - uid: 23196 components: - type: Transform pos: -17.5,-21.5 - parent: 89 - - uid: 17369 + parent: 2 + - uid: 23197 components: - type: Transform pos: -41.5,-13.5 - parent: 89 - - uid: 19814 + parent: 2 + - uid: 23198 components: - type: Transform pos: 26.5,11.5 - parent: 89 - - uid: 19887 + parent: 2 + - uid: 23199 components: - type: Transform pos: -2.5,17.5 - parent: 89 - - uid: 20074 + parent: 2 + - uid: 23200 components: - type: Transform pos: 25.5,34.5 - parent: 89 - - uid: 20864 + parent: 2 + - uid: 23201 components: - type: Transform pos: 44.5,12.5 - parent: 89 - - uid: 21567 + parent: 2 + - uid: 23202 components: - type: Transform pos: 21.5,19.5 - parent: 89 - - uid: 25296 + parent: 2 + - uid: 23203 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + pos: -96.5,-7.5 + parent: 2 + - uid: 27205 components: - type: Transform pos: -32.5,1.5 - parent: 22565 - - uid: 25297 + parent: 24450 + - uid: 27206 components: - type: Transform pos: 8.5,1.5 - parent: 22565 + parent: 24450 - proto: WaterTankFull entities: - - uid: 5327 + - uid: 23205 components: - type: Transform - pos: -46.5,-9.5 - parent: 89 - - uid: 7004 + pos: -19.5,-25.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -85.5,-2.5 + parent: 2 + - uid: 23208 components: - type: Transform pos: -28.5,-15.5 - parent: 89 - - uid: 8063 + parent: 2 + - uid: 23209 components: - type: Transform pos: -5.5,35.5 - parent: 89 - - uid: 12859 + parent: 2 + - uid: 23210 components: - type: Transform pos: 21.5,26.5 - parent: 89 - - uid: 14621 + parent: 2 + - uid: 23211 components: - type: Transform pos: -99.5,15.5 - parent: 89 - - uid: 14665 + parent: 2 + - uid: 23212 components: - type: Transform pos: -119.5,21.5 - parent: 89 - - uid: 14691 - components: - - type: Transform - pos: -82.5,-2.5 - parent: 89 - - uid: 14717 + parent: 2 + - uid: 23213 components: - type: Transform pos: 7.5,-14.5 - parent: 89 - - uid: 14759 + parent: 2 + - uid: 23214 components: - type: Transform pos: -78.5,21.5 - parent: 89 - - uid: 14798 + parent: 2 + - uid: 23215 components: - type: Transform pos: -39.5,14.5 - parent: 89 - - uid: 16878 + parent: 2 + - uid: 23216 components: - type: Transform - pos: 28.5,23.5 - parent: 89 -- proto: WaterTankHighCapacity - entities: - - uid: 3962 + pos: -44.5,-10.5 + parent: 2 + - uid: 23217 components: - type: Transform - pos: -9.5,-0.5 - parent: 89 - - uid: 6848 + pos: -80.5,-5.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: -96.5,21.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 23219 components: - type: Transform pos: -35.5,7.5 - parent: 89 - - uid: 21354 + parent: 2 + - uid: 23220 components: - type: Transform pos: 42.5,-27.5 - parent: 89 - - uid: 25298 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: -109.5,0.5 + parent: 2 + - uid: 27207 components: - type: Transform pos: -25.5,10.5 - parent: 22565 + parent: 24450 - proto: WaterVaporCanister entities: - - uid: 1141 + - uid: 23222 + components: + - type: Transform + pos: -87.5,-4.5 + parent: 2 + - uid: 23223 components: - type: Transform pos: -94.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25299 + parent: 2 + - uid: 27208 components: - type: Transform pos: -15.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + parent: 24450 +- proto: WeaponAdvancedLaser + entities: + - uid: 28080 + components: + - type: Transform + pos: 6.531067,-13.423157 + parent: 27260 + - uid: 28081 + components: + - type: Transform + pos: -4.452469,-4.4048767 + parent: 27260 - proto: WeaponCapacitorRecharger entities: - - uid: 2630 + - uid: 23224 components: - type: Transform pos: 27.5,-0.5 - parent: 89 - - uid: 3087 + parent: 2 + - uid: 23225 components: - type: Transform pos: 26.5,-0.5 - parent: 89 - - uid: 3098 + parent: 2 + - uid: 23226 components: - type: Transform pos: 28.5,-0.5 - parent: 89 - - uid: 4231 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 89 - - uid: 4232 + parent: 2 + - uid: 23227 components: - type: Transform - pos: 15.5,-6.5 - parent: 89 - - uid: 18364 + rot: 1.5707963267948966 rad + pos: -60.5,20.5 + parent: 2 + - uid: 23228 components: - type: Transform pos: 55.5,10.5 - parent: 89 - - uid: 19491 + parent: 2 + - uid: 23229 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,8.5 - parent: 89 - - uid: 19512 + parent: 2 + - uid: 23230 components: - type: Transform pos: -1.5,39.5 - parent: 89 - - uid: 22491 + parent: 2 + - uid: 23231 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-13.5 - parent: 89 - - uid: 22492 + parent: 2 + - uid: 23232 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-14.5 - parent: 89 - - uid: 25300 + parent: 2 + - uid: 23233 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 25613 + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 23914 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 - parent: 18153 + parent: 23711 + - uid: 27209 + components: + - type: Transform + pos: -14.5,4.5 + parent: 24450 + - uid: 28082 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 27260 + - uid: 28083 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 27260 - proto: WeaponDisabler entities: - - uid: 4572 + - uid: 23234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.442963,22.52186 + parent: 2 + - uid: 23235 components: - type: Transform pos: 28.476303,-4.3247886 - parent: 89 - - uid: 5220 + parent: 2 + - uid: 23236 components: - type: Transform rot: 3.141592653589793 rad pos: 28.616928,-4.5122886 - parent: 89 - - uid: 5385 + parent: 2 + - uid: 23237 components: - type: Transform rot: 3.141592653589793 rad pos: 28.546337,-5.245876 - parent: 89 - - uid: 5628 + parent: 2 + - uid: 23238 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.318733,7.6707277 - parent: 89 - - uid: 8485 + parent: 2 + - uid: 23239 components: - type: Transform pos: 28.468212,-5.089626 - parent: 89 - - uid: 10563 + parent: 2 + - uid: 23240 components: - type: Transform pos: -85.53375,17.593575 - parent: 89 - - uid: 22663 + parent: 2 + - uid: 23915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.7244563,-2.351399 + parent: 23711 + - uid: 24548 components: - type: Transform - parent: 22641 + parent: 24526 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22664 + - uid: 24549 components: - type: Transform - parent: 22641 + parent: 24526 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25614 + - uid: 27551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.7244563,-2.351399 - parent: 18153 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - - uid: 12673 - components: - - type: Transform - pos: 29.287773,29.245794 - parent: 89 - - uid: 22450 + - uid: 15704 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22451 + - uid: 15705 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22452 + - uid: 15706 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 23241 + components: + - type: Transform + pos: 29.287773,29.245794 + parent: 2 - proto: WeaponFlareGun entities: - - uid: 14763 + - uid: 23242 components: - type: Transform pos: -75.52437,13.66118 - parent: 89 - - uid: 21155 + parent: 2 + - uid: 23243 components: - type: Transform pos: 48.5,17.5 - parent: 89 + parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 22448 + - uid: 15707 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponLaserGun entities: - - uid: 2141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.760654,-8.493906 - parent: 89 - - uid: 2567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.48259,-8.587656 - parent: 89 - - uid: 2775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.26384,-8.525156 - parent: 89 - - uid: 25615 + - uid: 23916 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.3358917,-2.48485 - parent: 18153 -- proto: WeaponPistolMk58 + parent: 23711 +- proto: WeaponLaserSvalinn entities: - - uid: 17116 - components: - - type: Transform - pos: 42.50808,-4.722499 - parent: 89 - - uid: 19541 - components: - - type: Transform - pos: 42.50808,-4.597499 - parent: 89 - - uid: 19542 - components: - - type: Transform - pos: 42.523705,-4.472499 - parent: 89 - - uid: 19545 + - uid: 23244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.586205,-4.659999 - parent: 89 -- proto: WeaponPistolMk58Nonlethal + pos: 44.53328,-11.367193 + parent: 2 +- proto: WeaponPistolMk58 entities: - - uid: 22454 + - uid: 15708 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponRevolverDeckard - entities: - - uid: 7482 - components: - - type: Transform - pos: 50.255257,-5.402153 - parent: 89 -- proto: WeaponRevolverInspector +- proto: WeaponPistolN1984 entities: - - uid: 17097 - components: - - type: Transform - pos: 44.53305,-7.414389 - parent: 89 - - uid: 20742 + - uid: 27552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.55059,-7.5789223 - parent: 89 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRevolverMateba entities: - - uid: 17009 + - uid: 23245 components: - type: Transform pos: 35.433388,-0.3926619 - parent: 89 + parent: 2 - proto: WeaponRifleAk entities: - - uid: 19538 + - uid: 1170 components: - type: Transform - pos: 37.522846,-2.2730527 - parent: 89 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRifleLecter entities: - - uid: 531 + - uid: 28084 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 532 + pos: 6.508209,-11.401001 + parent: 27260 + - uid: 28085 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponShotgunDoubleBarreled + pos: 6.577652,-11.609314 + parent: 27260 +- proto: WeaponShotgunBulldog entities: - - uid: 1856 + - uid: 28086 components: - type: Transform - pos: 41.47183,-4.592104 - parent: 89 - - uid: 2652 + pos: 4.5026855,-13.328033 + parent: 27260 +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 23246 components: - type: Transform - pos: 41.47183,-4.435854 - parent: 89 - - uid: 2766 + rot: 1.5707963267948966 rad + pos: 49.466095,-6.4547386 + parent: 2 + - uid: 23247 components: - type: Transform - pos: 41.47183,-4.701479 - parent: 89 - - uid: 2767 + rot: 1.5707963267948966 rad + pos: 49.622345,-6.4703636 + parent: 2 + - uid: 23248 components: - type: Transform - pos: 41.50308,-4.826479 - parent: 89 - - uid: 3395 + rot: 1.5707963267948966 rad + pos: 49.309845,-6.4703636 + parent: 2 + - uid: 23249 components: - type: Transform - pos: 41.44058,-4.295229 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.778595,-6.4703636 + parent: 2 - proto: WeaponShotgunEnforcerRubber entities: - - uid: 8913 + - uid: 15709 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunImprovisedLoaded entities: - - uid: 25302 + - uid: 27210 components: - type: Transform pos: 3.6177773,11.346749 - parent: 22565 - - uid: 25303 + parent: 24450 + - uid: 27211 components: - type: Transform pos: 4.4302773,11.299874 - parent: 22565 + parent: 24450 - proto: WeaponShotgunKammerer entities: - - uid: 2653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.518703,-5.310854 - parent: 89 - - uid: 2764 + - uid: 24550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.50308,-5.607729 - parent: 89 - - uid: 22665 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 15710 components: - type: Transform - parent: 22641 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponSubMachineGunDrozdRubber - entities: - - uid: 22453 + - uid: 27317 components: - type: Transform - parent: 22447 + parent: 27315 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponTurretSyndicateBroken + - uid: 28087 + components: + - type: Transform + pos: 5.7313232,-10.509827 + parent: 27260 +- proto: WeaponTurretHostile entities: - - uid: 14582 + - uid: 28088 components: - type: Transform - pos: -126.5,21.5 - parent: 89 - - uid: 17108 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 27260 + - uid: 28089 components: - type: Transform - pos: -28.5,40.5 - parent: 89 - - uid: 17115 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 27260 + - uid: 28090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 27260 + - uid: 28091 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 27260 + - uid: 28092 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 27260 + - uid: 28093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 27260 + - uid: 28094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 27260 + - uid: 28095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 27260 + - uid: 28096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 27260 + - uid: 28097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 27260 + - uid: 28098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 27260 + - uid: 28099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 27260 + - uid: 28100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 27260 + - uid: 28101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 27260 + - uid: 28102 components: - type: Transform - pos: -31.5,40.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 27260 + - uid: 28103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 27260 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 23250 + components: + - type: Transform + pos: -126.5,21.5 + parent: 2 - proto: WeaponTurretSyndicateDisposable entities: - - uid: 2773 + - uid: 23251 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,28.5 - parent: 89 - - uid: 6892 + parent: 2 + - uid: 23252 components: - type: Transform pos: -130.5,20.5 - parent: 89 + parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 985 + - uid: 23253 components: - type: Transform pos: -27.527832,24.188652 - parent: 89 - - uid: 10236 + parent: 2 + - uid: 23254 components: - type: Transform rot: 3.141592653589793 rad pos: -27.402832,24.094902 - parent: 89 + parent: 2 - proto: WebBed entities: - - uid: 20965 + - uid: 23255 components: - type: Transform pos: 39.5,21.5 - parent: 89 + parent: 2 - proto: WelderIndustrial entities: - - uid: 2577 + - uid: 23256 components: - type: Transform - pos: -89.55153,-13.382351 - parent: 89 - - uid: 14626 + rot: 3.141592653589793 rad + pos: -91.5473,-11.4043255 + parent: 2 + - uid: 23257 components: - type: Transform pos: -98.54668,12.505528 - parent: 89 + parent: 2 - proto: WelderIndustrialAdvanced entities: - - uid: 20966 + - uid: 23258 components: - type: Transform - pos: 49.37088,-8.452206 - parent: 89 + pos: 52.33191,-8.259685 + parent: 2 - proto: WelderMini entities: - - uid: 17424 + - uid: 23259 components: - type: Transform pos: -41.586243,-11.103921 - parent: 89 + parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 6926 + - uid: 23260 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -122.5,20.5 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 23266 components: - type: Transform pos: -96.5,-0.5 - parent: 89 - - uid: 8130 + parent: 2 + - uid: 23267 components: - type: Transform pos: -4.5,29.5 - parent: 89 - - uid: 14124 + parent: 2 + - uid: 23268 components: - type: Transform pos: 27.5,23.5 - parent: 89 - - uid: 14620 + parent: 2 + - uid: 23269 components: - type: Transform pos: -98.5,15.5 - parent: 89 - - uid: 14664 + parent: 2 + - uid: 23270 components: - type: Transform pos: -118.5,21.5 - parent: 89 - - uid: 14692 - components: - - type: Transform - pos: -82.5,-3.5 - parent: 89 - - uid: 14718 + parent: 2 + - uid: 23271 components: - type: Transform pos: 8.5,-14.5 - parent: 89 - - uid: 14758 + parent: 2 + - uid: 23272 components: - type: Transform pos: -78.5,20.5 - parent: 89 - - uid: 14799 + parent: 2 + - uid: 23273 components: - type: Transform pos: -40.5,14.5 - parent: 89 - - uid: 20259 + parent: 2 + - uid: 23274 components: - type: Transform pos: -96.5,19.5 - parent: 89 - - uid: 21361 + parent: 2 + - uid: 23275 components: - type: Transform pos: 56.5,-22.5 - parent: 89 + parent: 2 + - uid: 23276 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 25304 + - uid: 23277 + components: + - type: Transform + pos: -109.5,-0.5 + parent: 2 + - uid: 27212 components: - type: Transform pos: -26.5,10.5 - parent: 22565 + parent: 24450 - proto: WetFloorSign entities: - - uid: 19449 + - uid: 23278 components: - type: Transform pos: -2.0847826,1.914092 - parent: 89 - - uid: 25305 + parent: 2 + - uid: 27213 components: - type: Transform pos: -10.658296,-24.390667 - parent: 22565 + parent: 24450 - proto: Windoor entities: - - uid: 16 + - uid: 23279 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 89 - - uid: 717 + pos: -94.5,-3.5 + parent: 2 + - uid: 23280 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - uid: 950 + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 23281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 5100 + pos: 50.5,14.5 + parent: 2 + - uid: 23282 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-3.5 - parent: 89 - - uid: 5101 + parent: 2 + - uid: 23283 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-3.5 - parent: 89 - - uid: 5825 + parent: 2 + - uid: 23284 components: - type: Transform pos: -73.5,-12.5 - parent: 89 - - uid: 6158 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 89 - - uid: 7696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,25.5 - parent: 89 - - uid: 8389 + parent: 2 + - uid: 23285 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-15.5 - parent: 89 - - uid: 10421 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 89 - - uid: 16414 + parent: 2 + - uid: 23286 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,5.5 - parent: 89 - - uid: 22429 + parent: 2 + - uid: 23287 components: - type: Transform pos: 51.5,-19.5 - parent: 89 + parent: 2 - proto: WindoorBarLocked entities: - - uid: 2931 + - uid: 23288 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-0.5 - parent: 89 -- proto: WindoorChapelLocked + parent: 2 +- proto: WindoorHydroponicsLocked entities: - - uid: 5418 + - uid: 23289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-5.5 - parent: 89 -- proto: WindoorKitchenHydroponicsLocked + pos: -8.5,-5.5 + parent: 2 + - uid: 23290 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 23293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 +- proto: WindoorKitchenLocked entities: - - uid: 3628 + - uid: 23294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 - proto: WindoorSecure entities: - - uid: 1997 + - uid: 23297 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,9.5 - parent: 89 - - uid: 3631 + parent: 2 + - uid: 23298 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-11.5 - parent: 89 - - uid: 7792 + parent: 2 + - uid: 23299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,25.5 + parent: 2 + - uid: 23300 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,43.5 - parent: 89 - - uid: 7793 + parent: 2 + - uid: 23301 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,43.5 - parent: 89 - - uid: 14541 + parent: 2 + - uid: 23302 components: - type: Transform pos: -76.5,0.5 - parent: 89 - - uid: 25306 + parent: 2 + - uid: 27214 components: - type: Transform pos: -13.5,-27.5 - parent: 22565 - - uid: 25307 + parent: 24450 + - uid: 27215 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,4.5 - parent: 22565 - - uid: 25308 + parent: 24450 + - uid: 27216 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 - parent: 22565 + parent: 24450 - proto: WindoorSecureArmoryLocked entities: - - uid: 29 + - uid: 23303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 89 - - uid: 4279 + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 + - uid: 23304 components: - type: Transform - pos: 41.5,-8.5 - parent: 89 - - uid: 17109 + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 23305 components: - type: Transform - pos: 40.5,-8.5 - parent: 89 - - uid: 17110 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 23306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 89 - - uid: 17112 + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 23307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 89 - - uid: 17113 + pos: 35.5,-0.5 + parent: 2 + - uid: 23308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 89 - - uid: 17118 + pos: 40.5,-9.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 23309 components: - type: Transform - pos: 43.5,-8.5 - parent: 89 - - uid: 17121 + rot: 3.141592653589793 rad + pos: -84.5,-7.5 + parent: 2 + - uid: 23310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 89 - - uid: 17131 + rot: 3.141592653589793 rad + pos: -87.5,-7.5 + parent: 2 + - uid: 23311 components: - type: Transform - pos: 42.5,-8.5 - parent: 89 - - uid: 17659 + rot: 3.141592653589793 rad + pos: -86.5,-7.5 + parent: 2 + - uid: 23312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 89 - - uid: 17661 + rot: 3.141592653589793 rad + pos: -85.5,-7.5 + parent: 2 + - uid: 23313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -88.5,-7.5 + parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 10163 + - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-2.5 - parent: 89 + parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 5092 + - uid: 23315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - uid: 23316 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-4.5 - parent: 89 - - uid: 5093 + parent: 2 + - uid: 23317 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-4.5 - parent: 89 - - uid: 5095 + parent: 2 + - uid: 23318 components: - type: Transform pos: -63.5,-3.5 - parent: 89 - - uid: 5096 + parent: 2 + - uid: 23319 components: - type: Transform pos: -62.5,-3.5 - parent: 89 + parent: 2 + - uid: 23320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 28104 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 27260 + - uid: 28105 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 27260 + - uid: 28106 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 27260 + - uid: 28107 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 27260 + - uid: 28108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 27260 + - uid: 28109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 27260 - proto: WindoorSecureChemistryLocked entities: - - uid: 10922 + - uid: 23321 components: - type: Transform pos: -1.5,10.5 - parent: 89 - - uid: 11442 + parent: 2 + - uid: 23322 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 89 - - uid: 11458 + parent: 2 + - uid: 23323 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,7.5 - parent: 89 + parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 574 + - uid: 23324 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 23328 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,7.5 - parent: 89 - - uid: 577 + parent: 2 + - uid: 23329 components: - type: Transform pos: 58.5,1.5 - parent: 89 - - uid: 1988 + parent: 2 + - uid: 23330 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,9.5 - parent: 89 - - uid: 3390 + parent: 2 + - uid: 23331 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,20.5 - parent: 89 - - uid: 3400 + parent: 2 + - uid: 23332 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,20.5 - parent: 89 - - uid: 14268 + parent: 2 + - uid: 23333 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-0.5 - parent: 89 - - uid: 21732 + parent: 2 + - uid: 24449 components: - type: Transform pos: 0.5,-5.5 - parent: 21627 + parent: 24340 - proto: WindoorSecureEngineeringLocked entities: - - uid: 938 - components: - - type: Transform - pos: -94.5,-6.5 - parent: 89 - - uid: 972 - components: - - type: Transform - pos: -92.5,-6.5 - parent: 89 - - uid: 8553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,17.5 - parent: 89 - - uid: 8554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,17.5 - parent: 89 - - uid: 8557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,17.5 - parent: 89 - - uid: 8569 + - uid: 23334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,17.5 - parent: 89 - - uid: 8570 + pos: -92.5,-3.5 + parent: 2 + - uid: 23335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,17.5 - parent: 89 - - uid: 12049 + pos: -94.5,-3.5 + parent: 2 + - uid: 23336 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,5.5 - parent: 89 - - uid: 15733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-14.5 - parent: 89 - - uid: 17028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,17.5 - parent: 89 + parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 118 + - uid: 23337 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,14.5 - parent: 89 - - uid: 149 + parent: 2 + - uid: 23338 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,14.5 - parent: 89 - - uid: 1862 + parent: 2 + - uid: 23339 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,10.5 - parent: 89 - - uid: 10858 + parent: 2 + - uid: 23340 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,13.5 - parent: 89 - - uid: 10873 + parent: 2 + - uid: 23341 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,12.5 - parent: 89 - - uid: 10919 + parent: 2 + - uid: 23342 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 - parent: 89 - - uid: 15016 + parent: 2 + - uid: 23343 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,18.5 - parent: 89 - - uid: 15317 + parent: 2 + - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,17.5 - parent: 89 - - uid: 19899 + parent: 2 + - uid: 23345 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,36.5 - parent: 89 - - uid: 19900 + parent: 2 + - uid: 23346 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,35.5 - parent: 89 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 23347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 15 + - uid: 23348 components: - type: Transform pos: -22.5,-14.5 - parent: 89 - - uid: 4900 + parent: 2 + - uid: 23349 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-42.5 - parent: 89 - - uid: 7941 + parent: 2 + - uid: 23350 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-35.5 - parent: 89 - - uid: 8388 + parent: 2 + - uid: 23351 components: - type: Transform pos: -8.5,-15.5 - parent: 89 - - uid: 16799 + parent: 2 + - uid: 23352 components: - type: Transform pos: -9.5,-31.5 - parent: 89 - - uid: 16801 + parent: 2 + - uid: 23353 components: - type: Transform pos: -8.5,-31.5 - parent: 89 - - uid: 16805 + parent: 2 + - uid: 23354 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-42.5 - parent: 89 - - uid: 16901 + parent: 2 + - uid: 23355 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 - parent: 89 - - uid: 16902 + parent: 2 + - uid: 23356 components: - type: Transform pos: -1.5,-21.5 - parent: 89 - - uid: 20073 + parent: 2 + - uid: 23357 components: - type: Transform pos: -7.5,-31.5 - parent: 89 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 2034 + - uid: 23358 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,16.5 - parent: 89 - - uid: 3682 + parent: 2 + - uid: 23359 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7134 - - uid: 3686 + - 1208 + - uid: 23360 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7364 - - uid: 3693 + - 1210 + - type: DeviceLinkSource + linkedPorts: + 1208: [] + - uid: 23361 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7363 - - uid: 3694 + - 1209 + - uid: 23362 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-11.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7137 - - uid: 6148 + parent: 2 + - uid: 23363 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-2.5 - parent: 89 - - uid: 6149 + parent: 2 + - uid: 23364 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-1.5 - parent: 89 - - uid: 6210 + parent: 2 + - uid: 23365 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,7.5 - parent: 89 - - uid: 6795 + parent: 2 + - uid: 23366 components: - type: Transform pos: -44.5,2.5 - parent: 89 - - uid: 7745 + parent: 2 + - uid: 23367 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,11.5 - parent: 89 - - uid: 8158 + parent: 2 + - uid: 23368 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,8.5 - parent: 89 - - uid: 8243 + parent: 2 + - uid: 23369 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,21.5 - parent: 89 - - uid: 10430 + parent: 2 + - uid: 23370 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,7.5 - parent: 89 - - uid: 17016 + parent: 2 + - uid: 23371 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-25.5 - parent: 89 - - uid: 17018 + parent: 2 + - uid: 23372 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-26.5 - parent: 89 - - uid: 17019 + parent: 2 + - uid: 23373 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-25.5 - parent: 89 - - uid: 20418 + parent: 2 + - uid: 23374 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-26.5 - parent: 89 - - uid: 21798 + parent: 2 + - uid: 23375 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-23.5 - parent: 89 - - uid: 21799 + parent: 2 + - uid: 23376 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-24.5 - parent: 89 - - uid: 21801 + parent: 2 + - uid: 23377 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-23.5 - parent: 89 - - uid: 21802 + parent: 2 + - uid: 23378 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-24.5 - parent: 89 - - uid: 25309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-27.5 - parent: 22565 - - uid: 25310 + parent: 2 + - uid: 23379 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-22.5 - parent: 22565 - - uid: 25311 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 22565 - - uid: 25616 + pos: 12.5,-11.5 + parent: 2 + - uid: 23917 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 - parent: 18153 - - uid: 25617 + parent: 23711 + - uid: 23918 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 - parent: 18153 + parent: 23711 + - uid: 27217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-27.5 + parent: 24450 + - uid: 27218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-22.5 + parent: 24450 + - uid: 27219 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 24450 - proto: WindoorServiceLocked entities: - - uid: 6040 + - uid: 23380 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,10.5 - parent: 89 + parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 4294 + - uid: 23381 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-7.5 - parent: 89 + parent: 2 - proto: Window entities: - - uid: 1721 + - uid: 23382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 89 - - uid: 3543 + pos: -23.5,6.5 + parent: 2 + - uid: 23383 components: - type: Transform - pos: -8.5,-6.5 - parent: 89 - - uid: 3554 + pos: -60.5,2.5 + parent: 2 + - uid: 23384 components: - type: Transform - pos: -7.5,-6.5 - parent: 89 - - uid: 3852 + pos: -59.5,2.5 + parent: 2 + - uid: 23385 components: - type: Transform - pos: -4.5,-6.5 - parent: 89 - - uid: 3853 + pos: -66.5,2.5 + parent: 2 + - uid: 23386 components: - type: Transform - pos: -4.5,-7.5 - parent: 89 - - uid: 3854 + pos: -65.5,2.5 + parent: 2 + - uid: 23387 components: - type: Transform - pos: -4.5,-8.5 - parent: 89 - - uid: 3855 + pos: -72.5,-0.5 + parent: 2 + - uid: 23388 components: - type: Transform - pos: -4.5,-9.5 - parent: 89 - - uid: 4680 + pos: -64.5,12.5 + parent: 2 + - uid: 23389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-1.5 - parent: 89 - - uid: 4683 + pos: -63.5,12.5 + parent: 2 + - uid: 23390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 89 - - uid: 4724 + pos: -62.5,12.5 + parent: 2 + - uid: 23391 components: - type: Transform - pos: -68.5,-11.5 - parent: 89 - - uid: 4725 + pos: -72.5,-2.5 + parent: 2 + - uid: 23392 components: - type: Transform - pos: -68.5,-12.5 - parent: 89 - - uid: 4832 + pos: -77.5,2.5 + parent: 2 + - uid: 23393 components: - type: Transform - pos: -26.5,-9.5 - parent: 89 - - uid: 4833 + pos: -78.5,2.5 + parent: 2 + - uid: 23394 components: - type: Transform - pos: -25.5,-9.5 - parent: 89 - - uid: 4834 + pos: -73.5,2.5 + parent: 2 + - uid: 23395 components: - type: Transform - pos: -24.5,-9.5 - parent: 89 - - uid: 4835 + pos: 12.5,6.5 + parent: 2 + - uid: 23396 components: - type: Transform - pos: -21.5,-9.5 - parent: 89 - - uid: 4836 + pos: 12.5,8.5 + parent: 2 + - uid: 23397 components: - type: Transform - pos: -18.5,-9.5 - parent: 89 - - uid: 4837 + pos: 23.5,18.5 + parent: 2 + - uid: 23398 components: - type: Transform - pos: -17.5,-9.5 - parent: 89 - - uid: 4840 + pos: 22.5,16.5 + parent: 2 + - uid: 23399 components: - type: Transform - pos: -18.5,0.5 - parent: 89 - - uid: 4907 + pos: 20.5,16.5 + parent: 2 + - uid: 23400 components: - type: Transform - pos: -66.5,2.5 - parent: 89 - - uid: 4908 + pos: 4.5,12.5 + parent: 2 + - uid: 23401 components: - type: Transform - pos: -65.5,2.5 - parent: 89 - - uid: 4910 + pos: 11.5,15.5 + parent: 2 + - uid: 23402 components: - type: Transform - pos: -63.5,2.5 - parent: 89 - - uid: 4911 + pos: 12.5,21.5 + parent: 2 + - uid: 23403 components: - type: Transform - pos: -62.5,2.5 - parent: 89 - - uid: 4913 + pos: -22.5,6.5 + parent: 2 + - uid: 23404 components: - type: Transform - pos: -60.5,2.5 - parent: 89 - - uid: 4914 + pos: 3.5,18.5 + parent: 2 + - uid: 23405 components: - type: Transform - pos: -59.5,2.5 - parent: 89 - - uid: 5263 + pos: 2.5,18.5 + parent: 2 + - uid: 23406 components: - type: Transform - pos: -57.5,-8.5 - parent: 89 - - uid: 5264 + pos: -0.5,14.5 + parent: 2 + - uid: 23407 components: - type: Transform - pos: -57.5,-9.5 - parent: 89 - - uid: 5265 + pos: -18.5,0.5 + parent: 2 + - uid: 23408 components: - type: Transform - pos: -51.5,2.5 - parent: 89 - - uid: 5266 + pos: -18.5,-9.5 + parent: 2 + - uid: 23409 components: - type: Transform - pos: -48.5,2.5 - parent: 89 - - uid: 6065 + pos: -26.5,-9.5 + parent: 2 + - uid: 23410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 89 - - uid: 6066 + pos: -25.5,-9.5 + parent: 2 + - uid: 23411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 89 - - uid: 6067 + pos: -24.5,-9.5 + parent: 2 + - uid: 23412 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 89 - - uid: 6068 + pos: -53.5,6.5 + parent: 2 + - uid: 23413 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 89 - - uid: 6073 + pos: -50.5,6.5 + parent: 2 + - uid: 23414 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,6.5 - parent: 89 - - uid: 6074 + parent: 2 + - uid: 23415 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,6.5 - parent: 89 - - uid: 6075 + parent: 2 + - uid: 23416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 89 - - uid: 6607 - components: - - type: Transform - pos: -8.5,6.5 - parent: 89 - - uid: 6628 - components: - - type: Transform - pos: -43.5,6.5 - parent: 89 - - uid: 7658 - components: - - type: Transform - pos: -100.5,28.5 - parent: 89 - - uid: 7942 - components: - - type: Transform - pos: -70.5,13.5 - parent: 89 - - uid: 7943 - components: - - type: Transform - pos: -70.5,14.5 - parent: 89 - - uid: 7946 - components: - - type: Transform - pos: -64.5,12.5 - parent: 89 - - uid: 7948 - components: - - type: Transform - pos: -62.5,12.5 - parent: 89 - - uid: 7949 - components: - - type: Transform - pos: -50.5,14.5 - parent: 89 - - uid: 7950 - components: - - type: Transform - pos: -50.5,13.5 - parent: 89 - - uid: 7951 - components: - - type: Transform - pos: -53.5,15.5 - parent: 89 - - uid: 8350 - components: - - type: Transform - pos: -63.5,12.5 - parent: 89 - - uid: 9033 - components: - - type: Transform - pos: -70.5,12.5 - parent: 89 - - uid: 9034 - components: - - type: Transform - pos: -90.5,4.5 - parent: 89 - - uid: 9035 - components: - - type: Transform - pos: -90.5,3.5 - parent: 89 - - uid: 9036 - components: - - type: Transform - pos: -90.5,2.5 - parent: 89 - - uid: 9037 + pos: -51.5,2.5 + parent: 2 + - uid: 23417 components: - type: Transform - pos: -90.5,1.5 - parent: 89 - - uid: 9140 + rot: 1.5707963267948966 rad + pos: -60.5,27.5 + parent: 2 + - uid: 23418 components: - type: Transform - pos: -28.5,2.5 - parent: 89 - - uid: 9141 + rot: 1.5707963267948966 rad + pos: -58.5,27.5 + parent: 2 + - uid: 23419 components: - type: Transform - pos: -28.5,5.5 - parent: 89 - - uid: 9142 + rot: 1.5707963267948966 rad + pos: -57.5,27.5 + parent: 2 + - uid: 23420 components: - type: Transform - pos: -29.5,6.5 - parent: 89 - - uid: 9143 + pos: -68.5,-11.5 + parent: 2 + - uid: 23421 components: - type: Transform - pos: -33.5,6.5 - parent: 89 - - uid: 9144 + pos: -68.5,-12.5 + parent: 2 + - uid: 23422 components: - type: Transform - pos: -38.5,5.5 - parent: 89 - - uid: 9145 + pos: -21.5,-9.5 + parent: 2 + - uid: 23423 components: - type: Transform - pos: -38.5,2.5 - parent: 89 - - uid: 9350 + pos: -17.5,-9.5 + parent: 2 + - uid: 23424 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - uid: 9805 + pos: -62.5,2.5 + parent: 2 + - uid: 23425 components: - type: Transform - pos: -57.5,27.5 - parent: 89 - - uid: 9806 + pos: -63.5,2.5 + parent: 2 + - uid: 23426 components: - type: Transform - pos: -58.5,27.5 - parent: 89 - - uid: 9807 + pos: -57.5,-9.5 + parent: 2 + - uid: 23427 components: - type: Transform + rot: 1.5707963267948966 rad pos: -59.5,27.5 - parent: 89 - - uid: 9808 + parent: 2 + - uid: 23428 components: - type: Transform - pos: -60.5,27.5 - parent: 89 - - uid: 10180 + pos: -72.5,-1.5 + parent: 2 + - uid: 23429 components: - type: Transform pos: -74.5,2.5 - parent: 89 - - uid: 10186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-0.5 - parent: 89 - - uid: 10189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,2.5 - parent: 89 - - uid: 10195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,2.5 - parent: 89 - - uid: 10197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,2.5 - parent: 89 - - uid: 10225 + parent: 2 + - uid: 23430 components: - type: Transform pos: -75.5,2.5 - parent: 89 - - uid: 10656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 89 - - uid: 10658 + parent: 2 + - uid: 23431 components: - type: Transform pos: 12.5,5.5 - parent: 89 - - uid: 10659 - components: - - type: Transform - pos: 12.5,6.5 - parent: 89 - - uid: 10660 - components: - - type: Transform - pos: 12.5,8.5 - parent: 89 - - uid: 10661 + parent: 2 + - uid: 23432 components: - type: Transform pos: 12.5,9.5 - parent: 89 - - uid: 10672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 89 - - uid: 10831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 89 - - uid: 10842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 89 - - uid: 10852 + parent: 2 + - uid: 23433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 89 - - uid: 10853 + pos: 10.5,15.5 + parent: 2 + - uid: 23434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 89 - - uid: 10863 + pos: 23.5,17.5 + parent: 2 + - uid: 23435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 89 - - uid: 10894 + pos: 21.5,16.5 + parent: 2 + - uid: 23436 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,19.5 - parent: 89 - - uid: 12628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 89 - - uid: 14322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 89 - - uid: 15203 + parent: 2 + - uid: 23437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,16.5 - parent: 89 - - uid: 15875 + pos: 12.5,20.5 + parent: 2 + - uid: 23438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 89 - - uid: 15882 + pos: -63.5,35.5 + parent: 2 + - uid: 23439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 - - uid: 15884 + pos: -63.5,34.5 + parent: 2 + - uid: 23440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 89 - - uid: 16289 + pos: -63.5,33.5 + parent: 2 + - uid: 23441 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - uid: 16290 + pos: -3.5,20.5 + parent: 2 + - uid: 23442 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - uid: 16499 + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - uid: 23443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,35.5 - parent: 89 - - uid: 16501 + pos: -48.5,6.5 + parent: 2 + - uid: 23444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,34.5 - parent: 89 - - uid: 16503 + pos: -44.5,6.5 + parent: 2 + - uid: 23445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,33.5 - parent: 89 - - uid: 16526 + pos: -43.5,6.5 + parent: 2 + - uid: 23446 components: - type: Transform - pos: -3.5,20.5 - parent: 89 - - uid: 20133 + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 23447 components: - type: Transform pos: -3.5,16.5 - parent: 89 - - uid: 20141 + parent: 2 + - uid: 23448 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 - parent: 89 - - uid: 20936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 89 + parent: 2 - proto: WindowDirectional entities: - - uid: 1255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,12.5 - parent: 89 - - uid: 2765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 - parent: 89 - - uid: 2929 + - uid: 23449 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-1.5 - parent: 89 - - uid: 3630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 89 - - uid: 4861 + parent: 2 + - uid: 23450 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,9.5 - parent: 89 - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-5.5 - parent: 89 - - uid: 5425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 89 - - uid: 7680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,26.5 - parent: 89 - - uid: 7681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,27.5 - parent: 89 - - uid: 7682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,24.5 - parent: 89 - - uid: 7683 - components: - - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 10242 + parent: 2 + - uid: 23451 components: - type: Transform pos: -79.5,0.5 - parent: 89 - - uid: 10243 + parent: 2 + - uid: 23452 components: - type: Transform pos: -78.5,0.5 - parent: 89 - - uid: 10244 + parent: 2 + - uid: 23453 components: - type: Transform pos: -77.5,0.5 - parent: 89 - - uid: 10245 + parent: 2 + - uid: 23454 components: - type: Transform pos: -75.5,0.5 - parent: 89 - - uid: 10246 + parent: 2 + - uid: 23455 components: - type: Transform pos: -74.5,0.5 - parent: 89 - - uid: 10247 + parent: 2 + - uid: 23456 components: - type: Transform pos: -73.5,0.5 - parent: 89 - - uid: 14548 + parent: 2 + - uid: 23457 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-16.5 - parent: 89 - - uid: 14745 + parent: 2 + - uid: 23458 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-16.5 - parent: 89 - - uid: 14746 + parent: 2 + - uid: 23459 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-16.5 - parent: 89 - - uid: 15691 - components: - - type: Transform - pos: 46.5,12.5 - parent: 89 - - uid: 16053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 - parent: 89 - - uid: 17714 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 89 - - uid: 17719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 17721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 19592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 21064 + parent: 2 + - uid: 23460 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-26.5 - parent: 89 - - uid: 21284 - components: - - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 21307 + parent: 2 + - uid: 23461 components: - type: Transform pos: 47.5,-28.5 - parent: 89 - - uid: 21344 + parent: 2 + - uid: 23462 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-25.5 - parent: 89 - - uid: 21345 + parent: 2 + - uid: 23463 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-28.5 - parent: 89 - - uid: 21346 + parent: 2 + - uid: 23464 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-27.5 - parent: 89 - - uid: 21387 + parent: 2 + - uid: 23465 components: - type: Transform pos: 48.5,-28.5 - parent: 89 - - uid: 21388 + parent: 2 + - uid: 23466 components: - type: Transform pos: 46.5,-28.5 - parent: 89 - - uid: 21750 + parent: 2 + - uid: 23467 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 - parent: 89 - - uid: 21751 + parent: 2 + - uid: 23468 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-24.5 - parent: 89 - - uid: 21752 + parent: 2 + - uid: 23469 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-24.5 - parent: 89 - - uid: 21756 + parent: 2 + - uid: 23470 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-24.5 - parent: 89 - - uid: 25385 + parent: 2 + - uid: 23471 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-27.5 - parent: 89 + parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 119 + - uid: 23472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23475 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,15.5 - parent: 89 - - uid: 2899 + parent: 2 + - uid: 23476 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,6.5 - parent: 89 - - uid: 2901 + parent: 2 + - uid: 23477 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,5.5 - parent: 89 - - uid: 2902 + parent: 2 + - uid: 23478 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,6.5 - parent: 89 - - uid: 3004 + parent: 2 + - uid: 23479 components: - type: Transform pos: 36.5,3.5 - parent: 89 - - uid: 3007 + parent: 2 + - uid: 23480 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,6.5 - parent: 89 - - uid: 3008 + parent: 2 + - uid: 23481 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,3.5 - parent: 89 - - uid: 3009 + parent: 2 + - uid: 23482 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,4.5 - parent: 89 - - uid: 3013 + parent: 2 + - uid: 23483 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,5.5 - parent: 89 - - uid: 3014 + parent: 2 + - uid: 23484 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,3.5 - parent: 89 - - uid: 3015 + parent: 2 + - uid: 23485 components: - type: Transform pos: 37.5,3.5 - parent: 89 - - uid: 3016 + parent: 2 + - uid: 23486 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,4.5 - parent: 89 - - uid: 3017 + parent: 2 + - uid: 23487 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,6.5 - parent: 89 - - uid: 5523 + parent: 2 + - uid: 23488 components: - type: Transform pos: -45.5,-3.5 - parent: 89 - - uid: 6110 + parent: 2 + - uid: 23489 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,9.5 - parent: 89 - - uid: 6111 + parent: 2 + - uid: 23490 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,8.5 - parent: 89 - - uid: 6112 + parent: 2 + - uid: 23491 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,7.5 - parent: 89 - - uid: 11459 + parent: 2 + - uid: 23492 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-32.5 - parent: 89 - - uid: 12606 + parent: 2 + - uid: 23493 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,42.5 - parent: 89 - - uid: 15435 + parent: 2 + - uid: 23494 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,42.5 - parent: 89 - - uid: 16379 + parent: 2 + - uid: 23495 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,21.5 - parent: 89 - - uid: 16380 + parent: 2 + - uid: 23496 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,19.5 - parent: 89 - - uid: 16510 + parent: 2 + - uid: 23497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 - parent: 89 - - uid: 16996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 89 - - uid: 17001 + parent: 2 + - uid: 23498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 89 - - uid: 17002 + pos: 7.5,-0.5 + parent: 2 + - uid: 23499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 89 - - uid: 17660 + pos: 7.5,-2.5 + parent: 2 + - uid: 23500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-3.5 - parent: 89 - - uid: 17692 + pos: 7.5,-1.5 + parent: 2 + - uid: 23501 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,20.5 - parent: 89 - - uid: 17700 + parent: 2 + - uid: 23502 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,17.5 - parent: 89 - - uid: 17711 + parent: 2 + - uid: 23503 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,16.5 - parent: 89 - - uid: 18293 + parent: 2 + - uid: 23504 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-14.5 - parent: 89 - - uid: 18294 + parent: 2 + - uid: 23505 components: - type: Transform pos: 44.5,-13.5 - parent: 89 - - uid: 19888 + parent: 2 + - uid: 23506 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,23.5 - parent: 89 - - uid: 19897 + parent: 2 + - uid: 23507 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,36.5 - parent: 89 - - uid: 19898 + parent: 2 + - uid: 23508 components: - type: Transform pos: 22.5,35.5 - parent: 89 - - uid: 20818 + parent: 2 + - uid: 23509 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 - parent: 89 - - uid: 25312 + parent: 2 + - uid: 23510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 2 + - uid: 27220 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-26.5 - parent: 22565 - - uid: 25313 + parent: 24450 + - uid: 27221 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-26.5 - parent: 22565 - - uid: 25314 + parent: 24450 + - uid: 27222 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-25.5 - parent: 22565 - - uid: 25315 + parent: 24450 + - uid: 27223 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-25.5 - parent: 22565 - - uid: 25316 + parent: 24450 + - uid: 27224 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-24.5 - parent: 22565 - - uid: 25317 + parent: 24450 + - uid: 27225 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 - parent: 22565 - - uid: 25318 + parent: 24450 + - uid: 27226 components: - type: Transform pos: -14.5,-23.5 - parent: 22565 - - uid: 25319 + parent: 24450 + - uid: 27227 components: - type: Transform pos: -12.5,-23.5 - parent: 22565 + parent: 24450 - proto: WindowReinforcedDirectional entities: - - uid: 344 + - uid: 23522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-5.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 23544 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,6.5 - parent: 89 - - uid: 345 + parent: 2 + - uid: 23545 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,5.5 - parent: 89 - - uid: 346 + parent: 2 + - uid: 23546 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,4.5 - parent: 89 - - uid: 348 + parent: 2 + - uid: 23547 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,2.5 - parent: 89 - - uid: 355 + parent: 2 + - uid: 23548 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,10.5 - parent: 89 - - uid: 356 + parent: 2 + - uid: 23549 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,10.5 - parent: 89 - - uid: 357 + parent: 2 + - uid: 23550 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,10.5 - parent: 89 - - uid: 358 + parent: 2 + - uid: 23551 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,10.5 - parent: 89 - - uid: 359 + parent: 2 + - uid: 23552 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,10.5 - parent: 89 - - uid: 360 + parent: 2 + - uid: 23553 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,10.5 - parent: 89 - - uid: 365 + parent: 2 + - uid: 23554 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,15.5 - parent: 89 - - uid: 366 + parent: 2 + - uid: 23555 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 - parent: 89 - - uid: 367 + parent: 2 + - uid: 23556 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,14.5 - parent: 89 - - uid: 368 + parent: 2 + - uid: 23557 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,14.5 - parent: 89 - - uid: 1068 + parent: 2 + - uid: 23558 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-6.5 - parent: 89 - - uid: 1592 + parent: 2 + - uid: 23559 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-6.5 - parent: 89 - - uid: 3121 + parent: 2 + - uid: 23560 components: - type: Transform pos: 57.5,-1.5 - parent: 89 - - uid: 3126 + parent: 2 + - uid: 23561 components: - type: Transform pos: 55.5,-1.5 - parent: 89 - - uid: 3127 + parent: 2 + - uid: 23562 components: - type: Transform pos: 56.5,-1.5 - parent: 89 - - uid: 3162 + parent: 2 + - uid: 23563 components: - type: Transform pos: 54.5,-1.5 - parent: 89 - - uid: 3175 + parent: 2 + - uid: 23564 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-1.5 - parent: 89 - - uid: 3368 + parent: 2 + - uid: 23565 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,2.5 - parent: 89 - - uid: 3369 + parent: 2 + - uid: 23566 components: - type: Transform pos: 54.5,6.5 - parent: 89 - - uid: 5522 + parent: 2 + - uid: 23567 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-4.5 - parent: 89 - - uid: 5988 + parent: 2 + - uid: 23568 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-1.5 - parent: 89 - - uid: 6230 + parent: 2 + - uid: 23569 components: - type: Transform pos: -80.5,-2.5 - parent: 89 - - uid: 6458 + parent: 2 + - uid: 23570 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,3.5 - parent: 89 - - uid: 6496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,49.5 - parent: 89 - - uid: 6497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,49.5 - parent: 89 - - uid: 6517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,49.5 - parent: 89 - - uid: 7248 + parent: 2 + - uid: 23571 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-34.5 - parent: 89 - - uid: 7741 + parent: 2 + - uid: 23572 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,43.5 - parent: 89 - - uid: 7746 + parent: 2 + - uid: 23573 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,43.5 - parent: 89 - - uid: 7790 + parent: 2 + - uid: 23574 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,43.5 - parent: 89 - - uid: 7791 + parent: 2 + - uid: 23575 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,43.5 - parent: 89 - - uid: 8750 + parent: 2 + - uid: 23576 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,2.5 - parent: 89 - - uid: 8751 + parent: 2 + - uid: 23577 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,6.5 - parent: 89 - - uid: 9025 + parent: 2 + - uid: 23578 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-36.5 - parent: 89 - - uid: 9493 + parent: 2 + - uid: 23579 components: - type: Transform pos: -57.5,47.5 - parent: 89 - - uid: 9832 + parent: 2 + - uid: 23580 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,47.5 - parent: 89 - - uid: 9833 + parent: 2 + - uid: 23581 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,48.5 - parent: 89 - - uid: 9835 + parent: 2 + - uid: 23582 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,48.5 - parent: 89 - - uid: 9836 + parent: 2 + - uid: 23583 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,47.5 - parent: 89 - - uid: 9838 + parent: 2 + - uid: 23584 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,45.5 - parent: 89 - - uid: 9839 + parent: 2 + - uid: 23585 components: - type: Transform pos: -53.5,45.5 - parent: 89 - - uid: 9840 + parent: 2 + - uid: 23586 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,45.5 - parent: 89 - - uid: 9841 + parent: 2 + - uid: 23587 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,45.5 - parent: 89 - - uid: 9842 + parent: 2 + - uid: 23588 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,43.5 - parent: 89 - - uid: 9843 + parent: 2 + - uid: 23589 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,41.5 - parent: 89 - - uid: 9844 + parent: 2 + - uid: 23590 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,39.5 - parent: 89 - - uid: 9845 + parent: 2 + - uid: 23591 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,39.5 - parent: 89 - - uid: 9846 + parent: 2 + - uid: 23592 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,41.5 - parent: 89 - - uid: 9847 + parent: 2 + - uid: 23593 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,43.5 - parent: 89 - - uid: 9848 + parent: 2 + - uid: 23594 components: - type: Transform pos: -53.5,43.5 - parent: 89 - - uid: 9849 + parent: 2 + - uid: 23595 components: - type: Transform pos: -53.5,41.5 - parent: 89 - - uid: 9850 + parent: 2 + - uid: 23596 components: - type: Transform pos: -53.5,39.5 - parent: 89 - - uid: 9851 + parent: 2 + - uid: 23597 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,39.5 - parent: 89 - - uid: 9852 + parent: 2 + - uid: 23598 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,41.5 - parent: 89 - - uid: 9853 + parent: 2 + - uid: 23599 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,43.5 - parent: 89 - - uid: 10469 + parent: 2 + - uid: 23600 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,7.5 - parent: 89 - - uid: 14109 + parent: 2 + - uid: 23601 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-5.5 - parent: 89 - - uid: 14120 + parent: 2 + - uid: 23602 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-5.5 - parent: 89 - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 89 - - uid: 15248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 89 - - uid: 15281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 89 - - uid: 15296 - components: - - type: Transform - pos: 23.5,45.5 - parent: 89 - - uid: 15686 - components: - - type: Transform - pos: 25.5,45.5 - parent: 89 - - uid: 15731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-13.5 - parent: 89 - - uid: 15761 + parent: 2 + - uid: 23603 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 - parent: 89 - - uid: 16559 + parent: 2 + - uid: 23604 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 - parent: 89 - - uid: 16899 + parent: 2 + - uid: 23605 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-21.5 - parent: 89 - - uid: 16900 + parent: 2 + - uid: 23606 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-20.5 - parent: 89 - - uid: 17120 + parent: 2 + - uid: 23607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 89 - - uid: 17270 + rot: 1.5707963267948966 rad + pos: -98.5,24.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,26.5 + parent: 2 + - uid: 23609 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,48.5 - parent: 89 - - uid: 17274 + parent: 2 + - uid: 23610 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,48.5 - parent: 89 - - uid: 17284 + parent: 2 + - uid: 23611 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,47.5 - parent: 89 - - uid: 17295 + parent: 2 + - uid: 23612 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,47.5 - parent: 89 - - uid: 17616 + parent: 2 + - uid: 23613 components: - type: Transform - pos: 24.5,45.5 - parent: 89 - - uid: 17799 + rot: 1.5707963267948966 rad + pos: -98.5,27.5 + parent: 2 + - uid: 23614 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,13.5 - parent: 89 - - uid: 17824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 89 - - uid: 17825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-33.5 - parent: 89 - - uid: 17826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-33.5 - parent: 89 - - uid: 17827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-33.5 - parent: 89 - - uid: 17833 + parent: 2 + - uid: 23615 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,15.5 - parent: 89 - - uid: 17834 + parent: 2 + - uid: 23616 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,15.5 - parent: 89 - - uid: 17835 + parent: 2 + - uid: 23617 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,15.5 - parent: 89 - - uid: 17836 + parent: 2 + - uid: 23618 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,15.5 - parent: 89 - - uid: 17837 + parent: 2 + - uid: 23619 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,15.5 - parent: 89 - - uid: 17838 + parent: 2 + - uid: 23620 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,15.5 - parent: 89 - - uid: 17839 + parent: 2 + - uid: 23621 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,15.5 - parent: 89 - - uid: 17840 + parent: 2 + - uid: 23622 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,15.5 - parent: 89 - - uid: 17841 + parent: 2 + - uid: 23623 components: - type: Transform pos: 65.5,-4.5 - parent: 89 - - uid: 17842 + parent: 2 + - uid: 23624 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,13.5 - parent: 89 - - uid: 17843 + parent: 2 + - uid: 23625 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,13.5 - parent: 89 - - uid: 17844 + parent: 2 + - uid: 23626 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,13.5 - parent: 89 - - uid: 17845 + parent: 2 + - uid: 23627 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,13.5 - parent: 89 - - uid: 17846 + parent: 2 + - uid: 23628 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,12.5 - parent: 89 - - uid: 17847 + parent: 2 + - uid: 23629 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,11.5 - parent: 89 - - uid: 17848 + parent: 2 + - uid: 23630 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,10.5 - parent: 89 - - uid: 17849 + parent: 2 + - uid: 23631 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,8.5 - parent: 89 - - uid: 17850 + parent: 2 + - uid: 23632 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,7.5 - parent: 89 - - uid: 17851 + parent: 2 + - uid: 23633 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,6.5 - parent: 89 - - uid: 17852 + parent: 2 + - uid: 23634 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,5.5 - parent: 89 - - uid: 17853 + parent: 2 + - uid: 23635 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,3.5 - parent: 89 - - uid: 17854 + parent: 2 + - uid: 23636 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,2.5 - parent: 89 - - uid: 17855 + parent: 2 + - uid: 23637 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,1.5 - parent: 89 - - uid: 17856 + parent: 2 + - uid: 23638 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,0.5 - parent: 89 - - uid: 17857 + parent: 2 + - uid: 23639 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-1.5 - parent: 89 - - uid: 17858 + parent: 2 + - uid: 23640 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-2.5 - parent: 89 - - uid: 17859 + parent: 2 + - uid: 23641 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-3.5 - parent: 89 - - uid: 17860 + parent: 2 + - uid: 23642 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-4.5 - parent: 89 - - uid: 17862 + parent: 2 + - uid: 23643 components: - type: Transform pos: 64.5,-4.5 - parent: 89 - - uid: 17863 + parent: 2 + - uid: 23644 components: - type: Transform pos: 63.5,-4.5 - parent: 89 - - uid: 17864 + parent: 2 + - uid: 23645 components: - type: Transform pos: 62.5,-4.5 - parent: 89 - - uid: 17866 + parent: 2 + - uid: 23646 components: - type: Transform pos: 59.5,-6.5 - parent: 89 - - uid: 17867 + parent: 2 + - uid: 23647 components: - type: Transform pos: 58.5,-6.5 - parent: 89 - - uid: 17868 + parent: 2 + - uid: 23648 components: - type: Transform pos: 57.5,-6.5 - parent: 89 - - uid: 17869 + parent: 2 + - uid: 23649 components: - type: Transform pos: 56.5,-6.5 - parent: 89 - - uid: 17870 + parent: 2 + - uid: 23650 components: - type: Transform pos: 55.5,-6.5 - parent: 89 - - uid: 17871 + parent: 2 + - uid: 23651 components: - type: Transform pos: 54.5,-6.5 - parent: 89 - - uid: 17872 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 89 - - uid: 17873 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 18325 + parent: 2 + - uid: 23652 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-25.5 - parent: 89 - - uid: 19709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 89 - - uid: 20415 + parent: 2 + - uid: 23653 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-25.5 - parent: 89 - - uid: 21375 + parent: 2 + - uid: 23654 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-26.5 - parent: 89 - - uid: 21377 + parent: 2 + - uid: 23655 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-26.5 - parent: 89 - - uid: 21466 + parent: 2 + - uid: 23656 components: - type: Transform pos: 50.5,-19.5 - parent: 89 - - uid: 21759 + parent: 2 + - uid: 23657 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-19.5 - parent: 89 - - uid: 21761 + parent: 2 + - uid: 23658 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-20.5 - parent: 89 - - uid: 21762 + parent: 2 + - uid: 23659 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-18.5 - parent: 89 - - uid: 21803 + parent: 2 + - uid: 23660 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-23.5 - parent: 89 - - uid: 21804 + parent: 2 + - uid: 23661 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-24.5 - parent: 89 - - uid: 21805 + parent: 2 + - uid: 23662 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-24.5 - parent: 89 - - uid: 21806 + parent: 2 + - uid: 23663 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-23.5 - parent: 89 - - uid: 25320 + parent: 2 + - uid: 23664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-4.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-2.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-11.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-10.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-9.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-3.5 + parent: 2 + - uid: 27228 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-21.5 - parent: 22565 - - uid: 25321 + parent: 24450 + - uid: 27229 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-21.5 - parent: 22565 - - uid: 25322 + parent: 24450 + - uid: 27230 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-22.5 - parent: 22565 - - uid: 25323 + parent: 24450 + - uid: 27231 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-22.5 - parent: 22565 - - uid: 25324 + parent: 24450 + - uid: 27232 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 - parent: 22565 - - uid: 25325 + parent: 24450 + - uid: 27233 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 - parent: 22565 - - uid: 25326 + parent: 24450 + - uid: 27234 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,1.5 - parent: 22565 - - uid: 25327 + parent: 24450 + - uid: 27235 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,2.5 - parent: 22565 - - uid: 25328 + parent: 24450 + - uid: 27236 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,3.5 - parent: 22565 - - uid: 25329 + parent: 24450 + - uid: 27237 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,4.5 - parent: 22565 - - uid: 25330 + parent: 24450 + - uid: 27238 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,1.5 - parent: 22565 - - uid: 25331 + parent: 24450 + - uid: 27239 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,2.5 - parent: 22565 - - uid: 25332 + parent: 24450 + - uid: 27240 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,3.5 - parent: 22565 - - uid: 25333 + parent: 24450 + - uid: 27241 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,4.5 - parent: 22565 - - uid: 25334 + parent: 24450 + - uid: 27242 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,1.5 - parent: 22565 - - uid: 25335 + parent: 24450 + - uid: 27243 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,4.5 - parent: 22565 - - uid: 25336 + parent: 24450 + - uid: 27244 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,2.5 - parent: 22565 - - uid: 25337 + parent: 24450 + - uid: 27245 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,3.5 - parent: 22565 - - uid: 25338 + parent: 24450 + - uid: 27246 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 - parent: 22565 - - uid: 25339 + parent: 24450 + - uid: 27247 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 22565 - - uid: 25340 + parent: 24450 + - uid: 27248 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 22565 - - uid: 25341 + parent: 24450 + - uid: 27249 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 22565 - - uid: 25342 + parent: 24450 + - uid: 27250 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 22565 - - uid: 25343 + parent: 24450 + - uid: 27251 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 22565 - - uid: 25344 + parent: 24450 + - uid: 27252 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,2.5 - parent: 22565 - - uid: 25345 + parent: 24450 + - uid: 27253 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 - parent: 22565 - - uid: 25346 + parent: 24450 + - uid: 27254 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 - parent: 22565 - - uid: 25347 + parent: 24450 + - uid: 27255 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 - parent: 22565 - - uid: 25348 + parent: 24450 + - uid: 27256 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 - parent: 22565 - - uid: 25349 + parent: 24450 + - uid: 27257 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 - parent: 22565 - - uid: 25350 + parent: 24450 + - uid: 27258 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,4.5 - parent: 22565 - - uid: 25351 + parent: 24450 + - uid: 27259 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,4.5 - parent: 22565 + parent: 24450 + - uid: 28110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 27260 + - uid: 28111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 27260 + - uid: 28112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 27260 + - uid: 28113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 27260 + - uid: 28114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 27260 + - uid: 28115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 27260 + - uid: 28116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 27260 + - uid: 28117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 27260 + - uid: 28118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 27260 + - uid: 28119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 27260 + - uid: 28120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 27260 + - uid: 28121 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 27260 + - uid: 28122 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 27260 + - uid: 28123 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 27260 + - uid: 28124 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 27260 + - uid: 28125 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 27260 + - uid: 28126 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 27260 + - uid: 28127 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 27260 + - uid: 28128 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 27260 + - uid: 28129 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 27260 + - uid: 28130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 27260 + - uid: 28131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 27260 + - uid: 28132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 27260 + - uid: 28133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 27260 + - uid: 28134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 27260 + - uid: 28135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 27260 + - uid: 28136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 27260 + - uid: 28137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 27260 + - uid: 28138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 27260 + - uid: 28139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 27260 + - uid: 28140 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 27260 + - uid: 28141 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 27260 + - uid: 28142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 27260 + - uid: 28143 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 27260 + - uid: 28144 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 27260 + - uid: 28145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 27260 + - uid: 28146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 27260 + - uid: 28147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 27260 - proto: Wirecutter entities: - - uid: 14930 + - uid: 23681 components: - type: Transform pos: -10.198816,-35.316505 - parent: 89 - - uid: 20100 - components: - - type: Transform - pos: -131.61685,-2.3357248 - parent: 89 - - uid: 22011 + parent: 2 + - uid: 23682 components: - type: Transform pos: 43.995945,-35.30719 - parent: 89 + parent: 2 - proto: WoodDoor entities: - - uid: 5512 + - uid: 23683 components: - type: Transform pos: -46.5,-2.5 - parent: 89 - - uid: 5520 + parent: 2 + - uid: 23684 components: - type: Transform pos: -45.5,-5.5 - parent: 89 - - uid: 8000 + parent: 2 + - uid: 23685 components: - type: Transform pos: 3.5,43.5 - parent: 89 - - uid: 10309 + parent: 2 + - uid: 23686 components: - type: Transform pos: -37.5,26.5 - parent: 89 - - uid: 10310 + parent: 2 + - uid: 23687 components: - type: Transform pos: -38.5,31.5 - parent: 89 - - uid: 10348 + parent: 2 + - uid: 23688 components: - type: Transform pos: -21.5,31.5 - parent: 89 + parent: 2 - type: Door state: Open - type: Physics @@ -167239,79 +185541,83 @@ entities: airBlocked: False - type: Occluder enabled: False - - uid: 10349 + - uid: 23689 components: - type: Transform pos: -22.5,26.5 - parent: 89 + parent: 2 - proto: Wrench entities: - - uid: 8207 + - uid: 23690 components: - type: Transform pos: 1.4219074,27.620178 - parent: 89 - - uid: 14608 + parent: 2 + - uid: 23691 components: - type: Transform pos: -97.55266,20.55884 - parent: 89 - - uid: 14956 + parent: 2 + - uid: 23692 components: - type: Transform pos: -12.251301,-35.889294 - parent: 89 - - uid: 16948 + parent: 2 + - uid: 23693 components: - type: Transform pos: -3.385431,-41.401688 - parent: 89 - - uid: 17609 + parent: 2 + - uid: 23694 components: - type: Transform pos: 9.5475025,20.643253 - parent: 89 - - uid: 20370 + parent: 2 + - uid: 23695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.43199,-11.495144 - parent: 89 + pos: 42.30865,-4.765355 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: 5.633301,0.8654289 + parent: 23919 - proto: Zipties entities: - - uid: 11301 + - uid: 8936 components: - type: Transform - parent: 11201 + parent: 8931 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11303 + - uid: 8937 components: - type: Transform - parent: 11201 + parent: 8931 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11307 + - uid: 8943 components: - type: Transform - parent: 11304 + parent: 8938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11309 + - uid: 8944 components: - type: Transform - parent: 11304 + parent: 8938 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ZiptiesBroken entities: - - uid: 11508 + - uid: 23696 components: - type: Transform pos: 17.97879,31.046028 - parent: 89 + parent: 2 ... diff --git a/Resources/Prototypes/Corvax/Maps/ishimura.yml b/Resources/Prototypes/Corvax/Maps/ishimura.yml index 944e4491da1..150ec12bbe5 100644 --- a/Resources/Prototypes/Corvax/Maps/ishimura.yml +++ b/Resources/Prototypes/Corvax/Maps/ishimura.yml @@ -8,13 +8,16 @@ Ishimura: stationProto: StandardNanotrasenStation components: + - type: StationRandomTransform + enableStationRotation: false + maxStationOffset: null - type: StationNameSetup mapNameTemplate: '{0} USG Ishimura {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'SY' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/corvax_emergency.yml + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - type: StationJobs overflowJobs: - Passenger @@ -25,11 +28,11 @@ Botanist: [ 3, 3 ] Chef: [ 2, 2 ] Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] + Janitor: [ 2, 2 ] Mime: [ 1, 1 ] Captain: [ 1, 1 ] IAA: [ 1, 1 ] - Reporter: [ 2, 2 ] + Reporter: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] StationEngineer: [ 4, 4 ] @@ -48,7 +51,7 @@ Musician: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] TechnicalAssistant: [ 2, 2 ] - ResearchAssistant: [ 1, 2 ] + ResearchAssistant: [ 2, 2 ] MedicalIntern: [ 2, 2 ] ServiceWorker: [ 2, 2 ] SecurityCadet: [ 2, 2 ] From c55f443d2584ee9c45d2d1320fb4037a854866a0 Mon Sep 17 00:00:00 2001 From: MureixloI <132683811+MureixloI@users.noreply.github.com> Date: Tue, 7 May 2024 02:00:46 +0300 Subject: [PATCH 78/78] [Fix] Some glasses & huds (#2103) --- .../Eyes/Glasses/glasses.rsi/equipped-EYES.png | Bin 249 -> 249 bytes .../Eyes/Glasses/meson.rsi/equipped-EYES.png | Bin 313 -> 295 bytes .../Eyes/Glasses/science.rsi/equipped-EYES.png | Bin 294 -> 290 bytes .../Glasses/secglasses.rsi/equipped-EYES.png | Bin 277 -> 265 bytes .../Eyes/Glasses/thermal.rsi/equipped-EYES.png | Bin 307 -> 293 bytes .../Eyes/Hud/beergoggles.rsi/equipped-EYES.png | Bin 207 -> 248 bytes .../Clothing/Eyes/Hud/beergoggles.rsi/icon.png | Bin 273 -> 357 bytes .../Eyes/Hud/beergoggles.rsi/inhand-left.png | Bin 276 -> 247 bytes .../Eyes/Hud/beergoggles.rsi/inhand-right.png | Bin 248 -> 253 bytes 9 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png index 4d3465ff71f5af4f5be3eaa6326b698a3d93be3b..dc4cba87dd2fe8bd36a13f1a4a91e8ac7f6ce55a 100644 GIT binary patch delta 198 zcmey#_>*yhbv<8`fk;E*2aydI{O(#A8dhqA^B>ThW5c+aUBPJj5j7PD50krQV&P;dd<3<7v&;=WpyI&(>bpYGyO<*J{bU z-KTfTKVP@?;Uwm1U!K2VWPpPo6R)il4%&IVp6P#{{j}0#peccKEEK0+w)*->|Do%& pwet_%{+sxCwQa6%K3rSHb3XAUUQ4wUC*B7c{N1RXG3v delta 198 zcmey#_>*yhbv@T11CfS@*MhfrPu7fH<~P@7%4+r(nsaO%)A5+{kBZw on*PJL|2A-5joUVDJ5=9%TZVunuceGtPD~&XPgg&ebxsLQ03<$EiU0rr diff --git a/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png index 5c26d746d98b381eb4bad8f86b801ad49d9e579a..46379d491474108839e77c818ec7ee7bb96a3b51 100644 GIT binary patch delta 254 zcmdnVw47;zVf{l-7srr_Id5+*{@H{A4=a~ zIsAojOGGXEY^#Et8$5@2iX4|6?Cg5C>0@ zb#y$<-2ZNynb%GGpUeyh@L%Dx?%g>D&)VAcIdQVJuYAef^L5qtR}-%PI{nP$$tBN# x!%5du4CXc}MC{)#KVjNC?i!}KEHLdKdWtAOBWV{IV2ccu>_B-S2xYKK9lZ zXAw3nzSWPTEH@Xwos)Ji>hjZit5@vjZ@h1LeC@FY&zI+G_1<;WmwEo|Z+f=*z4_#s zZvCn!H=Qc{c6wfpeQ?y*XJ>=1OYZ;wZtKsFQv3Fs%wuPOg9D%Miu8LQx3S}5{yF!n z%1iDo+Ly0AzHTF>leKus-hvpV- Ueb>&wz{SAe>FVdQ&MBb@04;NUc>n+a diff --git a/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png index beeec0ca5055e0ecea508989e9c481eb5f4dd641..de13a55e964010fa7929a0377456f144901e38a3 100644 GIT binary patch delta 249 zcmZ3+w1{bfVf`IX7srr_Id5<6=Q|i6a{QxmqLJVvZ>!R8Jh8hv7uqyXR#iSJdS<4 z7rgdTrP#VYqaJI0-m-q6q>%fj+j)8SUiB^uS!Eijx2$!0TR_pNGcn2@v4_9AxWpX( z4rER>s{h2!fB^p--$n1TYkpl_Bjj$h;+)zp{R?tatM$)SB;K>HPX+B`==icFZU-Ua`9Z1O2)z4*}Q$iB}FiC1! delta 253 zcmZ3)w2WzjVf_P77srr_Id5;-^D#Qg9Q`=I#m(KLEk|{cko$$4)dxi1u+BNcX>lkh z!*o_?x0g%1Z%$dL)X`OH|4hTy2;BF#oa`BAc(+=Kq2c+}vuP4f|J+txY{yaK&-UzK z*wrahvNI#k_CM0|yYyMQ@X78#^Vx|HsyE%wm4ElCby3PD%b9*P>8i(^Q|oVT|Yavcf~IrdSRPpv2OlF3DdS$RgfGixT;HXl_N=uWsD zJoDO-1#51W#1t6pFuQ1Ycna^q|N63ebBgoq=W{STs5d=j#?zL(`IU+4wP`tDUCnIW zlX5+0EG@En=Y9TnO8v!on+a delta 236 zcmeBVn#wf6u>QQKi(^Q|oVT~^xg7&#j(v2$5^C<_5?jw^IQL|U`egA(rV)FXBBz{P zZFJX{ZPU#icZ*(M+sJ9SK>O+MnSRUbo?HHYKaqjqzxL->4x6uToE#LkTVr`;$%QqK zvc#Wm@kq)wUp@VPwfg_SbDMvM@Yp7^KV7%io|yp-Qa{YLyR}^U^5#h;JkCcyzPuzV zvA#Lv+n3ARHkO)S%#c4>_(@BQYtj;hh`QzC1!uqiHlN#&wKlPRp66b51C8?Bt=D#( f-1(myX5Inibi=8ZRm-{k1VBQbu6{1-oD!M-=mrMJcT={B`*-cr|!(VK#Pdr;y`gz&XOG5rCsWwtA_oSSzmu{{zU#`2>X_>N8 zlBm(#Jiq8yRo~R>84%!sJj=eNtBrT;I$pg_d2-N}^}m=lR;~W^YQprgx6cAxN`=0e uPIWA0%c=f&ukOIs*ZU5rU+{$MK5xOe`jM;J;fgPhKw_S*elF{r5}E*Ki*!N& delta 267 zcmZ3=w3%swVf|ZA7srr_Id5-m^g0|MarC49gheIUh63D?R;;_O2;4a{NxY+*|G}m0 zpBRHYelx|s5>mOKx2{jhK*euSgvWAkLp|S2uciO*SLlnME7)G_!oYC*^PdH4itFBd z*~Q;wGr51F{MI{-_x4HE)#^=qZh!Lgt7n?oO852W$xm^eck=h``q%TVA8%5h`>yp& zdhptd0?TgdAKxZ;v`@6F<4B)qU#_yz*?;^0FfzbFLvX-u?{L!{uO4^XOg{d4bLTDY zjCX(U{!7lAa?*LnO_iGat9Y`ECoI!H`;K|ls_I7PgvoHdWgFT0w0*pu=FArdiFvyE Lxv;ErN@xNA+7Nm< diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png index d2af43448b7356156144d1a9cf6f89a1d2ed7213..f9cd7e67bfd68293993e4a6fd3dfffc5d7cf03df 100644 GIT binary patch delta 207 zcmX@l_=9nRVf`jg7srr_Id5+n@--QV9Q*j_(pqM2@5hV^I|>+tg!2xt+HmfE{!!#z zSxQo2p#q;k`*Sy@Ss8|9zy2?qKHcR0^}m{|3DIC-CVtCqW+^ZHRQqjy zPK|s?vi#h0{H8JQPTgI1`A%=`mSqQK)y%hLKmdD>Rhwegm~FOhtWV$OtGP~3rB`_4 yEsv>B9p4GX$$a~KUT*vD1lMVir}f}^-rF!f<#+te;i~Ki67zKRb6Mw<&;$VM7*{3$ delta 166 zcmeytc%E^BVST5ki(^Q|oVT|&avnAiU=0xe#uj&ARm&^=__ka7_NRP|C|G?@IksQ;{qLhy{2o~ PXF&p#p2-2aG2#!)QrG)F0tB~`q zl|nmw&v?Ff-*Yb~KoA5${4ts;5CnnrdzPfkavkM4VHgV6FMm`UWrNGSV3zA>ne z&zb#n!zPNEY3LZ<+BEdhysDvZ3uH;kR?7u!-#a@@G$2b-)^IVBLW+I7UzN(w^hTdCYUio-#Z`SPbevZTL4FGWW^a9h+v05&8rm7nNK-={IAZ%&u z5h@#~>IR41B~G5VAAHSn9j(lZFR|+@E+=bel0e(_eE93}C>5K6Qo!~-?P2hnoo+ZL n_Ui(}p)#?t96=BS@$dNrMz4Uck3nwM00000NkvXXu0mjf5R9Iu literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|`~rMJTn`*L zAS5J|W^6n&&G<~3@&7bqdwY9*eSH-b6%P-OY-P=wP`zh0CfD7SJX8%9*eY5Wn=Mn) zIAmfyO;%Y&Su-{^MT(V8goV{iR^CZNYh&aTNubG6B|(0{4F7Qf_MpECKvmwJE{-7< zy~zm@tcL|Um>H)C9oIU4{OnFuePA|ie)99^#u>`z4xiW8;aldgMa6@| uw{^n?ix#HKH$plN%XqhmyEED{FiiW*nt9;QjHf_j89ZJ6T-G@yGywpElVyzn diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png index 7c9605a87b0948f65bda68aa6041e9cd0b3cea67..74455e96b509ccbbfe961855499f8826f9c1d73f 100644 GIT binary patch delta 206 zcmbQj^qp~nVf{u=7srr_Id5+%@*OtdX-&*l(Md>AdBte9R)t;T7H`q~PxF>9*T_%s z4-8m&!1-b9?2udE>ThhyIsKuN0RnDhXG!-S%bY9N zlm2Gi!nqq~O)EQ=Wxr-qPw~0J(_II%!>?*7745%gXXWI+>iw!+H{9pG`&y9~m69zB zH4{kvX^n|&S@W~O_~{v?n!U=AE%RND0fiHq%~NN2{#x<8%MYa1)78&qol`;+0IbSe AbpQYW delta 235 zcmey)IE86~Vf{Hz7srr_Id5+n@-;aKv_3re=3at6!(3Zk)9H^4Vw|nL4>7*bSvjGl zjcw9KgNPY39;7J-{$GD9Dc#8W=BG{u2>5VSY^7P{qUbMqpImM$@!tC_u<2&N_n=;_ za}lxA9`<~dx+S?fRV+Jt$*Z2LSs{|I?4Inno%PA(v`$#c#N)|!D`VeHkNorIczn)<^U*B9*@Z~ejqGMU+{uh6r fvUfNJ)R53>z5k!Db{nJZ7mz8Qu6{1-oD!M<^Z;o* diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png index ec2b0de5c9ae685897cda93b4339346696b30460..02df73ce2ee3e87d229cbec036ad066e7967ece1 100644 GIT binary patch delta 212 zcmeyt_?K~lVf}Vb7srr_Id5<23N;%Dv^|_VYe&bdSv>3+%O&_4Uh(eWpZB?d%f`d6 zF@bGksE;qR@BhPl`eQfWcY7wx$N&Zf{^2RNrtkb$)vsDRGdn!R(fVBtbNZTd3+HZ( zGN0V@_QS7f@+RAwubfpm7csa0VGnQpmdF1VC@Fzopr02h*6&;S4c delta 207 zcmey%_=9nRVf`jg7srr_Id5<6cTl%_rW_KBfT{fDt@#*|&a<2D9^1p-w^}Uc5-Fe2NczU~8SmWYztWXmf7#=uh zo#1_Q@)>i{oQ+bo!J&B%Qr8tTzx?*ke8+lb1_qfklDn_FZOszCcpaq0)78&qol`;+ E03xVg!vFvP