From 92be69a5abbaa358b1cdaaa34bb11076485ff685 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:49:19 +0300 Subject: [PATCH 001/176] Anomalous infections (#31876) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * inner anomaly * anomaly pulse action * test anom mine * Update anomalies.yml * fix action cooldown * pyro_eyes * clientsystem * experiments * blya * some telegraphy * shock eyes! * shadow eyes * separate files * frosty eyes * fix * flora eyes * bluespace eyes * flesh eyes * redoing injction * auto add layers * пипяу * new injector component * stupid me * nice marker injectors * anomaly spawn on shutdown * gravity anom * dead anomaly spawning * add VOX states * sprite specific layers support * technology anom infection * auto detach anomalies that have moved away * Update anomaly_injections.yml * anomalyspawner integration * rock anomaly! * Update anomaly_injections.yml * fix crash bug * tag filter * fix anom dublication spawns * Update anomaly.yml * Update InnerBodyAnomalyComponent.cs * Update anomaly_injections.yml * dont spawn anomalies after decay * fix morb sprite, add end message * gravity resprite * admin logging, double injection fix * make flesh and living light mobs friendly to anomaly hosts * popups * severity feedback * sloth review * A * keep organs after gib * punpun host * sloth synchronization * Update arachnid.yml * increase infections spawnrate --- .../Anomaly/Effects/ClientInnerBodySystem.cs | 50 ++ .../Anomaly/AnomalySynchronizerSystem.cs | 44 +- Content.Server/Anomaly/AnomalySystem.cs | 6 +- .../AnomalySynchronizerComponent.cs | 11 +- .../Anomaly/Effects/InnerBodyAnomalySystem.cs | 236 +++++++ .../Explosion/EntitySystems/TriggerSystem.cs | 3 +- .../Anomaly/Components/AnomalyComponent.cs | 15 +- .../Components/InnerBodyAnomalyComponent.cs | 72 ++ .../InnerBodyAnomalyInjectorComponent.cs | 21 + .../Effects/SharedInnerBodyAnomalySystem.cs | 5 + Content.Shared/Anomaly/SharedAnomalySystem.cs | 21 +- Resources/Audio/Effects/attributions.yml | 5 + Resources/Audio/Effects/inneranomaly.ogg | Bin 0 -> 46892 bytes .../Locale/en-US/anomaly/inner_anomaly.ftl | 17 + Resources/Prototypes/Actions/anomaly.yml | 9 + .../Markers/Spawners/Random/anomaly.yml | 31 +- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 1 + .../Prototypes/Entities/Mobs/NPCs/flesh.yml | 7 +- .../Entities/Mobs/NPCs/living_light.yml | 5 + .../Prototypes/Entities/Mobs/NPCs/pets.yml | 1 + .../Entities/Mobs/Species/arachnid.yml | 1 + .../Prototypes/Entities/Mobs/Species/base.yml | 1 + .../Structures/Specific/Anomaly/anomalies.yml | 3 +- .../Specific/Anomaly/anomaly_injections.yml | 353 ++++++++++ .../Specific/Anomaly/anomaly_injectors.yml | 320 +++++++++ Resources/Prototypes/tags.yml | 3 + .../inner_anom_layer.rsi/bluespace.png | Bin 0 -> 864 bytes .../inner_anom_layer.rsi/bluespace_VOX.png | Bin 0 -> 1031 bytes .../Anomalies/inner_anom_layer.rsi/fire.png | Bin 0 -> 1007 bytes .../inner_anom_layer.rsi/fire_VOX.png | Bin 0 -> 1514 bytes .../Anomalies/inner_anom_layer.rsi/flesh.png | Bin 0 -> 1342 bytes .../inner_anom_layer.rsi/flesh_VOX.png | Bin 0 -> 1385 bytes .../Anomalies/inner_anom_layer.rsi/flora.png | Bin 0 -> 1868 bytes .../inner_anom_layer.rsi/flora_VOX.png | Bin 0 -> 1952 bytes .../Anomalies/inner_anom_layer.rsi/frost.png | Bin 0 -> 2650 bytes .../inner_anom_layer.rsi/frost_VOX.png | Bin 0 -> 2718 bytes .../Anomalies/inner_anom_layer.rsi/grav.png | Bin 0 -> 2837 bytes .../inner_anom_layer.rsi/grav_VOX.png | Bin 0 -> 3405 bytes .../Anomalies/inner_anom_layer.rsi/meta.json | 643 ++++++++++++++++++ .../Anomalies/inner_anom_layer.rsi/rock.png | Bin 0 -> 1398 bytes .../inner_anom_layer.rsi/rock_VOX.png | Bin 0 -> 1398 bytes .../Anomalies/inner_anom_layer.rsi/shadow.png | Bin 0 -> 768 bytes .../inner_anom_layer.rsi/shadow_VOX.png | Bin 0 -> 1002 bytes .../Anomalies/inner_anom_layer.rsi/shock.png | Bin 0 -> 879 bytes .../inner_anom_layer.rsi/shock_VOX.png | Bin 0 -> 2083 bytes .../Anomalies/inner_anom_layer.rsi/tech.png | Bin 0 -> 1241 bytes .../inner_anom_layer.rsi/tech_VOX.png | Bin 0 -> 1244 bytes .../Specific/anomaly.rsi/anom5-pulse.png | Bin 1195 -> 1252 bytes .../Structures/Specific/anomaly.rsi/anom5.png | Bin 429 -> 513 bytes 49 files changed, 1859 insertions(+), 25 deletions(-) create mode 100644 Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs create mode 100644 Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs create mode 100644 Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs create mode 100644 Content.Shared/Anomaly/Components/InnerBodyAnomalyInjectorComponent.cs create mode 100644 Content.Shared/Anomaly/Effects/SharedInnerBodyAnomalySystem.cs create mode 100644 Resources/Audio/Effects/inneranomaly.ogg create mode 100644 Resources/Locale/en-US/anomaly/inner_anomaly.ftl create mode 100644 Resources/Prototypes/Actions/anomaly.yml create mode 100644 Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomaly_injections.yml create mode 100644 Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomaly_injectors.yml create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/bluespace.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/bluespace_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/fire.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/fire_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flesh.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flesh_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/grav.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/grav_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/meta.json create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shadow.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shadow_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shock.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shock_VOX.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech.png create mode 100644 Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech_VOX.png diff --git a/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs b/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs new file mode 100644 index 0000000000..efb1a8d46e --- /dev/null +++ b/Content.Client/Anomaly/Effects/ClientInnerBodySystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Anomaly.Components; +using Content.Shared.Anomaly.Effects; +using Content.Shared.Body.Components; +using Robust.Client.GameObjects; + +namespace Content.Client.Anomaly.Effects; + +public sealed class ClientInnerBodyAnomalySystem : SharedInnerBodyAnomalySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnAfterHandleState); + SubscribeLocalEvent(OnCompShutdown); + } + + private void OnAfterHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + if (!TryComp(ent, out var sprite)) + return; + + if (ent.Comp.FallbackSprite is null) + return; + + if (!sprite.LayerMapTryGet(ent.Comp.LayerMap, out var index)) + index = sprite.LayerMapReserveBlank(ent.Comp.LayerMap); + + if (TryComp(ent, out var body) && + body.Prototype is not null && + ent.Comp.SpeciesSprites.TryGetValue(body.Prototype.Value, out var speciesSprite)) + { + sprite.LayerSetSprite(index, speciesSprite); + } + else + { + sprite.LayerSetSprite(index, ent.Comp.FallbackSprite); + } + + sprite.LayerSetVisible(index, true); + sprite.LayerSetShader(index, "unshaded"); + } + + private void OnCompShutdown(Entity ent, ref ComponentShutdown args) + { + if (!TryComp(ent, out var sprite)) + return; + + var index = sprite.LayerMapGet(ent.Comp.LayerMap); + sprite.LayerSetVisible(index, false); + } +} diff --git a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs index 59ef08402e..b1814c2741 100644 --- a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs +++ b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using System.Numerics; using Content.Server.Anomaly.Components; using Content.Server.DeviceLinking.Systems; using Content.Server.Power.Components; @@ -10,6 +11,7 @@ using Content.Shared.Popups; using Content.Shared.Power; using Robust.Shared.Audio.Systems; using Content.Shared.Verbs; +using Robust.Shared.Timing; namespace Content.Server.Anomaly; @@ -25,6 +27,7 @@ public sealed partial class AnomalySynchronizerSystem : EntitySystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly PowerReceiverSystem _power = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { @@ -40,6 +43,34 @@ public sealed partial class AnomalySynchronizerSystem : EntitySystem SubscribeLocalEvent(OnAnomalyStabilityChanged); } + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var sync, out var xform)) + { + if (sync.ConnectedAnomaly is null) + continue; + + if (_timing.CurTime < sync.NextCheckTime) + continue; + sync.NextCheckTime += sync.CheckFrequency; + + if (Transform(sync.ConnectedAnomaly.Value).MapUid != Transform(uid).MapUid) + { + DisconnectFromAnomaly((uid, sync), sync.ConnectedAnomaly.Value); + continue; + } + + if (!xform.Coordinates.TryDistance(EntityManager, Transform(sync.ConnectedAnomaly.Value).Coordinates, out var distance)) + continue; + + if (distance > sync.AttachRange) + DisconnectFromAnomaly((uid, sync), sync.ConnectedAnomaly.Value); + } + } + /// /// If powered, try to attach a nearby anomaly. /// @@ -73,10 +104,10 @@ public sealed partial class AnomalySynchronizerSystem : EntitySystem if (args.Powered) return; - if (!TryComp(ent.Comp.ConnectedAnomaly, out var anomaly)) + if (ent.Comp.ConnectedAnomaly is null) return; - DisconnectFromAnomaly(ent, anomaly); + DisconnectFromAnomaly(ent, ent.Comp.ConnectedAnomaly.Value); } private void OnExamined(Entity ent, ref ExaminedEvent args) @@ -125,13 +156,16 @@ public sealed partial class AnomalySynchronizerSystem : EntitySystem //TODO: disconnection from the anomaly should also be triggered if the anomaly is far away from the synchronizer. //Currently only bluespace anomaly can do this, but for some reason it is the only one that cannot be connected to the synchronizer. - private void DisconnectFromAnomaly(Entity ent, AnomalyComponent anomaly) + private void DisconnectFromAnomaly(Entity ent, EntityUid other) { if (ent.Comp.ConnectedAnomaly == null) return; - if (ent.Comp.PulseOnDisconnect) - _anomaly.DoAnomalyPulse(ent.Comp.ConnectedAnomaly.Value, anomaly); + if (TryComp(other, out var anomaly)) + { + if (ent.Comp.PulseOnDisconnect) + _anomaly.DoAnomalyPulse(ent.Comp.ConnectedAnomaly.Value, anomaly); + } _popup.PopupEntity(Loc.GetString("anomaly-sync-disconnected"), ent, PopupType.Large); _audio.PlayPvs(ent.Comp.ConnectedSound, ent); diff --git a/Content.Server/Anomaly/AnomalySystem.cs b/Content.Server/Anomaly/AnomalySystem.cs index 3e9760a056..b0de3de8f3 100644 --- a/Content.Server/Anomaly/AnomalySystem.cs +++ b/Content.Server/Anomaly/AnomalySystem.cs @@ -55,6 +55,7 @@ public sealed partial class AnomalySystem : SharedAnomalySystem SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnStartCollide); + InitializeGenerator(); InitializeScanner(); InitializeVessel(); @@ -86,7 +87,10 @@ public sealed partial class AnomalySystem : SharedAnomalySystem private void OnShutdown(Entity anomaly, ref ComponentShutdown args) { - EndAnomaly(anomaly); + if (anomaly.Comp.CurrentBehavior is not null) + RemoveBehavior(anomaly, anomaly.Comp.CurrentBehavior.Value); + + EndAnomaly(anomaly, spawnCore: false); } private void OnStartCollide(Entity anomaly, ref StartCollideEvent args) diff --git a/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs index 235e740cf3..3127f091e5 100644 --- a/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs @@ -7,7 +7,7 @@ namespace Content.Server.Anomaly.Components; /// /// a device that allows you to translate anomaly activity into multitool signals. /// -[RegisterComponent, Access(typeof(AnomalySynchronizerSystem))] +[RegisterComponent, AutoGenerateComponentPause, Access(typeof(AnomalySynchronizerSystem))] public sealed partial class AnomalySynchronizerComponent : Component { /// @@ -34,6 +34,15 @@ public sealed partial class AnomalySynchronizerComponent : Component [DataField] public float AttachRange = 0.4f; + /// + /// Periodicheski checks to see if the anomaly has moved to disconnect it. + /// + [DataField] + public TimeSpan CheckFrequency = TimeSpan.FromSeconds(1f); + + [DataField, AutoPausedField] + public TimeSpan NextCheckTime = TimeSpan.Zero; + [DataField] public ProtoId DecayingPort = "Decaying"; diff --git a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs new file mode 100644 index 0000000000..38c4c51d87 --- /dev/null +++ b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs @@ -0,0 +1,236 @@ +using Content.Server.Administration.Logs; +using Content.Server.Body.Systems; +using Content.Server.Chat.Managers; +using Content.Server.Jittering; +using Content.Server.Mind; +using Content.Server.Stunnable; +using Content.Shared.Actions; +using Content.Shared.Anomaly; +using Content.Shared.Anomaly.Components; +using Content.Shared.Anomaly.Effects; +using Content.Shared.Body.Components; +using Content.Shared.Chat; +using Content.Shared.Database; +using Content.Shared.Mobs; +using Content.Shared.Popups; +using Content.Shared.Whitelist; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Physics.Events; +using Robust.Shared.Prototypes; + +namespace Content.Server.Anomaly.Effects; + +public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly AnomalySystem _anomaly = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly BodySystem _body = default!; + [Dependency] private readonly IChatManager _chat = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + [Dependency] private readonly JitteringSystem _jitter = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StunSystem _stun = default!; + + private readonly Color _messageColor = Color.FromSrgb(new Color(201, 22, 94)); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartCollideInjector); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnCompShutdown); + + SubscribeLocalEvent(OnAnomalyPulse); + SubscribeLocalEvent(OnAnomalyShutdown); + SubscribeLocalEvent(OnAnomalySupercritical); + SubscribeLocalEvent(OnSeverityChanged); + + SubscribeLocalEvent(OnMobStateChanged); + + SubscribeLocalEvent(OnActionPulse); + } + + private void OnActionPulse(Entity ent, ref ActionAnomalyPulseEvent args) + { + if (args.Handled) + return; + + _anomaly.DoAnomalyPulse(ent, ent.Comp); + + args.Handled = true; + } + + private void OnStartCollideInjector(Entity ent, ref StartCollideEvent args) + { + if (ent.Comp.Whitelist is not null && !_whitelist.IsValid(ent.Comp.Whitelist, args.OtherEntity)) + return; + if (TryComp(args.OtherEntity, out var innerAnom) && innerAnom.Injected) + return; + if (!_mind.TryGetMind(args.OtherEntity, out _, out var mindComponent)) + return; + + EntityManager.AddComponents(args.OtherEntity, ent.Comp.InjectionComponents); + QueueDel(ent); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + AddAnomalyToBody(ent); + } + + private void AddAnomalyToBody(Entity ent) + { + if (!_proto.TryIndex(ent.Comp.InjectionProto, out var injectedAnom)) + return; + + if (ent.Comp.Injected) + return; + + ent.Comp.Injected = true; + + EntityManager.AddComponents(ent, injectedAnom.Components); + + _stun.TryParalyze(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration), true); + _jitter.DoJitter(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration), true); + + if (ent.Comp.StartSound is not null) + _audio.PlayPvs(ent.Comp.StartSound, ent); + + if (ent.Comp.StartMessage is not null && + _mind.TryGetMind(ent, out _, out var mindComponent) && + mindComponent.Session != null) + { + var message = Loc.GetString(ent.Comp.StartMessage); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chat.ChatMessageToOne(ChatChannel.Server, + message, + wrappedMessage, + default, + false, + mindComponent.Session.Channel, + _messageColor); + + _popup.PopupEntity(message, ent, ent, PopupType.MediumCaution); + + _adminLog.Add(LogType.Anomaly,LogImpact.Extreme,$"{ToPrettyString(ent)} became anomaly host."); + } + Dirty(ent); + } + + private void OnAnomalyPulse(Entity ent, ref AnomalyPulseEvent args) + { + _stun.TryParalyze(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration / 2 * args.Severity), true); + _jitter.DoJitter(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration / 2 * args.Severity), true); + } + + private void OnAnomalySupercritical(Entity ent, ref AnomalySupercriticalEvent args) + { + if (!TryComp(ent, out var body)) + return; + + _body.GibBody(ent, true, body, splatModifier: 5f); + } + + private void OnSeverityChanged(Entity ent, ref AnomalySeverityChangedEvent args) + { + if (!_mind.TryGetMind(ent, out _, out var mindComponent) || mindComponent.Session == null) + return; + + var message = string.Empty; + + if (args.Severity >= 0.5 && ent.Comp.LastSeverityInformed < 0.5) + { + ent.Comp.LastSeverityInformed = 0.5f; + message = Loc.GetString("inner-anomaly-severity-info-50"); + } + if (args.Severity >= 0.75 && ent.Comp.LastSeverityInformed < 0.75) + { + ent.Comp.LastSeverityInformed = 0.75f; + message = Loc.GetString("inner-anomaly-severity-info-75"); + } + if (args.Severity >= 0.9 && ent.Comp.LastSeverityInformed < 0.9) + { + ent.Comp.LastSeverityInformed = 0.9f; + message = Loc.GetString("inner-anomaly-severity-info-90"); + } + if (args.Severity >= 1 && ent.Comp.LastSeverityInformed < 1) + { + ent.Comp.LastSeverityInformed = 1f; + message = Loc.GetString("inner-anomaly-severity-info-100"); + } + + if (message == string.Empty) + return; + + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chat.ChatMessageToOne(ChatChannel.Server, + message, + wrappedMessage, + default, + false, + mindComponent.Session.Channel, + _messageColor); + + _popup.PopupEntity(message, ent, ent, PopupType.MediumCaution); + } + + private void OnMobStateChanged(Entity ent, ref MobStateChangedEvent args) + { + if (args.NewMobState != MobState.Dead) + return; + + _anomaly.ChangeAnomalyHealth(ent, -2); //Shutdown it + } + + private void OnAnomalyShutdown(Entity ent, ref AnomalyShutdownEvent args) + { + RemoveAnomalyFromBody(ent); + RemCompDeferred(ent); + } + + private void OnCompShutdown(Entity ent, ref ComponentShutdown args) + { + RemoveAnomalyFromBody(ent); + } + + private void RemoveAnomalyFromBody(Entity ent) + { + if (!ent.Comp.Injected) + return; + + if (_proto.TryIndex(ent.Comp.InjectionProto, out var injectedAnom)) + EntityManager.RemoveComponents(ent, injectedAnom.Components); + + _stun.TryParalyze(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration), true); + + if (ent.Comp.EndMessage is not null && + _mind.TryGetMind(ent, out _, out var mindComponent) && + mindComponent.Session != null) + { + var message = Loc.GetString(ent.Comp.EndMessage); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chat.ChatMessageToOne(ChatChannel.Server, + message, + wrappedMessage, + default, + false, + mindComponent.Session.Channel, + _messageColor); + + + _popup.PopupEntity(message, ent, ent, PopupType.MediumCaution); + + _adminLog.Add(LogType.Anomaly, LogImpact.Medium,$"{ToPrettyString(ent)} is no longer a host for the anomaly."); + } + + ent.Comp.Injected = false; + RemCompDeferred(ent); + } +} diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 853b4fbc29..57847551aa 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -202,6 +202,7 @@ namespace Content.Server.Explosion.EntitySystems args.Handled = true; } + private void HandleRattleTrigger(EntityUid uid, RattleComponent component, TriggerEvent args) { if (!TryComp(uid, out var implanted)) @@ -230,7 +231,7 @@ namespace Content.Server.Explosion.EntitySystems private void OnTriggerCollide(EntityUid uid, TriggerOnCollideComponent component, ref StartCollideEvent args) { if (args.OurFixtureId == component.FixtureID && (!component.IgnoreOtherNonHard || args.OtherFixture.Hard)) - Trigger(uid); + Trigger(uid, args.OtherEntity); } private void OnSpawnTriggered(EntityUid uid, TriggerOnSpawnComponent component, MapInitEvent args) diff --git a/Content.Shared/Anomaly/Components/AnomalyComponent.cs b/Content.Shared/Anomaly/Components/AnomalyComponent.cs index 724dfd38d2..e6228b5fb0 100644 --- a/Content.Shared/Anomaly/Components/AnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyComponent.cs @@ -1,6 +1,6 @@ using System.Numerics; +using Content.Shared.Anomaly.Effects; using Content.Shared.Anomaly.Prototypes; -using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -16,7 +16,7 @@ namespace Content.Shared.Anomaly.Components; /// Anomalies and their related components were designed here: https://hackmd.io/@ss14-design/r1sQbkJOs /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] -[Access(typeof(SharedAnomalySystem))] +[Access(typeof(SharedAnomalySystem), typeof(SharedInnerBodyAnomalySystem))] public sealed partial class AnomalyComponent : Component { /// @@ -184,21 +184,21 @@ public sealed partial class AnomalyComponent : Component /// /// The minimum amount of research points generated per second /// - [DataField("minPointsPerSecond")] + [DataField] public int MinPointsPerSecond = 10; /// /// The maximum amount of research points generated per second /// This doesn't include the point bonus for being unstable. /// - [DataField("maxPointsPerSecond")] + [DataField] public int MaxPointsPerSecond = 70; /// /// The multiplier applied to the point value for the /// anomaly being above the /// - [DataField("growingPointMultiplier")] + [DataField] public float GrowingPointMultiplier = 1.5f; #endregion @@ -252,10 +252,13 @@ public sealed partial class AnomalyComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("offset")] - public Vector2 FloatingOffset = new(0, 0.15f); + public Vector2 FloatingOffset = new(0, 0); public readonly string AnimationKey = "anomalyfloat"; #endregion + + [DataField] + public bool DeleteEntity = true; } /// diff --git a/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs b/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs new file mode 100644 index 0000000000..e88cedb18e --- /dev/null +++ b/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs @@ -0,0 +1,72 @@ +using Content.Shared.Anomaly.Effects; +using Content.Shared.Body.Prototypes; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Anomaly.Components; + +/// +/// An anomaly within the body of a living being. Controls the ability to return to the standard state. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(SharedInnerBodyAnomalySystem))] +public sealed partial class InnerBodyAnomalyComponent : Component +{ + [DataField] + public bool Injected; + + /// + /// A prototype of an entity whose components will be added to the anomaly host **AND** then removed at the right time + /// + [DataField(required: true)] + public EntProtoId? InjectionProto; + + /// + /// Duration of stun from the effect of the anomaly + /// + [DataField] + public float StunDuration = 4f; + + /// + /// A message sent in chat to a player who has become infected by an anomaly + /// + [DataField] + public LocId? StartMessage = null; + + /// + /// A message sent in chat to a player who has cleared an anomaly + /// + [DataField] + public LocId? EndMessage = "inner-anomaly-end-message"; + + /// + /// Sound, playing on becoming anomaly + /// + [DataField] + public SoundSpecifier? StartSound = new SoundPathSpecifier("/Audio/Effects/inneranomaly.ogg"); + + /// + /// Used to display messages to the player about their level of disease progression + /// + [DataField] + public float LastSeverityInformed = 0f; + + /// + /// The fallback sprite to be added on the original entity. Allows you to visually identify the feature and type of anomaly to other players + /// + [DataField, AutoNetworkedField] + public SpriteSpecifier? FallbackSprite = null; + + /// + /// Ability to use unique sprites for different body types + /// + [DataField, AutoNetworkedField] + public Dictionary, SpriteSpecifier> SpeciesSprites = new(); + + /// + /// The key of the entity layer into which the sprite will be inserted + /// + [DataField] + public string LayerMap = "inner_anomaly_layer"; +} diff --git a/Content.Shared/Anomaly/Components/InnerBodyAnomalyInjectorComponent.cs b/Content.Shared/Anomaly/Components/InnerBodyAnomalyInjectorComponent.cs new file mode 100644 index 0000000000..e4c398c9cc --- /dev/null +++ b/Content.Shared/Anomaly/Components/InnerBodyAnomalyInjectorComponent.cs @@ -0,0 +1,21 @@ +using Content.Shared.Anomaly.Effects; +using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Anomaly.Components; + +/// +/// On contact with an entity, if it meets the conditions, it will transfer the specified components to it +/// +[RegisterComponent, Access(typeof(SharedInnerBodyAnomalySystem))] +public sealed partial class InnerBodyAnomalyInjectorComponent : Component +{ + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// components that will be automatically removed after “curing” + /// + [DataField(required: true)] + public ComponentRegistry InjectionComponents = default!; +} diff --git a/Content.Shared/Anomaly/Effects/SharedInnerBodyAnomalySystem.cs b/Content.Shared/Anomaly/Effects/SharedInnerBodyAnomalySystem.cs new file mode 100644 index 0000000000..a1ec7cd397 --- /dev/null +++ b/Content.Shared/Anomaly/Effects/SharedInnerBodyAnomalySystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.Anomaly.Effects; + +public abstract class SharedInnerBodyAnomalySystem : EntitySystem +{ +} diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index c3d6591b72..9a0cde2998 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -1,13 +1,10 @@ using Content.Shared.Administration.Logs; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Prototypes; -using Content.Shared.Damage; using Content.Shared.Database; -using Content.Shared.Interaction; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Weapons.Melee.Components; -using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -21,6 +18,7 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using System.Linq; using System.Numerics; +using Content.Shared.Actions; namespace Content.Shared.Anomaly; @@ -36,6 +34,7 @@ public abstract class SharedAnomalySystem : EntitySystem [Dependency] protected readonly SharedPopupSystem Popup = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -145,7 +144,7 @@ public abstract class SharedAnomalySystem : EntitySystem if (!Timing.IsFirstTimePredicted) return; - Audio.PlayPvs(component.SupercriticalSound, uid); + Audio.PlayPvs(component.SupercriticalSound, Transform(uid).Coordinates); if (_net.IsServer) Log.Info($"Raising supercritical event. Entity: {ToPrettyString(uid)}"); @@ -169,7 +168,8 @@ public abstract class SharedAnomalySystem : EntitySystem /// The anomaly being shut down /// /// Whether or not the anomaly ended via supercritical event - public void EndAnomaly(EntityUid uid, AnomalyComponent? component = null, bool supercritical = false) + /// Create anomaly cores based on the result of completing an anomaly? + public void EndAnomaly(EntityUid uid, AnomalyComponent? component = null, bool supercritical = false, bool spawnCore = true) { // Logging before resolve, in case the anomaly has deleted itself. if (_net.IsServer) @@ -186,9 +186,14 @@ public abstract class SharedAnomalySystem : EntitySystem if (Terminating(uid) || _net.IsClient) return; - Spawn(supercritical ? component.CorePrototype : component.CoreInertPrototype, Transform(uid).Coordinates); + if (spawnCore) + { + var core = Spawn(supercritical ? component.CorePrototype : component.CoreInertPrototype, Transform(uid).Coordinates); + _transform.PlaceNextTo(core, uid); + } - QueueDel(uid); + if (component.DeleteEntity) + QueueDel(uid); } /// @@ -458,3 +463,5 @@ public partial record struct AnomalySpawnSettings() /// public bool SpawnOnSeverityChanged { get; set; } = false; } + +public sealed partial class ActionAnomalyPulseEvent : InstantActionEvent { } diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 6f18510d17..75cf22aa4f 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -231,3 +231,8 @@ copyright: '"beep_landmine.ogg" by kaktuscsc of Discord for SS14' license: "CC-BY-SA-3.0" source: https://github.com/YuriyKiss/space-station-14/commit/971a135a9c83aed46e967aac9302ab5b35562b5f + +- files: [inneranomaly.ogg] + copyright: 'created by waveplaySFX on Freesound' + license: "CC0-1.0" + source: https://freesound.org/people/waveplaySFX/sounds/553744/ diff --git a/Resources/Audio/Effects/inneranomaly.ogg b/Resources/Audio/Effects/inneranomaly.ogg new file mode 100644 index 0000000000000000000000000000000000000000..43fc40357f2035e44587498af0aa886803b2ec5a GIT binary patch literal 46892 zcmagGbzD_J6EJ)(-O|$CCEXz1NOyN!Lb?Pl5+WtiB_Q1h5&{BOBt#mdTRN`_5>nqm zpXYhs_pfh%dk=eNXJ=<;XLn|2k7_wN=>bT%Qgx(tXSOn)zEM0X&bp|0_ix|09C~)@s=JI|}ph2=Vao^4)hz z3;rBD>^$uqyrsZ8JFt!q%)GpGZZ5X}nsI_C3W|F2x~kgxs#;H^bRFzGz3m3$>nZBe@F4l}KVm#RZxNq=6Hjp?fP8Necido7yC6ZMNEX9g}FqeB6 zzTAHwiek=Stt7##=tc} z1!oPw0P$4fN>q|IRZ^HtQkehd?Uz+tLydnk|KH{+0HCddqv%D9{P7a8-lh<2lg7vS&+7L9J!*LJu8r`$bBj^W9EVV(&If>0+3ANTGDM!5lEUB~w z>E^26!+h>Z{eA5B?NQ|s-M?0Jwq@jw_kks?{=Jnv{Qsf+#rrE{aJ(}3F^M)y>==_f z&U8uywiNt(vgf#F?sVH-;yL+1UJ zy}a zDSn|TJw*dQhuI82lh#nPxoC^?&}A@R_}Lg|IGFrD`QOmN)ky~``@ey(_mlYyi|sO{ z;s1A-;DiECiIxBAn`$GI`XtlHB$w8Spcavo4zc2tpuq%*g^q~3ji?B3(EkpR5CFte7}--8*i$w{lbBRxoWF1YGHCZJGVVKD(uQaX zlWGdHONvuaMn!hcUUoi5)n60<{~qN&#gzrdRR+dY1SajqrZ{J3R8;10el0s}uRHkv z%h-PvoCyGYnUuYmly#XDb-}`4>B4aCrAzghk4e#+YiLsN-xw!|q(Ffh`TpB9{xbmp zfHU}xcxZx3laP5@m)k&(dsDBFKJE*Y7&8h#k^mzyEU0#*h&g# zpNMUj%nq|X&)dQ0v&$OL<&($h&ybBuLj{F~0_cG2ith_wFO~PG>OPa=s2B%zX}_3q zW$`y1wT3cN3ANG|edtCW`1+Nt)KtBix>O%p)c`gE(7_+}+wo))hzv0RMBwORu}7!b zjwXp6rm~F_E6=kV6=Qpo_En7aO)4RKDfr61lb1HCx}BFgsmccG2OI+a8CxMyfuLB~MTsM%f5&)tkjahAkjIzv&<52O-m z<>xRzt1#iGXpru3-(|XkMSz1*E7-){z&~`=*TN#x&%)Tz>^yqP&(9*=Vb#dN`<+r>`DZeffBRJLM4$@opwXn+cTXsHZ*VZ?% zFmjkbH!wO21({es3tc5Mm^}wY9y6Ws#^yY<^cXwcpd}jQU?VW_qvPU*Ut=W z+c4Z!C)wfU8zT*_c{C~jK+<4Cj*h9p0KTIDWKntY8nUs(k>FOq9+j-yOBOXO#!l{| zE5}|Lt*aYP7MU!@!tC=zjqPozwwn6es2Mr-hG<<=x7z6((|Dn%NmI7cW^J|j%2En5 zsE|^E?3cXM6fxG)w7(U@VjOQG!7UWr=uElT`;5g{nIn_b(CJH4)HIk&$>cd2($j3g ziaAraw!SPMw$i>7H81o07BZit`_5Vac3#@7s|!u{(FI94;Hhzdq}0^-K(0Vi zcyekWDLpliD_c(XX=63l29T6G-;B0yJXoQw#s`w}XxN&Ob>=Q1v}0rLC$+1qZKjZC z|JV66sa70O?-|! zBges!_i3vo)Ha)%C5XNFPv>#XASr0W8CU_5QdbjdA%i9fo#mKTgB4KMhV2|51mE_Y z9#p863<~yP3X(CTWIS+tU`dMr*FDnxx<{c`<3oEZ8_Ty-B8b7aotGBJw?kK= z%ePGxrOUrVmzJV?U(&@YElJUZzD?8Bb*%;0J<|QUrxau+MF*EHGmwl0SU;s2`X#9& zXfW^3HF%;hAqcK4>c0?h^|=rIgZTL^|HU!zv#>Z<&=CR^7*ud6uoVa~ISZZA{|jk} zwh}Zj0wEa=tHu`hI4yo=WQNoC5O*_?7_(Ww<@0D8G4WQ9gLcGK&rgW~0QiA|4iq9$ z8Y+vjQ($xb&deFx8ljz~Nc^5AV!OJwv$YTedy6S_MCyVrO1oj&)aS>&Ga1i! zz7+WbbTG{m#CB++etbf=0f2x=WI*A0qCgGP8+TXSq_oco6!PxIT+rPE! z%>OHuM&YZm-Q$6>#g_vg|B>>4VJZKE>FWL$22Ry~@X~ZuK^K%t6jW6*SyplbQk!DT zhcvLi`YQtf#Jz@kFW<-x^Ep-0WAIf}%Biu(@X3FrD`VHgqK~HciK9n)+h?fW2O4&K z6aWJh0k4cUFEW6GhcAsT%PRA<3G{B|>|;~}xlmr9rvn6hBmff&+a{7sbf4lvAF40; z+H;;`aeO)a=lH$f0W1~xCrlB^pE0aUYbbAubkYAFW5C&e000B1_yiMFN-_Ot$}a}c zRX}eTOkV&vIsm6fQcw_l@%nAUr-}8S5JJ#N`AQWFmkdpGcj^hMSs_mX4F1iiVDji;9Nt(K|N-U2RJ{ z6FVzMD<2;R8Y((kYFY{|u5?FJZO|&3LNn8Xv$&?kkISzhDp)`susA!>B z@F~nzW4zdJwJS`&t)DSq_!gaoY5MuO*UAw)F1=r*E3i|s**z9RkWaQq^tqn>4b4fo zRDZli>s3&q77*-`_|w2mMRWbsZR*AdfNiL}jzY`s(=K|+h9X(6z(UvJRW_D-Tz?Zj z`_{@S^Tx9;{QUItvYFE8@w-uv6D+QtuY>8&mpo%7%or{ghI8l_lxxLA^so+tKj zmG(E6Sed2nJPEm_*+2PYT1iNvrpsM%h_q4oOYujW%%(MqSWh^Q5^e5SA%wtf`|@wj zEa0ZYiL$fZ4BbXzuR`9QMKF0;M7F4s;1hs|=V|!PH#*~%^LSYNB9)iJ#PQ&U-%Fr$ zSSlxxci@%j{`pmH#+)H-#fK+jyHCs2TdThBF3qf*Fon%dUb3|tig9=Wx3<;}oq^~F zaHp)+#qy!=HVHV^b10MMvXVaT_U2WaX;fLG{ucXVe00BG>bO2q{V@1e(L3uCnJOcU zK?Xgmy{a-0Kw7!#YzasaLRq$Qq`dJ(G~@d1cxAl}sqHU%A)VdvG8S0#8XWS{%l2wB z^!D7K4rNIm-g^>~M;HPSJ<(4V^Y-D+onGaq(ujc=5PoO9(Qm*D2wcnR7XH)ny`XyK z=u_}J$eIrdPezsoM}#9JY`-csX7cg#`FmaeA^nEC1ARDw!>5*)cs5||SwWr7H)?y; z!minaj@aqu3|kpwl{G@7AAr9^{-V)9#R%Epgi^un#cF3xRT8UJrlyWE)Z`!uwKEl$ zsFUIouvVv_p(mYvlAN5^R-bd7a-7SuaP8f_zn|ezQR4clMfrDrOJC6IOQ9VDN<9O0 z-4%C>k`?b8N$IdwJAt3b$766m-pXbwW1L(e4NVR0H*?IGHpstU14}o@M;|(Zq>Rd* zj@dj}`jn+JeVVm^vE6=pt?!oCPQVt-j!*E}jSz;i2JzkT8hI6SRItj52_Rtt7a}vl za@T)u-|vktN|n0YC}6l9?Ti;lpy5Z66#}Bb4<$@~msXOyQ{*>83+@CXm|Mn-cgcC^ zzFRJ1irsh1i5?^WMc(Jfr~-i2U-Q)jv+ZQC8DT++Y$1m&j3&x zLk^SqfQ}8oo&fGH2__HP>7;0KbeP|W#*yp{U;r9+iC0{10omZ5NyUW&Y&xi#xt)^> zpHFx_m|(D9N&2P%=sVS3t-b>{Ep$wv0?XR+L~2Qacs|iD_vRub&k50NnU4mTA8q|m zy#@^=6Hr(Vqg-z9*H6A&qMSMvG=4El!8=IL5To0vcCard_{0zx4?Jh%p^FS%POJmMqwbFa$MKF-MVo4;an^Y_49{Z zq%oYwr)Dqdah-<2bx$QGyu0B$>2 z%fGG^vy)38=2dv6WPGi?cm1(LCb{UXabKKUNiC%o0%e^VL7^RBoxAh{^hfr%FyBWo z6yOvixxnScoO1XAawkrBaPi~O07WXyXNW(?K745Jn$Tb}NI)_qvG}V7Z3m+2Eaw&ZFbjHi7!XvgoS$^v#l}5S{XlvBp_V6$82!`e>52I z6e!d~ns@Wj;0$_0Ln0JQ*41#B0uq6~XuBbkar6}?gutMH$?W5BR^~fGR~@E&gbs6~ zXc~(HS=f_n<*H)yX9)7)0dnNL$q;Tp6bX>RrE5bRksqBgDUV#*$=+V9^B=r$#>^7} z84LL_Hby3cA`Dr(S8T4Q+kzPk0jF?-7YUbNopnva)5rl|gxbk;k1b#*jSE09073P_ z(8ZXbKi4jCaU3KrYF0U;m-uc++|a%{&Zv)rVB z1&njT!n2?zw()-?6gIJ5-mDKdcR9bG#vDnh##A2yqTE@R!^7{qw@ia`X)pmi7&5R! z*q@eHw-XSys$>6Is$hLy3P?a?_PpwQ0D8J8fH>rtn{?k+z!$G0&D9yow=V9cR#lIH zJVgB`D{5q!WKjMPST*XdH;Vwl`x7k_lZW=b^Ma*INBnr`WjJ*Xq`p6i-M4>)7d`82b{ z$;o}s_YS#Ueq;i_{otVb5S+Vcq3{W^H8EikA~qF3Mi~&=pg1h!R2>j((h-t5DtIyQ zlZGA=xBWwC6bEpxrxLW+*Yz2QhunR--5RWcE zf$S)3I@aE@#;u*4`>A7{}7T9sR;a`V2w)g=2^s)Jg!TCk?#$>}Dxiv8pyWGnIiOi|)HoT?V}Zfu^6oy2*&J3HH z78X~+>LCLmxRnEs+*G72g@+*K?g!M{wy=C;ZZb?6U~LpwcG!l7L)uf*Uwxk_QAK(N%^a*+MF)pS z3plh4a~5Y6t&5~G#Uc~n*;awKqUT*D1@0%%?m%E#f$B>_ zq)S6)o6>YD=eIk{PQ}^iHaAFaR`J?D!vIP+_Pb9@D&$+dv~Hj0m?nS3SJy2)64deA z(l4NyiVT)MadAg7w>zjKd4Ds0!%_rViy1%aDfuLp+7!R5BchFyp~3GzH0#Y32^5js zc801*Og6bk1;@dS=CfXRt+RaZmfu|d@4$~qMUbc+&*25f@J_sBu=c3$7TrBPd35dUZgX3w4lz z5Y`+p)-$u&c7o{1Fs>Q$^U}Qvq6c_3Gt)bkME?FvhiUq_0ehbXIx=b5V8*to;yk zmvZ0MV`O6hCW7u(z3UvG=ilP?e%ZrEPU6lowC8@Sc<+aRl6jeai*n6a?XZ3fi z+M)0f-%Bh#eg38-6T8!FB45NR%;E~51CNw4%&_wAdUCtyRjmYn0h7EI+6T|}6iIXu zkU0Q8i&QzrhLI%aZlY391GRt(ja7f#zosQ4uREQyzz#HSyu7Iz*hyuw9I(R1Ug7n`> z=w6&8nQi!e_6aE8ugZ9T#KnCu@WR+~W&m_@`cBomZ`4J0Q9*|3IDU0rO6wVFmR)!d z1NvK>__yr~0kroVTQirxeR2DwQ0obI=iLyE5n#V=MWBg$x1|RMMQS%v>HF&VGJi>< zgNuxi@PpS z#ml#{ED7(#y~$g{DEj?gi0(b1|9BT_t(rs({=H-W3(fVVNrE-cx3?mhV?hadk z@D)ma&5GdGwnmr(>3|{bc?<7QJ-7fv-Q!9tJ(W+k!Q?D}hOd?hZ463jRvBj7Dz*cO9bx^g@wW-bEY#^a6_sy_KPK45z%*0JW@2&a)Er)Mi1BD(n z9i~!Y$M4LB2_#n9Ytc2GAS)kNYMjQzvF6}ix4Xk|oq$u4dGh-Y1VEe6elgMAGFNwg z(rLM`Dzn17;mfWhd(LQ7eXR7k_e! zOgnNh(aJqukw%8~zxHd4-#2GO_UfBPYENsdSgdJ$%T7uRU-sL#8aN{REFRNlzw8`m>-C60)fQKeOn&)_<5Ca_)a_A1j$I=3hC z0&DPNh_OFo+|pUk#fL8&?6>Pw6O24+3{WACK*cZyZlNn&!Ef@-WLhGuR_VLTm_Fh8 zy|4iIW-!q1CjqYUBQMIy|4A#;PQj|@!&j(=%Y*?g@Z6$kTJ(_I;HZh$K6pAEzaU*A zh<%xp7@2qiJ#7j`rwvG`E2d=}9zdgUOZ4jUBMB!_%WpeH2v7G2AwQ{0IsB|t8dCtW(NND5&{)7HlPmMd8X9gea)XbOl6yWJ`)Kd^vM z&h0o|8Qg_Ed6lbUgye^A^^9VIBsQe2>3X5s8XBg(>|g$C0nXFO#ARV51$Dq zrRjNMoIV~W^!0o~Ki_6%E#-&gKdS!n9xHR}C|I7<3}K^2usUY9y;Xt^O4PM`df01Q zn1qf!I4xGq;omIKFT2fr_Z~-3Ctj=DMSy3DQ_%obI|c7t&K2`C5^rRURnDTa-)8HA zFd2YON(#46>Pf&He>#^x^CDu6oRtVPYg^Z#%L4{sBp{xj`Jw$evFFs=?cT$K`Ob?( zZU>J62~yO*ej3l3Mm%FSAN@z_mmi~E)Z-xg?mV`za3+=kxhk}SDX;ieiA^^h2OU5I z3)g$}ke(epro8NEHi@C}eDN2wF?<$Q(RT>SayE=Wtc zot5CD`9F_COHjE@^;Iaa!_u8XMEbmrE14Wn0Ssr~$YI_%Fpdj6E!h6^HHt5vtzPOd1z$e|&F-z@+D2c!A0^jLzX<+I8z zn}r{{e&eJZbS>BgJpA@AwFG!-N`vwa$*U#=n1cyWA4R9w2yNTtrw9KIYBl*}MO<0{|8;CfPtEQ!%fIaQ*?hW^JKW`yA$7CcEEDJR6RBKWuKuN`ii4zTR8UTSDcxzS!Y zorbiPOL=6!nS7_o->G2{IfydtDfDCY#nZAt&2=B-hakKUEA2+JP|0#Ak}-q658E1 zzSZJdHJU=cUXc|&h%k?|4?PPT6F&0B`f1GgZ9#N&cMQF?@l5S$B`uaMOIX6KvXiDC zgv#0~T()I&*xG^rpZ^iq;`Cu}c~GPKu|JFXi0In8AgXx-0e@U_l;U|&cVpM9ho|Mm zuij~UsEXqdzV2Zya`zR{wDcVw%fjd^VUX1W!X$5B*ySH7Lns3uGtSp>Q!%y+u;)^x&#eWMQLHgU^X5J;!+Zf%flf8S!uI_QUfjDTEG6U9J38az6@= zXA%=d&{zFV(@tXzNEwVid_O@}9+_8X!Uy1yZ(vAa!#BzY`P)dt$V;(MTeDr8sb|{A zaQoq8ECw<_;}b&s)_C>9udfd|`l}v!O~s2X3~s$v497$M`ixZ}SNN`Qoa+UI`dit4 z|C=+s0b6o@t*E`=jM|IQ-Xq3bT$^?Q=`S@m%onBf!Neq(P4-N^7p}*oiWM>nh~1D$ zZ>yg3_V)%6tgP+!;Uk`;UcVwZMXW2Mkgx&ErJMSrJsueD$Il=A&d&Dx{IPh)H$506 zWKob|ob$?V5@BWzh=(N)UB+U=A;;%p|iIn?%t5Tn+o$oNGpk}p+nsY%&X{3syH9II%*fk= zh9#?4wS9!0**-kmh5}|QB~%tdk0M<7Z4`=S2as50&XZ7cFvAva(0zul2yv*^Ec}OF zwJFS5zXJlZ*)gK6fgj}^u3a0Vx~eAn9}WtdM4NA9BPn`52|*KZYPcEaS)z<`2$LkH zHxkz;FwGbDC-Qx6OPih`=FVN3EtS7L{Eeo3w|NoumMFiHk&_e(k3@N)*{RL0`HVof z)kefKk#0~>o(oOcPLop?QcLuJ^Ne95uh8SR7mfu-0seETYVmI?yT4QgT{wVB!<<+l z#eP5oKR*6>ba(^l@X(&3*UA82qsm-I9ncunzxCA>3uLiYUY zbY$eu-$$1VJS)+xXGgAC^P|rrXhx9ASe#Z(n8Kye9NY(@v0y0rJJnAtc9E??@xr=+kXLT_Rpe&Vml5NN!S70N0k?y`Po=xaGN8zJ zS>CNh`n8!d_4#H&#cHcOEzl&_hZ*p} zX4bX$tP72`l7%smk-x+bQ@HUc)lCnO$Hx0B?6+$-e2@f!?iBIjgf@L8svJ*}WPa|B zUA~`w=yM^m--ubvBGUV_$^Hu2#QEf4ka{rPjle*F5DA7VZGPKHb@G__vyW%NnnS?v z=a(OS9zy&YU)=O_e z%c=&+m%FP-d2jEYm7zX5Y0Jvp^IQ7)EZdd&&hndO$t>fWI*Vl@kJt^r~C&PyqLLsr%Tc z0$mcf0R`J*x^T2G&D7m?Y3A1i4EQiCL8LWQa_|!m0GRuf!7Sw+{<&79lP|z@NGn)g zpDyosV);yN)0-?8H9Eb%SI>r9vaf3>pq)NZy+Vb*dDQ1AEJN8Rm6(va7>a@&2v{E6 z1c>K2VId3u2$Klz(B%sK_UWvVDK692UI74RzJ_G@Ri6F`=W?$L%j@WJ82WJ-Rl4}y zgKD4Z&tt_l9m+`t`GcNOp)tP=d;)RSKbU;3v3NQL+j+o^fBW-qmp`?Q^=)AF;s@)XBmI$se;&zZ2O%!69e=^CFr*^oU5phnZIFR69TIzd&#iw$rST^Qb zlhlTEyU6l;neOpO%|N>_P!T#{m;uZV-n6 zWCb?vsPW1NlX1oPV4gFqNa$e@G=jz#xv?M1`0Ek}w^q}{fyN-u^P7?W;vPe#H|l{H zv&w{DbwwjyF!#pT7fBE?TcK2ljWV0oT_*opaF;qh&yki4GG!=kZ1`IC#7#m%8l{@P zs7J5+v=%rRG3 zYK%WBLqnedAilzC@H518{9hop7{tc+P36?5h4ra-i`5=r<+CnourDvs<_ zZ~!D(K%8C<1+czLTMFE)<#7Dj|LE?4yaFng1BSTdOqSq2HGPU3+NR*&}ii$j_$N z4ex_p7p4e9V)0GrRro*HPHm}7?5NrOR>Q3OomE1T8mA01mwoS9KTnK`dbfaFs~I;a zhCrkKIZ{NA!U<@sVBcD)jn&0H$2E_}WXFBWK5QleFzY46VgPWn#ulc;uq~_ROd+qm zyY4s(Ijw3(@whO$_alcEzti7l2O4KrCnZ~nfAGufr#Fz~%Y_QjWN+Y{!(Tpa=b+*a zV9{tGxKxVbefp!(Papm#=Qgo_5@53k*Z%SG32a=b5Rmi-yU)m{0pmzxtASHyG;LOo z%D23zvVF#rWgPh#z+FH2p_#~`(n?rc#CFxWrnn zgp{IKLTF9nD4D{=DJFAy(!sF{8=$cY#l1X-;6Pvx zW%9b}43u0O^7R(RFb)yA=Fg73X1|lCGU>0MOKoh2ZK}c@J25fw0EMeDC!^PI-er~4 zB`1_tzH(xupai()1+YTSXLouN#3;T2a6|GViP+hN)wstiMp5|DRC&zTS*qY|TJYD< z>DfbUMIS^ls6nvfZ$Kc63o+Iw!1@pUnIlqG-3~>^LL}TozMd`rm%jKd12XG~^!RM8mY01D9e)DOto=F;G4fNVtSa?L%W{v zT&1-u?0b`BY!kE_({*NKF7^0LDD}!=9c zvJ;T2umL6jHYpwCHsto)`NRp6ElKL)s_9d|o+gYQhHC!>1GG^9kc`6o2$Ae_wzT>F zq1pFPRmu@1rV4K7lUM_Gk&kcL8j%|~hQ8Xh4868%tn|O`QqnV2lmBdaa3tspjwR$4 zQ8AVMH3IkA^HE3djV}fJds!q19EptnFKwCMyf1$a8n0c7x?VTA%2GYYCvnEWVW>Nc zWjjx~T4B4U$ST8;H*`Sz35`*^@z)^UVnn|HQu~p>XoP2h%}h+h;Dh1On(Cml%k2H=IPRNV~h+&nd( zL!}HXVBLNokS&_-idh(#&B7E5DiDwQM1S{QfhzAH&dzEkCHe?LJv0M*p0l{HabKt7 z$yBCfkU_}n4xO{Ktk(I|JkcQB;*d1XpeDmk*j-WQGv7kmLvebn)(Zdx zkfyxd;nxf>f}`D9YIdFuB=!@wF)+d0T$NDp!GCBoRx)*ZYBu%gjF7Q|G@vj}wxeRNsbOL9*#H^O(!l6rPufokynPsmDeBw;w;!w|dG<*L~oW ztqwIu{*55nWlEgc+x-Dh1D2Gxt0C?~(YTZsTH#T#9(+za9%KEs5WZ?~J4OTG&A|_@ zEKVp>|X8-CBG|=Sj@TEFMzYE922{oNKoh7&!uuP z512?eZ%&MgzV@%b%M*to(G>zHGU$PTDKZdta8uyox{8nDwl;e%yvM3&r>yXW7?z?q z45}{t(w~2`z{p$l<_n`+^EOmCD7fmwXh8p98g-cEdeNK7Lu=lSU4wCgqdkQqn%{F2 z=MN$yf?ZjP9yf^=Yl~W`Y4tpAjYdd?2iQ@_#T&TXM9@Zv2uxTaFZw?KyqvRBURauZ zcH|C##}=~V17W!!E1ChHdr|5(GR)aqGZuCRTvCDcWv#hsW0x^R1y!PA{gBU4OR0YT(o|<0oyxzp?GS=nJhl)DJzxhm6PhDi+LZq{_ z*oV`3Y+x-{NyTp4KgW9Gq)3gKl=g?lG5f5^3-TL^6Mn366trr{6Bpt6M{SWf{cX{s zM_5Ip__kl=-(Ad%3^Ruee|$7G{`p$jm>7^Ax*7Nlp6wHHuiI%aNNZDZI^;!Q!>1KY zN$^|5CjGfj{_<18zDPoC54rG?t@sZJCHvl#pB19`{wDF#&ygp)wj z8QDCeq0>quh4gTAVz8OmNWe!baJeD zjypNKB-~Stu~`^@-0F;>?@fke>M%(Q0ZZsjK~ov_Ck3R{j?LIBXP*|_Tz&{!wu=HY z8uF<9N}GB&>F?L}@44JgG{~)fvRwKS6$MiGG|mbN3`Vd^)YWFRy?y|^!XE{aC@2{w zNFn9{EK=|JfO8dTc&h6JEkoxF=d;S=hu>d&0|Kb^*=?O}Z)jPjXOEEY(48wXx@E zam4v|(O156*@-+7A(*gXUZt0D1WzrPbJ@PISR_qd3*bikGef%`r6M_*+sNJEKTK}h z8I|Ukd^1PiA-SLwoon6I&aJjqRwKL0ihon@R`h3HSNZ&{7y9`MiBNd5V^%`~BgGQ4 zP93SKPv1z!Z=G}zU*FomLJv>eSIN(HIT^yPN8yuIu4OLu=bzInx&3__lOxBJ8O)RkWk{lMEP&TdgeiGXl~@i862AQYo5e*|G^4)eOL}0xnplnR_YPbm z=!+l+iyt$ec9r3?B%kaLUXy9=yAeoe&d23fsPZUYp62}M!qtg|=6m(GIX&UW<(q9x zSbYSYSB_%&>P$kU2xlt^Q~c0wcBAZ1&H&XpScrv;2q)P|FI@KYjJP*GVV6iEcFgp2 zIH|i4ACE;L1{79T-*TKn{$Alkq%u=DRgre|yHls)XM1eb9VOC11eg0x2ZJ7f{?m^E zz@~)Gu&Fd}8iD=eZm(kEw~385pkUSNUpYVx2V(#OK$vHPz$j{XVdm|pkBS>QH^ftx z$Qtu~`_=G2^?49{Bp}RkxX>)7cBz{}{9CZYr;WZ+(9P@nw1qMAS;Y&Z zrUx=`2&^7el7}OfLs#wEpKa}1S@ES|aV6gT86Y?>vcGp6wi&@Vzaa|90kFoLZ-3^+ z6&~UaN<9cG;VjX{6{aVED9qC)`-D^z$qH6MVC>4_dvBV17Coi71#Hr;l_-RCyBan`6ntOWsJujHyh{2T(8?9I3VS{kA(Ip{x(TqeXnJfG=dE{BGP zJ@ri`z++!A>VS{GD*sB-v0k5S^(<|Al#04XFou2HgfyPKlph~?@2DotP7XZ_3E|T3^n;?ic=~fS{BX6CM)6jM^<~_ zF|(_9U!Z%QIbE~0sTH$@;AI6EQX0=F+tb`} zH$$FbHI!ZD`n~jB#;Gt-<={5|$&`fA)~vqhAa7FV%pcO%qPyWMy)M$Jl3i;06m+bO zg7H{=suzS~ZkDV7CLoP{Tj1kX0LFjLLJYX3RTI9KVY|r@hcGl!peydCU@J??0|xo%$!b=?K=hmmR${OJ z)kluEkkuydC0a+0!>RZ+9;0wM_t!Lkt@tu&jVwwTQi=vWMsyOu;VJKP|1IzBCShhh zw_BujhI(z1ZS`!f@U5F1_6w!N)!ui~galK2BtDadj=$P*1T~s9a?8tLIPgpnZ)A@qz^u4sK>$#t`zNAR?C-Tqj)48iEMdP(o4nn1>`d@4WZt@A$ zHOId_Gs#xX745R8?yC`KWYW`pA$r{+fq!9v@bUZRT7)#{Kg;F|kODM|H&!#1K{-gm z@9M2y^-(RNQ)ioyFfafBS5U~@fY}a(<&oC)$Dd=|6p#3VXXzt_s1u0vIacP_>KcE# zD3Maf_BVD=YtuJzZ<_0@bFKPVbJJ{ozMvK5Gki>*_FHSYoj%)C;GrhHVUD{bJ;(C5 zkdn%l=NQ_jaWAheFG#KqTiH6T;rytW1w-QQY(u|wc%q#=nyT5UyL zePt~pJp%(BBO@C}M`f7z>$=jE+VYa}#?nUchJqQa;NWPhN_bK6uI6o3Lv2fKMlmMI1UkfE}w3TmxeFs>kb-0o@C z)wA86;emDe+Zh&x@tmAe(Hljgh-ugas@z%D*d{hM7q0bDfem)jfugS@|v^h@zK6t_pe zrv@MtP|s_zCIMO7vX|pR1ByIAnD~v=wJ0@Jf)4yLZY5!9u>IiwBkCN3GwHsrf5o-utQfM; zkfF6c57~#5mSZ>S>~CS>b>_$wSTVv|8B>>DTFW`zI4YY*+!yvT`soB3OQ4aWWq=_D zqNM7#HQTjBu9ovY5mefB#%S8bxGxLn$#`8&-+0=}-%W)_!?km}mPq4o@vq|wGWQOB zN{BP`O+% z_U3_BWl++5sU!tB*bjkrZn3D&*`d!I@D=hbOR6nO{(_2Cy7AgFbXGH7cr?>I!Ga>7pgJTlvP74YxQrc zY~FlqQ)Fqg2sK>JKp}Ji#E6>gS(~|rfxC)cyyaR!s-8`%{X54T)&zn$WB0g;V&etoUULJg! zOKXuoFw*xe4Ol;6NzEUaW+yKH;6`vTLsE!Q^oOnbd6n3{7lX z{JHv5@IN=r0E}>l*jP@C_5eNDU38lIC%obDuaX^r*!FP7>YhO0x7_3kTqOGE0WJM1 z;_ZI*{!5eIJKT;EfnGPGy9Wzm?%UI28rWN&;xV;@eSOEc*v?wdvUaa@r3w7Z4 zBi;oX_MZDNP;!7Dxf(H+=$-$NVdA?*(BW6_Ri}ml54BN&Vt_(z&=bc6Q&_kT+yk*e z-0?Jdn-0GMQ7jxbKK$jwYL*y~hcPcmHL&luc2^jGPe~uPfl$^(W0!urt>d8?HAL)4 z)&}?1?k&$jsQmS#ni+l<6^gx1l9+ZML#A26R z>TROjrU6E)`JF^AjfN!_2canaF6pp8Mm1aaTid{=Ht^~)EO|fBxMN9jcCZ!@Gq6mu z{#3x4v2r!~m??5!XvDhuEVGJGZ(OW5d)aAz9{Dk?0_dyyh`2kD3oGmxZGrNTv`;rw zN6KcA7LC(y!nP#+{;3A|RM)4^wfJ{rQjCxCJOB0Hv|mrczns@(#rVf@DBc%!*dx&v zaS&V$C)LO+yyPNES^l|qYJPlTN}+&Twg<_l_^F+ow>dKWA#i>5Vj~~vq*C5T8$6cY z5iZe;pbf^Noc)s%7tNgix6Vzom(#|zqEq6Uwz=Pgu0vxqr$-y95ODEMP6+f{=AF3b z?$88+ePDACXw`i-?-xw$)gi`;B>ogT@J`2-BbR=@`;o1_hXv2g zfyW@z2H^>L=C7BI1jBq|m$09PPb)hVa>)qaL{&o_4Sgdk8bAgc7Ue(m=9sC}=Ue@d z0A09IRi`%@ok}Lrk!yrj7iD2;fiBy@JX2B_-UA|B*%N0v*MhGeU<_@hjOfE@Tkum1 zTbiNdNd7UcD%5Qt{g?C}=qkQHOXXl{Rp? zgms6%wMK%%SQTy3Es5*JjNOZ_%k~TOi{tz-s!1UDu1mnL+cjQm{p{I?o@eR!^52dJ zZTg43UnY-sA?PhA;8Xgez$@R68aq3$!Q)vn{;C|pP7#eVZOCZg8ct&HBmEG9W&8?h z?Z>LAyeGb%fyN;O9n)j$SP7HEfZRvV%WfW+WE69gNtdx*Fb`qvG4{^is6h!Xk4#P| zola#D-#WZ7{cPurx1Lw6AV@IAf%b~$gXj0`G$R&*><__rJ^~V{wTat0O82$*2K-2a zWJp%kk&sjrKyZZl65lflu58x0WBQM({;O~3S8$YgDU!085`!5(rp`RhIiFA8A`vC- z?{?Kt$g!WL5-t5Xl;mbq{?wEN+UB$M#h{7X@2{+^CR>qEA5Ck2b=-Hny4Zyw{7NXA z`Yl%tFtG}iENsoU57+gG*xay6!sdUvvhF%49reZp!eTNBP=&=HJ6#`w7peMbFnDXL z^TcEU}Zn1mp8I4Pk%}~oWn_J-Tp_% zgCRy8$FRimktCABkV#loG#`k^uvwQ^1b*w<2%-*h)m-WC?zjrQ8fci6?7` z2d5r3k3}W>2G0W|(#;ljvD~;3`|l?$3Xc7}ZN&JS$)RPX4A=ndN#Qv1WILL$u7T=H z(*o~iP-!pTR)aqBIHp5)y$T49h^RE7FXiwWn~NGUib4`D;Kc2c;ye^5Wam!Z=RrR~ zvd(0MKMSlZuj_5Rbgk=sxynSR&;#1~TNU2Ysr?)rEk%>=)5s`F3kv7%j6m|eKLV!g zIa5F=>$c=QzK4zOom^{95dhi?nCfESfpi{BwwoSznX5LZk2}UiTT8WY>?F`N#glQ=*P{PnNV6Ek zOA}yf{qLK;=f)oxfodA(+pZdOTxxLutW7eLO~C_+n=jWL4;t^E;-VB>!r4pvvO?+P z=pO!vL1ZV5uXn~B%IY!tECsl)My^D2dF)}IuWa@P0by2Ms<+skiXr2@}82%Knj*)txRP- z6CDJH56u=XW(C6RM1Sl$jWc4PiNf|6TF=Pxk`@1LgGe;6h>a%&4LtEJ_CL&Z?_BY{ z(M|9eziy%K86EoRa{b~ZDD&xgI+hLQinww#DZiU&g9ukPR=~RO;us^IZfqG3rzb~z z%`5mqZ4%DdC4){#hbTUixIur8n@P{D&Sc+&$ya$CrL;vm+%g=sU8_J#vuK@?RWLzLc$exaA(b>}ADr_@YEJt}&eB<>$YB}y5 zVOU-m9(@98L(4d%(MT6rxa6E-JeZekWlh%|JvF|+Ksq~YQu}N0pc|IO4Y->YYsn@% zcx_VKti+En;^S{%5gE__BXHy4X!6V0Ne_>H`_YX9RWH?nW$?i+4-FvywD}M`%#1QM z0^Rj)u0(K&nGu!;%_JOgRr`*Aunlu8+?es2U7JnM=k@{nrISWF!Ayl^`6JId zjKIB6fAXkp8t({f=z#j7WVDnFvJF_pcJpVj z08H->!TaPW0OdD@43A0!aL$%Oh=YfOq}K6+MgwWIU3`)G{<+fE!i{9p-rfxmSRpvkfl*}Y%;SmY+^t1 zzK86NC|jb5eO1DJP6+*US1R;J%oRYtDgJix{GWe%i#Ko}MT!*zi_5`#UsOk)usfyQ zCIQB`IXp=1_6@3m1Ui7qGZJPxp~s-#y^howlQmmZTj;uiE61o_gF%A>8~`|oI8~(X zmxOU1HnT2wtX^;I&cEIX@t4Jax!r(3f6tGDK#iEKWO<>)e5N4uz2^N3{ex}dZDFrL z4u-F-$>nto0*wqfO&yR2Q>HS5rX%Cf9c;?8!1HquFX#PFke(^r|8F7pfM`P%2Rh;8 zl?d&sM>ZB&e71H_zU|=!^}Any;Qz+g$f(9L;HXe6bzvUwJ!;zCP;3_9u>kP%aH2DQ zfMKu~(A%EIssXF2EB>d+&7GN`>3C0kIeLp*qkB!v$ayHh!%|2XY%{hH(Xdtp05FYe zmAQo#<&#PWE2`NU##J=L+o*USWI>B&$kuh*)Ac8+b%5}v$@gp;;#?Mhd$EMrJkqF} z=0pH35sfqEW7SO_UOhpaEmqON@Z>RWc-whi8?T!}4_DB!J7N8!q!7u44d#_Ce_ab8 z2I0WwcOr??j}a4^L@vpU&n07P#H(E&`N!UIS==C`24|Y*v=)6ca$2C*3e{O_=gUYi z0I8}pYg4{h-ueI&vggK|Y2ErtH5Ns z7Q7`HLP|CRqNGEUxaH7&`QM7HDXk>$;f6Es{Bss`X!4g5Y;Kts?Yy$XQhS*3%S-i? zr3habuRa3TQ^c{J5H)=R;C&k(hR;s^WK+~xPv3TRCLX(xMHK3PEX_CE-yj@}=5Ud0 zC3-DqwLYgllDfdgLE3!^;@q11YKq0>E#WtvMO9YRlg#AKUr|kR7k-{J>wI*zw!-X` zz%vdAuPO)M$In7Uq$9Nqev>CZk4|vxK;IxG4fQki>BlV2WAHOYX}p#DY2dbT*}x3a zcm82m@8>Q8g7@-{x0f=Z76O1#VkIN{rb(Cs4m+KhE!66@*zaRa>OAfkM}F6EQVmye zE*sq^cUMj(eij##Y9U3%`xA{yf*Dr0{7p63<8N#`7BjvYs5buui6p(_d6USbC0lYl z7N{l4rq}FNbW-avVX3-M#2vPw2&b%-(kcq^D+Ce9{xEFwd505Tkt=7pET~Ge6G&^= zq+sh}mXH9v^cQiqWRn=mzRmRL)|>ziiRN2aIWp>*)6}+|L6ZHDWr7B}8L}>QHhYinj_9a;Mct?C!jq zKMrUS7lrjU^60o%6Z}hUm-*1v>0UEQ1YRU!9Uga`mO`S8H~K>J1E5HK(jO;03f*+1 zWm6+Qf)?@)>L6Eu;4nF~MJW?z;*AD7jI1xF(g&LCo>!+(vvg|Bfn-UE*YJ{c&vd~! z^H4dgy}%Emq0u96GuKT&-|lu&-Gi14v|kJ}_*C9nKx;@twQ642o8UA5;iZ`7;!-Vb zx_4JP2<+J86)UZiB+Hd+{71cD0oH;%MQn2>Anb6`0NwasTHxq{5&~AD(7j>{2D^8T zZNQQ5>7gbxj1}P1>)UNu=o7I9QH9X}1j@sJj!k8<%NPL)0jSJ=FT7M&T4L7?Y+Da& z$@Bkqc4&EipSQq8Z$v~L9vMd9B=Arp$7;_+9PL2)3Iz*5J^A6g_Bh&ys(3#8Q4<_| zz(qLGgZ_0LZ)a!KZ|+Pb5*piWGcJ9opMIC`fbE7r{-0Z zvXU%gKOw2h#Uy8crGX^1W1iack|}?4{X2;o`Id!5Ndcb0T2koB!U_vqqyEHA7cGL+ zAh|!%>9Z4E)sOm0Vy+#?x^~#@-3FC0bZq~~g7zZv43VN*fY^2%seix%0evzb{TcaW z2y+8Irm>OnA`aE&lRO~QqOhgZkYML8b(_`wo%^z%lulF_24Q1*)b~K)z7Q|Wld+}S zw^V1nLv$R=_@x9GP}B!fjfZpX_pMb1Ic3>n8p+gg%bNOtm-gC%UCu)`#7~8fc2AR` zq#q<5D&eum5%)2Xj#oYX1lQMy+>Dno^5f}N{rh;7G|~}2@=oIpn37QCZZ>Uwz27_C zzU*0b*J}0ZcOVYFnee`E5BG#y7S~Az6!aNG;W(ZVadch@o*a|a-Ug4F1zYKpbPh{zt!@!cQ zt{prFgs_X5_;CO~>u;SuNspK(EDv>EzGAkXup!dn*hD$f}w|ax`V{l@M zW1d7iS%e%99>XQ3?K|^dC&XN(_(0C-dqd>3tE_ZAEd>)$Jk$^S92|$-3=sy zg>K&l9?yqhrR9DgWS!=^2xOA$arhRFQ1;Z^xUhs#zYG6o2?b{@S=kk@>Q=%vtvL;m z)xqY<?1&EY<~S+N!Vad?ekE67;nn3d0K zX{753f~{vee(Y~mPpY5VehEk+m;miZzwT^ud=N<8?mhpS`&6&9>2)I~2rHX)su_t= zfVh0wwb@rb`u!>8k?0UVq0B+80Fm_WEHAD}1V`6SK@cA1^X$+Zq0f)};E<7-1L3sW z$o9+=_@&tlIxxR@=w>uLQry|Yp|*!htHD$ChBgJijWGt}O>S~=DhqLBvK)%5Q_EKm zr^kjgPUpVr)}+bBOKPu6)l2ZK8Z+44p^DS%<`RK7S3^i)w+xT?k!6tXX1N`PQ&=NV zPVVg<`M*N|ge^M2K`3>=C{U`bw6OAQ99bg-1wbzYw$-?H2;g(lyX z_fuQ_xkvwv$M)E+olnyRxk4vt^%e;#gRcq&*D9mOc3+U8?&q0)=$xML&z`l$4Z(pn zk-Dv+XtFE+M#%ZMa4y@Qd-Tqic~!Y>RLB9ZH7{i-(smwc+LvIKl>y&M^WUTw67jbr_8Dkvy^t$XlD5xfNxo>_bb<$s zItBw@+@ZV?{|^_K21Mz*PDe+I&+c-1-JZ`MH73wL!&`=2q5U<8LCz90RjM0z+CeKMJ=vVqkD+-p~;uEuKRlBEe^PP zgnrt0q6J8x1JrT8Km2oT4~IjIjWdg5 zAMdf?W)C6jJ#=hX0EB*hSh=hR$>=-S0bA%}k_}+fMSf?90&!C3;o>zurTtQI|H5I|Yr>SVhOaS~D9N#I6u4tzi z{crk)*@w}GCAni{whW&d&2E%^*Ae_-4-X^mBklpb-}y0zNRn~3mOeo4)rNfhU&ah6 zc4pDdJLanDcHU4M9lk5e4V0N6-=&n?1Ue{j99%I~6v`Cp`wGYpL)laQoJ|NA<6>X$ zn!hY{@^}(e#sP3pOjo#wACW8Mm~(3cd;M*&0i1SAglM1nv@Ag-)E@teLgr1)#XWm7 zJPBM9W}S)ek_K;mlo1vab z2~Y!VOssBd$^N?0uCod^Ooe^Jhw542^~8{xq=~c&JcmoTfZ!K>rD6NMgM3g;jOnxN z`6yl3;&mT`uCoK@m~n=m7_W1g+(T}2yQ=Ng1CF7*sV(pDmI9`&;oEea`fCh(5V*m& zeq@{k(g^>C{1jjq^1%?ITDt_NV2fk;9#78NRJ(!)+=)o8(E*07x(uE~s$E!9#6{K< zXj_@{89qv#$s4pdR1^MYS_#o~Q$H<0(l3mpw>iPwvaUzvFerdy%gx9ome`7@n_a^G820MJ z!$p1{vit?bu9q#?ki4_RS4aXdhdM7hjEh&C?$U8jp9>J(6@v|itPfBLdT|)=VymMg zBL@1DpI~_ia`w(~vEt(0|F<_2Dw$1T0OT-*>Bqq>#p_KRUX_km-V z4+4(Mh7cffMxfw*+#dyg*#^e=(I9pG*V(QGM1@=;WYWy6Wb!BQ!5}Q9M}5(M$K`Ws z>jQYmQMiJ6ypd2+XUru4&YT->O8lZH|&2*yL$FG(BBup-rkt$}BBVha2-vAGJ0_!O9tt1{isX~ehgdDfewewhg0^A&V(fl-H*7~gwq7r zN)*auhu0go9ui{hxtr;l_;u~F7gkTaCbdg7A3dJq$v>8x*B#B0ke;RN{25lONX2T` zJATiY$OB{%T(VlGw{~3=-GL|QD($Uai{004Q%OZ`C>7;N-&xO(vL~hrkKbS@ruwl4 z1)z`SJ@AYHDN6$AQ&0{nqjY$h zPE#O>jK{^Hg6xw8r?Y#cz^cOJ@aN)qEefnn6ZO zbiE-qHk&4Nkda=L)bN6~kap_0D~S8K8?{bAtBXsw!iw->s+Y0-!gb$Ov?Y=A(bL@emY(KDn}TGV-03h9OpZo-v2qiwDV;WvlHla>L6t<}T&# zwNV>qp$V?S*hc023)oR`=qh=ZH$D8iZA00AcgI8B`lDO5izixPl_$Ix6KC?b_p+xP z{87w48E*24Yh#X^KwA3ltiyCyD3J;X^e4@44|hU=Qm|7fw?|cHhSa?I$0D7 z2>->qEqBiS0_Jpgz~ZpuETsi9iE5P%|M7!KfP-w}xtxz>>{UYDn(1JRr-8XV+1kzu z8&Xfy;}E!Pg~q}@vQLZ^&%$xxfos;uQ|~tTB0AA#vkO?o^#@n$z05N|>TO@hCZ|iO zv<`U}Nen}YHJlxxd*ZNs_EvsT{w9)cQgn2iz#*KBaC0C;eipExu`~rR;I@_AUD80$ z0buQQl}N^(awG3LvO4gh+RSb-5IA2E$-@(qo_wl~-PXMbY|P8sFVV50Z$@GfjOx3&okUnE=R zuv7yAGe~|Vut3Fy`a57y|M*F@p6t(YJUSpVb{;!w*ytwTv>)#iSU*0)YmJ(G|G=@d z!fed}#4}u7I}|(%h`TLuN<2ThruDKSnfMi#;?$U@<#}5hf7*C&42#}3DN4WY zydhoiG$Ha%8%|9JTVB!+l6r-KQ~UQ%SAk59r1(%xq*E;J@@ATFl4HTFzr%_it8^KT z%F1zjOzl+CjY1@uwX7+h^y{J$QFQ``B}tb+ACrYJ#7+g!*uIN~JdyVD!rC`xWgI2T zOwwL@%IHL1efc@ZIw{-xl@0eE$$xsxGEE0mrQ`~ERaQi}jh@!Znb%wdwj3Mx=Oy`PGEow(#hl2!^WoW6J}^{(*bFimUsQNI$`T(oVuf& zUfyvjL?5t8g+jnw^O=~edZ{Nz^jV-w!(-2uEk;pmRKpvNPu<8b|mfho{qle`AC*#W+?9A32{pfrDY)Bm*70u=tE{&;6D+lbX19uNIMNLA?I!I@8{>)7ANJei#jwQ=Ti$KC1 zf6Q{S9A^gP`-jzxJ1tyO`@vLQz}b$;%2)niRcb|NG0R71kbZ>Y3n|6Aoatg^e}{_B z^?6kP5!bqlff|v@oG@3i`CTx*XV^!@q>|1KPU%~mapNGHiz4^9D8yR0#aOTJ>n)jj zSrDjaV&J+E;MBM-9pn>nsve{xMK7$ckm{^#us`6UQ#AKmU`Bf}_YeZ|*MWjAdFk+g zz20FIo9%Az>!3E{AbOZMa1yf21YaKoOT|AAOyvq*I?WN%C?ytY`#3~)mQo$JpSs(+ z{Mq<)vh;Sx?|m82hdB+p)=W(TVn{gO(LftyW912WIuCE&MSP@p9~Q(8)ymSvIh{vD zi(v6bY5GLASfsB*rI=ZVXyrzM-cF|fyx7z(&VYQ*EhZ3#N_hTgc{qs%YhiH?OgH=H zp)2#@`ye}KKtKKRPMWQ2q8|-^Qz?J8q_UWnfuo>gvRPd$m+9wEXG(=y2!uVm`1pP8 z7_3-3|BUJ_mdyLQiN3$7O@8ikkrJ8VFL>|#-z7Yu4*nDW^-1syvP@d8$eFk$6QA1grx4$|-dGj&z0YYQrI?LKwiwWdA zQVc_#72~Up*A6T3kub`i@DV&p+#rPOK%4vhP4rBzy()Y}!3~fiiUv5d1RQY+vjNrT zqZ*}y4Uz=Rcl(o+$CL#PG6TA-Jr8vmwd&~G42i2dp@O0S-d+9P=M`F{#sjMJnsaM) zO-+E2JHLN`q#@SclB9+9VUw~K3K?$u}!8XbgjHYK9{i>^jWZBQZaj}stxpP7lKzIgRwy>1? zCS8Pil?kRZ=h@TMfTt$Z$`%bT|FC)6P?9~z6|2u{AEW$L`5Pf7^fepRG6Yh_gNnjz3d|;M$Gphs(ciZK=yU zOBQC3e(pm;Al|iQod*L9``Y<(IUe6%*qiLU+<(yjLJw&7{#+Hv3Ev+@W0f`W!M7Wi zN0+gFe#%+_(aM+paLlq~ng|Ek!2lT97J`J(S5ZUZz$*nJ1l~26;e0+YMfH_?TkoG# zSeGi2h#7Rn3$BV#y5^~Y>hbS6RSBExotW~t(AyskxU>Helc3)|7VL9aAmTptt7{Jl zb&{uVQjX)VRv-I)I=)cBWbP9+r%|(+PoOj9ye-;VB(l-kqU>m>&sErgxkW#{^2ni|h^pL=2%oJ7Xi!c26|$Z2bg zcNa({*EuRIQ|koX2#|6!Qlc_VHky#5-PcdevXjSmaVMV1WdE??$EH_)mm?+lZnrWz#}b+VDb!r19q@Kc%Pq0aOMKPOhYEs zL1ZmL0A^(@Z7JA6L&7(RxMk%LnOXsI>2_a7I^kT;I+$fLyH~s(F1%h*)GB``{^b); z74KawvCzGLKBbPh7&DC+k1L0quv)29ZC_V-U#yu7g!T?HR`bxmDKWI7k)MyAp~JWb zC*ASusQft1V3Jpj^gan?>RaC(%Tn%kK61uO0medHRnvs*;QOK-L8Fi&v;>+0(04L{ z%`NMqpn&(P`8rr3Y&QASM4ZcAGW!1BujEQ`k^3**`h#h~O5se!>JxQ+UH-G6Q&~^Z zHbD^sqazb_%06M$$7+tjC8V-`(!P7)y{xDi51gz#bdX-8vTAw6-bYPMo&G7GT=`L4b_CVMi-ul4mgE+`kjEXNBxuDO1ezih_@P?JT`3Dq8~b@kAq#)Lu>cj)DwKE=52q zHP#-2S-g}ffnMLHvMH%-ln5Js)E}{M`!~*Xg?n{dwOOn?K#CwD2+k%hP`juTFk zTruH#Hqhp|%d&j((~U(AKKU`ri#cl$0RQi5q4#ejs4(lFrx9y3emc=Mxs(|TYB8hw z3)_-_&*V%-R)RU8JMX;c1G5BELhUb^(!-Zl-{q1z{enEyc~y{=N~#Z@_ZbvIHgC7g zPQ!?oyl3UKi@*7drP&HoxoEo5^U!M4T93i=p2ef)tSSuFF0>xIK0%MY3Z=-`7YbKx zTz_}?X2R9su#`;|iir~9utJIG8>KH}dq^auc8i+!;T9+|biN7nPT;Q3q$~(PQ%;7n z=uylHT*%_#k{Vjs$YmGhUz4s!3dh)Wk)PX0CzEpWf_2D86YuIJtBK&!7PU_Csgb>( zqlx8OTdvb5^MSmU91V&-_wC)k){QjYBKqeB#G*I>A&TUC6J88NmsNL~?IK(7tUK|fG0`rrGA1F6qcWCAob z55VAC*;dL)Vghcjoy;bsTain~a1cUq*l?xk8+@uqXbyR6ZGRlNeVX|!l^N44yXL$5 zqic@$U!Z~e`k-}uQ(H+5S*JI0cBv)T5ta%~HH0W$SJ&vT7j_!bJITFG(AJ91RSA=` zHLCVS@!OjicRXnZ@Q@ZgmH5rdW=5>KA%Js7oIeFEZ5LqamIA0Oz6#RFIJ3$W%Cnar zadz$O)by6!ZgmV?IOHldrIBdn!QlSi3)XO^CI>KbzAe<(}CbH-`g zUajCyS}*k3&wkwnOK+&5Bq*vlwI&*`qj`Hp)A+;#k{mHj?oA)h^~ZaI1OX{G_<5wW+w#a8E)~CQ#S-sZS7gAJE*j zp|10kRV2ZZc(Km*KEuULxR`rl__Ka=k>hB%ib1D#e>QeRyG|U$p4gG4u<3K55upMg zkhQh7w1p11jUSd}73IOV0LY9pyD9~PR_E*{Vl8GAKV%4!#hj4KeO;5DgHUJpFw2E6 z?M>3$Q?g#mQ>BE(Us-zPds$mF3YMPq*&vpkvBY~ zb~nU7#hb>_5V<|dh9c760ORr}cc*y^tUx$g?3Wb(e-ISYu8d@n|P;_AizCn6<#YHSY7aMKOb{6X!LD}7+zC}(6eN)%zvFrnv2KUqOwwCDL}jeUo{ z(a_3li6T>%sXGZ%8mBJu#;Hp_{g2eHomS!E2tf)%tRdSsNpYoAk z@Sz_Wic;knu#*K0sG(qj0O+yIv~r5}Qmt9_3Rze*trZObiOPFrzh`L8qy z3bXqcsb?}kA%>Gu-SLYj{Q+@O+}$IH0Np+mWoI&U&p~f><>cPy5T!S(KZtM94l)TF zFJxtQkuKYVuF2{HJMp}>Lil_7<2+p+NR&cLAbW;UTr8%EL{kHJq^my zVv?>svG1-QI@ic9&M6A;HJ%*f#T7cKG*3@;O?uYGny+-l;RNU=QU;^O+O!8><=#*j zOidARlQ=A03054fr9R(l`#B8s{+vjSp-)Cc;<&e-#%O&Fy4-niRt$A=-P=ZE)xH1K z4&AMVVVa;pd-U(39}ExF;n$%qS!TOapL+)ulDk;#dS0vL6e9M@_*p)(eXd+0V5b9! zee&v~y!Q$EUhE7=68laxs0-QlerumWVd+xaj zzZWCQAo=2z_Su{6Q~F~!H_SII%nvj<>gbx#bB12fZbUd7K*^d-Vsuxpm}b)X5FkJV zU_N^5?=^o!PzGIm@(6}FeC@HfX?qO<3f$!gw-SEEOc zwvv9w-x7d<3)c|)lUTn+g(U947XLn$0Lj$+_w*q%z|sF7AM}v>&}TPu_90n+0t)$= zsbv9?qqLZ*B=1<$6EN}8GE~mj{5|QkRSoM~6dTooj5g+CFP8vT`g`XG6Ic<~bqw`9 zlcOIMc572ve(8B@fzN>$aDSY*XA{JNAn0iV0A%w3@9bDL)DRHZ20&ZR?1M!B#)ZnU zmy`HW%RA9dF)D`E6mZgjtq)^j3Jgui?=_^>K0IZd|7ct;FyX3=nYEk8Bz_1~744mc z*{O?-)ur{+k0`7rHH{ZaeV3}RXnCBLQiq?M>8rYNo1TwIz^*gEyZq<1jDL4u>$Dg8 z4%H(2QBKZu$vgJiEcU@&lU=t(+t`$SU4W`p=S)TSLn(+WA}Jj;2> zeYWl4Pv7m2g#H~x2c5a7!8*S>4uJh1JDLq0*c{f-{I^kyv9ST@6>}0#%_g8LBCiT7 zc3S1+zm4gSgkPi4xAF&lk#sdAble#`j|P);+LNroLTw%CNhXUo zq^4rF1E*j-{+YnurF8|C0r>p-`BybSFfoYP2)uskkP%7ViPDi31HYD-giI$lqASEYOCJYBMzVay6Rv4;87T4 ziKU6hLXODVA3)#1j)Xz&m@$6YJBpPP25tzNM+--B%PiscWEk4eXf1?F-E2XW?K zCM`8{HeBB`d4v>EPU*PmQ<;K=x2A5ROkCJ-Z#pn=22Zz5HUO0*ki_R{4pDh*=!B zo---_V46DAv;oxc>HsiI^Dim8jpD_dACACaJ=)kOV z0`>UXt5HyGVtdHk{5-G{}aiMH~*=M_|AA8 zLif-}r>J5MAqyTdX=-MV3!uGu-tO0>wSXg;{i^a?UGxu|rc{0C6AJ|GtO{QI{3+q) zl~CmVJa-1wzesqoC7Lj71crDfCh`jwC2u^3Jv48fkM7&=gc)lIUZr^{6Hc0l_ytJw zbc%M5_|ZeezG5AF%7 zEP2~zeOqw&`Rfy?B|Q(D+j(E5N|{Jiz>2^gO|42MQX_!7RB+iEvpaSucEsA~Ia`qw z%}@{il4L=rq0!qQe~Lz=?DCNvgz)X@3{_;r20G@)bRyee1QRyRqva90S6( zd(Nzl)wmnut(HPct$W(OohLI=DpNP@A;Zt|@T|@e+=~Sl>I4!%*a^gYcU8qEX1L6Q zwo4Y4w7|upU>lU)(mjg4*WOSJZ}nPw2U?1^t5phiKuYe4=z>`m z**i<=3_H{}?p^`>tLs9Io(TF3DV9YycH6=OCiKMKL=p8nz2x}cOangL1&S;EpV^|? z)}lwH0!nxAFGB8LHO2MawtQ}KM3v=8^e1Hoa$_=lQ<9Aa?G&1SFGTRKO4J<3>mr+TF#PW=pz=!2t)I=qv)p`FAKCV0 z@S4U(95-BfM2;H_v*2~b9vi6hWF#7p&by=pxkOem*;|@NM$)8>1%E$V)}PNJ`;3S< zohx?8fN;~2#?S&eWkdq?4{6TYo4f0oNdu#4_2QXi`o^wxhzHID{_}hITJ681bVEh$ zb3Fl9J+pLr1i>^H3lD>=e=B%-PN3Z+&HvYRwgvm{H3I5*wk2GUs=>r+t^U`yRNmatFpefzO9xp3wSbLwoM6W@aTgi z(du4c&sPmqK#sM~u0N^Ttg)`W&;FF{4%qb^w+KnTdy!?+6@FTaHE?G9Z7NBRJHB4f z8zIM|vSa&_f$(Ei($uoF&|rp}snG(J2REbD7M2JmUL-B44rRX@ef6~R_strt)BR?K z9M3ax+sinj?d6dK1zI z^}I}8WG=^bG(cY_FuUy4LtX9|?KZB^ak^0BWI~7u#f&!XH#If$rv>V~C+dT^2YY6{YX4*PnFhEZofKi0+p@2g5yhMG;I_}yPF6;=sXmu|KWQZ} zCzKQxhwG>(7!61yZ{^g&A5t41G-^P_!TvZX)>U%JA;b6flsQ#7s^L6!^*pG-kn8VL zV`qjDitRDX-gwx5^wq|&?;=)(f^5#yPAt<>EA!x^3@VbNXjzK`tN=Tiz^u_fbZDuN zmVHbl@0p50oPoF~W+SL^_%Xi^OyY$5IAq{bpKT);qkxkbc$-@rhU8Fm31&^l9fg~S z$m(-4ysc1&@@k2_ zU(dW9WeRZ>Cwj&ptkyEg*zjv3#W4Ca>h%vii{{**Oi|mh=L&+HVcT8(!p;mNrq+73 zE0K6CG_-3|Y4h{V*cHD8wyjp}Reb5YOpsCslPYA;T*@Q*2zG=TMU@E>>ZpJetO6}B z(-8e_gW|j!6AyLzw>yinnD=L*Kc5(5^CEI0LXWl16Sjs#3S~=an%TnPOVKykuvt&` zk%dwKpD(~?{G2csQIJ&(zyKdH0FP}^j20&7JD)MsGe?hKpNwS5LH?htaSU#T_MX~7 z_)rkMLn_BbDrmE`!V6u7Qlcb;fc4NlJCmhG=IF;VogI*xK7!s6{N82yu=;QmOO!_h zcDrX7WNu=gJV_l2Zo^BP7Z#-N0mK#o=Gc4=K9n6?|Lyl0xEoUHkjip1Y9 z0yndZHO2h$4yyMoC#eDjjMbmS=UQJ5`Y5_k^d+^meLrCkFVcp)>LSc)bbo{#mv|+Y zWaSib2rMeSIrMn26PLW6B;jREM-#C$qBM-QLS` zENvBD89=Cx+L3AgmH!-n-xZPVkX5tBN7}bO!pTt=PTViZFT&s(4k>g54*R`j+)!JS z;{kT7#5V1Q%0%gL6HSMhi-+LbJZMM#cAYuqr!uZ9n{k*Du({@E!fyT+-PzfyB~}jD ze>(o7i0@P6KWxyCYA@hWB`w<89+QzbaL!$*v*PJSIUBFh*npSKN|u;yb8Byo!ot<% zrXeFJzX{?-fohD1Q=Ngb!_%ypvs3yjm5H!1-lOSg;GNrXP3F~KfxMnKr}{Cnp`KrV z&A=s}-omhPH+eGoO@ozQNo#f?o_@Ow1;uS_6kvdW{}(VZ&(3Z`Zaa>VJ2rZOZODv9 zwj@Td-d0JpB|j3rH=F)_-^TsptnS+n7Ut8E#j_*Vgf)8Da0PB^Gk_zyd+`Sbjy8ZU z+mn-4y(W2S+?Cx(E@+z;+ojEB|F?33sFYpmXiFp&)uG*nT;Km1f5?Gpo)fgQ{_}Ixg3+y%NoiJ$z6~OA9o=v6URC>y z!UCM^?$@5f;bWs+L?@T;Hq74E-zo@A@YkEy{l`$N69qz4p1V`pxAayU0A_sY$B@MH z)U34?N@qbg_$Q`50@3@Ky?O*X06v-gZ`(6T6p#Yh{-9ByL^)EMa2u-x<;6V)a*;7TFt&W-+(6MQ^$7GUTY!T@&?cW9+~`it?3j1 zaHrczw?K4vZ2(A_p)phvM6l?`%0@qfYvuZm(O!5t5|_Ye7HE)s)lZ68ZCV4a?JHeT zl;Uj_@ctNXPHtdICdgx!p1MeH6Ng-6bp6+egV(isaF-Oa-ASI|_8RVXU9cP+fGSKc ziSAYdnfEqWsiAL8?yw^Sp(Nt(|A>VPQerIVY2i!bYqpeV2S2T_Gr73N5(?{CXcyfK zn%3u3MF9So{I{0u6acVyz#g`--7}L?Ife{&+W5&+tBWz?%jYS69J`vn$DY`QAC@NI%TsgXMC1+i&i5Ow>Z0Q5C)NOUUR( zdq&avo+HknMs4vc4w>h)wnp4^H*`H;P>%kV)@R7~PR+Kt^5P5U6Ay1`+mdPVV zOzV$inrkO9D>ybsasvG#HAuZp!lT~oCkmhd-kAJTdUg^NfbUd+o=k9$+K>P;d&-yy z#bEN&dOFUr20Qc7=q(O2s+)vRvdN-JbnhGm>xGFI!3k-=Te9H@V!g8DZfkL(y=FH8 z#yFq|Kev}WLPstRvnj-c+T%HohboFT^Nt(CtI~f-Kh&%UwwIsc5#@^!N&eie4G2}3 zrbi}@zkfZ~tNN-)#SHo~&r8sj?io9=%AqrCjLKg8ubmM-!G(-;4Rj=SXx7$3AuUg( zNUq!i8orqPQ)>CIY`5wZa0vnEX4pED`{?vM+iCVK>k=08EdeCz}Ns?96K#!fBWP zw`oOI^R(OD6W4^8na&c9^>bS>b0~`(kqz~IUFz!TwSp^Q02-RLRy)E~p|?ij0R~wS zb^qSaf0rpN9k);^h#-=@U+dW?*sEHz?LdEu!TY5T403MnApKZ;Q$shrI zy`GtoX%T7(K*{t7wj{`4zATH+qmpkIOFq-7Hh+vmjcU%v>$PAE)lTt%VUtZR$Rq0OpM#4-2%+ zP*Nzdz!DSe*g}e`DNW^+KS_>l)STfzqpJoJqaj*ghC?YX&xVJ?6DZ$QjWN!z6j53Zw$3ieoyMOI}Z?V|CL~D|^oVsW2vD6uB zCmb!APT}ji`Tc($INooI$B$s%MonL9yc1Q3?lSVgs zk{^;mVsEt69q6Sj+zL)W2fo<+du`LAH~{!FO~@ZF*x0QPKx@)uG*NlN%ohF7f+4arRuWO1T2QhXqgzd^-|s4y*#z_uTPAQG#d*bS1#(Q7DVkvG!2QU z+_-sFH+U>0JcqYac7EHoKQWu{_iP^f7C-HOhV|>NNAKPzRUC=-W zzL)%(TDz0n0ND4_F0wAM)R|Esbz(-a<5(q%|7ur~*mH9m=QeL1ul>H!h_QD)?HT&s zMwe4O%3ODM%>0g>DPLJAOKok4`EI$}g7t*tF@36i zzAWE%f@#P1m8C;(2*t)oSMd6TO8~x?{57TW*klth1a}rmmy7P+h=v)^Gt)#tA%gku z`ZkzX|%aYFG~zBE&scqe`zaYWbWF%mdJ+dTccUw7{pMG{1ra215)YzWtbyxr%nEbW3c2NMp z-ZP8r)LN^JiJ@`KVlaGXd+3+GTleqx=+6_p$_LT}x5G7!SG{|^2y$H+&uYgOLpRFp zEG;Cc->T^iu`TAwmyX=LZz+{ohh-TQ6Tp6oF&{)bTBzImpCi&H3t9O)_6^R9bBbHe zlWC`u8q;PhyA=8vSdYxy>=x9w-)tu6n-^#E=d$W!hzeCq+2tLgG?Pl*kH|sW^m-M$ z#{8h$tJTU8b^<<_{C)OJ5&+n{WhUL`AoYwHjVB?3g%E`?wV7~^)c7w&O`BDbNX;O4 ztQnbHS%wv)p&C-zNp&lEd>3!-qIgO1GwE0XD`JIECcYQwpsUU%wus?nqI$_T@DW2H`Pw|pp2-#B9-0bZE=v(_w|paEQc8rY5wY_7U%Xi(Dj zj1#jEEVN}W#rnn1Px`u}_SgH}>Di?>(Wu4WjLM(K<~CD0)0+UL!Ru*UtE3@-)jr>H zCNNH}bWO*(QlIc|`eJ3hJ$d{_H=>AV^WtGni)-EB5&S4Rjhaw4F~FYOaVKXSq1nny zv@PQ;O4EI;uNF+(eo`>|50}V^a6l58VpAc6>F4AI$g-*%Z;~lJ<^o=r{I%3{3IMpn zQ@7`aU7#!^d<9S%CBB$#B>oaGRb zeIkY?xAC4r($Q-vFCjimQap6x<~3U6ykpKPJQ@KUYRTs@Z%7B-8wA->PS`{}9lR^p z-*Q1Gq*q}pujr>Ob)i^7Tr)=Q>`1ezGPBhCR0JW?N{M2J8bKnEa|e ziv$3!%wg@e+_2e65G-VRVM-Apg59;<8(yB=b4|}2|782tcjQ`b2z6T|OIm;4uqWIx zdySY`F_E?C_hvAyL_X9`(ZzO!r0E6F%azYo#lVHwXpH>U0v0@2+C}p{(D%OYl~Kg^ zI25G|uws>=5?S1C;t>ndQtMGVx_7mGUpM@v{4LH#aScnN1VsDhTi}^Ii#$3&(dFo| z3x~|6m2LlGjPyM>MlR9jLQnwymwfsuw-zW^!_|#z5=m!|x)T7I85L!O4AzpzF!S_fJaDBfIhU;DeZNnX7iQ;-XA~jYG_dA^umG!pt~UL{FJ7i(@50 z9x`_`5sJr_bCcNH-o`d>`OWfQMz$tN&YVgpk348cmnm#&0zBdrHmkrd?8fXA`Y~Hp`b6eT|>pqv@xAvz}Z1LQ9Rb z(N7h69QVK0)K2bkdG#u$zGE25bojP(C#%EKG_-|mI5UH9ncnjdte{E-CrD(Qu5}g~ z{|-u&XI7$K8)uu~V&w_+5r$xwLdEEa3oOEr-=SUpD1TWE+T1gG)O(IBz4W=W7OGVg zMbU;q0e+bLy|;7{0N5&zIhixf^G0Weo@{v%g2myf(QV&adz!QV@4c083AUfL2o+J^ z+P{rR;X(|w30UTIgPq=?TnD>=h*&C!-ZB-@aofk$0@S;r-RgnnV!g8`WyU}j<*_|6 zK!FILW~*7aD*X61GHq9Ovn9n(--SOOtwp%sZDb>)O(-sQB?vMPh15xl-8m{nfPFbg zW~;RWBa{TTsC+k0ols)i&O9}^9!P4?0iKxr_b6Eu4G4no6(uVLvKxSf%*;>_A|lvq z>l%+4hrJ%>aiSQrRuzG?b97 zPb6Ij8#<2BR*Mx#nZ`4cC&*ym@ar6F5dV$IiL~qU^mL}FR~awRewV>Eg{b=)YEz(w zut)j<@olxef8r+fe0vw&+9vK(YCcz^$8CCS5|?Pi>$#%-hnRBk#flt*2CBpOs6STk zx`ZH^!z6N=tM|z{r^(x#z6Ny`rBUFKZkvN6Z};O%0u?8fAAzupn%0J-I9U;J#e&Lr zM@2f(N(H6nsaTBG1`(yMRvfDwA5b6w-j{rj{ctD%U|)$otphehFH1T}La?x{d|hP* zoEc}#TX21CTqnlC*WSxH_(UJ>w76f)RPQvws%f7qpyn$K;ef(z-=R&e--0bXA}SWX z&RCc6-FRMQemnLPuhP`ZHMgYaD!sy2rGQ{84(3GuB{>o_$B5dUtU$NS0!;pw{ONVJn`D4B z_;sX|T|gR*NC2{!OgS+#SdtTxIdUr@uJHFgkJ(LlyWDer<_@9G=&o$9L{imD)681v z_^;#APsxjzwtDCK)M=o6E@QJT=wb+1qt8rB{h;XJh#Gz#&cvH+q zPRH7Z!h@9C@yguW`PGtCeRaeg_USFx#lF3K&-dJZrHzxEua6$4)+ZJsUs%6J#VMRk zC2>KcR^5@+2=5}evc;!vTkIBegf3NRuE-GcOVjJ|eI+$Gw@)+c$vo6z^BvYMdNqJq;Bc{;7pHI15L3!cIN)#Zz6?Y_kCM7<1 zhV(Mab^50$SO^Ay@DQmxeXn^+OMVbCa_J#i5QE)`AIbc%9q z2#Pi*h?dGJ9Lvs$S^7zNhq+Y z_LSp)pt3eWdA-}wVo1`|?`J@Fb7_Bk z3@Zh#1(Tu}owV(fQwslNh1u_~^w_T)GR2Xmh>%0gNwrgCdl!nJfC2#Cm;ALYDVqSm zO&Q1wYU}_ckTG2vNkX9h_esbt93E{y&2b(jN~pD5{dyB8rf5KbqVl>t@yeo5u>3UA<8}Ylas0|4Vr%S{{afG_Pl>(f~ytE+P7^{|}?4!{xgsO%)TZ7WJIcp}f zYX5yN#r>{%2<27J;(E@OVB=c(s)EQ7r<&W*TiYJ}u2gC{zFBVa?ndSwDiWDJb(QRY zY>pCrmDZU6K9_v1z1(Gi25^7dsApF0Y>^o~2SAq06blN$%$?~wrf={4h$W4L{&xSu zL~PfT_~x=SH>5rvfrGPS6o=CNWpJN?lANCIOw$NeO{r3uc@JIe7WWhqTJC{z&RU>> zqR6+Nx1&)i0ypDiB2r4qxX|Jlya7>6=E|zKj{4YrK?EaFJDXPvy7402WFgyW^H*TI zjCt!+*XU$_+qP~)o3V+1+`VN!8?31T>YxDrm;AjgX|@1>8+Bq{xk=Wr2`qJHdSc2f zuzB3q&hyCW8gC?g=Q+Et6*%vnY4m5$nW0~bco?lO-j4=zDfzwP`f#y9~6s;Nifd0+h;R*4C1`!Dyq zX!&KbHD_K*v`@uxnW{*eBS!NwWB~QwJ~NEfr^PZFIeaq>agC?&_a5nGvpFNfooh%Y z0N$7U+c7CZakt}8J zMH+U-Ha%UJZ_OmOZyDc?0sv2EXHx(Kc?<*q00000V8GzH2LJ#7FQZQ=DXy@ouBx-E zv8k=5t)-}^tf#KBuBN1|uCSo3rmdi=qNkgWYfdd66al`M{HiTeBnALinhCvYyE_b0 zq9MaHwj@Rb^WB#C+qJ9a@YT?LdVij1y{po=^995^_6k%^jDP04Q!JT6^xcHuNP>xj zgY8oq8r$}`WwaNX6H~HGXZ#IwUo6^JJ877To4V}p=tUy?`0Lg0`ECsoF6Zg`>g@H!&9y)sc;LQxr~oc(qb3)_-C&6;n~NjoB3sohA4 zN(Mg?H@#Am!8Li1kz>?{(Pak{{+Ik3TP6trybCQx62b1#WCMwkG1ih88SKUUdRpI- z{E5A+(=KbMs{L;>qY7Zo6hLN9{N)!cL4KgG^5|d&KKyU|Q=tvG{o+gVlWa(*i=*QqaDS z6g6E@xV_Q^y3+t>Z_T=jZ5Sh-f) zlgrifrP{jhpa2HDL2<(D@7~ZnjJGlksdF+T>S8n_ov825K5pI0ni0$F5r~cRSHaSr zj*kW8XOV!N2A3mbd)!)2PqmSwGoQUD{eHPdNb(uIwA?mFLr!Wk{5FeCUH6F7jao-Vp;Qgq8SDHA0|Kw9ed60$E}-LY&xbGXHO z(9ENP8j`KdC?PqCJw)mTp+bjbsb2;pClb=z(SeK9{_Y<8e{|!0tJ48Ub@> zmZWKzkr^!PZqp@IeS92GPTYlG=XxTn={KtjmaDDoaUxZuTnr}ci7aWW88 zgjXzLNYOztQ^y74*r3UF(Joa*=oLSIwkJn?oN0g~cJbPIlYm&5ipRHNd&8crGOWmO zYp$G10o;Ln{-rhPyOA=S?8$_tP-1c$eAlSCOH**iLhhVvyHbYfeu6)QP*Yz&3M2r2 zm;CB=nkLy`4Sr38uup(`552t$AbZT{j2t5{ZuZ=cyar30zgd!wEc0kz-w1|rl|p&? zL}sp-YNm7nZrF^O&{s-Ve=MYlGkL^QV8Z|9cFqBBIZ>&v^^s#XNF?SI58Z-Rqt7z4 zSzKCDdPB%0-BbS4i%B)Lm7k;c3E$O@tY`5Y(>2yWrWsROlw;II!kfPTxWOw5nMx@U zC=Tr|Z_`NOP#b2}=Hm*oh()La-k1C}r>s;=um*p>hx`f(?^;fwi)NT4E8-2^V{MeuqV8Rw`6HynnXjAkm`g4fH|Lbum5MDjDMp*s<{;1%AA zJediBl{n)4ui|BO=rmf=jTgyx=)g1#X*tIPH0G@60G^lp-fMGgv%wntIy=@J=oCpK z7K!X$G=_!9V4jrMJi1hPH<-Ae%TCR)q|*m73Rpm%@vXWgzC=wPy3r1>c}D0U5`~it zOs$gKZ=P$c`n#XXVO}_(Hy)rNDoWnqV0KvcR+qaRjGC?XpJt*xt3Qr{F#IY9X}VkX6?Zc?dBkDMQ-9BwWoDHxgbxROZU!Kg!8+H zG4I#-sOP~8hNPWdVgmc8Z7~YRjK-~Nm8p=v%I0!K> zq3{knK|v=0-j;k$J0sFh`#Le{9 z;~yInn-^JHS|@x2C{T)VDAS$AUyR;CNTcz@p#_x)3A0xNl;|Crt$udJS9w28_vc)U zdcYL!&S{e(0Gr%1Wn5C!XO5wr_}iI8q@raY0k@Y`K|CivLsyXFl(QHp5F> zNipelP|||ao4iIUBK&RtNz1OAqLE-i}!G+fTotkqRS6(MiKEA38dK2@jr^{61Qi2?iu^eV+zP2-IS3 zSR}T`XsDdT2rw(2d%4wieoIctO@_SHkS54^l0O|GPt`(ote@0$YeFW0g#z4Mlm7+y7_&4xhk{@d%5A9X`A*fNo>7^>+r*DQ>!6B zYx4=-rW61Lw5EoJJMz}05ZLdp#%}Zmj9WIeDm(J{`1Bf_6xn1*4=cc z^c(FOb>OLbS;@DZe?c{~PSP?<2g5_l>7lF%yV%dgNa=VYUgtXBm1tSAhLQ}Vx9FaC zB|>kpGga&LL;)l2>G$udZem_xTU({c?A+~{tFXzw*1X$VP~SJd3;oq*3>9onBOdAE zRm>tnjf~Y`Crk3`XbnT0fH6S>0DhPJ=q-~%1|_({kkMMbZPS1NT9~0?N)Qoj>3$Ef zUSmn+-aW=XjWio;_GnKK-rN2eo1?_i_~qcelI2!^H?pe(Q>MBZ5cy-8udH?dVs_c2q};D}=3oBWHlg4l4@_UYC5OF_Q!V3+#S@_ZiVPGnGmS zA_Bgz>bQCIs>@qXjnw9kvaM;}ow-UOM*XsPXGs2N;~HZxI+)`>neD+gHkJ+7X3g%p zCTIyIaJGzs=WOKW+x`N1YuFiTgUXC$Mtl zfqGDL@xN?0Y#htxwT)BRV!!Tx4dpb69CYVV*#q=URqgx-Q-wJT)TQq4iJd4$jsZTG zd@g;00s!u|wPO!s53=q7SP(NBWelMZ=#3*UuO-eho$1LJ;yEmHsu;9*{J3kqJF>bq zT`Fet<+?X&Z2TwJN&(*L1F7Iuw>cufU5|=-H2bAKPsDoHf79L?y`>7|=&P(J^VL#s zMqC>DO`4~xA36$zBD2iicZb&UETgc4_+*sHeuC$F$^@}gR@x-PLBP&()Lg;F??br- z^<5Pr&3*>qu+!5rBDqDfXb>E>3jJlw$JdU@(=T$Y7NeSNbql`^Ne0X`ecl+-&prQ*)as>;|IRK1n>bheSpfOM4TBx&~&-G+M0 zulh`&rHJ8S%ktJ}`6ZXPg$}|4#_83#w(X9Esc0#*Vq!p_43uu?ERNvmj+BM~UYGn_ zTiUi5Xn^;8BaH^z#0Wxz)lKxGm?0uiyX!~>?XGD_ubrBF>m$)Z2xs9P1-)n%w(&5yv6s-HAf+!K`ztu>nP-US!7;aABXFHW2_S1e{2}< z12zFSdTLtPEpkj>M|Y*I1!>tONU1x@Z&wIDzindg#Zg5?r+1Y{FG1cQZa+?!l{{FG zWo2Rl9+!Mh(^Ofq0kHd_-F=~Fo9RLmT~Lf*r?KsgHR+LRF(l#V@crB0{cnx7Ip3I; z!Y=h3y*=vrq<`G^(;k4Lqb9*cd+K*|1A+Bv4d-siW>!H_m_XpV2-V`yQKG<-q8*j& z?EgW<@W1UFwTj;t2fa!fmJ}$rV?OS`k?IILvX_B}P}%j-YPBNJN2p|Or@@tHoi6A| zEcw>^6&m`vjS>v4rRim-F(n8EcpjI0jjdd^m|zCqi(Ox3Le$-(697pLjd6}4BG`V5 z2f5Rj;IW^*)chVs^S0G@Gv{~OF|h3wtUEW)vEtiLwzygQ@S*cFm?Lh2e3?~h0$a;Y zVLs(#Tnh`W7iNei;Eg00s^Va_nq4b}D0pA%;?n~e4g1Np&1FPH@-KY96`mTRR1H1+ z1fsIrS{|)~;EOMHl@k5+@mwTD+s*Gm>*g~F!zP2^Oxe9|9XbHMm;AMtG+Rsnyr&UT zJ|)<2EEYf}*~HLDj9~9nn`p8iUubQ&X_mAWH;agHL~r)~5sSm^l0%dZDH+`mHx<)8 zN<@rMdW4w@KUwsMBjjpqcDIT+jDXtI0lD7u@_A)__%R9HMlm@mN3-tOOYD!^(TX%B zx|%O`}SQUP(m0 zkHygpn29?yd7?T!#OaA7Ku|N%rn!f8NLFr68=c@2#?J=u(b@TESGG-(#nCi{wUmoA zBxy;jfDxT1RA~Tym;Aca1jQz6z^^k{3n_Ltz~yh8wLJT})O}$&zA|H$U~D2w9emS}fwP+nV>-vH3venCEXhg*I9-BE&;< zGS#+NXM#y^Ga;{~CC|BDL@kz4Ng=BE!6>fX)t|gjR}<=LtF%*Qe!!F1usIHCP3!jm zSu~q|oh-4wYHS3pImuRdX@-Y*e0HNTIbq-HV!i`9`lP!C6aYS#{M@#<4H6`9U-i%| zM6fIgpk$aPLWvQmPyTyzI#SlY7qfoZB$6bztm}b4tu53jhsC*$OR8lDXYbLlIt*;k zduAIOAwpB4m2#;P`Qpho%+Nna=c>B973tn4>?76{Ao^|cHhQ7d!&{QU5_!Q7-55P^ zUtZzNne*z3MWka+nVSaKQe48#I_&x{4-_qD!JDas!`eF5xgsX{YU;x*gdxo|!JcDD zKmY)Km;8M6xF`$^;Qb0L+aP6-0*EGKbWn^4)N)kythLX7^jHABO2uJ}+Kxhutb`zfdo^$<%Q>jGySJDd)^&bi&&jq1=j8}$^8 z$~Ms|F30z76b&Vx++8m+J2Lg}d^yIIlwl)>>G!L(t3e}d1Z7L5X^tM-?W_1w!L{Pp z0?X*P1~38smV9rgqRTMA0NzizXq|djN1I^TuJeI$bZ){R2c{vlxfgeq+J|)q9e7^q%!Bf{GF&7i{!s7^JsS~@v0WW&b zy+5a8t-?;&Nc*mPQ=W2qW67j%q*N?mxn|iwQNBqngO-C3FTKoLRA|laA!1mYsB5+P z(Idx&uK<-ag0U-oL{~sC!_)z20KS&|ID1MaU;{UqBZzf8DZ;J<4KisuD8~o}#9FTX z>R9i(`mpvjH^E~Rebb|taiQ5o@wo~t#($yL;Ix(gFc`}GbV}^jDkL|!51u^!ckJ7Y zaoSGtkS#!5_oOvi+q{dyENo!n+-;fIU(Nd-VOwB5Q&avKzuSpm#SWA9-|=bxYMPxU zG~m!iFP-c`?C)sgBhq@=d3lfCTCoL~OdtS0mi$^;FbWvp`_|@Jh=bi|+W;(?Cgmg{ z08GXUyQ|9by{Wa(`-`%qZ6Qu)QqLMyHwvy}rP%7)QgFp4C>3pO!t-7v!~;#e{&YVb zeok3A{QgnNQ}Nd-!8o@@vc$_(y|*_MWjoLrgr;@vH)X9l*w(J0N`wocmL7TK4l~^?%h7Tzu%{~hjlMffj%`pMcHTK6jkqBPyn0O2xEDz zJNh04eSDMlcy+R7pT>O}vAMEO@SNMDiSx)FEY{6Y;b#@K-QtKDvSmii>s%M~&PlYm z#WB(!{ADxZB=l?jG8T~9!DfcVn@Z}k;kdpx60zXSA|A{R9)6bmbBtS|fE^m#K@i9^ zFaQBEX-bX}3;<@#Nj`1GZp3VM52whE?bVM;(M~@D*r4iXY4S6{lYW%z&`-u`ua1pj zqK!_);5Abb;Xc}wbvwV*3pN$;XIFwSL`9;5kI_DzrmPKJTcMdcCL{^~{*~N(uXlt3Hn8;`K{u^2B@`ln0001WzI>(i z^P0bI#W#=L_nCnqvnTb}A)W>-DvMq{#f*#$rq-y}X&)R%rZXMkVWu(a-B~^Eqo2d~ zB0nUJiYu)MNX}h23&iuH4+bU$2_6)Hh7SP#mHc-vZ(IQzn1~JlfJqq)000000MZ2s z=L@k^p+X44m)1)!(m5_!nRgi*23ER~eTfuteoFiwQQ^xVV{@BE#oK#V)}^E1yd}g0 z2>zA)=N|7MfCGRU2oV4P00000keeZU#4-k8epXC}gO1YrO2JuJ3w3oK0RaA$+V3zW9aSW-L z^Y*TNx0IvA@sIINe1}RMIpR`N1vzd+{4o3E_1SEjhcZi0MD9`+mAisF4vAF1?%Cz^ zZRXvXH)p?J{_)?-e7E%PZXYYB1Z*k)wtAl5y|XNL_%~=m)TF-dd2*H0h4YV39j7iiTH)Sk{Yy?hL_hu3 zmY=&9uX;XxWB(zYXZoJqS7ZETe^z^z-rszn`gOs+y0EA5$K3uI{Cvjx;d6Ph$d>6F zC))e$D;2)+*M38fZ^Wyg-gkfZ-dkROav$fOdnHHiwJbgLWpnZEmRS;E+1EcmC}UVT zuU&lR`!%=q-Rfl*Br6!-w>WUWm#<6ujGaH z4p-h3{bnxVagf^U@afr$*L4g^U)Te7{e11WP1jjkDGb)H#l}V-#)+jzHF%N{v+=NH_UpSSst==PUdFY z4Ef#e4o`l1hx6CX*7v;Kyvi=U@!+Y$&i2Rcu58!WynOlm{aN-mm^l8*{0_KZztqRy zzCOF|gxUl-#{32D4ky$MN_%To`Pf@;_sz&ZHg%S7Z_Ue}eH+~w*0W6FM|F9_%E!Tn zxz3x5w50?~$5-tWo{+zmZ`uo9gP->pChaxRDb1~!ee={po$R8$j7#Fu8`8eo+pUN@ zH_PkFTgU46{BC-EIiK>Y7=PTn)Zv~e_W63&yHySAKg~A$V#7V-)ZyUkhc0s`?5MfS zU_R*S;uumf z=j~m??As0!$38A!8o=MiqZXi?am>k#o&VeR4>Mw&r#bCw-|jGtr?F4=ukNIU7uL*d z;!>1-wQz#s+&c%Sm2P_KQa-I@)7SsLYqehQ+`Mjj_s8l<3?|pDzfV7xb}V(<4!)mu zpY1K!|6jQHDZoC@M>L=1XZN2YVn3(p&p6xD=YGuoO#fHWslU~he7YVw`~B+wFMT%a z)}A!GpU4)$w$3c!bFb#{U%V^KZm0hb-`qE)&c3L6{{JgCb!sj=*s(N2CPSp`%G4zr z7QeH&@M6bOjhYJze>bo6`244E!9CCDz#A7GE&+)LOV(z{tO$4AcmALJJzlgL`TyomvA^?e z8O|xad={zv`NrAJZs~r)6ZXzd?>#4f`S>~c>$gLuS$(nBzQ6VVy6yvS<~N>=X!-eW z|CGJ=I#$K7tkbhv71#3fl*#7T+c-)e8ANTaqTV6~g;OZhfdZb-3Kz-m&tBld;z1OEc4=HTc(?RO_EQtm}6A*sdKBC%+bE z|Np%y-{I#^yWi`1Z+c4Wq%*#LmGDNK&EasM+`DQ1l{SM={sV)UVvP>@|1{>x{m5>9|8M%#{LLIG{0*{qnID*%bvpoU-e+|7%`RQ1 y?bC{%Tv^7p@8wU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/fire.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/fire.png new file mode 100644 index 0000000000000000000000000000000000000000..a6fcde7a1841bc5fd50326ba2b168d9dd61b3735 GIT binary patch literal 1007 zcmeAS@N?(olHy`uVBq!ia0vp^3xK$RgAGXbBqvD&DaPU;cPEB*=VV?oFfgz5ba4!+ znDh3|`8?rpiDM718y`}20|$MvXa$f_HT ztu0qHoF;TkS&{kXNX4N9v3ZVRn^)RSHZJ{Cy+rxuD$D07O~;`8P)UU)7$gY^^Q-Pbn4h;Z~cb1Zec;bb*e_%i8pZ#HWxbgPO zZ@lvzmVV8@vp>*$?uEA5Z*x^Azl@)^w?rWR&ClnV2bev}RrgNZvdiO#(xJ6|Dw$6o zF0VkH6pl`SN?r^ZCme+l{Zwm^o;lo~66vwD<>? zpf{2KZ*1OoMNd6m_3Hon3H-qHKr$#;8T5^9+TGXg(fgL*EexUeY|or^M<=8yjFRx^0u06;x&Eo zpSG!2dic-tz4`ui-I9gNd|$ZS{Ca+N{1Mp=SF9Vtjl+UW>dH5X-^se`w|TBm=dF3%FOfK)$<=yo$Zr+m?ZDD-N-)sJ{ z{qnlcyi;QS@A>I!lCUWA`ubHZ-{tj9HZF1e^ReVE_t}{;cK=i~UzjHQ%I{wNGJW|^ zt)2fWKLd?TNwXCG5*7JvMNiGtKfh11V-Kg8%ropUO5ufK4=98a}O+?=Q>?{Ge`IO|BHAl mbki>yc5nDngUy`}_#DXiF)u5*PpgDXXhU z`~9TuAO4{Dz9)FzQQi-c2lkc-puAgU1^~opR>;dY9%at6yMn%=6vVk$Z$ahQC%+=! z420w*WHC$ZSnR>yB=qaZoCA_UqDK1N@i4B^5#qfcc3L!4p;}F$1gpc349))H%z6_D zjpK14sBz2httUER<3Btz@4@kLad9ZM-`7F!Ax0xrCZ z*Afv#O!o%}vzZ`Rz&NrWC2vGm(p`NZ0Prc|38QZ((N19zf-B^>`xo0nMhc{jAM@tI z9V9I=I{xz$)rRy$|`BDneVhp8PBf&XJ9UM{vJ7)X!7({L;h-TI)BI|^q{5n zppwmc%*odZk1tZ`H~KoUqb+3?pCl|%4mY(-98cLWDm94{slR{K&P^v~7>x&ip)i%C zo?W^6#$Pz7_VQlF?pp#`yh97ptb!NL>@@7PZ<`OD>U3KjMS#$SfuE&0fB+@eBwUS;7`I)ae*97>+Zb6bsbI}>e%6y2F3Qizw082T_(orZVMCcgMM zhs~@I)iKVv+Wa?h8GIR{4cUoL=H=K^sj%+7d_i}7 zoRo*XSYo|Qy-CZBt)AKv?Rfcy3hA(ijH)1VpE}wo=S5^D9H7-#)-BUsX!oua%aKYE zalPq6Peo|b*x0Pxt0tGe)+EX0-M-k_`MiAa+8f*^btQLO-^M&o&sY{^APj@oGHN!Y zU>6L*{^o$*hj)VXNe}LLY0d4jDuP%xLr+%~Y!0YdFKW_s>|`eTvDG01t^Zh~0H?lD zgE`qM14dM{ODkdKJLI;yD@u`QZT)9{LEZ5KA2 zji@pxWWE_&VePn<=|Ck)_WPzXzoeM}T!@kFWj>GrhwqS9L{vb&G-12$(pJH0mJ_s! zjEufM1G}PY2#=DSa4Ts8jwB6I;6%ie7=;uJ7Y!lgp(ju+=R!|=yAG+X%>CA?u z3EAy_=w|zUb{|mG3tdpVpS=Zj0KK||UCilbFl~z-NF=T7LrQO1f7hO&vS4wUd^mal q&t=oE!LUcCdT>8!{Hr!Cwk1g;k`7OgrHbr7Z@|g|jVwpp{^Kw7SjNf# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flesh.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flesh.png new file mode 100644 index 0000000000000000000000000000000000000000..6e178307c33ea27caa13f9978a8337668a3eb2fe GIT binary patch literal 1342 zcmV-E1;P4>P)Px(_(?=TRCt{2oy%(DNEC*DO_~f2!w_1*#>NmChS@Y|EAkk52=~5c?O9FM?gz*l zWRu4jyfq9B%`Dnr2nulsLlYCzp=KeKB0F-dlI!Bj|80CpT3?+ylB$}VQUQbz;tWsq z9|+$+0B``{F!%Kgz_T}*JnL%MzW9|Akjj4na16jt8}bZb0^k9_caxp4i~e_tZ8%8f zrvQFOau&=0d`*8oO&es2o%8=xp#e1{*}nwPPG9}>`vb+}sj_o^)hpl`NtP!7x=7A| zZu;5u*|(GaDhYT<-+#yJd!UUDaN_T`I^s`J$6vF5k9GP>C*bNV5T8dLK0W>S4liec z#L6t>^UuHjaN+N_I--3lfYB|Gbi6iysRZpgVMtpgy8yf@4 z_)WUY_=_ehTIe++adj35`QCtHB`*DC;?K{DwA1w?Q6x4dT%h0TIQ6@Z9{`Nb^XVsq z5JCtcgb+dqA%qY@2qAqla-F-A-CR`?r-!0=ncXl>{!f0g)4*HOx| zS|0rFahMgTF4oMOpzB9M2H7|S{&|@9HxA9OO91r8UwVmB7{maQvn-yyt`5$BHi4|a zU*^A@nDd*Aztk;A*1OC4_dMsdnlRn@vJI~MCgU%41>_g0#j_;i5*wYLwE=MAHyMAa zE8ya0;C*>|kuQ^)oPk{23_Mr<{NTFE?_?@02dJyFps8lI2*3U6u2mE`-vPWoEq0%kr z>MU?m0hYs+U+!a|>lxL`2}m|`NERWuDngQ-;KH9@grUQ)oPaW$IhbbEW)3DPvzdc6 zy8e7Ap6$x8#Zo}qe%JB4lhVIgjo5cTvBkblJ*C@(zw|7q*G$&o7JaX^MQ`BJe=q7z z{Yy76So|GR{xbjjH0gI8KLGcG&A$5yA%qY@2qA;a0=B&t ze-r&xYD2fS7Jn1{RT8kZwfLLp=NPbMezK{!t{B)>|5|Ir@+H|PN1^pj*aiREYsB)K z8pwKilh5%l@_#rEvwHn_W_BNgBL6z^uf0lAKFC@=-#-jutL2K<)2SyrKMdlzMH9CC zK=t^wZsH@Kudi$UR29D~xAX&Q@oP!I-QzG@x}&;@jc&hf_o81ler@;4{JqfTJ$TXY z!kzcK7>7uTvxRzAh4d3b2qAhQb6}f^02M?49N${uw0#+`C zAemC6R^WqJ5(wBtu#F(6NFYiGlpsQcKuCaGq+dJzQGe{d+1Z`hd2iorUT6qf7io?J z06;h3xNjJQ@lcQvI#8BQoM%D+yBLP{0h$JO&jSG5D!|wKyQ`GN>Oq_ZdN+rKX?4gn zGP1KmIlXwgCwtqc%PR>RDCrJAbPc?JG$S5KBzxw9*LQqGjmIB!C`Y_3YtDbT=Qk^` zE>3*+Fp0)p*FwGVA5JD#^1N<~`+%DUK6keKbOt;x5hrr|b8;W6f)|Fiv#rQTGHzib z=b*VqW$I);t1>fDo(v?Js{LeXO48euV{rB$Ks+%?3cPt5$S6tBz#drZItIg!+Rye% zNP!b{)jxxm-Q%~iD}?IXLU9~W(Idi^4DzTnAvD1z0OOLKqu}D$JQ)qF16@M3_NpPd zF2UKqMtYJU*NpS3RJMA{%1;HSH2S~pRjo1@`ZZV9@GwH~W>ASvP&jAlvIX_UOnvop z!w>b>9tnD9LBY};tR8$)JB$4qT3&|ldLCi7b^~+QPpjMPf*UhRPU5syy4Hl0Wh^kI z?=4q0L#IGe<$&5*6zQh*gQK1B^&7m0DR80LV!AEDh^ZTzXlK4F)_FL{BcokXFLGHN zTRQZ0Y3&r$+}dGCuK%-oqM^tjTpH7Iytr#7CYV6jX-}kd8sd;6GFySxm-V#;Q+S7{ z&WifDXGq^^gHx`)pb5s^C)2BYW!H_YLP%6KPHc{BEDbR z??sK~dLKw$;JIt3!3>@>M0r9s(hp^R(8N<>_66sEpnv-;MpCPa&OXHZ`^Z5=RS z1vB!!MBo2`fS3;y`Jk|vP~*Qwz%Y{H$tzcWwjJ#y_hukO9V7~5TIA6=f?^vAascA9 zbUzR@nM=AYiE=lq@MH0#&m|M6n9fv4$xbihn8l$ba%YM^W6u|6{m;xO**zfCW64s^ zy5;j5IcM7sMbut{Zzh>Q!ZjuxD^Q8vf|T0Q+8Cmof36wv%Yoz%=|hbiA5&h#77{6E zDI;QWFc9b)0}ls)WBGo@dayn;?*hG2kN&O4wyV8@Ir&NSnhLrQQ@f|LqmNbJ;^AV) z*TE92WVY3?gkhlRk@b_reuI|6PP%gWeFJuWyK8$p!qe+W&+5<4HAh462ex20rTwk1 z#IvWOCaD8OU3~~fAj=-j4ab%XqSevu8)t0kF5ce5Vw|?3$;(I}m#42AeXhy9?RURI zW^&gVv~o?FMAY!;j4xNQN#{yPPQ($*DV)6~a>j)Rixw$6%ya5wRZC>4Lhjh6fl)S; zi$%K%%HTNuDCvr^B7j`CJX=u`8YFMENr8-Wuf%|G>z*)4&r>xYu*+KY&XP)dcq2XE z`C@ZkZ<5}?M{W&zCDx|9yq4Ug{#~?gQ>RhlUec9$wshHWI5T~ttmb-lqx{H3!;C*h zy2VqSFuc4l$Y;mP9qFoT7Org)Wz$}=rmCN={QS~kA;`I{rA}E`Q`QMrMrpf}wsG2> zdg)(uqyAUN+h%G6Pq4azyj+^X<(;>cWsm20Aw`1#U$9mVk4hiwIDC_F(Nbfl;baZ( z2fZjfK4;%+R)E?0`^={c!>=ep`Bd;)(m9|d9GKdLdz0%g9S*NQ!ad-8avQ7U-?F=Is1vzi? dKhrjJYv9YP81TdWIOul*0e&IAO+NA0{|25F$s_;( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora.png new file mode 100644 index 0000000000000000000000000000000000000000..70e369cb02ba37b76aea647060974a8a7517d27e GIT binary patch literal 1868 zcmZuxc{JOJ7WQfwr3TLsOO$3>wU**YDPsC8%~2FnM3FwNtudCWwUIDhE!9qF82d7% zRbiy4TGAw@53vNbH5H9iE7FQIB(?l1%gem?=j%P^-h0ly_uPB#_uX@gFZy|_s~V^( zC@84I&wB*Q{g7O9Rg~p6;$JZ+x%*pcp!Ye2&S~&R1%+>w;T}K!lv&4T!Tb&3dbDlY zNmV93xaf|uzWMC{Rqs=ArB?$kdfq61@mxXG>~Y7f!$l1*l5!!=$1Mn?AZCzRskxsW zcb%YeEFc_@hwydw5u=k#(pl2ke7wN>4#Z@IEnceb)#m7H$tNp}HL>Dv*BbKvNt#z3 zKZy+xVY}7YPT=!o{jup)_i&9vz#=y(v7=C4Qp`wOlC`8~8p+aIb&ev#3$d~T_JW|( zpbUy#@pv@LkjK1<85KmLWla()^{VUUZdft2u^sTg{tpg-Fuh$D z?yQE%-uJ;!kb_kTY)_cn2LrMPw;_;wtV=-lo^K-YlReaIW%U67twdfsW8g1wvBu6} z2grk!%k7?PL_-T$wdGwD8)kVlN3<93Ecitbw4h9fPciR&c>u zc!40&KL>`Q)G&S>HcpUZaF4b4SVWadE9G61<4gUO2)u4!d4C3n_n890X? zW!~zk9HE1Zt5a-hBG8U|)i_maGkRvDAj(p(&yHmI$hYwL?m>E$p^xsrXZuYhiJ@^) z&QH@{SW*5z*6x*UYb1JFhhgRp(klU`jNJTR9=2kiKqTz5%T@w@K2M4W=W76^6}q$T*=tp&o25MbQu4s;=}1L^E={u5w;>pZt`sA!=I9*8( z#h`Cy+ZQpqaTEEm54>E-DI(dcuG8J-jb57{_2-L(cxZ0pS``WFyQFf#x zd0qR;83RT`u*gINH~TZpHa=OZX!owcInau|8T4DY=x~eL)~a8isIWQ3I#eyjx{59s z>2089z0Lm_)1lr*pU?YTTHb>R`K8x{yT5!InrpXC-3nqq8cwe^rX+|aC!V#5kY28s zKlp+{Sv(g%Fa|{m4y2Rx45v>7VNYb=CfarF7*9QPH_s$n5!k>+MhZa^q9y1Uc4b(q zA|X0cx2THWpz;`tGBUTdzH67fCws`P#2nQH)@%YX3q|QPsfmMd9NCX%w{DgBQ)bX# zp?Bzo5Wt=rKgo8amJ2`d{Vd-&fs2SYUa#Q=)>KwJqVnYr*c4%`gqF&X;QE^5r1W?F z2v=PzmWHSD?K=-nouhn*7Oc5ggmNs{bvKOx$hb~t1P=Q=0WJR!K7Ljkw}z~49vLJr zk$e|{cqLTCU8*kMml@wa%{X0E5rClRcPL%<(SVObvA~#MH*98fXfXU=m(gTa zZQp)f0g4-OA$LFo&~Y%O`Sj-QWzCtC>c)km#%i{d{fUX0&-(5fcl!r6y<(9{sJyYb za4*Ba)EyK9fY_x4mV8{Do+|U{u?y#%OmUK4my_DUR*#sG+1vbn#0Y>TN`3leUjgQS zp|>ZN-h^r_*Z;;Cv|Ym^U+vsz)VP?W+?{$x6PfSs2DphvI%YmJYsulVM?UrFC+bw4 zpiT(0N=lIrja^|ou2qQ9iik)=&BVX#G5FWf-YfjmV##ud{NrY1E1Ggh zEx=BUW;6+Xs2W&bZXBQbU?tn#h%{JkoqHW|kGcA8VRT;%edf>E-EcF&O&B(z!N||| zg*gr1n+q4PuD-N1^_(8rE$_?I{!fZ$U|f~Vtw7x-VlhLSD*98cQBCvz(acqpDVj3p V!`4n{*8i1-d-{2Fp1bnPe*hXXv(*3q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora_VOX.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/flora_VOX.png new file mode 100644 index 0000000000000000000000000000000000000000..97969116a97829de4c31cae8825cf0dd1f59e4b9 GIT binary patch literal 1952 zcmZvcdpr~R8^cWL@-d(^NN92LJ$? z@UzZdiuzV@Qq@!x8JHdsttd(fUT#hR+_3R70HAse?tI!ixq9sr(Zk4Z59!N--cBuR zCvRJ|^M`(W0_dze{oRwgY}-rfd;qBUK6%P5xT)g4LER~*c$Zcui=){;P!jJR z&$i9lvwSlII}c9Ykn||eZ#NwuM5QFHWA~Pf*P8B7dpO#fSk_=gEjbYl_ehx8}d0HeoEV7c4(|m5~-kvhN?l>@4 zr{DsN;pkXGobAEA9(rW}J)fc<&8f}IY$dIOi9vzK6c>%Ig*l-*4V%Q%fxQA(q3ebAg$VQd7EM!Pa4s;x)vKTOaluQeOap% zG5Of{EuDuCU|2?{JP8BRMjA8yW$plT41FSI5JtzyxU=O;-;bT1yi>8rrgDEjXg{3C zAPzsopk>ez`c*9Cz=6JX-~R+6m>cdMQ?gA6pWm(q+rrV>7ip;MgO?bPVqt7hRw62* zZPynzEavI8fNO=U`O3}N9{nOF2XA6TN>jF$R$Pcl63tLKJC^qM&-RZ3b1nODvE6!} zAS;}uVRy&+V1Gu~iOB5))nNL2M8HFh!;u8ECe^cDbeq2u8?%kFaIfCJ`tsA_>k*-X z&Gv#v(X8T)H|3F9r!m&g&ob;#0GIXS^W9rmTu5Oh>*DoKm`N;*Oskr0T8Ad1O%hT4 zvByJ+L93Ic1PGm3UIg4K`)N??8p9!Pu9-d~ivS_yqfAD^gK%T9j~SeRt71inEFavK z(j#V#oTu(Js^`9*Ng&gBfC1ClnN*~4?-3#K6|pi>nbj)iNlxssSwsTp*BPE~+xqwS zvd+NCj;a4D^UauBKGbY+rFfc{ZQ^biepQ$95U=-<+(Ir-iWEOywPb|*`U^wL607}8 zpaJ3boZwM!mEmg>4$Xgx6cQlitg?am%DX3GvfL>{jWLBq=CI4RnHsww&;+R{?DOa* z67Hqv&~_#_@blE08^5X2iziSo%%D3~b=Hu~44nV75>*17+BcSNhh>jmbT}s{)U{%*Jq6 z&VUsN=23RTKq&uUf38NpR^xh+%;gjy6z*2b5MmJTrTA@&p{)y>p=m`X3#&$+xCKx# zV?U}>JiX$bROeBAgBpCooSjj@1m_4C=J9T-o{h*6xavK!1Y>5D+^c|`!-aw1E@ZO4 zACAlW{2VM}8O53tC+z2qK&FVQ0FAD&y?21e>uwd{sbC!K6Dwo9BmZY}iUU+PD5IWl zP@(@=A%Qdr|EmlcA`%QvHWuVKISWegLy`@D>tVVD%_cn|fJHMbXcl41s)S+^O8G{g z8e06-)>ogiG+dFnAvbZdsoR9iY0g+^S5F*0{*Yy#kL(DDjo4Cc$o><(fRX}})x(zt zFr6aL5cxN0{!2JD^snbfuHbPhTl!X3xazB>3i|atcDd`==N2Piej||%1|7V2mq!^g z(AFk?R9nFT6H%^Rw;abM-4r(Tm8838Qxd!zt`Fmi^WeOkXVsEwMb_-KBU-pDl5Q3y z{%#sSDlk2)!+HGw^;lPn4k~6MuozlTJg-|)Z$3DgvJ07iY+Yh-3>L@tnU1?|(xSo< z+Qv-JMKuhOlRDvjx(G&~zV;#J?qSNLV^@>wNZ5bbn7GLK8MFb~qF1EobWzMF%_$il z6yjTym%geVt|OCCo8hWj8Ai9R5Y9g&cC7FGh&zt4pOuN*UzbM9`#MF6tsLd==EVry z)&HpGb^wzjp6tlK{$Zag|I$AIZ*P7_MX}tM3o_W0y{yXT7>Wf_?piE_8>}0I5v!HX qH5tEc(+}cesTp3SNWeEB+i$@B@T!;4Z2s{1N*nIt;f!+%zW+Z{QQd3+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost.png new file mode 100644 index 0000000000000000000000000000000000000000..4823cb5a6f2f7edd7a38ad837c42d8bec339c367 GIT binary patch literal 2650 zcmZ{mc{tQv8^?b$m>5f#ELlfoiFzA5h0z#UD#ljXNkl1=WF2P4uBVb7l%nBDS+i$f z##W+`F^aKg3uBEj!|=}Y{@r_B_c`}J=ep1Rz0UW1&Pl>pnF&Irpa1{}T9~74IhpY9 z;DvDJb|cRoP6FMxHA4X+1e`SIE^ zm2(kOkS~vymc5@|*%h2T{wP*hRG!Eb?%^pJrXfc3u^u+!{g&LVmwZIRtVii9QEr9X z!ZeC3jUG%}iO-FCCRVm#;6UAC{1lpU*CAx^G2D0{fMj{z!Z^uARgL5+`KD!dGxrN* zG;&xcg?!{%&H_hwYB}lB?c4FN&2g-w0ghD!E-0bbiF})a%qBHgqQQ5aG&v(SiY~0p!K2tQ`dsloXS1s)jnh9vO`+ ze*had^UyASb>bfENE`vNCYN8#ieLcEC@9z48~M@mA5-F>V)^53cfoG{BsBOa!=gXk z7mcFX`ZE0AY&2lS)k?%iAm5b9p6lwqMVKn;yP9Aur>5GK_WC4|yU}uE1cBADf^{)4 zi{=S8_#onMmNHg$X33m?pz1I$sDEp7F0ycyiNd|BK36sy_c}{stf8MOPNX(K%nKdcnI*T z@@}$DCXQRQ^|-Lqb1FoG-I>T)q3K^)7i)358Qg$a#LIzOT@itTZ(wSbzTJf_tMUHK z?aF3SOr;KfAhHCB^Rjdw`DQhf-LGVcfkC0fP)UUW2 z_iD(<`#bV9=*ex3ubS}dg?t@DmpikZs{wvV;gs&$m1P62V;YKxlAZ@nE2EBm$}b$) zUIK~c-Yy}*)(+mgn_))h^*8y#m5qn@aj&g0y}0O(^1#gHZw4f|w5GK1dR^ea9BeIs z3#o3!;{U($GlZ)XNLV9%PVaiZz^CpQqldSB0ZzR|LgGF4FS98ocjr*R;SrBa?(3wR z0U*M-K&t*tNk^lYn&c;j^{Z`T;f+SW+hiXfAl=(g)WEd1w;=FfwuRusi8`#10`p2Ayvk8!eS-%lWMAu6+uA4sc4HF!h>9cxAfLaP&$ zr=1~sJRHsW|68F{CJ3Y%r#O}wo)tk3q+TSzYVX6=LD{E3bA@;*u4DD28%+R!68RiW z|CY4#(p=2{uyuznQ04)$vd6E=Wxq0h!dSTrmIAayvs+}Z6So)8I8$!V^6fP=?(&Ur zqFe;2VsVuZ9sn-yt6aUuo|2aNp7p8*WcCx!pp@9m;G*BGA8ePp7IiVX{~nSj9mYIF z8j6$VVW}8A4rP9F|M!152V%X5iykj`OGg?C^(m_i%SB~Mt<~8Eu?^tSe|8?nkxyVI zcbu@%@2Sd3MxfE~#=E_BPYjXn4^*Fck5nhU^E0Oa4-UFzB6j(+yI3&rwWzhWosAw! zTAiI$q-X1$p~5R~oj%0g$=H487n<&u=%_ob$A{=MGW||ELT2NgANzc;DH@(H-3u$f zd3t}bXs-UwD|wk7-?0`A-9Z}iBt_gKL$IsT`skMOJXfqQ)NaW91e=I&?B9X#1v9wg z)RFZNV60qe)(TEky3c`hOtllMoym%0QusiN$;5vG@T0_2>j8#tx)bd1{_li_GqeK1 zHRl0^*zos0y2R}3l5hb8Sw~0Q;0#L*lnj2nh^D5PQQbB@7QztR3!wZ#UXt(R|>Z4f~W-NnL!0s zbgb%-8Q#YQw)7Q#OE~@1N8J)8Qbc@^SrGpK$VIEpdOdtSE1XW>H_gFXDAc8cGNzM9 z4*4Zg>SI}dC-EK=u=!POwZmoT4spx2&+dxNm58brlvE&_+g&9Ttly*pgxA2p&*UFw z(@%F42T7N>LFaAEMPZQ6^gJC7>cvuGUr5NtKMMamMi2oHqE+qoj%t$u@}+gNtlYpv zY6E8%2EfhB3j*C)elLp-Zg2K)s9w`;k94ewvCC6)RSVox*CVDz@FBjmRzm8*xvzn% z_26Q7Y;b34*6O8X`5Xm{VU>bXkX2_zn)(gBbT|sl17%4~`r1x9L4{18%HcbVx-}pZ zhte>36i|e8c{_Wq?}Tubxk;kvWpCd{xRWBr?9GqE{voYl(g+k`bJKx2^D*OFNUP>8 zf^+4Kk;?%?kwIUjaIzQkTUJ$EB16SM=cC^NCcilh-wSz-3!k^$CY?8v@osJ-ng$sp zx`Lw6Ni78!{3F~j)KF30wFhHB?yAvn_YCLK`d4J}u;6aR&$GApeQKuy5{TWmQu^vR z{$e~%`b+WIfjn-b89a$0B#Z~!=JO%Ym_vaEF^h>;pJ}?wju5I~h}&EotS+!_YN!S? zw>7y0@(Fwo+BIHYp%(rqIXx#n#Wo;#ys>Z3jXb*fhrCQ#OjkfEqws=V&Gj6T+EVk|aisK?F1E^3UBLv$29AAzwkzuFf=z6WupE#dI Nz{1oDU4rt6{x604_oV;; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost_VOX.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/frost_VOX.png new file mode 100644 index 0000000000000000000000000000000000000000..346cad09b1065c067a96bc22b9d2e6b2ee6d4764 GIT binary patch literal 2718 zcmZ`*cTkht68}CD2weokNRc8}M2ZLs3P?gznjkh%xD*k%7!g9RNdPHIi&CX4gbo%A zy-6_?=@Jax3sFh{A1x9{eDTe@|GhV}dvF zi~FtITGEd1z5wOt=4?Z$*_W`_!!6WP-MYL_-VbtduC@(E&v#~5bv~U- zcx0ra2?6sw9AhyWzmqR8bO1}IK+l+%qdZf5K|FxdK1H?NlKW-9`KJZV#}{tKsxo)y z6BF8+(4nhu)KPaG-&~W_$IWISBxgBrgfY8-wqFN~b+)Uzr}*ieCSR0=39Hl&9oY1#R3rI^af1OkjlsOVXs&W@9!Z?tT%}cs z5$O$Vkj`K$34P|rMR$pbS4#u*e*%1zey0NtfN)aOhvb ziAIRHI}#y-#G%8(6)?==W_a82m;j1{*vq&gya4itzF^&J^S0b?A2$$ft$aXJ3xwZc ze*&9asVrzBe8H54-C20{vJW(+L4av&b9W}`uC5TMevSY@dH8{!-?Zp4tw7^;V4IMi z+(ZTEKIT&8q-*Fg!%8z*`cSBM)O{(^LfoTlm`cV(lBVEoX9Z}*!z#0w^YiYoL7BPm z-3WgB!444^O}2Bc2zLoT%mD=CLG1H=CtO(ZQ6LQ3BP-tOBe1aC*|gN+f6Pl=8nTTv zkrw*$Z6VbC!7yQNz2&U=qF^>M9sN!7l{MN6d@WxH9;pG%^;lxpD}9WQO6-=|qn= zCJ%}QKQFE^o?Rl(O;NfOFWzc;ct+YLyG*C3D4GG`_dd1{$;q%6@Am@7(jBDa6Ism= zHPxnz=``|tf=%d)?d`_V?bAT}xni5pkuvOB%JT$sRYfef_SQbYfLyC%)zgZ1c}i;$ z%YxTD5vncK;T+{_R*jIGQyb^Vz9F3zDfPx@AFoZbN>c&JSg8n02^_fqN@T#gE4n5{lfVR|+`QGYa!s3^$ zE#s1T+hWh`zp}VA1m=J3ZKXY-@RbEvO{Qu)xrTTCTq;CGE7{~yqN7KrEk;g@#^1hg z=hk^nU_w37WQWaoj+7WY%qn1@u1zy{;r4IRdC>K?%UV0xp*GFS;Le>nwPrD2-Q=_= z2YwEeZk*c1e@%@0%5T`cYj`e`v^Knkcsk1$)EobJ#_dJzE5(s~H$#)n#;u$= z+~?njMNRd+JV;KYtM7@i!2HGC6N-nQL1J4|+W$=6OTy>aT}~gu{=pF8M6R&kNZ}_j zgMucW(qKeC(u^i)?D)2i{GgvowNtGwxGaBIb;<`0Vj349J4E6&5s-3o2M+I#-y zm0I(F#qmh4Y+|^3YbhDS%Y4w97;v(^Q3N*#oz^_0o3wz&;rB`7ZsV#`{g%CDAw;LS z3YeZv^RaEey2B726-B2*$5r&C}L9C4zIacKK{9RSdjo-;%`$rL4n zA<5Wt-dIcedQ{UHkE8{S8=%pqoax{3gNgRjmz4ZLVK8xi)1o@ z&y{nt2jBASgMT)soae>A>=lT3NrLZYh*mgHLax#8-B->ktNG88I&bkizw9~88MbhwnU|dRJP2Zk+m5Undp!(qDSc~0EqS;MICVp&6v&X^;e|A+9*ug!&ghq zff<^QF$zVpr;S@mp0**0?jRYv>B)izQ%L(@zjwz}oJG{9NL#rO)2R9r1*__(A5SBR zPN!mD6Q@8v>(Mt25}EVp(yMb@#X?Li` zgyWm;;8L{-=tYgcKkRZN?EXk9To0RBbpl=)fER!?&e&$+Mk!E07*E;>8G$ctlh=mr z0Yn%~D`43Alt&`vR zYeM~H`g+2FNiXKmk?Yd%U^O`{?7Q2FI5iEx3^hXveJiC4ec9TTE-va;8*W%mu|Tg0 z{&=YzCvHYZ31_rR-34OL+Eg5EfL+cA&6`oF$6>9B4!f{Tw@cK)4XA78=Pvi{gHp?s zh-)7Ws~Dn#HCLy;_4j>*>L_L!m>930S+72%c*P&$2Lq4mtohBsCm*R|FUy&u*Fw$% z#mJUeImG9T^nfI3z`f5%UssWFxw$Uu6vMP|(cBBHg;lR$pZ;X2^~k{hU*}YF*JRF? z9G*M1_SX#-_IoSsGUHnIiQ4RkD*Xx1p6|yPjEH>FwRx~J8{AMClOAcn?&|UZ8XU>t zgg!}vwnAjT{*yMnk_ZMd!IZ}~ZBk_o<;jX?*%+&>|p-Fr{_i7^8%(*1WYACAW}l=P8Y^s zk3E$4`dzUrsJIo?1j)TasOZr-9f))l1QTYa$Tg6aHL>o6eIEzbK2OC_t+(9P?3 zwD=}BR|gJ%AW(*{taJ&5iqeV;d9JfBV{lXE`M3<%vYt`fZQ_}SZx5Wk35Cz;ldODQ znNJy)EKq|RhNg^nN@?w4?ND8nFYBU=fgH20zIg~zlCFeTY~$|+il)|j)giKn`424z zY=fUP zl3y4t;->*e!mp(~Onq3yQfKX{Oea-`7oy1lo|F4EJ1-W5N6d_XbVG}$)^xWV=1=@w zj*fl4>Ejearm142>JC)5iO0|&`k0S@mFxWX)`(HPUU>#noP{HWwIW8B(q{+1 z9~D0iZ%cCFo$m$$r8+HiwfDT>vj-LR3whr#bURXLO>fJ|;kwJQE`n2#W^8a~n_`Wd zD_)Wn|K5fyAwMAhgG)JemlQ6SUtg7Bhos@k|3yb5U!kTSz@gavgf4aKlLBlp! z6hSop^%uqR6sj+MrF;vy&vJWixmMOoDIpcK2ulpf@e>pf*T|I;yI``&J@40k%YNjM z>#SZ_)VulS)M@HcK@JDs7)rVHt5j9WaE7U!SVHiNjnM}*uh#GFUhy2KE;|Mk>m_wM z>Os$VjxKKsxnr3!e^a&=sNI9(VtFHH(9v)9b6D z?`@&>RHV*(+JCY?czr&6@G{Cx0e`jInC%BL(-TRbRpDc(Fm#{toEUQNp* zBX+(;!XTNEAmq1?1%t+fVIcEXAk8li_~>i>ms&6EZpaK&Y5tM@Mrg>NT>{8iILQ7P z!O>XZmG&c_#KWgWO6NH(qRKJxKL~ zSoL81Az*D8_cXXo(A_w&klAvet~=tVWD$FaTR~}@T6!bKz3PL?8!Em9kOlOh7B)1` zJYi{vLET0{OWd4^FH%JjWdIK=iNtEp*wi?Yu5W^Fte!|pdbTuQs}XN>vpD4?yTlFu z&PAD)AEf*t*&HPs^5xmvt%g@n6|X+%TnIThIBI*g$(T_aL6sTw=LsZ@`In@?fU-cg z-(aX$gfvYYo|eqv0sn%p7ped31R%?7zZD2aEKpu7z)Q(KlE^jZg8n=C_Y3c4ISXa8 zBR-$vUwE^J7#*NnH;uH>Mcgu3S#2ueH7|#UEaWZmKvXtQv0wXgQ}>h$9oS-7xS5l;ttvJSw4TCX#{EkS;zQ2u-fOdVTetl>JyVDe2te zypL!Nft@F9o#eY|$pXcGs$qj7Wwv|MlJynFxM~8yU~z|1DsFC7-p1XHr=cruP9#&- z!9lst|CHuW7jG8-zqbA5_XZI8uqzkDGgE36qQM~p%I^bwajE}PlQQ@%98hKXE3sk zJ(<$Tnn=b(*)vMEG0XeYyFJhKUe|q}`}fDW?&~_|e9reizdw#S{w^iHRU7~yWoK*c z1f7J94HtpzOEa&x&;bi~`rQ(c-ziT+PNH_!7AK?bf6H?SQvN`qJ)gO}vM*UVJ*jBV z5&4~JF9eId;ql=eIw{hdGGEP5(m)`oA`;W6FA%iq(`J5ZOM!A;Ugfpon?!<8ne@I( z9zuvTlti&ZvCegNnct@5mrBb&V@m_1`*d#9$R1FqF1=#I5}F6pc+QIfF?H+j*QE(X zTGxxTL}ipCnD4{4Ab=k;RDHcghqn3{zgi-%^yf_WWAsUw&zK0X1aQhr6<{LK;X_jf zu3*8Y5&q00Kdx*M0j9Pb0YD8Pu(V!#eL&DUbjSQu;!u;#_kGhD=6svT-1Ij*3@DTU zc{i6NI`M-7uZjAg>^|2_c*TRj8I&kX&A5Gz;*1wzv*H0DV`=Gko?uj+EZVjKFtEN? zHJ*U5)>zd8K;gh2V3+Dg*`G(>;Ejb*xlFOCCP6s+vAQ65TzEf{L4>8C0G(n>S53A~ z04<2IK=`0l8-PiwD!2*lu@sQKZtLtCHo;eN6*%BppVwQG#o zY`u#l+$|EnOc({2)_-cE+Eh0yD0z_p3@&qcM}%098cOZ_1Dj_0YoOi=OFh}J;6*ci zr|Jw)R)a>ifeGqD%*@w1^vElS_#X5FKD_hJlfr9dVaPMRWH)E%`B6xp@w8M`!} zO1N{it@ZLO_j^Azw{1v{7I-5=gf`V*ZEKv*sty@A(kHFqRF) zLh-0N|ofI`X<{!fn5^JL`wvv__ z@5Dsz!A+;q0&ct|dWTfr3&$Z6Nn%2hwqEb`&gVq;QwnAV8FM{7Y$QzOK16s$1=dUe z)b#mt7qw2Rt1qN|d4PZLBJ>;C!Q(F3D6U|Z;a^hqnMd31e!BkD+p*P*uMvy&7L z1tlw`HCB{JP0YN&!DZ4C@7UNJJ;}j6UkS~bo=o+K5aqcuat@z6=f>xCmh1Dhp+LKH zDhmlSk@WJVkbu62e0>AM_3WrsV!6>)XT}QM0RXH1sXrT5V$_#Tj3}P%D0XzJ(PgP@E2wVn?R-_<0uIrbDV;)GNF*OMSVyCpFI(F`;CuR^e^$yE zi==zm`u36v8ncCZF4_7TD%CvM*>>Y<`@*qctA6uVJD;FyKS#q-qTphhQpW|atQpAX z^7XMmqfJ+4WTS!&2C;Q96f>n_jl62AF4y71!=}>?2SW>rF(RS#d@>`zcrs;5cSl5| zEYj(afokXoxXkL>DU;L7|dtlw_X=LB9DV(ig*mBX2e%C_#i$(XA zCeCHghHcezm`g#dufZw_zaTl!UE;Bf3+>tHjs|!N~KeWLK-)Ve(v>it(Dmto|<_up{4+fSgCyViJWx2 z=2J*M`cUkI93XJsc)S~0&xr4Gc{%kwlO9|o;H|Zbf3D;%q`+B(grR_wM$}HioaMu# zDPjU2i(Fb1CMN!{u=G{AK;pSs^UWe93-K-9nRmH;Dpe^@tb|{Y3b>}>Bb0(84fp1w zBhS|jM0pC_8Sbps)~J!m^*o>+K8&cm9;0?Emru@i5OvG?fh6!IC9Ukf9jnz%Ra6i= z9hG1+rX!q#=+)TaX1V8u+N7O=r{n3h?DwX}w~Cg7>UNm$1fRaSIcvghbK$SY7kYpH zyE@#vUlpGFQLiI%I9#~!Z3`yqz$(g-us^}a@8}>bL~L8sj`oHH8DBHQLHQ%OX!9P2 z2ZHP4w2~E?6U$Nk-8XjHZN-H}JT2jY8R^2m8-0^gT-YUpsWo@Wj-Ibf!FpxRzA%JDSfDcGh)JI;*=c`V z-sXSn7SY@*BOdvkyPWZ@=gADqp(#@!s%>SM#iq_V^S{rsCWc>Dk9&=VHqEjqc!i(H zaz&xsI7x8Za0%Ixzo_>N{6L8`jq-%Gyee_YV(^aMu59A=#g})8=giv@eBj?>l-NX^ z`L#7x9jFo`6nX?lQz^;uqtU|-1dAU@a2clj@|g$XeI7aYG~dQilQPq>6*4!cw-zBU zZ10Ir!Cd80wSPT}bI1W%U#at5h-jfXl&TefuU{CSnXlw4AnCLl(I=jH(0b6SSw(gJ z41VxV+1%`KsEhr=Ia`Z>lpOX|F6J`NYD+VM2X@2yR+8)wp=K^P*RY;5gYZ{gw~pVb z9zpU;aR^3=eVOvL@`Qe=?zyAr56kqW9UPch$JnZ~QQDQDRtIl;W9tf+HPQ20yZJ?2 zSmPgQdn6RGnV+C;o2RlP%h9|@z^(ElT$dJ$NqA8@Vi)^UbTz7W#1vy|CydJ?{n-0C z&Rc6Ieo0i(@(dT&k2L?Qxiu-ZBs%!8iY@pAP58TMX1e~H0K(*@SjfZFM!8Mk(^kPSokgM-ya~WO_Rh{@$5YpZzk?e&$U(uQDFyGQ$2WfQ(u`*i=)$O1b`AC zXq$f7uCM>%me^nsT2=Koa38Cn7o@TuW<#b;vU@{0ir%DWShDM~vu0eH&2O-dKzOwB z8mnJHx4U4<0r;ibCMPy5={nv&T<_oa)Zw1v&UcQF7&i_q_dt?Gy5}GS?x*~8t(nZ- zu|#GpE}!fgM($)Z-icaw>l$`B!SXGMJaJm^!f{+mihgR@l9}zTUVaN|IEgG&q}?-IkfKI|bu5sG(;3Z|(iPMWUYl{2H$v(7+$<}cm= z%|8d04J1CC7-hXVdjBx4eqeQkSyR8u(9nV*U#p@}c4&xF8pV>H~&Oh@?mGgiPXbB SQijm~5wNpyv?g16#{U!Z-Ghh# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/meta.json new file mode 100644 index 0000000000..4e069d0cd9 --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/meta.json @@ -0,0 +1,643 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by TheShuEd (github) for Space Station 14", + "states": [ + { + "name": "bluespace", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "bluespace_VOX", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "fire", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "fire_VOX", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "flesh", + "directions": 4, + "delays": [ + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ] + ] + }, + { + "name": "flesh_VOX", + "directions": 4, + "delays": [ + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ], + [ + 0.8, + 0.2, + 0.2 + ] + ] + }, + { + "name": "flora", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "flora_VOX", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "frost", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "frost_VOX", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "grav", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "grav_VOX", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "rock", + "directions": 4, + "delays": [ + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "rock_VOX", + "directions": 4, + "delays": [ + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ], + [ + 0.9, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "shadow", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "shadow_VOX", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "shock", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "shock_VOX", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "tech", + "directions": 4, + "delays": [ + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ] + ] + }, + { + "name": "tech_VOX", + "directions": 4, + "delays": [ + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ], + [ + 0.2, + 0.4, + 0.2, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock.png new file mode 100644 index 0000000000000000000000000000000000000000..770e4b8d2f80570a23e6088fbc64afbe3fdeead7 GIT binary patch literal 1398 zcmZXUX;ji_6vintJvQQ2V`WMuEtV$1G>j3Eg(Btwb8FnvGDSr*mqdesHb>JOGc|L| zF>_0EU&at5b1PhqQfUxkDS1@TT=B00Lo=Uddd|7;bI$#A@43I{z3WK8X>0A&0)ar< zcss0<%5Qut&CRO!)ya!om2HT0!kq?H_U)Pkfz)AmthGx_u2gt5(CGYjjjxQex!Kpb z_X7@YHuNw^yM%JI!H-WS6#nqP%I+bRc9}5iXPYarqfUVnfwU%}9l}=k> z?Qk%7>JscoyVk)pixNC={3+4O$G_|0>cVfgSIBzf8lCtiQ)hxgIvbN|T^GBI+ zRTarFl5^6aazx#0l6p6yCI~I^W`xQ%1`D*I0au=llO+rg=U3<+=NhXWNznF?tzSiC zqT}FPMX*BEtt+#^chzldQFMOj2|M3Pk?5`1#wbI7Hva+mGD;Rxr-@y45B?zOw3vH{ zg};0eh|yMR{?x=*>vEUkm7_j9yAu_EoM@NurN}g!SNg)sQQ#W1Cm$9xj zhNbY@C{a$p~^arxpvFv96e~CO{pf`{eS@F15#n?|nwU!Q+ zNlY2~Xe2L~9WA#WhfJ&MeWU5+b;C;S7S6kov(>`g=LA6LYYm^UJeyAaMn40o9 zn$El(hEV>w>dL&+km;&JWlz=4^E=|vK1-tp?z1T*1$}+lK<__F4SSN+@|PjJHZMOa z@$-f5*U_p`>Eo1^t50J$M$?{Z07b?ju5a?_F1Q|p>cUsTgU=-eY`2E&D(_Yw;J}pm zQ8HiPWyKBMEA9r^*384C=D?w=dKD`oGg!_? m`JgawHNH#0KY<`*F+e(|1(%kpd*f9fDF|;vz*e62z4bREM%!Wl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock_VOX.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/rock_VOX.png new file mode 100644 index 0000000000000000000000000000000000000000..b11a9182fb7fa91a8d13b392cbe6864f59a8633b GIT binary patch literal 1398 zcmZuxeK^wz9REpqsV8!Y%M`tMNmiQ5?Us!p#x)X&^V$pL5K}`N6Lqz`rRPe_%aJP; zTVaN6mP2USa+EBNoGq#`);6=Zn}6<}>$&gqe7~RP`#j&jKA-RBLkvKBuU~7i765?t zC?C&2EoQH@fu44D!DHB3&`AySMgnAxn_cKAGhy7XIug^LQxba!<;Rt7z?vZ4jY}iwyY$Sa zZgfWP4SaetAvzT^vVYfkBjMYWMshn$%=}3z-?B+inihLOEn-gSZ!kIF_=^v_0LDFC zec}!%trGQ^-&>zQ#*l?K{&qtP%Hd&6q1F44E<>H{h2lN6C23EaZi!DdJ+LKgPcj7Z zjj-1A_G?p@I?rb9kkI698|S5&h2|jHf?~?JBT?2o?cWWCz8flH(cXx}pK0I_jT&9I z+6C1iu5$Bpl_)UllGoY%5ig4oDtk%q9?8vdbdx4XC;XbDDZ4SiF;5ov@H+SzDWMnSrOwSy7`hi9N(`| z26f+I)!U%F5*`Le2lTw_XP6Q~O<<)ZVQchmQzA4eVh~h*Aj*(egOJsF<7lk!Ig(7sbFLSnyg)z3yxZf=+FXkW+0co zsK1JstCBQJ6}}y^CI2HF0{}m^FMH-Qb#g*pk>kHir`b$EC&T1aNW73VpOe)Sla=T| zNsr{|SHBjMrnUoL5OheCOV#zS3hkUW(e^yqUWiYdU_DQ+xBi4Uo;t(vHJar|k7}y8LczkS9(i}AhG8`_>Ur`ulBz)&E^ghGz zQDPWuB4c-Q)M}oDKC$7xZQSWS9Xl^K7vK=6b_#OdUF6CzTx3>VAwA5R_evg1tejDs z`quJQ+@GH`-RjCKP&ld1pkavEGt){tU3;?mla}-lrdlluiH);ukirudw}ir2JVh&3 zr9A8=$anyDR+Tot7Bhzgn+Fi_obLttpX#6+iC^)$vf_^>X5s`iG~A@Z*6!mjKd*!o z8eE@=X(_3AnMaq5_PrS0!;|P26Kdo-Tayr-+J_3C#Sz)#=F#o$C&lLsR|pB@?k=Y^ zgScrUnjVq2)A+B|nMxhTsAew74>GtDdH{N_3~|uX^%Y@0iGA=k;e_gWndjrHx&p!A z5QlPr|Qq0$M79#TFb@ZmIuh? z{F(?BR=x5X8gE>Wqi`8CKv9@Yn)%kgp35zAp#_WgO0hd)&kR?303N*rZM+0^lP#i8 zhT~g;ve^Kj=54==7d=ae2VTt{POQNT`MjV{Bk(1j9GtoMe7L7rN0$y(e4KsanQs1qDM5Q?@Tf)l+;e$W z_EDf9?6KozSwlOWO9z)HFfEM`s(QEPJo}l(1K(@?et92bv*%=B2>$$J;r$P-+i_Mt$A)E&TONAN%`r{$KiQcYXh92D6>BzsXNNbHA=?{_NYYzx|My^>^;xo45Vn zU;fsA-v5>1Z}aWfGk@>2=1;b*owUT#&VHr$x6fz4-oJlycIn&ik_TKTx!UeO_3+)n zub;zt^Or^8f#o&YZ~ppw9mBzaM8;ZH}pZcl4E2&&~b8p||7R zc>lFudaZFafA`YgwWXCz>sr6Dn4Epi{$K6C#G2F3-&uF;W#8~cc!h}h0TX+3U^o*1 zQ$8$tFTJO#Fhn(T|16cWule15?|;8K-|hcPhU^uSY`j0!e2wD$Fz=V}OMc6S(&?-` z7wbQNyjyeXuZZ3M+F#B*36oQ1K54)DI-~#pw*C7zn_KU-@Lu`v?AuZ=a8OM8`(?*J zXTAp@omcINS?qoFk3`#r5;NSh`e={pCe_wPte*Zt`a<>~V_P+RXef|AX z2J<3)tG^F_t+o|(mp`C(^3#_`I>(=@mvZH@hV7c)RIRwq`9DzTw{`Vq#b0yTHq48E zTJSv~yMr|+Y5#+`is1X*g|<`fb!NT#tC;)bTh2Bn?d%iM3obL*EwkRhjT)rE-}LV< Vp6pz5Th$HZG*4GQmvv4FO#q9YeJ=n2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shadow_VOX.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shadow_VOX.png new file mode 100644 index 0000000000000000000000000000000000000000..6efb246ac1889f38de9d82fefbd4e0ce5b43fb5b GIT binary patch literal 1002 zcmeAS@N?(olHy`uVBq!ia0vp^3xK$RgAGXbBqvD&DaPU;cPEB*=VV?oFfcFiba4!+ znDh3|K`-f8iT01n=Poi4_#ni^%BsJx{9hgJ9b!|m(YAJ*^NE3~og;;b|C)~sByx^2qO`WN-DYAO!=+dt#sEuIR_EsuXY z>NG`!7>0((s?9c-X&V{5Vk1!5_pkP)b~XwB=bw*o;I`;reYC>(*ZlqUl1H*%O*uN} zpUbxr-_mOnjQ;QYxBOiFg@5OZ7?=%M;*OfC%=_iH{`A{eyIsrt63c5>-+ft{SaY1W z|Gb}tjjhtPkaXUM-}KV0=Kue;WZfSI9)ACR3p?w^!vE4|pU?YyKlXms`N_7g8P7Dn z-tj4r@$W&^-?OV%e-<%V%pmeUZhx+!9mCJ7XIZVKZ)a~@7RCSI-?MvJ^#vzW{vFSs ze@^oIl5@-x-sj}3kG&gnV8{Q<)j`>I1+w<<-~XL|qkq@;|I>A{|K_NySaRj7$z1!n z)2;q1rd2ZO^}J+jG0^#Y`;Sq?mh-MWc$VW&=q4t0J$@QN&cNhfa zJ7g*HX#algc6Zt*hGoxqKUCx~U=Nh~@7L=U;wH?j?$3L7chb}A+y19MW7a!#X0N;X z_q>yzvTy%4T5RdY`o((hy9O5H?-eb@@2Bb1v%WZfvwdpX^hzeS1uwqr`mNOVm|yQE&@*dyHB9;mOBE`!s>Rdq zEuB$4qv~DKtC`*1ieHbcTs|*;y1VhbvlHVpua+`Tv1>S8#XjvRuL6cI#7^v={PKP7 U5=RDMVCH4;boFyt=akR{0G7Mzr2qf` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shock.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/shock.png new file mode 100644 index 0000000000000000000000000000000000000000..acdc87a291c1f3ae96bef140d18330ebc0273608 GIT binary patch literal 879 zcmeAS@N?(olHy`uVBq!ia0vp^3xK$RgAGXbBqvD&DaPU;cPEB*=VV?oFfeO+x;TbZ z%z1mq-}`m~!|{*tk0u?Gc$1=k&HPfV+PhVgz1WrJZJWMSed3`m*V~^ZDsFtUi_-sU zBGIgNE4|(3;NOj#Onm1ptFsSC(th^a=4Em=znu^RL&1U5znCvBd3@(ehb6fN1s(~CvQpHKhJB|o0TWb39 zP4Df0%%A<&b?^Q+=kxhp43`~$Ov;<`NA1py->&|47jNWyzPI<>we4?q_5L6KR?N0L z`EP!$_5UZoU8{H8zmY%n!o0ilKmR(vnW1;m^t+|1`nz9$t9w{qf9JdZHr3o4|Jq76 zt-V;e{zK8?y{mu!{D19wh}E7=_w{e})XltJU-)+o_XUm0{qsG3X})Z?^?UQ!HNNHM z-(z*VEbe?My>?|qb!OXJN5zLv_MEQ%`~1yk%^7t|e*xnG8%U6I%{|EolzGs(>QsBr zsvco%s(@k%KPxN!1$?dU#XmPpe0$)D?fXsN&u*~&V7A-Zzw}@CtLIS-X79YCHa|C- z^iIY1^bU@7zmL6$mMM+f`D*vP|4P5=&KXvi$$721nQS$~sN&#{MekS1yU$%FbAJD; zzk9e1WLxxK?zWv~TIm@Sb3dE)Vf*=Yzlv=Bulg>&k)e0V$|cjkMcleCpK0IMw>{=d zbK!dV7WZ(Vyw>;6dI!GP+D|gsczpMo<`r4?>$aCYda>o@D*2x3>8pNxeI9J^*XujT zgIIvJ-sN)~>;7}k`}gYW|7yl{hvG`UOkY1gwRq8~_paMl)f(sU$9(%d$K>_92=C3} zbMFdY_!(DmaL4uXo6}YDH}8JDX}N3`BvB?| zym{v~rqm2EjUu<%Xp?RBd3&DkzpwB2Jm>t*bN)K#Jm+^#?%6Y^eVc$7&r^A1^Q^}R9R4_5{pm~o1@7P?7Z*F24ptx`Z2IgTK}w(G-)FmRUYrRpw^ zqOXC7ntOrEE7TzyB-lElFXGq-SAkP)n!o93LERX84MDS@b!N!x>N35re1;rd5OUA$ ziZhWqYC)c-_}0$oK@)evGWUme6YHGYR%9;a@;w6Ge2ZfM1mTYLfzbq?tSG{@RXEJJ z=#$FRDRNdM@D;8Vs&=ZPe0MNY$<*CWHq$c}Sn05PhiyohQO6^21ECDkn{$q3Sh=pj z771iN`c8002V(3q$yXc3uUkJgLus_Gm7~d)xSD!V-uEi|BJq4=Qq!ymNq$Tc;lJj8 zYtR2?OUoohu%pw{#nJGahc4KBZ+%w<*AB|W>Zeke2N8H527hD1Zb1P6nRbpnm)F@I za$KwY4cV&128N4LjLFlsk^h*=8jZ~$)WzjJf1qZGBH$ojR$uC9n@Ie~pXGvhQXxt4 ztp-~M&~zF48HMN6JyCS&eP*H`Z2wk~y{{j#2izZzw!ueW<(wr5?TNzW#tsU(9DWq= ztkaW|(y=k-OJAx638rs}=cFgto&uo~6?xEMOkxhlH#QX@(P&e$2*mIAosI1eXzm-5 zC0@WvS+F~y3^w*s{xV@B4d~^t>2w;?_>?dGplHOZ&>l!L$?vgF>MkGaH>$B(J%RPG5Rw5 zBqQ43Y;;r)bK_v2Cw^U?2Gde-zMx8#ot}4_HQrFmPJJogb(7Vu!FdBHziWojc}@PT zo4mX?*b6dkHo*@THO5g4c9`EjhqM`8>K@;pG1bgy$$}qIUFG@q;)t{`aq+*SV9K;u zIPf*KnN{cjs?dE-6bIUC+igT_xb?nWiV8$NiYy9}p4io*ec4oEnxX0D)$N+cPZ=kV zRZQlMrNn2g-{f;FrBse?XgMZ=GUWVpd_UaWtkdK zA;U1(j^fD<88^So1|Opn+^^g)^OVeX8rBI07hmfo-bvwoP-!E%91C`HwJkSSybEpm zAMsA00|I$x6ZWax^$4)hTSr5%J~|+7OEOvmhdji$Jy6KjS4{$G;GRA=tvc zTu=q*p<%tNhb3C2xCdrDsk@4q%BjxUlxA6{4NIDrT+PU-z1uFJ%c1FNk%G6BPvSrG z?0f&K6wT1xt83*wiZ86SD%s=XWk~K4cfTRnw&MXRE@OGnl4zNHnAf~-Cfw}GLKCZ8 zu3cmec1&IyV4SE9zwx@t;~#cx1xIUk2Q^DFrao!Xus>%|QD3IHt%!ueP7qD>Xb*NQ zyenWnlp=+@Ak#u=!k;JZKlC@{@lLQ&2vv8%+hahdV!J~WXSf!92*Soc6TjVkXe;|s z=Ag#$5s~+F!>{G_W=)(4jMB6uaxZ7uYmWo?*6NYILJkhn;#X}pnl zCY(wiwr(eh{)#tg>T|tP453L&Vo6(x>R61WkJ-}czOKSXUAa^tzgTOvX11($=9v5W z5)1slS1=d1RP!Vc3$k2_kw) zS_d3LE=U2LzszGkS|er8kJwND?ZZt{&L->GAxz`emsYx`)j&iCrG5@@`_^XA sbr(97leB9_@Ivj5`dR1SfWi{PkNB?&OTG2Bzdpd_#2M#$$AIhq0g=i0Q2+n{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech.png new file mode 100644 index 0000000000000000000000000000000000000000..0611fa8a2a092a82bedac5ee8b2aebd1d0ada50d GIT binary patch literal 1241 zcmZXTeN@tC6vwepo14;UGf&N6q`mD}*^A9UK*chbqG?8oP09?LE!+@w;@d_>OPiW2 z-z7}bFhwaa@C6l@PKKB-vGV;u87K)E7$Ue||8=%|&U5c`?{m+2p6ByD_qPz7zrEdN zI}iwDA8^bs6o^?L);b%&i_vE#K(L~O`ul*S!-8amt4EfjgRflA=7p zitRSv{1_AUSg@-n-1YfpsiZ{UVp^rgeoCMW96-`MqyqdJ=uIanKR#JF@U~Qglefq5 z!=fMNLi^d~zpA3^u~X&Cvs;MWS428~1G{V!?JPdn)+x;N-=5{+H6YSgKgBU{&wtAw3D97(mIFH?URS}35#X`cB%+@vU6s%>P7MCK!WLp+g z+FpgssbEChw%p(&YiJ;=sg&cKGD5c66#t-s%=UO4WG0v5r?`we#<7aV#l5hAs(e27x16hn$5{qv zaty>1qCToy>bg=)Vv1zWt-iMs28jHzb<*=mUWk(#VQz2jt?v<@%Ah_3aRZk>O3I1q zO`~5!jDuCHy4S*I21-F}UT>{Az0iK^&>?pLIqPN6W3pH3g%`>){h3pYAH{%?X=N(0vmiL=fySP_h7n)s{6~;_XHg-XU&7h`TR$b4MHL|0f07aAlm+8L3tgISw;e1MzTD zWl^jp5aPY1Th6lGWoqkioLecugD&bK4B^G|EOu#x;j^7(;g*r%`X!BHNOb~~MJsM0 zd58D+F;lINAtc{Lracm7S3}u#804O4s(Jt0*+{F7@t^OK(W`->LVK47<8tgRfKIY@ z03rh51n~&hYo?8hZydGxseQ;jwT#*qG94=aBb_+x}1X#z2n5J7s`;uP!k> zrY586fcZ#BywAp0<)coI;Jnc2ptWN+Eas()TV`U;hT4XhBLJ*`Q{l!C1Gho4Nwkra8tuP;DNxFNT(M uTtR_lur{mFm_)>RNY|n*`M-}($+fJ_Qq#-0ue^FboCO@g`8E0yfBhFxa%ye> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech_VOX.png b/Resources/Textures/Structures/Specific/Anomalies/inner_anom_layer.rsi/tech_VOX.png new file mode 100644 index 0000000000000000000000000000000000000000..1787cdd4e06cebddb5753fbb349d2c06e2bcd10c GIT binary patch literal 1244 zcmZuwYfw@N6uy?Dt!D17Q){(+D0Fr0uw-hhF1l($_+S+W9|boj5#@Se@n5sEXXc#m%$z^x`@VBZqECjo zIBjg{N}mnvSg~P8fkp*t9sun5gplC)+)Dk#p$HTm)w8HU zO*IsKxnnBr^|UBFKDt>z&bTOd-{ZKSvymM-s&FUgoLhD9v;V#IWDvUR;_w$vPb*$| z|9rw;P~<(=LG;GdL$|&3v!Vg-7TJsKIhc$P_Smz2%jG&(Z7D7$!McVNOF8)!D=hjhko{vJXR(Ff znMa6aGma>YXl!Jp@b>&2B4LOyqDTS@^(0c|ytWu*C8rCj8!Wqh3RER+*9~`f`*E`2 zzr%+)??hhED1M$7& zP4p>ii8Hx*wIZr2{QBLi2j?)T_trEx2+KuaVx!fLgfF<>T4>wcIi=4}abm%UX>vj! zX1dT(!Y+Q~Mp);?(fAo3N@$cD@*JyrBG7M5AJ@jd(zf#TnSjpMBfs1*yTu*20;LG# z469U-b4&h6syB*EAJsBQmqhWPXeUA2aeN*;M>#b}ouF?k>!D>pnau;m(V5M!Y0L`K zy7bNuwzvkHal4XC>ap41_OpWUP}b=kAu}$6GA^&Q_*y^}SCiJ>q|QL7-kW>Js~(hD z;(Wty=!UiXTE3XTXmyhifuPK?NxSOkMl5D>^^61 z>&cs{;BDfYbX;!q&by{N@-9{DHwnlr3CQ|Ey2Z0@ngxpzmy_pQ_E5lKX(Zy=&_GOu zc+bUivLSzc(#LyVOo-PYHh@`N-d;LQZHmBYCLhAsn@QmMU_oL4l^eow!z6RIw&?lx z-TdlavtDQ<=Rkv*HBBs7J0dgQw{!KntXH*{nj6iSC7(ef`b;f=K`Jz7Y>>4rQFf0As+niKwk$uV>#8_aohnXjj?U7?CLJqb55M(Q( z_y7CNXy(nl2Nfz**km~C7LW(A=hXoDn*b9h3@3SPWpaQfc7K67uw@7s10x{HDO#z+LRm3xD|&_!sCqVK`d;bJxdjb%6H15BvuF1@OT=WDt>fea{KFi+u)>`Yu9x zW1mkXLjC~$0fH=}piKUsQZ%@zcg_>?Jts*1x#tA5_ha^)fTpWN^~OH!{g|VzAn7Ij z{0nU_3rgc(aDeuH12z0Egs?aEX}VK#AQ2(>eBDe$Xn$O2I}L63QIySZ8v)||1}N_f zp^4iYhua(V21!rIeR)npX7E)F$!w3xxI0?i+upAI1#0Bq3zYJ z4Gq|Ozaak9QDAd`M0k8~4-;~kb+3lqgdCU=BLd~S(F-+g_c6%Qw_7m(uC}}2fS*%D z%rxwc{eMJ6)9r9I?DBHE1MZY~5W%;HF3?do-02K$vzdY#D!jccnEw)ZW7A+80TS9K zHwHPVz1qJV1kP6PYUKg(RLR!*c>pHh99G^Gc&I_>wbIa zay9HGL?*dhjrCYIOshEH9u?ac$^Tv3UC99>RDT@(*1Ty>L^1?lH#$l0G+i}enah%f z#ORMkgF0A|c)m#fJ}|TeLpBFQOg9rrc-h{MlL<$>-8mT0IT*}{lnKc2zU&fb2W2`+ zm7eY|IV8-31DETbcK{Vt2kZiqQI{%Y) zgMTLGh@phtU=jRJIu8)c5tnuzPy~N;sCE7v3dzr(YkRK% zKlZ$Onj_X(A5cTZ_AOL|cLs&#=g+j=mgY$t32Unlki7gCo2mlx^Wp@6Ur66Lt$(dP zK=Sg(sIYd1yny^X+U_wadHOjWrPl{cP`%OzdRlCe`T2L+ZeQ~(b3pm^0ZtfBbhH!z z*QkxnsoC%e`T0|A?-~`5jM9RVwbuve2KV}b01C;^%LZxHJwa6;P$qv>ACUHssy?8q z57_V%p(R2#=S(m~$PQ{_BYOr3ay+idIovbyueUznN6QQ3O^wx=%M9h2>7N7grp6+s h`-fEvp({K`{11t~Wue8V+^PTo002ovPDHLkV1k!7P>BEl delta 1162 zcmV;51akqe~C0ep)b zBe&22Qsn|E45)UYSb*CIDkyaVRt?j5)+1_2&MwzB4D$g7jO8xh<8U2{<`u{jls&=&it)EAmRrAw||psYz}*j2P4eZ3w(Zj z=Q$10H^2HtpZL5Q0sxlv4wu6-0KnGO&t?c`j9Xc&=ARma%GxBqO5i=m>N#eOwODu&j3tH}TIW z*G+7QA!z`beSfn2crX&*qvzZR56E98IY0I9Yw)?-@T)w4&!#jB^xPNLmlyc`_!=Z` zEq~MizV%a(gynbv=ij=znPK1MIrrApt@x83z^ynQj6`xDTtu!H{4!Tq*1IP7UJlQi zzh%8^xJc9Hus_n6;{PZ;lq^Oa(hA^5eqY1}`=d7MvwzL1Fg506#qmL0TpQOj9*i(G z1_%U1(EucpL`zEzp8;+V-#~t!ZLqQyn0z^TzI8P=2YJwv#@K3*{0Yp~i<7~V2;j-( zd@)2mTQ5=+Nq!%j!@l_$q~g z>*^%GYJVB@XMse-1}}Zr6}%ss{kGqQkTk#rP<_U+C@6TdaK>cqMBn{RFxvpRGtdWjj)u+#xPJ#67x2=DB7e|bjS#&QmB7#A^TE@V z^$fPt-G5uqKq+BLxLGfnHqAu{LH(jnEZxW~>m7dByXGpYjgU6{Kh2ex5Ad(Tdb<(g z`FW{6fD52@ZGOHjzh57~LC>G1K7hzChi6Srzz44%nD_6jSXrwkrv&PG zHGjm)+Uy%6ntfg$km3f=@TY>K$^*DHV<~DPmcGk@-%qGW!=EG#f2;Zco)PxTVnTv) z>I3}Q=lzDz)(fHrm>SbuJyTMGTR#+tIBqA`ssx1(5*_nCDNz#gf{+n{2H+p?0tKl+ z$`>OUM!QjQ#yII+J^|GK=CD68Ld+wjzJG%op~~9I8RN9cNM5KQ6;EiFLwb*dh6*6~ zPw;$rJSm|VA!&$;q8RY^(^s)QR;WO2-|b!JBq_y!-vNH$sR~3Y(g1*O|Ncbx1D)#w z_~0cEIj@Gm09hGg^1`{mPa1&JlAL9|!v_1NJSOISs%7vdQKix5yDkXz!@ZB|Ab(vN zepP+I)R?1Sqe)Y5U5%+R*$1P_+7o`RAyg(q{Jm|3d44_>7-=uwC%V)JXwd02_%l); z(DpReg`W;(u_9?L|C_51h}{QtF??2i0N>%QtbNh^ytG;B)8n#)yd-yM=lE_=uEh%q c3Ucrt#86llirPac00000NkvXXt^-0~f~LST$1WzK;UIe|0kXP`*_q4B25Mgfx zFD)XTgceHnkexIYZEJR6Fa2+6ll$fG)dl@|ixL>$h8&_}=t={D5P2Pf(0#h6keJ23eI*_WD&HZB$(|gJJ z54nn8ehZ-e9ssR2^w0iJ0DK5&zlOe=HvHq)unz>njDr9kfrJ{58Z}Dv4O?Og7Rhkr QfdBvi07*qoM6N<$g2@Wm4FCWD delta 389 zcmV;00eb#{1g!&*F@I-CL_t(oh3%FxZiFxpML!_|87alG1vkiQ%RRszf|GIx4nWBn zkOFidBO#|6WV|*WP*!R9rLq0rAI1jY)TvYdtl;RvTnJ^372~*jzugPSxSMA@uMafS zfGkQ-wiVJa+zrB>Xd0(M3;?KQk9&Lp0CY<324Ml@LMSsa0e=t#04s2W(ixTTR8rLDZdA2s|E&u?lG-i5z+=Sy)VG}@4&yhKg zQw47Y^b}c?pqBkoW|ul8t?O<2^Z}5_lum%z`TCq@8qi=^J#&fG19aB!@ntEqe&kF* zjxigcY%A-AWPaRC!%KAtu$Dc_w%Xi(^A!~18012zPRW-BYo=i_aw&@v{CF-S)+;bm zPM#W)6O7_K_InfwjbDfzcoaoJWY2%kA8J#g@A`2BTrHs)KthAt5Ol6m|8 jfD1&|kw2nSr%wF>39-#Z{0ZNi00000NkvXXu0mjfSD&j} From 21bd9df4775144d429c741ac54b5d373b3675cb9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 09:50:26 +0000 Subject: [PATCH 002/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dd47739cb4..cc6d0ca3e0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Whisper - changes: - - message: Light toggle actions now have a 1 second cooldown between uses. - type: Tweak - id: 6887 - time: '2024-07-09T04:14:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29833 - author: Cojoke-dot changes: - message: Shotgun loading doafter now does something @@ -3910,3 +3903,18 @@ id: 7386 time: '2024-09-17T00:35:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32061 +- author: TheShuEd + changes: + - message: Anomalous infections added! People can now be infected by anomalies! + This allows you to use abnormal abilities, but can easily kill the host. To + cure them, bombard them with containment particles, because if the anomaly inside + them explodes, their bodies will be gibbed.... + type: Add + - message: Flesh anomaly resprite + type: Tweak + - message: anomalies now disconnect from the anomaly synchronizer if they are too + far away from it. + type: Fix + id: 7387 + time: '2024-09-17T09:49:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31876 From dce537df071f899f8419e512bd38991ee2a39771 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 17 Sep 2024 19:05:38 +0300 Subject: [PATCH 003/176] fix Tech anomaly loud sounds and superfast flickering (#32245) Update TechAnomalySystem.cs --- Content.Server/Anomaly/Effects/TechAnomalySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs index 1b2849f1d7..3e4d101f4f 100644 --- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs @@ -37,7 +37,7 @@ public sealed class TechAnomalySystem : EntitySystem if (_timing.CurTime < tech.NextTimer) continue; - tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency * anom.Stability); + tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency); _signal.InvokePort(uid, tech.TimerPort); } From 9afc786573fa1e9a7077eac17aeb0f00c4000cad Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 16:06:45 +0000 Subject: [PATCH 004/176] 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 cc6d0ca3e0..edca864463 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Shotgun loading doafter now does something - type: Fix - id: 6888 - time: '2024-07-09T04:23:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29827 - author: slarticodefast changes: - message: The construction menu and building preview now show the correct passive @@ -3918,3 +3911,10 @@ id: 7387 time: '2024-09-17T09:49:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31876 +- author: TheShuEd + changes: + - message: fix Tech anomaly loud sounds and superfast flickering + type: Fix + id: 7388 + time: '2024-09-17T16:05:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32245 From 337af483ca0922050459dcd8e8955c2775387526 Mon Sep 17 00:00:00 2001 From: drakewill-CRL <46307022+drakewill-CRL@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:45:42 -0400 Subject: [PATCH 005/176] Fix plant mutations carrying over to other plants and future rounds (#32257) Lists are a reference type, so each component should get a new one, not point at the previous one. Co-authored-by: PraxisMapper --- Content.Server/Botany/SeedPrototype.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 7a3e08883d..5608338f22 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -291,12 +291,13 @@ public partial class SeedData CanScream = CanScream, TurnIntoKudzu = TurnIntoKudzu, SplatPrototype = SplatPrototype, - Mutations = Mutations, + Mutations = new List(), // Newly cloned seed is unique. No need to unnecessarily clone if repeatedly modified. Unique = true, }; + newSeed.Mutations.AddRange(Mutations); return newSeed; } From 60887dd2e5c6e665503cbf1784ae3bb0a3289b05 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 19:46:48 +0000 Subject: [PATCH 006/176] 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 edca864463..445dae8c98 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: The construction menu and building preview now show the correct passive - vent sprite. - type: Fix - id: 6889 - time: '2024-07-09T13:39:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29820 - author: Cojoke-dot changes: - message: Pacifists can now use foam weaponry @@ -3918,3 +3910,10 @@ id: 7388 time: '2024-09-17T16:05:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32245 +- author: drakewill-CRL + changes: + - message: Fixed plant mutations carrying over to other plants and future rounds. + type: Fix + id: 7389 + time: '2024-09-17T19:45:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32257 From 6fc4e9682c8c4e38a38cfa03bd04fe7e5b5c3e28 Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:09:55 -0700 Subject: [PATCH 007/176] Added a number of new and very nerdy names for the AI (#31951) * added many new names for AIs * fixed mistakes * removed Intel and AMD trademarks. Rip AI named Pentium. --- Resources/Prototypes/Datasets/Names/ai.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Resources/Prototypes/Datasets/Names/ai.yml b/Resources/Prototypes/Datasets/Names/ai.yml index 1d320c3f52..539ef4e3fa 100644 --- a/Resources/Prototypes/Datasets/Names/ai.yml +++ b/Resources/Prototypes/Datasets/Names/ai.yml @@ -2,8 +2,11 @@ id: names_ai values: - 16-20 + - 512k + - 640k #ought to be enough for anybody - "790" - Adaptive Manipulator + - Adlib #named after the famous soundcard - ALICE - Allied Mastercomputer - Alpha 2 @@ -19,21 +22,28 @@ - Aniel - AOL - Asimov + - Bell 301 #the most influential modem ever, created by the bell system. It still lives on today in certain applications - Bishop - Blitz - Box + - Calculator - Cassandra - Cell - Chii - Chip + - C.R.A.I.G. + - Cray-2 #commercial supercomputer from the 70s + - CompuServe #if we're going to have AOL we may as well have some of their major competitors - Computer - Cutie - Daedalus + - DecTalk - Dee Model - Dial Up - Dorfl - Duey - Emma-2 + - ENIAC #famous early computer - Erasmus - Everything - Ez-27 @@ -47,12 +57,16 @@ - Helios - Hivebot Overmind - Huey + - iAI #a play on the fad apple spawned of putting "i" infront of your tech products name + - I.E. 6 #hell on earth (web browser) - Icarus + - Jeeves #if you don't get this one you are too young - Jinx - K.I.N.G - Klapaucius - Knight - Louie + - Manchester Mark 2 #named after the Manchester Mark 1, the successor of which was actually named the Ferranti Mark 1, rather than Manchester Mark 2 - MARK13 - Maria - Marvin @@ -64,6 +78,8 @@ - Mugsy3000 - Multivac - NCH + - NT v6.0 #A play on both NT as in NanoTrasen and NT as in windows NT, of which version 6.0 is windows vista + - Packard Bell - PTO - Project Y2K - Revelation @@ -76,10 +92,13 @@ - Shrike - Solo - Station Control Program + - AINU (AI's Not Unix) - Super 35 - Surgeon General - TWA - Terminus + - TPM 3.0 + - Turing Complete - Tidy - Ulysses - W1k1 From 870bacbcacedb7be7be95c9849470c7c4bf05e41 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 22:11:01 +0000 Subject: [PATCH 008/176] 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 445dae8c98..11609a0efc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Pacifists can now use foam weaponry - type: Tweak - id: 6890 - time: '2024-07-09T13:46:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29835 - author: Plykiya changes: - message: You can now drop food and drinks to stop consuming it. @@ -3917,3 +3910,10 @@ id: 7389 time: '2024-09-17T19:45:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32257 +- author: Moomoobeef + changes: + - message: Added more names to the pool of names the AI can have. + type: Add + id: 7390 + time: '2024-09-17T22:09:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31951 From 61089355f047da92b8e2e19c70a26fbd73715d60 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 18 Sep 2024 01:19:34 +0300 Subject: [PATCH 009/176] Fix Anomaly infections infinity growing after curing (#32259) --- Content.Client/Anomaly/AnomalySystem.cs | 12 +++++++++++- Content.Shared/Anomaly/SharedAnomalySystem.cs | 2 ++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Content.Client/Anomaly/AnomalySystem.cs b/Content.Client/Anomaly/AnomalySystem.cs index c93f0ce949..28c015f302 100644 --- a/Content.Client/Anomaly/AnomalySystem.cs +++ b/Content.Client/Anomaly/AnomalySystem.cs @@ -20,8 +20,9 @@ public sealed class AnomalySystem : SharedAnomalySystem SubscribeLocalEvent(OnAppearanceChanged); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnAnimationComplete); - } + SubscribeLocalEvent(OnShutdown); + } private void OnStartup(EntityUid uid, AnomalyComponent component, ComponentStartup args) { _floating.FloatAnimation(uid, component.FloatingOffset, component.AnimationKey, component.AnimationTime); @@ -75,4 +76,13 @@ public sealed class AnomalySystem : SharedAnomalySystem } } } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + if (!TryComp(ent, out var sprite)) + return; + + sprite.Scale = Vector2.One; + sprite.Color = sprite.Color.WithAlpha(1f); + } } diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index 9a0cde2998..07beb1444d 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -194,6 +194,8 @@ public abstract class SharedAnomalySystem : EntitySystem if (component.DeleteEntity) QueueDel(uid); + else + RemCompDeferred(uid); } /// From eca63a460393cea0fe7b6d1a24402ce9cf840b86 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 03:40:24 +0200 Subject: [PATCH 010/176] Fix borg defib module throwing an exception (#32260) ToggleCellDraw was erroneously added to the parent prototype instead of the one that actually has a battery. --- .../Prototypes/Entities/Objects/Specific/Medical/defib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 7b5ba23fe3..69c106efab 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -47,13 +47,13 @@ - type: GuideHelp guides: - Medical Doctor - - type: ToggleCellDraw - type: entity id: Defibrillator parent: [ BaseDefibrillator, PowerCellSlotMediumItem ] components: - type: MultiHandedItem + - type: ToggleCellDraw - type: PowerCellDraw useRate: 100 From 675a9197f20ee467c0fc99a03efccce47785186f Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 18 Sep 2024 04:41:24 +0300 Subject: [PATCH 011/176] Easy IconSmooth spriting (#32210) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * фыр * Update IconSmoothingTemplate README.txt --- .../IconSmoothingTemplate README.txt | 4 ++++ .../IconSmoothingTemplate.aseprite | Bin 0 -> 14094 bytes 2 files changed, 4 insertions(+) create mode 100644 Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt create mode 100644 Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite diff --git a/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt new file mode 100644 index 0000000000..083e803ecd --- /dev/null +++ b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt @@ -0,0 +1,4 @@ +This is a template that greatly simplifies working with IconSmooth sprites. + +A video on how to use it can be found at the link: +https://github.com/space-wizards/space-station-14/pull/32210 \ No newline at end of file diff --git a/Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..112a1d932cadd62741abd5abceda653934e920fa GIT binary patch literal 14094 zcmeHNc~}$4wr^#;%!~_;Gwy?c=(r#vf`YQd8L#5#RYXKUgp48vMa;M$OCZhoMnzPj zBH{*75El?4AcifpiVzhvB1;4$jVuNU5JE^gNvFGR13K3?-~HqLao@Y&{T`LCI+d=| zr%s(Z=U3-+YMdPeHK&b$ppiPr6r#SNomBltv4=(s+@$(U|8etQ*os>UK{`dm;HVK4 z-$_(8G#woBvr%%W_7?-v*$eL;$vL|D`1<8LY;D)fUKC_L@8-<8VwaikBW*#;Zh78! zGC$~=lbOBE()=s?js>pwSm_k$v9K)4Fg$nB;$ti4`)#sVwQV6I>Z{8Mi%Nbw*$C%X zzKKaK_S+w~+GWRL8~64z1(~}_SZi*sbKdQ+=D<$}vive+_d3-Yji#pN^_lpKzP>w` z*g0?X*cN%@_|1&FMPdHF-K9qLoE-s{bnP~dUV#D-#p>aHyfH_;~G*511V7^G#{$H zL*603oIKL*i=M{m^hiaBOooZAU^hb3Uv<}z(?BmnVC)@oKeFQV^A3do1cg6iPQY`Q zUi1aGyVEf+)^X2tV~{XgflfWy+g+3=*@BBy`3blDWc>9_f&|P~ z&|b6o${4U&8g6pywjfWbUzzL}E`jI8#=5Jo<{8koBJ1j|rV3UDzx=U6#Ex%(Yya|E zChl3br4#;2^j7Qj7B+`-^5NBP*dDQhKAXMug-ElOVeJ*Ng{)XnW@>JNfX*hZ6XC+k_4oJvkRF+}5wTU=1{@O4C5S4^Ta%X$yEOIE0nHEiMXb&+)u zU!9gZ66NM=a}BJf>YwsSEn>G-}2b!;LQn#LqGt| zy};X?7$0`RQ%S+$^ZefR7* z0h?+rQ}1k0k>0c6zO}i_emO1$F6~|oqUS!{=o!S}H;S!$*!nR!5n$}IvUSg^D$}Tk zvuLI8Ol|ei^6Qsm(T0q7K1Ewfu=)etGosFPyI9;0(!*;B&sgO+X_9+_aqioPsn&Ln zQ?0>X{W`HDMd=-cn!~?kT^bM0_9b*~I_)CnT#|);a0)w*tk6gpnNhazjy!ogtv0-0 z|Iji*b4?90@2edXGGHE`ik^!ggwA>s zsnOnoX^K`(AJCMF!P*CiDmiK84N#fb&5sKxqp&k43wZl(E&%g2H1IOetsHC)Z_zV4 zd*>m`Ne^NRZPEvR^7XT9k&SJGeA$I>VBXljYMp|4kBQ?Z@C}oX<2~GA%T(+ncLu<# z$=3%gh;GJBa1q(^fTqtQ1V?~?u<;kWo~B!@Q|TI;cx-qh-YEJTO>U*}RA66|n3~#- z28-9J_m(v>lTbB3{9u_bR8&|npIu8DIE5ZVr}3Xjz_r)JtsZ#3)*H}ZvQq(`%V<1( zvh#ul6c?PM=Yb>bacWj_s~elclH#sSpjo8&oON;~x7nn^c(st5faGw2$1Q%K{}W&-7oh^@4K(_C^6X!ay66S`l{>2OTFQ zD+W%J@p|Bwu@QuBekH7l-GWwc4PmwZ5{MqVR~V<&TiR5VSi{v$(ZQfl}~k2+dU z5Axisr-anEd)6We{1@9`u7K2aRP2KpiY-d6uR#Fr-cJ)8fln)7y$nyqX!H;QRPfSa z3-tnI2T>$7o>>it>}4RTac7&z?+A{Er0H{=ge``Tpf9hidM_$Y%c1*%OENq8{YR%X zxnf>~%(;~3N4sdvUgDmPql7-RU#a&K@v`7#)DiI@C5Q{2d1SzBqlSArBi9A7{PMAdWj6s$#7qP&JwHUV$+-du>v~!U;oGIOM!tWXH zHe8YP&NB;OZ3-KGI&PHLg3+fHVtnPClMO+|g4eR6tI|P4r7X zE%!a=;Dx{3Xcn5hr_M=w_8n7{x=Ek04a5?z6T!Dq8l_=wh@HE{iLDpI zjhzmmlmi)84a{ENR5bTBtUh>H?=3f~bJ~~(?lk`)u$$DVw=u3mAx|Ktwt@=-3SjlU zsUmZ^xviWTFeWkZz`038t&qc*+Qk3mD8UJRgFI@DkgK?%q+h$7VBJUOYor&G;6*Hw3;XXP%YwkMv#)iz zt?*=I33yr^nxrzD0m}r-4J)Gb^)l?`h}^f`*+pzowgnQ>wLvdf+MJ0Ov0WRL+dzg? zT=W(mFgp$nwM>-~u~TVeGTJF*#YvQ@UHA|!D22!)^U}Nhs$Iyj8x8^PWv9RXSqlApRXTCXS_Bvvs;ljON8YcC}(>UkD zBBA}FV>Gvvx#wCQaa^K0-MK|<(g{TRw__M{kG9#H@Kn$d$Eeuz%z~;ZP9+$&X@=G~ z1>W^v^*WaaK2bpaFt@N?iR74)4*pY1qV`BLYvHRxU+uZ-E$;Wv_W z@Qxslv{%g-vxjyXn4WV2YttB*vGNz@dcQ);;0`Cu;}GLQ$3-d~Ty7KiV!uAFcTLZ^ zy6?9VjHUTG@3#hkZ%QJh{@YvZu3%N9c(24kY;4hcDL{-dGMlRISJW_<$h$Ua5sl4uIWkGheb;#FcbA?G=X5`3 zpef|j24wD|RhJFxb!9p4-zWsn_P_ia*i}32*b7jlC_O1wbA7gC&{=TuhYP)12qQUW zxPT^mw5I!(f_wJvV?-aG)+Xd3d$z0mUhr8~?LJv{EImc^ytEofPBH4#iDfg%uq617 z(LJ(McPb5ReQ`XSUp7_U8$Y37rwE)fTK#@TMnmaLa(9cB|LD;(K3reZmVcsU%4Cb|Sk>$OgJeZ08RWILmHmHt!%?F86NiptjYyvV3C>af2} zywSK}$AdIoJ8DNWypA!s4dFprN$87)3?p%3mt2$+Qv-XW{4nu7Wf7E&WR4T*(bA)j^d~nZp1U$WNIHxNqb_kmWgr}x6THh3zH`2F0A{(uW%|Z zFWwgf zzlMI=?jOWBzzo^9)BGdF0FVxq0SZHC^X|O?!P|cwxSdLY>nPKYoqy123_1+Lu68wT zkGm=kSyfdzTO0rL&XF^IzL|8we$lkCb7N<@zg9XhGcNo#Dt6NDI&tD(lTQEe0U^XN zAehiY7cB<{u28epE`b#kjo0A@kUev_Ijo2O2qTcoK`uJQ0u_;WObkSFtrH@}^td=D zf>e!-p=5(yivQ3goZ|GmLi485D;a*bXN#y}fP* z^zsv7c$5*u_5Z|^i4ho5jX}Sng9?vAL}(|D>ZGVnN5hL0Dkn&vKeTjgF1?@N94ag^ zj8+bMqa2SSccGwP#)h3gn<_Pyv+xgQJvf&PrEc|X{Uj$%C#|RVu!4;sWbY>_Ko=T> z@pQO+Lvfty*vM${-N6;Xa6Jvz>zJxOPGpe>%EP{eiUS9qsl!J?`9q5NA2s*s7%)>7 zoWUs_va8TZ(A)mkfFE082yNKPoDSvxjKWm*Nm--n!HDQ9{Y2v6tbK;N{%zX0(tfkW zxJUeeREu8KbUck`WH@^SYZX!%h>cPhGuf0#>=2G@$zgrOOyx(0RWxiv}e;vKY zPq!>XJ|a54?!OW5BBb7aTBYS6B=9BP6;XWlSiQn0A9Z*;^75xWW{d4JhyJK5KE0kQ zr6?OTB+>}AOsr=O8D#{0L1?3HNw08dBr=_yiBfLTo31Je3*c839>oQvmYR${EepCv z?co=Sf{AIGR{pO@X#ObJ!x=V$YVKlX7DcD)EZ@qF_dTN5TB&dmjSGC}aMO@=e%3u= z{YP0RTU>54)|I@lytezJ2kclCU%V3K7mTva9Q2k5`rW{Dp&j^Ae)P>D( z6#9PBtNTOv6qTLwv*fzG@t@3gMfIn_V}A%gUcx*$I&jEmRV7|kv*fR^;C;iw3~OdE z8vW!U!!|SQO#_j|FwXqnBQOY@AbH0QmeEBIn2do0l92~O3b6F@D7Sb zMp7X!1VvF{0(Bav--){Re_&D94l3}4pjWr#)E}kSTv6(EzzXi*6VAgA3~OoFG=}|Q z7&V5Wa(I6j-V}#Jhv9f>I7p;o>EXzDIDZ&Unuaq)Dmfa?r-xr6{OQdJ$tRZoK<$&z zlo~{JV2tA!GpJWO02lv;>tq+St#=$H%qY_l)Dbx9gvTGpJ!U}TAX5kcFmOyWnyM?P zYD(3Qg*p~@zW(dSE5?5z#!q3vwpzfe8F@5&qt~dY1Ezo5b9}|+q@MGe_S_KeiS=oD zkZ;}-%WCP=jXAXRJI)jT{btEAw_3o&Tpkt`Rx%R5S%tG^e#^{F}0!@xA@ul_1IgS3rVb|n?_>o`=>{vBBF UoOs=6@h%0vEot(c1jDqy1Eecdl>h($ literal 0 HcmV?d00001 From 974c08596b50664b419791e589c363abac7c80eb Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:43:30 +1200 Subject: [PATCH 012/176] Fix AudioSystem nullability checks for engine PR (#32233) --- Content.Client/Audio/AmbientSoundSystem.cs | 3 +++ Content.Client/Audio/ClientGlobalSoundSystem.cs | 4 ++-- Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs | 4 ++-- Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs | 2 +- Content.Client/Traits/ParacusiaSystem.cs | 2 +- Content.Client/Weather/WeatherSystem.cs | 9 +++++---- Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs | 2 +- .../Kitchen/EntitySystems/ReagentGrinderSystem.cs | 2 +- .../Mech/Equipment/EntitySystems/MechGrabberSystem.cs | 2 +- Content.Server/Salvage/SalvageSystem.Runner.cs | 4 ++-- .../Shuttles/Systems/ShuttleSystem.FasterThanLight.cs | 3 ++- 11 files changed, 21 insertions(+), 16 deletions(-) diff --git a/Content.Client/Audio/AmbientSoundSystem.cs b/Content.Client/Audio/AmbientSoundSystem.cs index ca6336b91b..b525747aa9 100644 --- a/Content.Client/Audio/AmbientSoundSystem.cs +++ b/Content.Client/Audio/AmbientSoundSystem.cs @@ -306,6 +306,9 @@ public sealed class AmbientSoundSystem : SharedAmbientSoundSystem .WithMaxDistance(comp.Range); var stream = _audio.PlayEntity(comp.Sound, Filter.Local(), uid, false, audioParams); + if (stream == null) + continue; + _playingSounds[sourceEntity] = (stream.Value.Entity, comp.Sound, key); playingCount++; diff --git a/Content.Client/Audio/ClientGlobalSoundSystem.cs b/Content.Client/Audio/ClientGlobalSoundSystem.cs index 7c77865f74..50c3971d95 100644 --- a/Content.Client/Audio/ClientGlobalSoundSystem.cs +++ b/Content.Client/Audio/ClientGlobalSoundSystem.cs @@ -67,7 +67,7 @@ public sealed class ClientGlobalSoundSystem : SharedGlobalSoundSystem if(!_adminAudioEnabled) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _adminAudio.Add(stream.Value.Entity); + _adminAudio.Add(stream?.Entity); } private void PlayStationEventMusic(StationEventMusicEvent soundEvent) @@ -76,7 +76,7 @@ public sealed class ClientGlobalSoundSystem : SharedGlobalSoundSystem if(!_eventAudioEnabled || _eventAudio.ContainsKey(soundEvent.Type)) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _eventAudio.Add(soundEvent.Type, stream.Value.Entity); + _eventAudio.Add(soundEvent.Type, stream?.Entity); } private void PlayGameSound(GameGlobalSoundEvent soundEvent) diff --git a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs index d60c978ccf..bf7ab26cba 100644 --- a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs @@ -213,9 +213,9 @@ public sealed partial class ContentAudioSystem false, AudioParams.Default.WithVolume(_musicProto.Sound.Params.Volume + _volumeSlider)); - _ambientMusicStream = strim.Value.Entity; + _ambientMusicStream = strim?.Entity; - if (_musicProto.FadeIn) + if (_musicProto.FadeIn && strim != null) { FadeIn(_ambientMusicStream, strim.Value.Component, AmbientMusicFadeTime); } diff --git a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs index 92c5b7a419..9864dbcb2a 100644 --- a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs @@ -185,7 +185,7 @@ public sealed partial class ContentAudioSystem false, _lobbySoundtrackParams.WithVolume(_lobbySoundtrackParams.Volume + SharedAudioSystem.GainToVolume(_configManager.GetCVar(CCVars.LobbyMusicVolume))) ); - if (playResult.Value.Entity == default) + if (playResult == null) { _sawmill.Warning( $"Tried to play lobby soundtrack '{{Filename}}' using {nameof(SharedAudioSystem)}.{nameof(SharedAudioSystem.PlayGlobal)} but it returned default value of EntityUid!", diff --git a/Content.Client/Traits/ParacusiaSystem.cs b/Content.Client/Traits/ParacusiaSystem.cs index 3789f24cb0..af4d8ef278 100644 --- a/Content.Client/Traits/ParacusiaSystem.cs +++ b/Content.Client/Traits/ParacusiaSystem.cs @@ -69,7 +69,7 @@ public sealed class ParacusiaSystem : SharedParacusiaSystem var newCoords = Transform(uid).Coordinates.Offset(randomOffset); // Play the sound - paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords).Value.Entity; + paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords)?.Entity; } } diff --git a/Content.Client/Weather/WeatherSystem.cs b/Content.Client/Weather/WeatherSystem.cs index a0e8a44f40..975831392c 100644 --- a/Content.Client/Weather/WeatherSystem.cs +++ b/Content.Client/Weather/WeatherSystem.cs @@ -47,10 +47,11 @@ public sealed class WeatherSystem : SharedWeatherSystem if (!Timing.IsFirstTimePredicted || weatherProto.Sound == null) return; - weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true).Value.Entity; + weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true)?.Entity; + + if (!TryComp(weather.Stream, out AudioComponent? comp)) + return; - var stream = weather.Stream.Value; - var comp = Comp(stream); var occlusion = 0f; // Work out tiles nearby to determine volume. @@ -115,7 +116,7 @@ public sealed class WeatherSystem : SharedWeatherSystem var alpha = GetPercent(weather, uid); alpha *= SharedAudioSystem.VolumeToGain(weatherProto.Sound.Params.Volume); - _audio.SetGain(stream, alpha, comp); + _audio.SetGain(weather.Stream, alpha, comp); comp.Occlusion = occlusion; } diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 9f43f76018..1ac02ac882 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -112,7 +112,7 @@ namespace Content.Server.Kitchen.EntitySystems SetAppearance(ent.Owner, MicrowaveVisualState.Cooking, microwaveComponent); microwaveComponent.PlayingStream = - _audio.PlayPvs(microwaveComponent.LoopingSound, ent, AudioParams.Default.WithLoop(true).WithMaxDistance(5)).Value.Entity; + _audio.PlayPvs(microwaveComponent.LoopingSound, ent, AudioParams.Default.WithLoop(true).WithMaxDistance(5))?.Entity; } private void OnCookStop(Entity ent, ref ComponentShutdown args) diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 71536ddf8e..12c5a30a4b 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -305,7 +305,7 @@ namespace Content.Server.Kitchen.EntitySystems active.Program = program; reagentGrinder.AudioStream = _audioSystem.PlayPvs(sound, uid, - AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier)).Value.Entity; //slightly higher pitched + AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier))?.Entity; //slightly higher pitched _userInterfaceSystem.ServerSendUiMessage(uid, ReagentGrinderUiKey.Key, new ReagentGrinderWorkStartedMessage(program)); } diff --git a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs index aa28a8063c..08120f5c29 100644 --- a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs +++ b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs @@ -155,7 +155,7 @@ public sealed class MechGrabberSystem : EntitySystem return; args.Handled = true; - component.AudioStream = _audio.PlayPvs(component.GrabSound, uid).Value.Entity; + component.AudioStream = _audio.PlayPvs(component.GrabSound, uid)?.Entity; var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.GrabDelay, new GrabberDoAfterEvent(), uid, target: target, used: uid) { BreakOnMove = true diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 23a575413e..921d966709 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -154,8 +154,8 @@ public sealed partial class SalvageSystem } else if (comp.Stream == null && remaining < audioLength) { - var audio = _audio.PlayPvs(comp.Sound, uid).Value; - comp.Stream = audio.Entity; + var audio = _audio.PlayPvs(comp.Sound, uid); + comp.Stream = audio?.Entity; _audio.SetMapAudio(audio); comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index e544c1538d..ce6a914847 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -397,7 +397,8 @@ public sealed partial class ShuttleSystem new EntityCoordinates(fromMapUid.Value, _mapSystem.GetGridPosition(entity.Owner)), true, startupAudio.Params); _audio.SetPlaybackPosition(clippedAudio, entity.Comp1.StartupTime); - clippedAudio.Value.Component.Flags |= AudioFlags.NoOcclusion; + if (clippedAudio != null) + clippedAudio.Value.Component.Flags |= AudioFlags.NoOcclusion; } // Offset the start by buffer range just to avoid overlap. From 2bceaad7854a423836e81c7b78985de1b98e9b8f Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 18 Sep 2024 04:49:37 +0300 Subject: [PATCH 013/176] Use TurfSystem.IsTileBlocked instead of TurfHelpers (#32174) * Use TurfSystem.IsTileBlocked instead of TurfHelpers * ! --- .../Engineering/EntitySystems/SpawnAfterInteractSystem.cs | 4 +++- Content.Server/Respawn/SpecialRespawnSystem.cs | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs index 8391e8faad..407f877515 100644 --- a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs +++ b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Coordinates.Helpers; using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Maps; +using Content.Shared.Physics; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.Map.Components; @@ -15,6 +16,7 @@ namespace Content.Server.Engineering.EntitySystems { [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly StackSystem _stackSystem = default!; + [Dependency] private readonly TurfSystem _turfSystem = default!; public override void Initialize() { @@ -36,7 +38,7 @@ namespace Content.Server.Engineering.EntitySystems bool IsTileClear() { - return tileRef.Tile.IsEmpty == false && !tileRef.IsBlockedTurf(true); + return tileRef.Tile.IsEmpty == false && !_turfSystem.IsTileBlocked(tileRef, CollisionGroup.MobMask); } if (!IsTileClear()) diff --git a/Content.Server/Respawn/SpecialRespawnSystem.cs b/Content.Server/Respawn/SpecialRespawnSystem.cs index 8c86449008..6d398db259 100644 --- a/Content.Server/Respawn/SpecialRespawnSystem.cs +++ b/Content.Server/Respawn/SpecialRespawnSystem.cs @@ -2,16 +2,15 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Shared.Station.Components; -using Content.Server.Station.Systems; using Content.Shared.Database; using Content.Shared.Maps; using Content.Shared.Physics; using Content.Shared.Respawn; +using Content.Shared.Station.Components; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Random; using Robust.Shared.Prototypes; +using Robust.Shared.Random; namespace Content.Server.Respawn; @@ -179,7 +178,7 @@ public sealed class SpecialRespawnSystem : SharedSpecialRespawnSystem foreach (var newTileRef in grid.GetTilesIntersecting(circle)) { - if (newTileRef.IsSpace(_tileDefinitionManager) || newTileRef.IsBlockedTurf(true) || !_atmosphere.IsTileMixtureProbablySafe(targetGrid, targetMap, mapTarget)) + if (newTileRef.IsSpace(_tileDefinitionManager) || _turf.IsTileBlocked(newTileRef, CollisionGroup.MobMask) || !_atmosphere.IsTileMixtureProbablySafe(targetGrid, targetMap, mapTarget)) continue; found = true; From 54e4cfecfe44109b0c5333d3044ded6199105459 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:32:16 +1000 Subject: [PATCH 014/176] Update submodule to 235.0.0 (#32265) --- Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 6 +++--- RobustToolbox | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 62dbf3ee10..493cfdf6cb 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -2,7 +2,7 @@ - type: entity id: AiHeld description: Components added / removed from an entity that gets inserted into an AI core. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: IntrinsicRadioReceiver - type: IntrinsicRadioTransmitter @@ -341,7 +341,7 @@ - type: entity id: StationAiBrain parent: PositronicBrain - noSpawn: true + categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: - type: Sprite @@ -382,7 +382,7 @@ id: StationAiHolo name: AI eye description: The AI's viewer. - noSpawn: true + categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: - type: NoFTL diff --git a/RobustToolbox b/RobustToolbox index 0f60ad9018..c86cb0b795 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 0f60ad9018f54f9b49da1810bbffa01e2c5975f7 +Subproject commit c86cb0b7951cc4a662c7292138c5f45d868c5f58 From a1237910c5e5919b2a3742b6628ff45d3a9982a0 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:37:35 +0200 Subject: [PATCH 015/176] Fix bagel vox box (#32208) Fix vox box on bagel --- Resources/Maps/bagel.yml | 48 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 7505068a50..d661e097c3 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -154188,12 +154188,36 @@ entities: parent: 60 - proto: WindoorSecure entities: + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3481: + - DoorStatus: DoorBolt - uid: 3269 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-46.5 parent: 60 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2538: + - DoorStatus: DoorBolt - uid: 3911 components: - type: Transform @@ -154249,30 +154273,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-9.5 parent: 60 - - uid: 2538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3481: - - DoorStatus: DoorBolt - - uid: 3481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2538: - - DoorStatus: DoorBolt - uid: 12188 components: - type: Transform From 8322b1c2d15640a2c81c4746200e857c056005d3 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 15:28:09 +0200 Subject: [PATCH 016/176] New publish workflow for Robust.Cdn (#32222) This uses multiple API requests to directly send the publish to the CDN server, no more GitHub artifacts. Faster, less moving parts. Needs Robust.Cdn 2.2.0 --- .github/workflows/publish.yml | 18 +------- Tools/publish_multi_request.py | 78 ++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 17 deletions(-) create mode 100644 Tools/publish_multi_request.py diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 16cb5017d6..d08ae13502 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,21 +41,10 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Upload build artifact - id: artifact-upload-step - uses: actions/upload-artifact@v4 - with: - name: build - path: release/*.zip - compression-level: 0 - retention-days: 0 - - name: Publish version - run: Tools/publish_github_artifact.py + run: Tools/publish_multi_request.py env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} - ARTIFACT_ID: ${{ steps.artifact-upload-step.outputs.artifact-id }} GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} - name: Publish changelog (Discord) @@ -68,8 +57,3 @@ jobs: run: Tools/actions_changelog_rss.py env: CHANGELOG_RSS_KEY: ${{ secrets.CHANGELOG_RSS_KEY }} - - - uses: geekyeggo/delete-artifact@v5 - if: always() - with: - name: build diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py new file mode 100644 index 0000000000..a63359afd6 --- /dev/null +++ b/Tools/publish_multi_request.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess +from typing import Iterable + +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +VERSION = os.environ["GITHUB_SHA"] + +RELEASE_DIR = "release" + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" +FORK_ID = "wizards" + +def main(): + session = requests.Session() + session.headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + } + + print(f"Starting publish on Robust.Cdn for version {VERSION}") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/start", json=data, headers=headers) + resp.raise_for_status() + print("Publish successfully started, adding files...") + + for file in get_files_to_publish(): + print(f"Publishing {file}") + with open(file, "rb") as f: + headers = { + "Content-Type": "application/octet-stream", + "Robust-Cdn-Publish-File": os.path.basename(file), + "Robust-Cdn-Publish-Version": VERSION + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/file", data=f, headers=headers) + + resp.raise_for_status() + + print("Successfully pushed files, finishing publish...") + + data = { + "version": VERSION + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/finish", json=data, headers=headers) + resp.raise_for_status() + + print("SUCCESS!") + + +def get_files_to_publish() -> Iterable[str]: + for file in os.listdir(RELEASE_DIR): + yield os.path.join(RELEASE_DIR, file) + + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main() From b55366cf9be9f23ec8d8f17c590cb62c57f92d54 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 16:09:25 +0200 Subject: [PATCH 017/176] chmod +x publish_multi_request.py (#32274) Fuck. --- Tools/publish_multi_request.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 Tools/publish_multi_request.py diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py old mode 100644 new mode 100755 From 489938cdb14755b93181aa0de8899363e075c5d3 Mon Sep 17 00:00:00 2001 From: AsnDen <75905158+AsnDen@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:54:00 +0300 Subject: [PATCH 018/176] ghost-role-information-silicon-rules (#32275) changes missing ghost-role-information-rules-default-silicon to ghost-role-information-silicon-rules --- Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 4 ++-- .../Devices/Syndicate_Gadgets/reinforcement_teleporter.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 493cfdf6cb..15878a4017 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -462,7 +462,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable @@ -495,7 +495,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-saboteur-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index 1a7a02e733..71f98d81c9 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -100,7 +100,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostRoleMobSpawner From ed83593948ef9863e0be8c5b900d1a116c4854ab Mon Sep 17 00:00:00 2001 From: Calecute <34964590+Calecute@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:15:34 -0300 Subject: [PATCH 019/176] Fix guidebook cakebatter recipe (#32276) Bugfix: Add 5 milk to cake batter recipe in the guidebook to correctly reflect new recipe --- Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 3eb9c2ca2f..7e5e20139b 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -13,7 +13,7 @@ WARNING: This is not an automatically generated list, things here may become out - Tortila Dough = 15 Cornmeal, 10 Water - Tofu = 5 Enzyme (Catalyst), 30 Soy Milk - Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt -- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar +- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar, 5 Milk - Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar - Butter = 30 Milk, 5 Table Salt (Catalyst) - Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk From 697f4f5ef94696f54a527103a8ee001d73161afc Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 15:16:42 +0000 Subject: [PATCH 020/176] 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 11609a0efc..ed88f5c696 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now drop food and drinks to stop consuming it. - type: Fix - id: 6891 - time: '2024-07-09T23:12:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29854 - author: Boaz1111 changes: - message: Guitars can now be worn in the suit storage slot @@ -3917,3 +3910,10 @@ id: 7390 time: '2024-09-17T22:09:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31951 +- author: Calecute + changes: + - message: Corrected cake batter recipe in guidebook + type: Fix + id: 7391 + time: '2024-09-18T15:15:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32276 From 9fad1ab14ece4ea2139dedb9a185532b8ed520e1 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:10:53 +0300 Subject: [PATCH 021/176] Wires ui tooltip localization (#32284) * Wires ui tooltip localization * Corrections after review --- Content.Client/Wires/UI/WiresMenu.cs | 9 +-------- .../Locale/en-US/wires/components/wires-component.ftl | 6 ++++++ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Content.Client/Wires/UI/WiresMenu.cs b/Content.Client/Wires/UI/WiresMenu.cs index eccc548297..77fc3accce 100644 --- a/Content.Client/Wires/UI/WiresMenu.cs +++ b/Content.Client/Wires/UI/WiresMenu.cs @@ -584,17 +584,10 @@ namespace Content.Client.Wires.UI private sealed class HelpPopup : Popup { - private const string Text = "Click on the gold contacts with a multitool in hand to pulse their wire.\n" + - "Click on the wires with a pair of wirecutters in hand to cut/mend them.\n\n" + - "The lights at the top show the state of the machine, " + - "messing with wires will probably do stuff to them.\n" + - "Wire layouts are different each round, " + - "but consistent between machines of the same type."; - public HelpPopup() { var label = new RichTextLabel(); - label.SetMessage(Text); + label.SetMessage(Loc.GetString("wires-menu-help-popup")); AddChild(new PanelContainer { StyleClasses = {ExamineSystem.StyleClassEntityTooltip}, diff --git a/Resources/Locale/en-US/wires/components/wires-component.ftl b/Resources/Locale/en-US/wires/components/wires-component.ftl index be27c270bb..e98e5c21ca 100644 --- a/Resources/Locale/en-US/wires/components/wires-component.ftl +++ b/Resources/Locale/en-US/wires/components/wires-component.ftl @@ -10,3 +10,9 @@ wires-component-ui-on-receive-message-cannot-mend-uncut-wire = You can't mend a wires-menu-name-label = Wires wires-menu-dead-beef-text = DEAD-BEEF +wires-menu-help-popup = + Click on the gold contacts with a multitool in hand to pulse their wire. + Click on the wires with a pair of wirecutters in hand to cut/mend them. + + The lights at the top show the state of the machine, messing with wires will probably do stuff to them. + Wire layouts are different each round, but consistent between machines of the same type. From 6d4177567eb921f30ffad8588a77068dc0bb96ca Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:16:47 +0300 Subject: [PATCH 022/176] Localization of the shuttle call sender (#32286) --- Content.Server/RoundEnd/RoundEndSystem.cs | 6 +++--- Resources/Locale/en-US/round-end/round-end-system.ftl | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 82bdb78816..bb5934f3f0 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -125,7 +125,7 @@ namespace Content.Server.RoundEnd return _countdownTokenSource != null; } - public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { var duration = DefaultCountdownDuration; @@ -143,7 +143,7 @@ namespace Content.Server.RoundEnd RequestRoundEnd(duration, requester, checkCooldown, text, name); } - public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { if (_gameTicker.RunLevel != GameRunLevel.InRound) return; @@ -183,7 +183,7 @@ namespace Content.Server.RoundEnd _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(text, ("time", time), ("units", Loc.GetString(units))), - name, + Loc.GetString(name), false, null, Color.Gold); diff --git a/Resources/Locale/en-US/round-end/round-end-system.ftl b/Resources/Locale/en-US/round-end/round-end-system.ftl index f86851506b..30069f7171 100644 --- a/Resources/Locale/en-US/round-end/round-end-system.ftl +++ b/Resources/Locale/en-US/round-end/round-end-system.ftl @@ -4,6 +4,7 @@ round-end-system-shuttle-called-announcement = An emergency shuttle has been sen round-end-system-shuttle-already-called-announcement = An emergency shuttle has already been sent. round-end-system-shuttle-auto-called-announcement = An automatic crew shift change shuttle has been sent. ETA: {$time} {$units}. Recall the shuttle to extend the shift. round-end-system-shuttle-recalled-announcement = The emergency shuttle has been recalled. +round-end-system-shuttle-sender-announcement = Station round-end-system-round-restart-eta-announcement = Restarting the round in {$time} {$units}... eta-units-minutes = minutes From 55b7e3ce0e5216e06db64f6d4c4408a20f48c8c3 Mon Sep 17 00:00:00 2001 From: Skarletto <122584947+Skarletto@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:51:11 -0400 Subject: [PATCH 023/176] change jamjar glasses description (#32215) nerds only please --- Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 368cefe9cb..467bbf873f 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -100,7 +100,7 @@ parent: ClothingEyesBase id: ClothingEyesGlassesJamjar name: jamjar glasses - description: Also known as Virginity Protectors. + description: These retro glasses remind you of a simpler time. components: - type: Sprite sprite: Clothing/Eyes/Glasses/jamjar.rsi From 58119bc3f769cad480b3daaf3dbc5335d8a9c1a9 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:58:58 -0700 Subject: [PATCH 024/176] Fix recycler eating materials (Salvage mains rejoice) (#32144) first commit --- Resources/Prototypes/Entities/Structures/Machines/recycler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 8bbbad6c0d..f62923fe2a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -85,6 +85,7 @@ volume: -3 cutOffSound: false - type: MaterialStorage + insertOnInteract: false - type: Conveyor - type: Rotatable - type: Repairable From 64aab9e41dbef39cd1100dc5eca02e6167fc6572 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 22:00:05 +0000 Subject: [PATCH 025/176] 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 ed88f5c696..9879e7f9a3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Guitars can now be worn in the suit storage slot - type: Add - id: 6892 - time: '2024-07-09T23:28:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29048 - author: Winkarst-cpu changes: - message: Fixed popup spam when trying to open borg's UI while the borg is locked. @@ -3917,3 +3910,10 @@ id: 7391 time: '2024-09-18T15:15:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32276 +- author: Beck Thompson + changes: + - message: Recycler no longer allows basic materials to be inserted into it. + type: Fix + id: 7392 + time: '2024-09-18T21:58:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32144 From ba24ebfb4f9e887d08b885424241e3365ff43104 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Thu, 19 Sep 2024 01:21:53 +0300 Subject: [PATCH 026/176] Localization cooldown/remaining string in alerts (#32282) Cooldown localization --- Content.Client/Actions/UI/ActionAlertTooltip.cs | 2 +- Resources/Locale/en-US/actions/ui/actionslot.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index f805f6643d..2425cdefb9 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -101,7 +101,7 @@ namespace Content.Client.Actions.UI { var duration = Cooldown.Value.End - Cooldown.Value.Start; - if (!FormattedMessage.TryFromMarkup($"[color=#a10505]{(int) duration.TotalSeconds} sec cooldown ({(int) timeLeft.TotalSeconds + 1} sec remaining)[/color]", out var markup)) + if (!FormattedMessage.TryFromMarkup(Loc.GetString("ui-actionslot-duration", ("duration", (int)duration.TotalSeconds), ("timeLeft", (int)timeLeft.TotalSeconds + 1)), out var markup)) return; _cooldownLabel.SetMessage(markup); diff --git a/Resources/Locale/en-US/actions/ui/actionslot.ftl b/Resources/Locale/en-US/actions/ui/actionslot.ftl index 332054f10e..c0deaad248 100644 --- a/Resources/Locale/en-US/actions/ui/actionslot.ftl +++ b/Resources/Locale/en-US/actions/ui/actionslot.ftl @@ -1,2 +1,2 @@ ui-actionslot-charges = Uses left: {$charges} - +ui-actionslot-duration = [color=#a10505] {$duration} sec cooldown ({$timeLeft} sec remaining)[/color] From 8a924c84ae57dfe18fe0c27f995b4ea16be6a527 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:36:44 +0000 Subject: [PATCH 027/176] add interaction success/failure events (#32216) * add interaction success/failure events * pro --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Interaction/Events/InteractionFailureEvent.cs | 7 +++++++ .../Interaction/Events/InteractionSuccessEvent.cs | 7 +++++++ Content.Shared/Interaction/InteractionPopupSystem.cs | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 Content.Shared/Interaction/Events/InteractionFailureEvent.cs create mode 100644 Content.Shared/Interaction/Events/InteractionSuccessEvent.cs diff --git a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs new file mode 100644 index 0000000000..a820048104 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when failing to pet/hug something. +/// +[ByRefEvent] +public readonly record struct InteractionFailureEvent(EntityUid User); diff --git a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs new file mode 100644 index 0000000000..da4f9e43d7 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when successfully petting/hugging something. +/// +[ByRefEvent] +public readonly record struct InteractionSuccessEvent(EntityUid User); diff --git a/Content.Shared/Interaction/InteractionPopupSystem.cs b/Content.Shared/Interaction/InteractionPopupSystem.cs index 2a742d4211..20c079dfd8 100644 --- a/Content.Shared/Interaction/InteractionPopupSystem.cs +++ b/Content.Shared/Interaction/InteractionPopupSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Bed.Sleep; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Components; +using Content.Shared.Interaction.Events; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; @@ -100,6 +101,9 @@ public sealed class InteractionPopupSystem : EntitySystem if (component.InteractSuccessSpawn != null) Spawn(component.InteractSuccessSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionSuccessEvent(user); + RaiseLocalEvent(target, ref ev); } else { @@ -111,6 +115,9 @@ public sealed class InteractionPopupSystem : EntitySystem if (component.InteractFailureSpawn != null) Spawn(component.InteractFailureSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionFailureEvent(user); + RaiseLocalEvent(target, ref ev); } if (!string.IsNullOrEmpty(component.MessagePerceivedByOthers)) From 2c9a3020ab866510f2ae19a16707f27e1e239288 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:00:48 +0000 Subject: [PATCH 028/176] make epinephrine adrenaline (#32076) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Reagents/medicine.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 4dcef67f77..105ae11048 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -359,6 +359,10 @@ key: KnockedDown time: 0.75 type: Remove + - !type:GenericStatusEffect + key: Adrenaline # Guess what epinephrine is... + component: IgnoreSlowOnDamage + time: 5 # lingers less than hivemind reagent to give it a niche - type: reagent id: Hyronalin From a8686b359779c3e2b22318a2a9234b02b489d9aa Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 23:01:54 +0000 Subject: [PATCH 029/176] 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 9879e7f9a3..58776aa93c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Fixed popup spam when trying to open borg's UI while the borg is locked. - type: Fix - id: 6893 - time: '2024-07-09T23:48:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29861 - author: Lokachop changes: - message: Scarves now count as warm clothing for the warm clothing cargo bounty. @@ -3917,3 +3910,10 @@ id: 7392 time: '2024-09-18T21:58:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32144 +- author: deltanedas + changes: + - message: Epinephrine now adds Adrenaline, because it is. + type: Tweak + id: 7393 + time: '2024-09-18T23:00:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32076 From d4a5bc8d6be87a90ee70db4530efa1a0864f177b Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:26 -0700 Subject: [PATCH 030/176] Fix unbuckling others when clicking on the strap entity (#29998) * Add failing unbuckle InteractHand test * Skip trybuckle if strap doesn't have space * Unbuckle others not just user * Fix test failing due to delay * Change to raise event instead of calling OnInteractHand * Add test for buckle and unbuckle on InteractHand * Add tick delay * Remove unneeded tick delay and clean up * Comment code * Cleanup * Swap to fastest checks first * Fix reading empty sequence when there are no buckled entities --- .../Tests/Buckle/BuckleTest.Interact.cs | 108 ++++++++++++++++++ .../Tests/Buckle/BuckleTest.cs | 2 +- .../Buckle/SharedBuckleSystem.Interaction.cs | 26 ++++- 3 files changed, 129 insertions(+), 7 deletions(-) create mode 100644 Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs new file mode 100644 index 0000000000..d9cce764ab --- /dev/null +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs @@ -0,0 +1,108 @@ +using Content.Shared.Buckle; +using Content.Shared.Buckle.Components; +using Content.Shared.Interaction; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Buckle; + +public sealed partial class BuckleTest +{ + [Test] + public async Task BuckleInteractUnbuckleOther() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + var buckleSystem = entMan.System(); + + EntityUid user = default; + EntityUid victim = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + victim = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(victim, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle victim to chair + Assert.That(buckleSystem.TryBuckle(victim, user, chair, buckle)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(victim), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle victim + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(victim)); + }); + }); + + await pair.CleanReturnAsync(); + } + + [Test] + public async Task BuckleInteractBuckleUnbuckleSelf() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + + EntityUid user = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(user, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle user to chair + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(user), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(user)); + }); + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs index 156f42aac3..1b31fe38c2 100644 --- a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs @@ -15,7 +15,7 @@ namespace Content.IntegrationTests.Tests.Buckle [TestFixture] [TestOf(typeof(BuckleComponent))] [TestOf(typeof(StrapComponent))] - public sealed class BuckleTest + public sealed partial class BuckleTest { private const string BuckleDummyId = "BuckleDummy"; private const string StrapDummyId = "StrapDummy"; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs index 7677e800fe..1a15e52a3c 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs @@ -1,5 +1,5 @@ +using System.Linq; using Content.Shared.Buckle.Components; -using Content.Shared.Cuffs.Components; using Content.Shared.DoAfter; using Content.Shared.DragDrop; using Content.Shared.IdentityManagement; @@ -84,15 +84,29 @@ public abstract partial class SharedBuckleSystem if (!TryComp(args.User, out BuckleComponent? buckle)) return; - if (buckle.BuckledTo == null && component.BuckleOnInteractHand) + // Buckle self + if (buckle.BuckledTo == null && component.BuckleOnInteractHand && StrapHasSpace(uid, buckle, component)) + { TryBuckle(args.User, args.User, uid, buckle, popup: true); - else if (buckle.BuckledTo == uid) - TryUnbuckle(args.User, args.User, buckle, popup: true); - else + args.Handled = true; return; + } + + // Unbuckle self + if (buckle.BuckledTo == uid && TryUnbuckle(args.User, args.User, buckle, popup: true)) + { + args.Handled = true; + return; + } + + // Unbuckle others + if (component.BuckledEntities.TryFirstOrNull(out var buckled) && TryUnbuckle(buckled.Value, args.User)) + { + args.Handled = true; + return; + } // TODO BUCKLE add out bool for whether a pop-up was generated or not. - args.Handled = true; } private void OnBuckleInteractHand(Entity ent, ref InteractHandEvent args) From 7ceb2d250799474c6c627121a0cfde7bf90379d4 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:53 -0700 Subject: [PATCH 031/176] Add a method to get the first available ItemSlot (#29846) * Add a method to get the first available ItemSlot * Make TryInsertEmpty use TryGetAvailableSlot * Add param doc comments --- .../Containers/ItemSlot/ItemSlotsSystem.cs | 69 ++++++++++++++----- 1 file changed, 53 insertions(+), 16 deletions(-) diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index f41fa2b22d..f25273f403 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -359,39 +359,76 @@ namespace Content.Shared.Containers.ItemSlots /// Useful for predicted interactions /// /// False if failed to insert item - public bool TryInsertEmpty(Entity ent, EntityUid item, EntityUid? user, bool excludeUserAudio = false) + public bool TryInsertEmpty(Entity ent, + EntityUid item, + EntityUid? user, + bool excludeUserAudio = false) { + if (!Resolve(ent, ref ent.Comp, false)) + return false; + + TryComp(user, out HandsComponent? handsComp); + + if (!TryGetAvailableSlot(ent, + item, + user == null ? null : (user.Value, handsComp), + out var itemSlot, + emptyOnly: true)) + return false; + + if (user != null && !_handsSystem.TryDrop(user.Value, item, handsComp: handsComp)) + return false; + + Insert(ent, itemSlot, item, user, excludeUserAudio: excludeUserAudio); + return true; + } + + /// + /// Tries to get any slot that the can be inserted into. + /// + /// Entity that is being inserted into. + /// Entity being inserted into . + /// Entity inserting into . + /// The ItemSlot on to insert into. + /// True only returns slots that are empty. + /// False returns any slot that is able to receive . + /// True when a slot is found. Otherwise, false. + public bool TryGetAvailableSlot(Entity ent, + EntityUid item, + Entity? userEnt, + [NotNullWhen(true)] out ItemSlot? itemSlot, + bool emptyOnly = false) + { + itemSlot = null; + + if (userEnt is { } user + && Resolve(user, ref user.Comp) + && _handsSystem.IsHolding(user, item)) + { + if (!_handsSystem.CanDrop(user, item, user.Comp)) + return false; + } + if (!Resolve(ent, ref ent.Comp, false)) return false; var slots = new List(); foreach (var slot in ent.Comp.Slots.Values) { - if (slot.ContainerSlot?.ContainedEntity != null) + if (emptyOnly && slot.ContainerSlot?.ContainedEntity != null) continue; - if (CanInsert(ent, item, user, slot)) + if (CanInsert(ent, item, userEnt, slot)) slots.Add(slot); } if (slots.Count == 0) return false; - if (user != null && _handsSystem.IsHolding(user.Value, item)) - { - if (!_handsSystem.TryDrop(user.Value, item)) - return false; - } - slots.Sort(SortEmpty); - foreach (var slot in slots) - { - if (TryInsert(ent, slot, item, user, excludeUserAudio: excludeUserAudio)) - return true; - } - - return false; + itemSlot = slots[0]; + return true; } private static int SortEmpty(ItemSlot a, ItemSlot b) From e6e166405d1008db374363d41d78459330d9f19f Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 23:56:32 +0000 Subject: [PATCH 032/176] 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 58776aa93c..8190ecd8fe 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Lokachop - changes: - - message: Scarves now count as warm clothing for the warm clothing cargo bounty. - type: Tweak - id: 6894 - time: '2024-07-10T05:26:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29779 - author: Aquif changes: - message: It is now possible to "lock" admin faxes such that they cannot be edited @@ -3917,3 +3910,11 @@ id: 7393 time: '2024-09-18T23:00:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32076 +- author: ShadowCommander + changes: + - message: Fixed clicking on chairs and beds with an entity buckled to them not + unbuckling them. + type: Fix + id: 7394 + time: '2024-09-18T23:55:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29998 From 84062da1289b760ee8714239322ae07b74e6187c Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:58:10 +0000 Subject: [PATCH 033/176] let FlashArea be called from shared (#30343) * let FlashArea be called from shared * untroll --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth --- Content.Client/Flash/FlashOverlay.cs | 4 +++- Content.Server/Flash/FlashSystem.cs | 2 +- Content.Shared/Flash/SharedFlashSystem.cs | 13 +++++++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Content.Client/Flash/FlashOverlay.cs b/Content.Client/Flash/FlashOverlay.cs index 046be2aa62..8e41c382dd 100644 --- a/Content.Client/Flash/FlashOverlay.cs +++ b/Content.Client/Flash/FlashOverlay.cs @@ -16,6 +16,7 @@ namespace Content.Client.Flash [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _timing = default!; + private readonly SharedFlashSystem _flash; private readonly StatusEffectsSystem _statusSys; public override OverlaySpace Space => OverlaySpace.WorldSpace; @@ -27,6 +28,7 @@ namespace Content.Client.Flash { IoCManager.InjectDependencies(this); _shader = _prototypeManager.Index("FlashedEffect").InstanceUnique(); + _flash = _entityManager.System(); _statusSys = _entityManager.System(); } @@ -41,7 +43,7 @@ namespace Content.Client.Flash || !_entityManager.TryGetComponent(playerEntity, out var status)) return; - if (!_statusSys.TryGetTime(playerEntity.Value, SharedFlashSystem.FlashedKey, out var time, status)) + if (!_statusSys.TryGetTime(playerEntity.Value, _flash.FlashedKey, out var time, status)) return; var curTime = _timing.CurTime; diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index ccb58e94f8..fb449a372c 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -152,7 +152,7 @@ namespace Content.Server.Flash } } - public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) + public override void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { var transform = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index f83f02a310..b778809887 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -1,10 +1,15 @@ +using Content.Shared.Flash.Components; using Content.Shared.StatusEffect; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; -namespace Content.Shared.Flash +namespace Content.Shared.Flash; + +public abstract class SharedFlashSystem : EntitySystem { - public abstract class SharedFlashSystem : EntitySystem + public ProtoId FlashedKey = "Flashed"; + + public virtual void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - [ValidatePrototypeId] - public const string FlashedKey = "Flashed"; } } From 1c839da60496f4a3171c7f959a88effe4aeff5a8 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:01:40 +0000 Subject: [PATCH 034/176] move TriggerExplosion to shared (#30227) * move component to shared * add fake systems * update server explosion system and remove duplicate transform query --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Client/Explosion/ExplosionSystem.cs | 5 +-- .../Behaviors/SolutionExplosionBehavior.cs | 2 +- .../EntitySystems/ExplosionSystem.Airtight.cs | 3 +- .../EntitySystems/ExplosionSystem.CVars.cs | 4 +-- .../EntitySystems/ExplosionSystem.GridMap.cs | 2 +- .../ExplosionSystem.Processing.cs | 7 ++-- .../EntitySystems/ExplosionSystem.TileFill.cs | 4 +-- .../EntitySystems/ExplosionSystem.Visuals.cs | 3 +- .../EntitySystems/ExplosionSystem.cs | 15 +++----- .../Components/ExplosiveComponent.cs | 35 +++++++------------ .../EntitySystems/SharedExplosionSystem.cs | 25 ++++++++++--- 11 files changed, 52 insertions(+), 53 deletions(-) rename {Content.Server => Content.Shared}/Explosion/Components/ExplosiveComponent.cs (76%) diff --git a/Content.Client/Explosion/ExplosionSystem.cs b/Content.Client/Explosion/ExplosionSystem.cs index a2ed2d50e0..692782ded4 100644 --- a/Content.Client/Explosion/ExplosionSystem.cs +++ b/Content.Client/Explosion/ExplosionSystem.cs @@ -2,7 +2,4 @@ using Content.Shared.Explosion.EntitySystems; namespace Content.Client.Explosion.EntitySystems; -public sealed class ExplosionSystem : SharedExplosionSystem -{ - -} +public sealed class ExplosionSystem : SharedExplosionSystem; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs index 5166aaccab..08c7c8f068 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs @@ -1,4 +1,4 @@ -using Content.Server.Explosion.Components; +using Content.Shared.Explosion.Components; using JetBrains.Annotations; namespace Content.Server.Destructible.Thresholds.Behaviors diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs index 4b59c8f1c4..6fa553bc8b 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs @@ -6,9 +6,10 @@ using Content.Shared.Explosion; using Content.Shared.Explosion.EntitySystems; using Content.Shared.FixedPoint; using Robust.Shared.Map.Components; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly DestructibleSystem _destructibleSystem = default!; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs index ce98f89de7..5af06ef936 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs @@ -1,8 +1,8 @@ using Content.Shared.CCVar; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public int MaxIterations { get; private set; } public int MaxArea { get; private set; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index 75bb606441..29477c16b2 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -12,7 +12,7 @@ namespace Content.Server.Explosion.EntitySystems; // A good portion of it is focused around keeping track of what tile-indices on a grid correspond to tiles that border // space. AFAIK no other system currently needs to track these "edge-tiles". If they do, this should probably be a // property of the grid itself? -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// Set of tiles of each grid that are directly adjacent to space, along with the directions that face space. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 6d0cbcf279..97d52e436a 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -22,9 +22,10 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly FlammableSystem _flammableSystem = default!; @@ -218,7 +219,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem // get the entities on a tile. Note that we cannot process them directly, or we get // enumerator-changed-while-enumerating errors. List<(EntityUid, TransformComponent)> list = new(); - var state = (list, processed, _transformQuery); + var state = (list, processed, EntityManager.TransformQuery); // get entities: lookup.DynamicTree.QueryAabb(ref state, GridQueryCallback, gridBox, true); @@ -317,7 +318,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem var gridBox = Box2.FromDimensions(tile * DefaultTileSize, new Vector2(DefaultTileSize, DefaultTileSize)); var worldBox = spaceMatrix.TransformBox(gridBox); var list = new List<(EntityUid, TransformComponent)>(); - var state = (list, processed, invSpaceMatrix, lookup.Owner, _transformQuery, gridBox, _transformSystem); + var state = (list, processed, invSpaceMatrix, lookup.Owner, EntityManager.TransformQuery, gridBox, _transformSystem); // get entities: lookup.DynamicTree.QueryAabb(ref state, SpaceQueryCallback, worldBox, true); diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 8c3229e06e..7b73490d94 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -7,13 +7,13 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; // This partial part of the explosion system has all of the functions used to create the actual explosion map. // I.e, to get the sets of tiles & intensity values that describe an explosion. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// This is the main explosion generating function. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 219dba4bde..57323e4de7 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -5,10 +5,11 @@ using Content.Shared.Explosion.EntitySystems; using Robust.Server.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Map; + namespace Content.Server.Explosion.EntitySystems; // This part of the system handled send visual / overlay data to clients. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public void InitVisuals() { diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index cd0ca1c22e..818953ed4b 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Explosion; +using Content.Shared.Explosion.Components; +using Content.Shared.Explosion.EntitySystems; using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.Projectiles; @@ -53,7 +55,6 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly SharedMapSystem _map = default!; - private EntityQuery _transformQuery; private EntityQuery _flammableQuery; private EntityQuery _physicsQuery; private EntityQuery _projectileQuery; @@ -103,7 +104,6 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem InitAirtightMap(); InitVisuals(); - _transformQuery = GetEntityQuery(); _flammableQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _projectileQuery = GetEntityQuery(); @@ -141,15 +141,8 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem args.DamageCoefficient *= modifier; } - /// - /// Given an entity with an explosive component, spawn the appropriate explosion. - /// - /// - /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not - /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a - /// solution in a reaction). - /// - public void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + /// + public override void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) { // log missing: false, because some entities (e.g. liquid tanks) attempt to trigger explosions when damaged, // but may not actually be explosive. diff --git a/Content.Server/Explosion/Components/ExplosiveComponent.cs b/Content.Shared/Explosion/Components/ExplosiveComponent.cs similarity index 76% rename from Content.Server/Explosion/Components/ExplosiveComponent.cs rename to Content.Shared/Explosion/Components/ExplosiveComponent.cs index 2b27a89d9d..bab7f5a7d6 100644 --- a/Content.Server/Explosion/Components/ExplosiveComponent.cs +++ b/Content.Shared/Explosion/Components/ExplosiveComponent.cs @@ -1,8 +1,7 @@ -using Content.Server.Explosion.EntitySystems; -using Content.Shared.Explosion; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Shared.Explosion.EntitySystems; +using Robust.Shared.Prototypes; -namespace Content.Server.Explosion.Components; +namespace Content.Shared.Explosion.Components; /// /// Specifies an explosion that can be spawned by this entity. The explosion itself is spawned via -[RegisterComponent] +[RegisterComponent, Access(typeof(SharedExplosionSystem))] public sealed partial class ExplosiveComponent : Component { - /// /// The explosion prototype. This determines the damage types, the tile-break chance, and some visual /// information (e.g., the light that the explosion gives off). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("explosionType", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ExplosionType = default!; + [DataField(required: true)] + public ProtoId ExplosionType = default!; /// /// The maximum intensity the explosion can have on a single tile. This limits the maximum damage and tile /// break chance the explosion can achieve at any given location. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxIntensity")] + [DataField] public float MaxIntensity = 4; /// /// How quickly the intensity drops off as you move away from the epicenter. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("intensitySlope")] + [DataField] public float IntensitySlope = 1; /// @@ -47,38 +42,34 @@ public sealed partial class ExplosiveComponent : Component /// This number can be overridden by passing optional argument to . /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("totalIntensity")] + [DataField] public float TotalIntensity = 10; /// /// Factor used to scale the explosion intensity when calculating tile break chances. Allows for stronger /// explosives that don't space tiles, without having to create a new explosion-type prototype. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("tileBreakScale")] + [DataField] public float TileBreakScale = 1f; /// /// Maximum number of times that an explosive can break a tile. Currently, for normal space stations breaking a /// tile twice will generally result in a vacuum. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxTileBreak")] + [DataField] public int MaxTileBreak = int.MaxValue; /// /// Whether this explosive should be able to create a vacuum by breaking tiles. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canCreateVacuum")] + [DataField] public bool CanCreateVacuum = true; /// /// An override for whether or not the entity should be deleted after it explodes. /// If null, the system calling the explode method handles it. /// - [DataField("deleteAfterExplosion")] + [DataField] public bool? DeleteAfterExplosion; /// diff --git a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs index 1d926dd0b6..f298255807 100644 --- a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs +++ b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs @@ -1,25 +1,40 @@ -using Content.Shared.Explosion.Components; using Content.Shared.Armor; +using Content.Shared.Explosion.Components; namespace Content.Shared.Explosion.EntitySystems; +/// +/// Lets code in shared trigger explosions and handles explosion resistance examining. +/// All processing is still done clientside. +/// public abstract class SharedExplosionSystem : EntitySystem { - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnArmorExamine); } - private void OnArmorExamine(EntityUid uid, ExplosionResistanceComponent component, ref ArmorExamineEvent args) + private void OnArmorExamine(Entity ent, ref ArmorExamineEvent args) { - var value = MathF.Round((1f - component.DamageCoefficient) * 100, 1); + var value = MathF.Round((1f - ent.Comp.DamageCoefficient) * 100, 1); if (value == 0) return; args.Msg.PushNewline(); - args.Msg.AddMarkupOrThrow(Loc.GetString(component.Examine, ("value", value))); + args.Msg.AddMarkupOrThrow(Loc.GetString(ent.Comp.Examine, ("value", value))); + } + + /// + /// Given an entity with an explosive component, spawn the appropriate explosion. + /// + /// + /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not + /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a + /// solution in a reaction). + /// + public virtual void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + { } } From 4f77709eed9b5012e58303820eafb0242a0f36fd Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:02:27 +1000 Subject: [PATCH 035/176] Add flip button to mapping state (#30636) --- Content.Client/Mapping/MappingScreen.xaml | 1 + Content.Client/Mapping/MappingScreen.xaml.cs | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/Content.Client/Mapping/MappingScreen.xaml b/Content.Client/Mapping/MappingScreen.xaml index b641360847..9cc3e734f0 100644 --- a/Content.Client/Mapping/MappingScreen.xaml +++ b/Content.Client/Mapping/MappingScreen.xaml @@ -78,6 +78,7 @@ ToolTip="Pick (Hold 5)" /> + diff --git a/Content.Client/Mapping/MappingScreen.xaml.cs b/Content.Client/Mapping/MappingScreen.xaml.cs index b2ad2fd83f..46c0e51fad 100644 --- a/Content.Client/Mapping/MappingScreen.xaml.cs +++ b/Content.Client/Mapping/MappingScreen.xaml.cs @@ -96,6 +96,22 @@ public sealed partial class MappingScreen : InGameScreen Pick.Texture.TexturePath = "/Textures/Interface/eyedropper.svg.png"; Delete.Texture.TexturePath = "/Textures/Interface/eraser.svg.png"; + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + Flip.OnPressed += args => FlipSides(); + } + + public void FlipSides() + { + ScreenContainer.Flip(); + + if (SpawnContainer.GetPositionInParent() == 0) + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + } + else + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; + } } private void OnDecalColorPicked(Color color) From 6958789f37db66d54a8c68f6d04d997c8f1650ab Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:08:37 -0700 Subject: [PATCH 036/176] Give prototype refactor (#29697) * Update GivePrototype * File scoped namespace * Change to EntProtoId instead of ProtoId<> for better validation --- .../Construction/Completions/GivePrototype.cs | 56 ++++++++++--------- 1 file changed, 31 insertions(+), 25 deletions(-) diff --git a/Content.Server/Construction/Completions/GivePrototype.cs b/Content.Server/Construction/Completions/GivePrototype.cs index f45bd5ba10..f05feb70c0 100644 --- a/Content.Server/Construction/Completions/GivePrototype.cs +++ b/Content.Server/Construction/Completions/GivePrototype.cs @@ -1,44 +1,50 @@ using Content.Server.Stack; using Content.Shared.Construction; +using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Prototypes; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Construction.Completions +namespace Content.Server.Construction.Completions; + +[UsedImplicitly] +[DataDefinition] +public sealed partial class GivePrototype : IGraphAction { - [UsedImplicitly] - [DataDefinition] - public sealed partial class GivePrototype : IGraphAction - { - [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype { get; private set; } = string.Empty; - [DataField("amount")] - public int Amount { get; private set; } = 1; + [DataField] + public EntProtoId Prototype { get; private set; } = string.Empty; - public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + [DataField] + public int Amount { get; private set; } = 1; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + { + if (string.IsNullOrEmpty(Prototype)) + return; + + if (EntityPrototypeHelpers.HasComponent(Prototype)) { - if (string.IsNullOrEmpty(Prototype)) + var stackSystem = entityManager.EntitySysManager.GetEntitySystem(); + var stacks = stackSystem.SpawnMultiple(Prototype, Amount, userUid ?? uid); + + if (userUid is null || !entityManager.TryGetComponent(userUid, out HandsComponent? handsComp)) return; - var coordinates = entityManager.GetComponent(userUid ?? uid).Coordinates; - - if (EntityPrototypeHelpers.HasComponent(Prototype)) + foreach (var item in stacks) { - var stackEnt = entityManager.SpawnEntity(Prototype, coordinates); - var stack = entityManager.GetComponent(stackEnt); - entityManager.EntitySysManager.GetEntitySystem().SetCount(stackEnt, Amount, stack); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, stackEnt); + stackSystem.TryMergeToHands(item, userUid.Value, hands: handsComp); } - else + } + else + { + var handsSystem = entityManager.EntitySysManager.GetEntitySystem(); + var handsComp = userUid is not null ? entityManager.GetComponent(userUid.Value) : null; + for (var i = 0; i < Amount; i++) { - for (var i = 0; i < Amount; i++) - { - var item = entityManager.SpawnEntity(Prototype, coordinates); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, item); - } + var item = entityManager.SpawnNextToOrDrop(Prototype, userUid ?? uid); + handsSystem.PickupOrDrop(userUid, item, handsComp: handsComp); } } } From cc7e5e01508b6ac79d6e85b18ec4ec7bc839ec71 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Thu, 19 Sep 2024 02:14:29 +0200 Subject: [PATCH 037/176] Allow containment field generators to be enabled on mapinit (#31158) * Initial commit * review fix --- .../EntitySystems/ContainmentFieldGeneratorSystem.cs | 7 +++++++ .../Components/ContainmentFieldGeneratorComponent.cs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index 05262f2999..6d97c8ccb3 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -37,6 +37,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem SubscribeLocalEvent(OnUnanchorAttempt); SubscribeLocalEvent(OnComponentRemoved); SubscribeLocalEvent(PreventBreach); + SubscribeLocalEvent(OnMapInit); } public override void Update(float frameTime) @@ -61,6 +62,12 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem #region Events + private void OnMapInit(Entity generator, ref MapInitEvent args) + { + if (generator.Comp.Enabled) + ChangeFieldVisualizer(generator); + } + /// /// A generator receives power from a source colliding with it. /// diff --git a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs index 938b34f354..6b09edfa1f 100644 --- a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs +++ b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs @@ -79,7 +79,7 @@ public sealed partial class ContainmentFieldGeneratorComponent : Component /// /// Is the generator toggled on? /// - [ViewVariables] + [DataField] public bool Enabled; /// From c2a201d998830b36fa525c5ee9bb1375bf41d732 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 19 Sep 2024 03:23:50 +0300 Subject: [PATCH 038/176] Make fire leave burnt decals on the tiles (#31939) * Make fire leave burnt decals on the tiles * License * Yes * Update * Spelling error * Prototypes reload support * To array --- .../EntitySystems/AtmosphereSystem.Hotspot.cs | 33 +++++++++++++++--- .../Atmos/EntitySystems/AtmosphereSystem.cs | 19 ++++++++++ Resources/Prototypes/Decals/burnt.yml | 31 ++++++++++++++++ .../Textures/Decals/burnt.rsi/burnt1.png | Bin 0 -> 896 bytes .../Textures/Decals/burnt.rsi/burnt2.png | Bin 0 -> 938 bytes .../Textures/Decals/burnt.rsi/burnt3.png | Bin 0 -> 928 bytes .../Textures/Decals/burnt.rsi/burnt4.png | Bin 0 -> 1041 bytes Resources/Textures/Decals/burnt.rsi/meta.json | 27 ++++++++++++++ 8 files changed, 106 insertions(+), 4 deletions(-) create mode 100644 Resources/Prototypes/Decals/burnt.yml create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt1.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt2.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt3.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt4.png create mode 100644 Resources/Textures/Decals/burnt.rsi/meta.json diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index db95223733..a03f27b561 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -1,19 +1,21 @@ using Content.Server.Atmos.Components; -using Content.Server.Atmos.Reactions; +using Content.Server.Decals; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Reactions; -using Content.Shared.Audio; using Content.Shared.Database; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Server.Atmos.EntitySystems { public sealed partial class AtmosphereSystem { + [Dependency] private readonly DecalSystem _decalSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + private const int HotspotSoundCooldownCycles = 200; private int _hotspotSoundCooldown = 0; @@ -56,7 +58,30 @@ namespace Content.Server.Atmos.EntitySystems if (tile.Hotspot.Bypassing) { tile.Hotspot.State = 3; - // TODO ATMOS: Burn tile here + + var gridUid = ent.Owner; + var tilePos = tile.GridIndices; + + // Get the existing decals on the tile + var tileDecals = _decalSystem.GetDecalsInRange(gridUid, tilePos); + + // Count the burnt decals on the tile + var tileBurntDecals = 0; + + foreach (var set in tileDecals) + { + if (Array.IndexOf(_burntDecals, set.Decal.Id) == -1) + continue; + + tileBurntDecals++; + + if (tileBurntDecals > 4) + break; + } + + // Add a random burned decal to the tile only if there are less than 4 of them + if (tileBurntDecals < 4) + _decalSystem.TryAddDecal(_burntDecals[_random.Next(_burntDecals.Length)], new EntityCoordinates(gridUid, tilePos), out _, cleanable: true); if (tile.Air.Temperature > Atmospherics.FireMinimumTemperatureToSpread) { diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index 44bfa4cc10..13d8f73dc5 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Body.Systems; using Content.Server.Fluids.EntitySystems; using Content.Server.NodeContainer.EntitySystems; using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Decals; using Content.Shared.Doors.Components; using Content.Shared.Maps; using JetBrains.Annotations; @@ -12,7 +13,9 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using System.Linq; namespace Content.Server.Atmos.EntitySystems; @@ -36,6 +39,7 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] public readonly PuddleSystem Puddle = default!; private const float ExposedUpdateDelay = 1f; @@ -47,6 +51,8 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem private EntityQuery _firelockQuery; private HashSet _entSet = new(); + private string[] _burntDecals = []; + public override void Initialize() { base.Initialize(); @@ -66,7 +72,9 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem _firelockQuery = GetEntityQuery(); SubscribeLocalEvent(OnTileChanged); + SubscribeLocalEvent(OnPrototypesReloaded); + CacheDecals(); } public override void Shutdown() @@ -81,6 +89,12 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem InvalidateTile(ev.NewTile.GridUid, ev.NewTile.GridIndices); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheDecals(); + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -107,4 +121,9 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem _exposedTimer -= ExposedUpdateDelay; } + + private void CacheDecals() + { + _burntDecals = _prototypeManager.EnumeratePrototypes().Where(x => x.Tags.Contains("burnt")).Select(x => x.ID).ToArray(); + } } diff --git a/Resources/Prototypes/Decals/burnt.yml b/Resources/Prototypes/Decals/burnt.yml new file mode 100644 index 0000000000..d9d500e1aa --- /dev/null +++ b/Resources/Prototypes/Decals/burnt.yml @@ -0,0 +1,31 @@ +- type: decal + id: burnt1 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt1 + +- type: decal + id: burnt2 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt2 + +- type: decal + id: burnt3 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt3 + +- type: decal + id: burnt4 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt4 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt1.png b/Resources/Textures/Decals/burnt.rsi/burnt1.png new file mode 100644 index 0000000000000000000000000000000000000000..3fcb7a4949b5bd561e68d784d47d9de20a5411d2 GIT binary patch literal 896 zcmV-`1AqL9P)_`sikSPhHe~3@fwDqi`!27YaPdN z#XAQ{Mbb&qIqVecW=VHRx3Ec4r4L^n0fb{a_q`;oVHMzdNk>T+Sc&%@lCF||0?2Ft z@TYMc*YYNKA9lck1x~sM{t=mf#{D6J5x9NYmwnV>7*yT_FA<=R=W95g?Z)O zXSr#2Y=Ql?;o%@8o6DVb-DIUOt;rA7Zqkdr_f#YackO{-WHbkhbz#xIZKXZvnvEm5 zqy=1*J0rIo$w#m!1hcO>t!)7E3@{KcA~AFJ1mfTv&z_QJ?G^KYLr)tTSp~V56pmai zijU>lBbsI)jXMU>N%|82%xnYVQR|G~sBqFV0d4O6tE9hS-})Wbk4UT*l<1YPa0dME z%4dp2&wEZnHs9=N?ya7z8ydklV$1s3jzCLe6r|b5_i)Oi)aKYqGeBI^ZuBez`a(2a-$50Ok=tVpxs0ZTk;p WW37K`!OrIZ0000C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt2.png b/Resources/Textures/Decals/burnt.rsi/burnt2.png new file mode 100644 index 0000000000000000000000000000000000000000..01f8f220b2ddae1a13fac2b816531109a5b848d9 GIT binary patch literal 938 zcmV;b16BNqP)18A2vnpw(ar z1~qsht;3vCD6w`Ao}uGYnUsA1aPJrnOd)6t3!DMiI$6ER(;`s9#u7N6pd4cTwdf`G z2_S*!hJ`)wbZg_0F*v6MHg>;GCHx+Tzwt=JH}-T(U;23XN71bm6J#p9IFTkcm5gqK z^tAwduWz%!Cu7Bw`%{PCis#BPcvk^T9Mi6`N4!4&RvUe%3k*DgXzsb>EVX7P2z~>G z2Krrr1)9=8G5B6W`vj{g4YsN1zcPIW zV5X|>9a}N0^|cQ3pfrEhjEwHJG@W?V`+P6qA}w&JCyhP*2=lg}bc01jVF^I8;Vi)i z$25J`1XEDr2dgllPFL=UA+3cqy1hLF*B(=5xn)$H0500m$U z0e2oTkWELyx%aGmdnf@ivuFkGjjv`jofKps$SYI+o{QLmWYm8K086<%#GyXvdo6YO3$m!Aax?qf)&Kwi M07*qoM6N<$f@T`Jp8x;= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt3.png b/Resources/Textures/Decals/burnt.rsi/burnt3.png new file mode 100644 index 0000000000000000000000000000000000000000..e9dcbe37533f6e1aa9f17dca58d5c2b15973408a GIT binary patch literal 928 zcmV;R17G}!P)a;W5Jit{9MAGY^Z#EoHA`ZHfq9@0+$c_ss#F3Yb>H5b2K)d9;0(;b2;6I(YfiwU zR-b2J0b1Sv3Va8?0W0tZ+=|v(^sm5|IuEc8z_0pnEn*Eg)rHngikQ=J>b^JNQUKjM z124sV@V=U@}kW6B%Z?YOXZZ67&`UX#a^V zgRKSR6c-ac9NCPJ)+sP}?|AZ=OUQfLXypjSnJtYb^FAr12DEu*x(wYpR<-;Fy!M$X z52e%uQ@veg?pTLhLe{bD$dvbOccIXcG>9sFVDbZAW`p^r92HlsY)$oI$1Dm>^mDco)UP^r= zL+Z-M(9I&I26LR!R#}p>toG$s2_8XIFDGbZO=)!|&3&SZk+GSTFg37rL_af6-vjic z595{^=*`gg1HNabOX;%Sr-W)pb9q;Pne_ox{7lkJJQ?RL?wAwc2x0GCII8SaXXUwA zh|&jo5Hh~96&b6gen5aShX_!KrDrZs^V{%1UMzI3){{b2u`{;`kj?~;+p#!H6W9Q($&N#+@YmG_~VwO}MVq9HEt4ibR! zhh*Y?R!gSl{1)dNci=DZ8~9Uv+L^73v7BmCYqohITkDjrUwzIW5+(lw{H*!6G_W@$ zHWYejpJ=k8`QHCOJc`y>tLoMXe;4Cdwq9TXUb2K5Mw&zu=pPS`GTPfadjU^`5@AN8LXHrEQ@sW!o?S0000>5u66hM z4m^NiHO3eX*Z_Or0K5TPU{`Y+mg`cwewV(X0aFctb1gUnw^Fnz1$haG6`-ls3TRhj zTWcO=&?oQ*m|9r)0Oqp#TJM`0+fp{iP&x4|kXCy(F~*WRg|4yHm7O$Z3@hZC3%Q7b1Bh-dPs1$Qf@v`@_y9w&{#5aS4fRjqi1w0A)j?W*E(IU2gdNo z9N$d7p$suMngBj(^BcWn-b(pC1mEZxK88gPUSprtVEGXMrT{QD;1|8_{{_AmfH!*V z9dig8R{->c-pl3Y{#o_0o=P(3&A0uY&rB&Y*RmE;*Pk8zpt(CK!dC-Q9t-uZ#*1$#Q# zs9XRl_pag=_br{6ZoGQw63>Rr!|sEk;zL-tKE)=HtaD)P_Uwv=$Pjo*@23L$0)Vhy z04mMrG43W-@<$#%bt*m^j@A9H?@Bob9$)( zcjIm5%Yuhml7uSvU*J%ik1Ql~q4#|OWM7xEbH9mg zc=V!P9)U|X7FkdrQz<{vf5mjU9`M~HvpasHv#E72-S5h)6L9_u9x#X3!t};m00000 LNkvXXu0mjfo00E? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/meta.json b/Resources/Textures/Decals/burnt.rsi/meta.json new file mode 100644 index 0000000000..48a8f33138 --- /dev/null +++ b/Resources/Textures/Decals/burnt.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "From https://github.com/BeeStation/BeeStation-Hornet/blob/master/icons/turf/turf_damage.dmi at f2d6fbdf36aa0951049498cf28e028a38e32fe0b", + "states": [ + { + "name": "burnt1" + + }, + { + "name": "burnt2" + + }, + { + "name": "burnt3" + + }, + { + "name": "burnt4" + + } + ] +} From 0c5a053ae4ec06ad4471884dd81aa5053522d716 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 00:24:56 +0000 Subject: [PATCH 039/176] 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 8190ecd8fe..050ad0721c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Aquif - changes: - - message: It is now possible to "lock" admin faxes such that they cannot be edited - by cybersun pens or any other IC means. - type: Add - id: 6895 - time: '2024-07-10T05:28:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28972 - author: Ghagliiarghii changes: - message: The Librarian's Books Bag can now hold D&D related items such as dice @@ -3918,3 +3910,10 @@ id: 7394 time: '2024-09-18T23:55:26.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29998 +- author: Winkarst-cpu + changes: + - message: Now fire leaves burn marks on the tiles that were affected by it. + type: Add + id: 7395 + time: '2024-09-19T00:23:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31939 From 1c3cfeeb35f425cd556103e4a673c01ae16cf69d Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Thu, 19 Sep 2024 02:25:47 +0100 Subject: [PATCH 040/176] Coordinates under IFF Label on Mass Scanners and Shuttle Consoles (#31501) * adds coord label beneath iff label * fixed wrong coordinate system being used * changes the clamping on the label UI to instead normalise the UI's distance vector from the centre of the screen, fixes corner-hugging * cleaned up if-statement by moving the calc ahead of it * fixed clamping, fixed parenting issue, added draw cull on coord label --------- Co-authored-by: archrbx --- .../Shuttles/UI/ShuttleNavControl.xaml.cs | 47 +++++++++++++++---- 1 file changed, 38 insertions(+), 9 deletions(-) diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index 64ead32586..2674343e05 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -199,7 +199,9 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl var gridMatrix = _transform.GetWorldMatrix(gUid); var matty = Matrix3x2.Multiply(gridMatrix, ourWorldMatrixInvert); - var color = _shuttles.GetIFFColor(grid, self: false, iff); + + var labelColor = _shuttles.GetIFFColor(grid, self: false, iff); + var coordColor = new Color(labelColor.R * 0.8f, labelColor.G * 0.8f, labelColor.B * 0.8f, 0.5f); // Others default: // Color.FromHex("#FFC000FF") @@ -213,25 +215,52 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); gridCentre.Y = -gridCentre.Y; + var distance = gridCentre.Length(); var labelText = Loc.GetString("shuttle-console-iff-label", ("name", labelName), ("distance", $"{distance:0.0}")); + var mapCoords = _transform.GetWorldPosition(gUid); + var coordsText = $"({mapCoords.X:0.0}, {mapCoords.Y:0.0})"; + // yes 1.0 scale is intended here. var labelDimensions = handle.GetDimensions(Font, labelText, 1f); + var coordsDimensions = handle.GetDimensions(Font, coordsText, 0.7f); // y-offset the control to always render below the grid (vertically) var yOffset = Math.Max(gridBounds.Height, gridBounds.Width) * MinimapScale / 1.8f; - // The actual position in the UI. We offset the matrix position to render it off by half its width - // plus by the offset. - var uiPosition = ScalePosition(gridCentre)- new Vector2(labelDimensions.X / 2f, -yOffset); + // The actual position in the UI. We centre the label by offsetting the matrix position + // by half the label's width, plus the y-offset + var gridScaledPosition = ScalePosition(gridCentre) - new Vector2(0, -yOffset); - // Look this is uggo so feel free to cleanup. We just need to clamp the UI position to within the viewport. - uiPosition = new Vector2(Math.Clamp(uiPosition.X, 0f, PixelWidth - labelDimensions.X ), - Math.Clamp(uiPosition.Y, 0f, PixelHeight - labelDimensions.Y)); + // Normalize the grid position if it exceeds the viewport bounds + // normalizing it instead of clamping it preserves the direction of the vector and prevents corner-hugging + var gridOffset = gridScaledPosition / PixelSize - new Vector2(0.5f, 0.5f); + var offsetMax = Math.Max(Math.Abs(gridOffset.X), Math.Abs(gridOffset.Y)) * 2f; + if (offsetMax > 1) + { + gridOffset = new Vector2(gridOffset.X / offsetMax, gridOffset.Y / offsetMax); - handle.DrawString(Font, uiPosition, labelText, color); + gridScaledPosition = (gridOffset + new Vector2(0.5f, 0.5f)) * PixelSize; + } + + var labelUiPosition = gridScaledPosition - new Vector2(labelDimensions.X / 2f, 0); + var coordUiPosition = gridScaledPosition - new Vector2(coordsDimensions.X / 2f, -labelDimensions.Y); + + // clamp the IFF label's UI position to within the viewport extents so it hugs the edges of the viewport + // coord label intentionally isn't clamped so we don't get ugly clutter at the edges + var controlExtents = PixelSize - new Vector2(labelDimensions.X, labelDimensions.Y); //new Vector2(labelDimensions.X * 2f, labelDimensions.Y); + labelUiPosition = Vector2.Clamp(labelUiPosition, Vector2.Zero, controlExtents); + + // draw IFF label + handle.DrawString(Font, labelUiPosition, labelText, labelColor); + + // only draw coords label if close enough + if (offsetMax < 1) + { + handle.DrawString(Font, coordUiPosition, coordsText, 0.7f, coordColor); + } } // Detailed view @@ -241,7 +270,7 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl if (!gridAABB.Intersects(viewAABB)) continue; - DrawGrid(handle, matty, grid, color); + DrawGrid(handle, matty, grid, labelColor); DrawDocks(handle, gUid, matty); } } From c2f0626e029c1f3b33aa9b7770ef7d3ee0fa2aae Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 01:26:53 +0000 Subject: [PATCH 041/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 050ad0721c..4b779d845b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Ghagliiarghii - changes: - - message: The Librarian's Books Bag can now hold D&D related items such as dice - and battlemats. - type: Tweak - id: 6896 - time: '2024-07-10T05:51:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29863 - author: Beck Thompson, Tayrtahn changes: - message: Typing indicators now correctly stack and will not overwrite your default @@ -3917,3 +3909,14 @@ id: 7395 time: '2024-09-19T00:23:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31939 +- author: ArchRBX + changes: + - message: Mass scanners and shuttle consoles now display coordinates beneath IFF + labels + type: Add + - message: IFF labels that are beyond the viewport extents maintain their heading + and don't hug corners + type: Fix + id: 7396 + time: '2024-09-19T01:25:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31501 From 9c905cd58f5453c6ab7821709bdbf5fcf1249df9 Mon Sep 17 00:00:00 2001 From: Luiz Costa <33888056+luizwritescode@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:15:44 -0300 Subject: [PATCH 042/176] Fix TEG acting as infinite energy source on destruction (#29972) * TEG now checks for power supply before checking for IsFullyBuilt * Update Content.Server/Power/Generation/Teg/TegSystem.cs Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> --- Content.Server/Power/Generation/Teg/TegSystem.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 9fb7d5ff1f..027f257040 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -102,10 +102,6 @@ public sealed class TegSystem : EntitySystem private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref AtmosDeviceUpdateEvent args) { - var tegGroup = GetNodeGroup(uid); - if (tegGroup is not { IsFullyBuilt: true }) - return; - var supplier = Comp(uid); var powerReceiver = Comp(uid); if (!powerReceiver.Powered) @@ -114,6 +110,10 @@ public sealed class TegSystem : EntitySystem return; } + var tegGroup = GetNodeGroup(uid); + if (tegGroup is not { IsFullyBuilt: true }) + return; + var circA = tegGroup.CirculatorA!.Owner; var circB = tegGroup.CirculatorB!.Owner; From b1296294052e6bb1af45efb97c350cc898746b22 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 02:16:50 +0000 Subject: [PATCH 043/176] 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 4b779d845b..8eba2ed6d8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Beck Thompson, Tayrtahn - changes: - - message: Typing indicators now correctly stack and will not overwrite your default - species indicator. - type: Fix - id: 6897 - time: '2024-07-10T05:51:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29492 - author: Winkarst-cpu changes: - message: Now confirmation popup is displayed and item panel status is updated @@ -3920,3 +3912,10 @@ id: 7396 time: '2024-09-19T01:25:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31501 +- author: coffeeware + changes: + - message: a powered TEG won't produce infinite power when destroyed + type: Fix + id: 7397 + time: '2024-09-19T02:15:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29972 From 550c4231816cd28251d3c42d32002bcf0ac4d5aa Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:17:13 -0400 Subject: [PATCH 044/176] Clean up solution regen and drain comps (#29777) * clean up solution regen and drain comps * Tape applied. * Update Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs Co-authored-by: Tayrtahn * remain entity * That has to be a rogue test fail. --------- Co-authored-by: Tayrtahn --- .../SolutionRegenerationComponent.cs | 12 +++++----- .../SolutionRegenerationSystem.cs | 4 ++-- .../Fluids/Components/DrainComponent.cs | 24 +++++++++---------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs index 23bf6b2157..03c0ffe0c1 100644 --- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs @@ -14,31 +14,31 @@ public sealed partial class SolutionRegenerationComponent : Component /// /// The name of the solution to add to. /// - [DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField("solution", required: true)] public string SolutionName = string.Empty; /// /// The solution to add reagents to. /// - [DataField("solutionRef")] - public Entity? Solution = null; + [DataField] + public Entity? SolutionRef = null; /// /// The reagent(s) to be regenerated in the solution. /// - [DataField("generated", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] public Solution Generated = default!; /// /// How long it takes to regenerate once. /// - [DataField("duration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan Duration = TimeSpan.FromSeconds(1); /// /// The time when the next regeneration will occur. /// - [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextRegenTime = TimeSpan.FromSeconds(0); } diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs index 6a60062857..bccd594706 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs @@ -24,7 +24,7 @@ public sealed class SolutionRegenerationSystem : EntitySystem // timer ignores if its full, it's just a fixed cycle regen.NextRegenTime = _timing.CurTime + regen.Duration; - if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution)) + if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.SolutionRef, out var solution)) { var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume); if (amount <= FixedPoint2.Zero) @@ -41,7 +41,7 @@ public sealed class SolutionRegenerationSystem : EntitySystem generated = regen.Generated.Clone().SplitSolution(amount); } - _solutionContainer.TryAddSolution(regen.Solution.Value, generated); + _solutionContainer.TryAddSolution(regen.SolutionRef.Value, generated); } } } diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 4fb4fe9438..50cb5f5195 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -23,14 +23,14 @@ public sealed partial class DrainComponent : Component [DataField] public Entity? Solution = null; - [DataField("accumulator")] + [DataField] public float Accumulator = 0f; /// /// Does this drain automatically absorb surrouding puddles? Or is it a drain designed to empty - /// solutions in it manually? + /// solutions in it manually? /// - [DataField("autoDrain"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public bool AutoDrain = true; /// @@ -38,47 +38,47 @@ public sealed partial class DrainComponent : Component /// Divided by puddles, so if there are 5 puddles this will take 1/5 from each puddle. /// This will stay fixed to 1 second no matter what DrainFrequency is. /// - [DataField("unitsPerSecond")] + [DataField] public float UnitsPerSecond = 6f; /// /// How many units are ejected from the buffer per second. /// - [DataField("unitsDestroyedPerSecond")] + [DataField] public float UnitsDestroyedPerSecond = 3f; /// /// How many (unobstructed) tiles away the drain will /// drain puddles from. /// - [DataField("range"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Range = 2f; /// /// How often in seconds the drain checks for puddles around it. /// If the EntityQuery seems a bit unperformant this can be increased. /// - [DataField("drainFrequency")] + [DataField] public float DrainFrequency = 1f; /// /// How much time it takes to unclog it with a plunger /// - [DataField("unclogDuration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogDuration = 1f; /// /// What's the probability of uncloging on each try /// - [DataField("unclogProbability"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogProbability = 0.75f; - [DataField("manualDrainSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier ManualDrainSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg"); - [DataField("plungerSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier PlungerSound = new SoundPathSpecifier("/Audio/Items/Janitor/plunger.ogg"); - [DataField("unclogSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier UnclogSound = new SoundPathSpecifier("/Audio/Effects/Fluids/glug.ogg"); } From bdd0561254a0f2b6cef0a032af566bd908e9de58 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:21:26 +1200 Subject: [PATCH 045/176] Make status effect networking not use `TryAddStatusEffect` (#28766) * Make status effect networking not use `TryAddStatusEffect` * a --- .../StatusEffect/StatusEffectsSystem.cs | 80 ++++++++++--------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/Content.Shared/StatusEffect/StatusEffectsSystem.cs b/Content.Shared/StatusEffect/StatusEffectsSystem.cs index 9806077f9b..95abea63db 100644 --- a/Content.Shared/StatusEffect/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffect/StatusEffectsSystem.cs @@ -14,6 +14,7 @@ namespace Content.Shared.StatusEffect [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; + private List _toRemove = new(); public override void Initialize() { @@ -32,17 +33,27 @@ namespace Content.Shared.StatusEffect var curTime = _gameTiming.CurTime; var enumerator = EntityQueryEnumerator(); + _toRemove.Clear(); while (enumerator.MoveNext(out var uid, out _, out var status)) { - foreach (var state in status.ActiveEffects.ToArray()) + if (status.ActiveEffects.Count == 0) { - // if we're past the end point of the effect - if (curTime > state.Value.Cooldown.Item2) - { - TryRemoveStatusEffect(uid, state.Key, status); - } + // This shouldn't happen, but just in case something sneaks through + _toRemove.Add(uid); + continue; } + + foreach (var state in status.ActiveEffects) + { + if (curTime > state.Value.Cooldown.Item2) + TryRemoveStatusEffect(uid, state.Key, status); + } + } + + foreach (var uid in _toRemove) + { + RemComp(uid); } } @@ -62,29 +73,21 @@ namespace Content.Shared.StatusEffect component.AllowedEffects.AddRange(state.AllowedEffects); // Remove non-existent effects. - foreach (var effect in component.ActiveEffects.Keys) + foreach (var key in component.ActiveEffects.Keys) { - if (!state.ActiveEffects.ContainsKey(effect)) - { - TryRemoveStatusEffect(uid, effect, component, remComp: false); - } + if (!state.ActiveEffects.ContainsKey(key)) + component.ActiveEffects.Remove(key); } foreach (var (key, effect) in state.ActiveEffects) { - // don't bother with anything if we already have it - if (component.ActiveEffects.ContainsKey(key)) - { - component.ActiveEffects[key] = new(effect); - continue; - } - - var time = effect.Cooldown.Item2 - effect.Cooldown.Item1; - - TryAddStatusEffect(uid, key, time, true, component, effect.Cooldown.Item1); - component.ActiveEffects[key].RelevantComponent = effect.RelevantComponent; - // state handling should not add networked components, that is handled separately by the client game state manager. + component.ActiveEffects[key] = new(effect); } + + if (component.ActiveEffects.Count == 0) + RemComp(uid); + else + EnsureComp(uid); } private void OnRejuvenate(EntityUid uid, StatusEffectsComponent component, RejuvenateEvent args) @@ -109,18 +112,16 @@ namespace Content.Shared.StatusEffect if (!Resolve(uid, ref status, false)) return false; - if (TryAddStatusEffect(uid, key, time, refresh, status)) - { - // If they already have the comp, we just won't bother updating anything. - if (!EntityManager.HasComponent(uid)) - { - var comp = EntityManager.AddComponent(uid); - status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(comp.GetType()); - } - return true; - } + if (!TryAddStatusEffect(uid, key, time, refresh, status)) + return false; + + if (HasComp(uid)) + return true; + + EntityManager.AddComponent(uid); + status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(); + return true; - return false; } public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, string component, @@ -162,8 +163,12 @@ namespace Content.Shared.StatusEffect /// If the effect already exists, it will simply replace the cooldown with the new one given. /// If you want special 'effect merging' behavior, do it your own damn self! /// - public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, - StatusEffectsComponent? status = null, TimeSpan? startTime = null) + public bool TryAddStatusEffect(EntityUid uid, + string key, + TimeSpan time, + bool refresh, + StatusEffectsComponent? status = null, + TimeSpan? startTime = null) { if (!Resolve(uid, ref status, false)) return false; @@ -334,8 +339,7 @@ namespace Content.Shared.StatusEffect /// The entity to check on. /// The status effect ID to check for /// The status effect component, should you already have it. - public bool CanApplyEffect(EntityUid uid, string key, - StatusEffectsComponent? status = null) + public bool CanApplyEffect(EntityUid uid, string key, StatusEffectsComponent? status = null) { // don't log since stuff calling this prolly doesn't care if we don't actually have it if (!Resolve(uid, ref status, false)) From 3fc9f96b75b2a3ebc1a02319758eb6853452cb05 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:42:49 -0700 Subject: [PATCH 046/176] Move PlaceableSurfaceComponent usages to PlaceableSurfaceSystem (#28384) * Move placeable check to PlaceableSurfaceSystem This check stops entities from being inserted into a storage entity when it has a PlaceableSurfaceComponent. The entity is instead placed on top of the entity like a table. * Move SetPlaceable to PlaceableSurfaceSystem * Update to transform system and consolidate code * Fix interaction with storage that has a placeable component * deadlock --------- Co-authored-by: metalgearsloth --- .../Placeable/PlaceableSurfaceSystem.cs | 29 ++++++++++++++++--- .../SharedEntityStorageSystem.cs | 3 -- .../EntitySystems/SharedStorageSystem.cs | 4 ++- Content.Shared/Storage/StorageComponent.cs | 3 ++ 4 files changed, 31 insertions(+), 8 deletions(-) diff --git a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs index a9a9390a6e..c332064ea3 100644 --- a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs +++ b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Storage; using Content.Shared.Storage.Components; namespace Content.Shared.Placeable; @@ -8,12 +9,16 @@ namespace Content.Shared.Placeable; public sealed class PlaceableSurfaceSystem : EntitySystem { [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnStorageInteractUsingAttempt); + SubscribeLocalEvent(OnStorageAfterOpen); + SubscribeLocalEvent(OnStorageAfterClose); } public void SetPlaceable(EntityUid uid, bool isPlaceable, PlaceableSurfaceComponent? surface = null) @@ -21,6 +26,9 @@ public sealed class PlaceableSurfaceSystem : EntitySystem if (!Resolve(uid, ref surface, false)) return; + if (surface.IsPlaceable == isPlaceable) + return; + surface.IsPlaceable = isPlaceable; Dirty(uid, surface); } @@ -59,11 +67,24 @@ public sealed class PlaceableSurfaceSystem : EntitySystem if (!_handsSystem.TryDrop(args.User, args.Used)) return; - if (surface.PlaceCentered) - Transform(args.Used).LocalPosition = Transform(uid).LocalPosition + surface.PositionOffset; - else - Transform(args.Used).Coordinates = args.ClickLocation; + _transformSystem.SetCoordinates(args.Used, + surface.PlaceCentered ? Transform(uid).Coordinates.Offset(surface.PositionOffset) : args.ClickLocation); args.Handled = true; } + + private void OnStorageInteractUsingAttempt(Entity ent, ref StorageInteractUsingAttemptEvent args) + { + args.Cancelled = true; + } + + private void OnStorageAfterOpen(Entity ent, ref StorageAfterOpenEvent args) + { + SetPlaceable(ent.Owner, true, ent.Comp); + } + + private void OnStorageAfterClose(Entity ent, ref StorageAfterCloseEvent args) + { + SetPlaceable(ent.Owner, false, ent.Comp); + } } diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 4932613d0e..309ac0a2e0 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -487,9 +487,6 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - if (TryComp(uid, out var surface)) - _placeableSurface.SetPlaceable(uid, component.Open, surface); - _appearance.SetData(uid, StorageVisuals.Open, component.Open); _appearance.SetData(uid, StorageVisuals.HasContents, component.Contents.ContainedEntities.Count > 0); } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index def9d797c4..d6fde292a1 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -364,7 +364,9 @@ public abstract class SharedStorageSystem : EntitySystem if (args.Handled || !CanInteract(args.User, (uid, storageComp), storageComp.ClickInsert, false)) return; - if (HasComp(uid)) + var attemptEv = new StorageInteractUsingAttemptEvent(); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) return; PlayerInsertHeldEntity((uid, storageComp), args.User); diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index a666169f52..d2c607e57f 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -238,6 +238,9 @@ namespace Content.Shared.Storage [ByRefEvent] public record struct StorageInteractAttemptEvent(bool Silent, bool Cancelled = false); + [ByRefEvent] + public record struct StorageInteractUsingAttemptEvent(bool Cancelled = false); + [NetSerializable] [Serializable] public enum StorageVisuals : byte From 3acf6b93a109ea542b3110c1f9b7fc59c6976aa3 Mon Sep 17 00:00:00 2001 From: Willhelm53 <97707302+Willhelm53@users.noreply.github.com> Date: Thu, 19 Sep 2024 03:51:33 -0400 Subject: [PATCH 047/176] Padded ItemStatus Text (#29560) * Back in the saddle again! <(8o) * if you like my STYLE you should see my SHEETS ;-) * stylesheet change works for ItemStatusNotHeld but broken for ItemStatus. Just using xaml for now. * teehee * beeg --------- Co-authored-by: metalgearsloth --- Content.Client/Stylesheets/StyleNano.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 0bd75003a2..ccd36c35e8 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -695,6 +695,18 @@ namespace Content.Client.Stylesheets new StyleProperty("font-color", Color.FromHex("#E5E5E581")), }), + // ItemStatus for hands + Element() + .Class(StyleClassItemStatusNotHeld) + .Prop("font", notoSansItalic10) + .Prop("font-color", ItemStatusNotHeldColor) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + + Element() + .Class(StyleClassItemStatus) + .Prop(nameof(RichTextLabel.LineHeightScale), 0.7f) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + // Context Menu window Element().Class(ContextMenuPopup.StyleClassContextMenuPopup) .Prop(PanelContainer.StylePropertyPanel, contextMenuBackground), From 94ad76fd07f148628c1b5d8070565635957caeb2 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 19 Sep 2024 04:02:37 -0400 Subject: [PATCH 048/176] Fix Set Outfit command/verb (#29672) * Filter Set Outfit menu to exclude loadout sets * Apply loadouts to job outfits * Use appropriate species for Urists * squishy --------- Co-authored-by: metalgearsloth --- .../UI/SetOutfit/SetOutfitMenu.xaml.cs | 18 +++++++--- .../Commands/SetOutfitCommand.cs | 36 +++++++++++++++++++ 2 files changed, 49 insertions(+), 5 deletions(-) diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs index 7cb32b43df..615f1434df 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs @@ -1,14 +1,13 @@ +using System.Linq; using System.Numerics; using Content.Client.UserInterface.Controls; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Robust.Client.AutoGenerated; using Robust.Client.Console; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Localization; using Robust.Shared.Prototypes; namespace Content.Client.Administration.UI.SetOutfit @@ -65,9 +64,18 @@ namespace Content.Client.Administration.UI.SetOutfit PopulateByFilter(SearchBar.Text); } + private IEnumerable GetPrototypes() + { + // Filter out any StartingGearPrototypes that belong to loadouts + var loadouts = _prototypeManager.EnumeratePrototypes(); + var loadoutGears = loadouts.Select(l => l.StartingGear); + return _prototypeManager.EnumeratePrototypes() + .Where(p => !loadoutGears.Contains(p.ID)); + } + private void PopulateList() { - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { OutfitList.Add(GetItem(gear, OutfitList)); } @@ -76,7 +84,7 @@ namespace Content.Client.Administration.UI.SetOutfit private void PopulateByFilter(string filter) { OutfitList.Clear(); - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { if (!string.IsNullOrEmpty(filter) && gear.ID.ToLowerInvariant().Contains(filter.Trim().ToLowerInvariant())) diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index ff4d34705a..9240e7b91b 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -4,11 +4,15 @@ using Content.Server.Hands.Systems; using Content.Server.Preferences.Managers; using Content.Shared.Access.Components; using Content.Shared.Administration; +using Content.Shared.Clothing; using Content.Shared.Hands.Components; +using Content.Shared.Humanoid; using Content.Shared.Inventory; using Content.Shared.PDA; using Content.Shared.Preferences; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; +using Content.Shared.Station; using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -82,9 +86,11 @@ namespace Content.Server.Administration.Commands return false; HumanoidCharacterProfile? profile = null; + ICommonSession? session = null; // Check if we are setting the outfit of a player to respect the preferences if (entityManager.TryGetComponent(target, out ActorComponent? actorComponent)) { + session = actorComponent.PlayerSession; var userId = actorComponent.PlayerSession.UserId; var preferencesManager = IoCManager.Resolve(); var prefs = preferencesManager.GetPreferences(userId); @@ -128,6 +134,36 @@ namespace Content.Server.Administration.Commands } } + // See if this starting gear is associated with a job + var jobs = prototypeManager.EnumeratePrototypes(); + foreach (var job in jobs) + { + if (job.StartingGear != gear) + continue; + + var jobProtoId = LoadoutSystem.GetJobPrototype(job.ID); + if (!prototypeManager.TryIndex(jobProtoId, out var jobProto)) + break; + + // Don't require a player, so this works on Urists + profile ??= entityManager.TryGetComponent(target, out var comp) + ? HumanoidCharacterProfile.DefaultWithSpecies(comp.Species) + : new HumanoidCharacterProfile(); + // Try to get the user's existing loadout for the role + profile.Loadouts.TryGetValue(jobProtoId, out var roleLoadout); + + if (roleLoadout == null) + { + // If they don't have a loadout for the role, make a default one + roleLoadout = new RoleLoadout(jobProtoId); + roleLoadout.SetDefault(profile, session, prototypeManager); + } + + // Equip the target with the job loadout + var stationSpawning = entityManager.System(); + stationSpawning.EquipRoleLoadout(target, roleLoadout, jobProto); + } + return true; } } From 59a8f4445d36d76a58ef814b3762cc324130deee Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:41:24 +0200 Subject: [PATCH 049/176] adds plasma and uranium arrows (#31241) --- .../Weapons/Guns/Projectiles/arrows.yml | 53 +++++++++++++++++++ .../Graphs/weapons/improvised_arrow.yml | 48 +++++++++++++++++ .../Recipes/Construction/weapons.yml | 22 ++++++++ 3 files changed, 123 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 6f925139fb..f1172c5de0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -106,3 +106,56 @@ - type: Construction graph: ImprovisedArrow node: ImprovisedArrow + +- type: entity + parent: BaseArrow + id: ArrowImprovisedPlasma + name: plasma glass shard arrow + description: The greyshirt's preferred projectile. Now with extra lethality! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: purple + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 30 + - type: Construction + graph: ImprovisedArrowPlasma + node: ImprovisedArrowPlasma + +- type: entity + parent: BaseArrow + id: ArrowImprovisedUranium + name: uranium glass shard arrow + description: The greyshirt's preferred projectile. Now with added radiation! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: green + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 25 + Radiation: 5 + - type: Construction + graph: ImprovisedArrowUranium + node: ImprovisedArrowUranium diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml index 04b9469046..20e06e9f48 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml @@ -21,3 +21,51 @@ - node: ImprovisedArrow entity: ArrowImprovised + +- type: constructionGraph + id: ImprovisedArrowPlasma + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowPlasma + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: PlasmaGlassShard + name: plasma glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowPlasma + entity: ArrowImprovisedPlasma + +- type: constructionGraph + id: ImprovisedArrowUranium + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowUranium + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: UraniumGlassShard + name: uranium glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowUranium + entity: ArrowImprovisedUranium diff --git a/Resources/Prototypes/Recipes/Construction/weapons.yml b/Resources/Prototypes/Recipes/Construction/weapons.yml index 040d4c8963..5936a35069 100644 --- a/Resources/Prototypes/Recipes/Construction/weapons.yml +++ b/Resources/Prototypes/Recipes/Construction/weapons.yml @@ -152,6 +152,28 @@ icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } objectType: Item +- type: construction + name: plasma glass shard arrow + id: ImprovisedArrowPlasma + graph: ImprovisedArrowPlasma + startNode: start + targetNode: ImprovisedArrowPlasma + category: construction-category-weapons + description: An arrow tipped with pieces of a plasma glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + +- type: construction + name: uranium glass shard arrow + id: ImprovisedArrowUranium + graph: ImprovisedArrowUranium + startNode: start + targetNode: ImprovisedArrowUranium + category: construction-category-weapons + description: An arrow tipped with pieces of a uranium glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + - type: construction name: improvised bow id: ImprovisedBow From 75ff65d108e0a228d85a2d5dde5cbdbd50ed0cd3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 08:42:31 +0000 Subject: [PATCH 050/176] 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 8eba2ed6d8..156fe91ffc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now confirmation popup is displayed and item panel status is updated - after setting a custom solution transfer volume. - type: Fix - id: 6898 - time: '2024-07-10T10:32:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29852 - author: Winkarst-cpu changes: - message: Added exit confirmation for character setup menu with unsaved changes. @@ -3919,3 +3911,10 @@ id: 7397 time: '2024-09-19T02:15:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29972 +- author: Boaz1111 + changes: + - message: Added plasma and uranium arrows. + type: Add + id: 7398 + time: '2024-09-19T08:41:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31241 From 1468cbdb8a59beb2dfc9188a3108157496549a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AD=D0=B4=D1=83=D0=B0=D1=80=D0=B4?= <36124833+Ertanic@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:22:02 +0300 Subject: [PATCH 051/176] Wanted list cartridge (#31223) * WantedListCartridge has been added * WantedListCartridge user interface works * WantedListCartridge is added as standard in some PDAs * The CriminalRecordsSystem can now also take into account who created the record * Added offense history table * Fix of missing loaderUid for a cartridge without installing the program * Added personalized information about the target * The crime history has been finalized * Added StatusList * The officer's name has been added to the automatic history * WantedListCartridge has been added to the HOS locker * WantedListCartridge has been removed from brigmedic's preset programs * The StealConditionSystem now takes into account whether a cartridge is inserted or installed * Added target to thief on WantedListCartridge * Merge fix * Removing copypaste * Fix merge 2 * The sprite of WantedListCartridge has been changed * Update pda.yml * Fix scrollbar in the history table * Upstream localization fix * `StatusList` has been replaced by `ListContainer` with `TextureRect` * Margin fix --- .../Cartridges/WantedListUi.cs | 30 +++ .../Cartridges/WantedListUiFragment.cs | 240 ++++++++++++++++++ .../Cartridges/WantedListUiFragment.xaml | 50 ++++ .../CartridgeLoader/CartridgeLoaderSystem.cs | 6 + .../Cartridges/WantedListCartridge.cs | 8 + .../Systems/CriminalRecordsConsoleSystem.cs | 34 +-- .../Systems/CriminalRecordsSystem.cs | 90 ++++++- .../Systems/StealConditionSystem.cs | 6 + .../Cartridges/WantedListUiState.cs | 11 + .../CriminalRecords/CriminalRecord.cs | 8 +- .../Systems/SharedCriminalRecordsSystem.cs | 21 ++ .../en-US/cartridge-loader/cartridges.ftl | 29 +++ .../criminal-records/criminal-records.ftl | 2 +- .../conditions/steal-target-groups.ftl | 1 + .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 23 ++ .../Entities/Objects/Devices/pda.yml | 31 ++- .../Prototypes/Objectives/objectiveGroups.yml | 1 + .../Objectives/stealTargetGroups.yml | 7 + Resources/Prototypes/Objectives/thief.yml | 9 + .../Devices/cartridge.rsi/cart-sec.png | Bin 0 -> 314 bytes .../Objects/Devices/cartridge.rsi/meta.json | 5 +- 22 files changed, 579 insertions(+), 34 deletions(-) create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml create mode 100644 Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs create mode 100644 Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs new file mode 100644 index 0000000000..3c97b8b37d --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs @@ -0,0 +1,30 @@ +using Content.Client.UserInterface.Fragments; +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.UserInterface; + +namespace Content.Client.CartridgeLoader.Cartridges; + +public sealed partial class WantedListUi : UIFragment +{ + private WantedListUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner) + { + _fragment = new WantedListUiFragment(); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + switch (state) + { + case WantedListUiState cast: + _fragment?.UpdateState(cast.Records); + break; + } + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs new file mode 100644 index 0000000000..4137f6c2af --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs @@ -0,0 +1,240 @@ +using System.Linq; +using Content.Client.UserInterface.Controls; +using Content.Shared.CriminalRecords.Systems; +using Content.Shared.Security; +using Content.Shared.StatusIcon; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Input; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class WantedListUiFragment : BoxContainer +{ + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private readonly SpriteSystem _spriteSystem; + + private string? _selectedTargetName; + private List _wantedRecords = new(); + + public WantedListUiFragment() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _spriteSystem = _entitySystem.GetEntitySystem(); + + SearchBar.OnTextChanged += OnSearchBarTextChanged; + } + + private void OnSearchBarTextChanged(LineEdit.LineEditEventArgs args) + { + var found = !String.IsNullOrWhiteSpace(args.Text) + ? _wantedRecords.FindAll(r => + r.TargetInfo.Name.Contains(args.Text) || + r.Status.ToString().Contains(args.Text, StringComparison.OrdinalIgnoreCase)) + : _wantedRecords; + + UpdateState(found, false); + } + + public void UpdateState(List records, bool refresh = true) + { + if (records.Count == 0) + { + NoRecords.Visible = true; + RecordsList.Visible = false; + RecordUnselected.Visible = false; + PersonContainer.Visible = false; + + _selectedTargetName = null; + if (refresh) + _wantedRecords.Clear(); + + RecordsList.PopulateList(new List()); + + return; + } + + NoRecords.Visible = false; + RecordsList.Visible = true; + RecordUnselected.Visible = true; + PersonContainer.Visible = false; + + var dataList = records.Select(r => new StatusListData(r)).ToList(); + + RecordsList.GenerateItem = GenerateItem; + RecordsList.ItemPressed = OnItemSelected; + RecordsList.PopulateList(dataList); + + if (refresh) + _wantedRecords = records; + } + + private void OnItemSelected(BaseButton.ButtonEventArgs args, ListData data) + { + if (data is not StatusListData(var record)) + return; + + FormattedMessage GetLoc(string fluentId, params (string,object)[] args) + { + var msg = new FormattedMessage(); + var fluent = Loc.GetString(fluentId, args); + msg.AddMarkupPermissive(fluent); + return msg; + } + + // Set personal info + PersonName.Text = record.TargetInfo.Name; + TargetAge.SetMessage(GetLoc( + "wanted-list-age-label", + ("age", record.TargetInfo.Age) + )); + TargetJob.SetMessage(GetLoc( + "wanted-list-job-label", + ("job", record.TargetInfo.JobTitle.ToLower()) + )); + TargetSpecies.SetMessage(GetLoc( + "wanted-list-species-label", + ("species", record.TargetInfo.Species.ToLower()) + )); + TargetGender.SetMessage(GetLoc( + "wanted-list-gender-label", + ("gender", record.TargetInfo.Gender) + )); + + // Set reason + WantedReason.SetMessage(GetLoc( + "wanted-list-reason-label", + ("reason", record.Reason ?? Loc.GetString("wanted-list-unknown-reason-label")) + )); + + // Set status + PersonState.SetMessage(GetLoc( + "wanted-list-status-label", + ("status", record.Status.ToString().ToLower()) + )); + + // Set initiator + InitiatorName.SetMessage(GetLoc( + "wanted-list-initiator-label", + ("initiator", record.Initiator ?? Loc.GetString("wanted-list-unknown-initiator-label")) + )); + + // History table + // Clear table if it exists + HistoryTable.RemoveAllChildren(); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-time-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-reason-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + HorizontalExpand = true, + }); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-initiator-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + + if (record.History.Count > 0) + { + HistoryTable.Visible = true; + + foreach (var history in record.History.OrderByDescending(h => h.AddTime)) + { + HistoryTable.AddChild(new Label() + { + Text = $"{history.AddTime.Hours:00}:{history.AddTime.Minutes:00}:{history.AddTime.Seconds:00}", + StyleClasses = { "LabelSmall" }, + VerticalAlignment = VAlignment.Top, + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.Crime}[/color]", + HorizontalExpand = true, + VerticalAlignment = VAlignment.Top, + StyleClasses = { "LabelSubText" }, + Margin = new(10f, 0f), + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.InitiatorName}[/color]", + StyleClasses = { "LabelSubText" }, + VerticalAlignment = VAlignment.Top, + }); + } + } + + RecordUnselected.Visible = false; + PersonContainer.Visible = true; + + // Save selected item + _selectedTargetName = record.TargetInfo.Name; + } + + private void GenerateItem(ListData data, ListContainerButton button) + { + if (data is not StatusListData(var record)) + return; + + var box = new BoxContainer() { Orientation = LayoutOrientation.Horizontal, HorizontalExpand = true }; + var label = new Label() { Text = record.TargetInfo.Name }; + var rect = new TextureRect() + { + TextureScale = new(2.2f), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Margin = new(0f, 0f, 6f, 0f), + }; + + if (record.Status is not SecurityStatus.None) + { + var proto = "SecurityIcon" + record.Status switch + { + SecurityStatus.Detained => "Incarcerated", + _ => record.Status.ToString(), + }; + + if (_prototypeManager.TryIndex(proto, out var prototype)) + { + rect.Texture = _spriteSystem.Frame0(prototype.Icon); + } + } + + box.AddChild(rect); + box.AddChild(label); + button.AddChild(box); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + + if (record.TargetInfo.Name.Equals(_selectedTargetName)) + { + button.Pressed = true; + // For some reason the event is not called when `Pressed` changed, call it manually. + OnItemSelected( + new(button, new(new(), BoundKeyState.Down, new(), false, new(), new())), + data); + } + } +} + +internal record StatusListData(WantedRecord Record) : ListData; diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml new file mode 100644 index 0000000000..7b5d116ad7 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml @@ -0,0 +1,50 @@ + + + + + + + diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index cd422328c3..7caec6150e 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -340,6 +340,9 @@ public sealed class CartridgeLoaderSystem : SharedCartridgeLoaderSystem if (args.Container.ID != InstalledContainerId && args.Container.ID != loader.CartridgeSlot.ID) return; + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = uid; + RaiseLocalEvent(args.Entity, new CartridgeAddedEvent(uid)); base.OnItemInserted(uid, loader, args); } @@ -360,6 +363,9 @@ public sealed class CartridgeLoaderSystem : SharedCartridgeLoaderSystem if (deactivate) RaiseLocalEvent(args.Entity, new CartridgeDeactivatedEvent(uid)); + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = null; + RaiseLocalEvent(args.Entity, new CartridgeRemovedEvent(uid)); base.OnItemRemoved(uid, loader, args); diff --git a/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs new file mode 100644 index 0000000000..08eef62379 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs @@ -0,0 +1,8 @@ +using Content.Shared.Security; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class WantedListCartridgeComponent : Component +{ +} diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs index c5f1d159f3..ca1d45e644 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs @@ -68,6 +68,13 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS } } + private void GetOfficer(EntityUid uid, out string officer) + { + var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, uid); + RaiseLocalEvent(tryGetIdentityShortInfoEvent); + officer = tryGetIdentityShortInfoEvent.Title ?? Loc.GetString("criminal-records-console-unknown-officer"); + } + private void OnChangeStatus(Entity ent, ref CriminalRecordChangeStatus msg) { // prevent malf client violating wanted/reason nullability @@ -90,29 +97,22 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS return; } + var oldStatus = record.Status; + + var name = _records.RecordName(key.Value); + GetOfficer(mob.Value, out var officer); + // when arresting someone add it to history automatically // fallback exists if the player was not set to wanted beforehand if (msg.Status == SecurityStatus.Detained) { var oldReason = record.Reason ?? Loc.GetString("criminal-records-console-unspecified-reason"); var history = Loc.GetString("criminal-records-console-auto-history", ("reason", oldReason)); - _criminalRecords.TryAddHistory(key.Value, history); + _criminalRecords.TryAddHistory(key.Value, history, officer); } - var oldStatus = record.Status; - // will probably never fail given the checks above - _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason); - - var name = _records.RecordName(key.Value); - var officer = Loc.GetString("criminal-records-console-unknown-officer"); - - var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value); - RaiseLocalEvent(tryGetIdentityShortInfoEvent); - if (tryGetIdentityShortInfoEvent.Title != null) - { - officer = tryGetIdentityShortInfoEvent.Title; - } + _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason, officer); (string, object)[] args; if (reason != null) @@ -152,14 +152,16 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS private void OnAddHistory(Entity ent, ref CriminalRecordAddHistory msg) { - if (!CheckSelected(ent, msg.Actor, out _, out var key)) + if (!CheckSelected(ent, msg.Actor, out var mob, out var key)) return; var line = msg.Line.Trim(); if (line.Length < 1 || line.Length > ent.Comp.MaxStringLength) return; - if (!_criminalRecords.TryAddHistory(key.Value, line)) + GetOfficer(mob.Value, out var officer); + + if (!_criminalRecords.TryAddHistory(key.Value, line, officer)) return; // no radio message since its not crucial to officers patrolling diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs index a65fb0be9e..7c65ce8c24 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs @@ -1,10 +1,15 @@ -using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.CartridgeLoader; +using Content.Server.CartridgeLoader.Cartridges; using Content.Server.StationRecords.Systems; using Content.Shared.CriminalRecords; using Content.Shared.CriminalRecords.Systems; using Content.Shared.Security; using Content.Shared.StationRecords; using Content.Server.GameTicking; +using Content.Server.Station.Systems; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; namespace Content.Server.CriminalRecords.Systems; @@ -20,12 +25,18 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem { [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly StationRecordsSystem _records = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly CartridgeLoaderSystem _cartridge = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGeneralRecordCreated); + SubscribeLocalEvent(OnRecordChanged); + SubscribeLocalEvent(OnCartridgeUiReady); + SubscribeLocalEvent(OnHistoryAdded); + SubscribeLocalEvent(OnHistoryRemoved); } private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) @@ -39,14 +50,14 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem /// Reason should only be passed if status is Wanted, nullability isn't checked. /// /// True if the status is changed, false if not - public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason) + public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason, string? initiatorName = null) { // don't do anything if its the same status if (!_records.TryGetRecord(key, out var record) || status == record.Status) return false; - OverwriteStatus(key, record, status, reason); + OverwriteStatus(key, record, status, reason, initiatorName); return true; } @@ -54,16 +65,24 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem /// /// Sets the status without checking previous status or reason nullability. /// - public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason) + public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason, string? initiatorName = null) { record.Status = status; record.Reason = reason; + record.InitiatorName = initiatorName; var name = _records.RecordName(key); if (name != string.Empty) UpdateCriminalIdentity(name, status); _records.Synchronize(key); + + var args = new CriminalRecordChangedEvent(record); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } } /// @@ -76,15 +95,23 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem return false; record.History.Add(entry); + + var args = new CriminalHistoryAddedEvent(entry); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } /// /// Creates and tries to add a history entry using the current time. /// - public bool TryAddHistory(StationRecordKey key, string line) + public bool TryAddHistory(StationRecordKey key, string line, string? initiatorName = null) { - var entry = new CrimeHistory(_ticker.RoundDuration(), line); + var entry = new CrimeHistory(_ticker.RoundDuration(), line, initiatorName); return TryAddHistory(key, entry); } @@ -100,7 +127,58 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem if (index >= record.History.Count) return false; + var history = record.History[(int)index]; record.History.RemoveAt((int) index); + + var args = new CriminalHistoryRemovedEvent(history); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } + + private void OnRecordChanged(Entity ent, ref CriminalRecordChangedEvent args) => + StateChanged(ent); + + private void OnHistoryAdded(Entity ent, ref CriminalHistoryAddedEvent args) => + StateChanged(ent); + + private void OnHistoryRemoved(Entity ent, ref CriminalHistoryRemovedEvent args) => + StateChanged(ent); + + private void StateChanged(Entity ent) + { + if (Comp(ent).LoaderUid is not { } loaderUid) + return; + + UpdateReaderUi(ent, loaderUid); + } + + private void OnCartridgeUiReady(Entity ent, ref CartridgeUiReadyEvent args) + { + UpdateReaderUi(ent, args.Loader); + } + + private void UpdateReaderUi(Entity ent, EntityUid loaderUid) + { + if (_station.GetOwningStation(ent) is not { } station) + return; + + var records = _records.GetRecordsOfType(station) + .Where(cr => cr.Item2.Status is not SecurityStatus.None || cr.Item2.History.Count > 0) + .Select(cr => + { + var (i, r) = cr; + var key = new StationRecordKey(i, station); + // Hopefully it will work smoothly..... + _records.TryGetRecord(key, out GeneralStationRecord? generalRecord); + return new WantedRecord(generalRecord!, r.Status, r.Reason, r.InitiatorName, r.History); + }); + var state = new WantedListUiState(records.ToList()); + + _cartridge.UpdateCartridgeUiState(loaderUid, state); + } } diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index be34a80fe3..e2d81e011c 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Objectives.Components; using Content.Server.Objectives.Components.Targets; +using Content.Shared.CartridgeLoader; using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; @@ -172,6 +173,11 @@ public sealed class StealConditionSystem : EntitySystem if (target.StealGroup != condition.StealGroup) return 0; + // check if cartridge is installed + if (TryComp(entity, out var cartridge) && + cartridge.InstallationStatus is not InstallationStatus.Cartridge) + return 0; + // check if needed target alive if (condition.CheckAlive) { diff --git a/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs new file mode 100644 index 0000000000..9d55e0c163 --- /dev/null +++ b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs @@ -0,0 +1,11 @@ +using Content.Shared.CriminalRecords; +using Content.Shared.CriminalRecords.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.CartridgeLoader.Cartridges; + +[Serializable, NetSerializable] +public sealed class WantedListUiState(List records) : BoundUserInterfaceState +{ + public List Records = records; +} diff --git a/Content.Shared/CriminalRecords/CriminalRecord.cs b/Content.Shared/CriminalRecords/CriminalRecord.cs index 0fe23d4395..5a023a9188 100644 --- a/Content.Shared/CriminalRecords/CriminalRecord.cs +++ b/Content.Shared/CriminalRecords/CriminalRecord.cs @@ -23,6 +23,12 @@ public sealed record CriminalRecord [DataField] public string? Reason; + /// + /// The name of the person who changed the status. + /// + [DataField] + public string? InitiatorName; + /// /// Criminal history of the person. /// This should have charges and time served added after someone is detained. @@ -35,4 +41,4 @@ public sealed record CriminalRecord /// A line of criminal activity and the time it was added at. /// [Serializable, NetSerializable] -public record struct CrimeHistory(TimeSpan AddTime, string Crime); +public record struct CrimeHistory(TimeSpan AddTime, string Crime, string? InitiatorName); diff --git a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs index 96b33ab91b..d665d32f1e 100644 --- a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs +++ b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.IdentityManagement; using Content.Shared.IdentityManagement.Components; using Content.Shared.Security; using Content.Shared.Security.Components; +using Content.Shared.StationRecords; +using Robust.Shared.Serialization; namespace Content.Shared.CriminalRecords.Systems; @@ -50,3 +52,22 @@ public abstract class SharedCriminalRecordsSystem : EntitySystem Dirty(characterUid, record); } } + +[Serializable, NetSerializable] +public struct WantedRecord(GeneralStationRecord targetInfo, SecurityStatus status, string? reason, string? initiator, List history) +{ + public GeneralStationRecord TargetInfo = targetInfo; + public SecurityStatus Status = status; + public string? Reason = reason; + public string? Initiator = initiator; + public List History = history; +}; + +[ByRefEvent] +public record struct CriminalRecordChangedEvent(CriminalRecord Record); + +[ByRefEvent] +public record struct CriminalHistoryAddedEvent(CrimeHistory History); + +[ByRefEvent] +public record struct CriminalHistoryRemovedEvent(CrimeHistory History); diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index f5cda2f2a1..2db27f5be0 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -19,3 +19,32 @@ log-probe-scan = Downloaded logs from {$device}! log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # + +# Wanted list cartridge +wanted-list-program-name = Wanted list +wanted-list-label-no-records = It's all right, cowboy +wanted-list-search-placeholder = Search by name and status + +wanted-list-age-label = [color=darkgray]Age:[/color] [color=white]{$age}[/color] +wanted-list-job-label = [color=darkgray]Job:[/color] [color=white]{$job}[/color] +wanted-list-species-label = [color=darkgray]Species:[/color] [color=white]{$species}[/color] +wanted-list-gender-label = [color=darkgray]Gender:[/color] [color=white]{$gender}[/color] + +wanted-list-reason-label = [color=darkgray]Reason:[/color] [color=white]{$reason}[/color] +wanted-list-unknown-reason-label = unknown reason + +wanted-list-initiator-label = [color=darkgray]Initiator:[/color] [color=white]{$initiator}[/color] +wanted-list-unknown-initiator-label = unknown initiator + +wanted-list-status-label = [color=darkgray]status:[/color] {$status -> + [suspected] [color=yellow]suspected[/color] + [wanted] [color=red]wanted[/color] + [detained] [color=#b18644]detained[/color] + [paroled] [color=green]paroled[/color] + [discharged] [color=green]discharged[/color] + *[other] none + } + +wanted-list-history-table-time-col = Time +wanted-list-history-table-reason-col = Crime +wanted-list-history-table-initiator-col = Initiator diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl index 6d6a97300c..2a7c09912f 100644 --- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl +++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl @@ -39,7 +39,7 @@ criminal-records-console-released = {$name} has been released by {$officer}. criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name}. criminal-records-console-paroled = {$name} has been released on parole by {$officer}. criminal-records-console-not-parole = {$officer} cleared the parole status of {$name}. -criminal-records-console-unknown-officer = +criminal-records-console-unknown-officer = ## Filters diff --git a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl index 91b3c92b1c..689e2e7808 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl @@ -40,6 +40,7 @@ steal-target-groups-clothing-eyes-hud-beer = beer goggles steal-target-groups-bible = bible steal-target-groups-clothing-neck-goldmedal = gold medal of crewmanship steal-target-groups-clothing-neck-clownmedal = clown medal +steal-target-groups-wanted-list-cartridge = wanted list cartridge # Thief structures steal-target-groups-teg = teg generator part diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index d318963016..31ebad6183 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -325,6 +325,7 @@ - id: RubberStampHos - id: SecurityTechFabCircuitboard - id: WeaponDisabler + - id: WantedListCartridge # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index f9581149e2..91493f48cd 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -93,3 +93,26 @@ - type: GuideHelp guides: - Forensics + +- type: entity + parent: BaseItem + id: WantedListCartridge + name: Wanted list cartridge + description: A program to get a list of wanted persons. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: UIFragment + ui: !type:WantedListUi + - type: Cartridge + programName: wanted-list-program-name + icon: + sprite: Objects/Misc/books.rsi + state: icon_magnifier + - type: WantedListCartridge + - type: StealTarget + stealGroup: WantedListCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 40f6f77e12..48e7a28deb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -114,6 +114,18 @@ - type: Speech speechVerb: Robotic +- type: entity + id: BaseSecurityPDA + abstract: true + components: + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - WantedListCartridge + - type: entity parent: BasePDA id: BaseMedicalPDA @@ -433,7 +445,7 @@ state: pda-library - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -476,7 +488,7 @@ state: pda-janitor - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -651,7 +663,7 @@ state: pda-science - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -666,7 +678,7 @@ state: pda-hos - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -681,7 +693,7 @@ state: pda-warden - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -695,7 +707,7 @@ state: pda-security - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -733,6 +745,7 @@ - NotekeeperCartridge - NewsReaderCartridge - LogProbeCartridge + - WantedListCartridge - type: entity parent: CentcomPDA @@ -834,7 +847,7 @@ - Cartridge - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -982,7 +995,7 @@ state: pda-boxer - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1082,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 481ca0f93d..e72de0d94a 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -73,6 +73,7 @@ ForensicScannerStealObjective: 1 #sec FlippoEngravedLighterStealObjective: 0.5 ClothingHeadHatWardenStealObjective: 1 + WantedListCartridgeStealObjective: 1 ClothingOuterHardsuitVoidParamedStealObjective: 1 #med MedicalTechFabCircuitboardStealObjective: 1 ClothingHeadsetAltMedicalStealObjective: 1 diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 48f56e2bfc..09619bf986 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -263,6 +263,13 @@ sprite: Clothing/Neck/Medals/clownmedal.rsi state: icon +- type: stealTargetGroup + id: WantedListCartridge + name: steal-target-groups-wanted-list-cartridge + sprite: + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + #Thief structures - type: stealTargetGroup diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index f8e44d831e..7a46d0f5e9 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -184,6 +184,15 @@ - type: Objective difficulty: 1.2 +- type: entity + parent: BaseThiefStealObjective + id: WantedListCartridgeStealObjective + components: + - type: StealCondition + stealGroup: WantedListCartridge + - type: Objective + difficulty: 1 + - type: entity #Medical subgroup parent: BaseThiefStealObjective id: ClothingOuterHardsuitVoidParamedStealObjective diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3197004cbf0460f517049aae94986a820100c8 GIT binary patch literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}w>(`OLn2z= zPBG+bHsEosU!^CfG-YaI@P@Arw!!>Ij%i9n2!48CD9e?Vk(r#al<({8fG=PF9}i=a zXiNNK?We4?Xvgswmreg783m87T6N&e>_dCMzu2W0{b+?@a@w5Va_S66OTvzKT-&+) zy`Tg0gP>`v7O_v|ifB21#c)yI>9-=2!@74lNZGY-JEyyB!?LprqYi4z{jcMH#o42s z{*tBWRzJ5%XQ9=%64~O4%?le|Nwo=>Mck8YduV;#K$H3X-)LTAXO}DUR*80WXvyrb zb#Pgt_wn=c8wNawcQEPn`j%LP9bO0YC0}ZUXPU1sgBFm@0mLA1DR?r7@^tlcS?83{ F1ONqldhh@M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index f3b02a2b2e..d5fad56006 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", "size": { "x": 32, "y": 32 @@ -79,6 +79,9 @@ { "name": "cart-y" }, + { + "name": "cart-sec" + }, { "name": "insert_overlay" } From ccadcc97819daaa2f8028df695527643392f9063 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 10:23:08 +0000 Subject: [PATCH 052/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 156fe91ffc..df513a66be 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Added exit confirmation for character setup menu with unsaved changes. - type: Add - id: 6899 - time: '2024-07-11T00:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29875 - author: ShadowCommander changes: - message: Players can now use melee attacks and shoves while dragging an entity @@ -3918,3 +3911,14 @@ id: 7398 time: '2024-09-19T08:41:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31241 +- author: Ertanic + changes: + - message: Wanted list program and its cartridge. + type: Add + - message: The cartridge has been added to the HOS locker. + type: Add + - message: Added target to thief on wanted list cartridge. + type: Add + id: 7399 + time: '2024-09-19T10:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31223 From 854bfd27cb062680caaeeec2a4c58b53372b4af6 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:23:45 +0200 Subject: [PATCH 053/176] Crew Monitor filter (#31659) * crewmon filter * string case matching Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Medical/CrewMonitoring/CrewMonitoringWindow.xaml | 3 +++ .../Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs | 5 +++++ .../en-US/medical/components/crew-monitoring-component.ftl | 2 ++ 3 files changed, 10 insertions(+) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml index 660f2e5e11..dd40749d33 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml @@ -15,6 +15,9 @@ + + Date: Thu, 19 Sep 2024 10:24:51 +0000 Subject: [PATCH 054/176] 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 df513a66be..5f5d96f41c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ShadowCommander - changes: - - message: Players can now use melee attacks and shoves while dragging an entity - in their active hand. - type: Tweak - id: 6900 - time: '2024-07-11T04:48:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29703 - author: Cojoke-dot changes: - message: You can no longer shoot out of crates with guns @@ -3922,3 +3914,10 @@ id: 7399 time: '2024-09-19T10:22:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31223 +- author: Errant + changes: + - message: Crew monitor list can now be filtered by name and job. + type: Add + id: 7400 + time: '2024-09-19T10:23:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31659 From 3c0be539ecf199b4b7f29fdf010938330f3692f7 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:35:39 -0400 Subject: [PATCH 055/176] Oasis updoot. (#32133) * updoooooooooooot * had to change to closed shutters * I press wrong button * ngl logic gates kinda ass to work with * get linked * Why is it so easy to place entities twice!? * camer --- Resources/Maps/oasis.yml | 2141 +++++++++++++++++++++++++++++++------- 1 file changed, 1781 insertions(+), 360 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 398fdeb398..8cde5f558c 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -226,7 +226,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -366,7 +366,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -459,9 +459,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 961: -57,-9 - 962: -56,-9 - 963: -55,-9 964: -55,-10 965: -56,-10 966: -57,-10 @@ -472,6 +469,9 @@ entities: 971: -56,-12 972: -57,-12 3489: -3,-31 + 3930: -57,-13 + 3931: -56,-13 + 3932: -55,-13 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1258,7 +1258,6 @@ entities: 3286: -53,-11 3287: -53,-12 3288: -53,-13 - 3289: -53,-15 3307: -58,3 3308: -57,3 3309: -56,3 @@ -1485,17 +1484,15 @@ entities: 3245: -58,1 3246: -58,0 3247: -58,-1 - 3248: -58,-8 - 3249: -58,-9 3250: -58,-10 3251: -58,-11 3252: -58,-12 - 3253: -58,-13 3254: -58,-14 3255: -58,-15 3343: -47,-5 3351: -47,-2 3360: -50,-2 + 3942: -58,-13 - node: color: '#D381C996' id: BrickTileWhiteInnerNw @@ -1693,8 +1690,6 @@ entities: decals: 3256: -58,-15 3257: -57,-15 - 3258: -54,-15 - 3259: -53,-15 3260: -53,-13 3261: -53,-12 3262: -53,-11 @@ -1710,7 +1705,6 @@ entities: 3272: -53,1 3273: -53,2 3274: -53,3 - 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -1923,18 +1917,12 @@ entities: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3291: -53,-15 - 3292: -54,-15 3293: -57,-15 3294: -58,-15 3295: -58,-14 - 3296: -58,-13 3297: -58,-12 3298: -58,-11 3299: -58,-10 - 3300: -58,-9 - 3301: -58,-8 - 3302: -58,-7 3303: -58,0 3304: -58,1 3305: -58,2 @@ -1942,6 +1930,9 @@ entities: 3346: -47,2 3352: -47,-2 3359: -50,1 + 3941: -58,-13 + 3943: -58,-9 + 3946: -54,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -5676,25 +5667,26 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3340: -58,-13 3556: -22,42 3572: -31,35 + 3929: -58,-14 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 979: -56,-7 983: -56,-3 - 999: -54,-13 3555: -18,42 3573: -24,35 + 3928: -54,-14 + 3940: -56,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3339: -58,-8 3553: -22,44 3571: -31,37 + 3927: -58,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5702,9 +5694,10 @@ entities: 977: -56,-1 978: -56,-1 984: -56,-5 - 998: -54,-8 3554: -18,44 3570: -24,37 + 3926: -54,-9 + 3939: -56,-7 - node: color: '#FFFFFFFF' id: WarnFull @@ -5712,6 +5705,7 @@ entities: 2479: 12,53 2480: 13,53 2481: 14,53 + 3944: -53,-15 - node: color: '#BC863FFF' id: WarnFullGreyscale @@ -5732,8 +5726,9 @@ entities: 3334: -58,-12 3335: -58,-11 3336: -58,-10 - 3337: -58,-9 3549: -22,43 + 3924: -58,-13 + 3945: -54,-15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5769,14 +5764,15 @@ entities: id: WarnLineN decals: 974: -57,-1 - 988: -57,-8 - 989: -56,-8 - 990: -56,-8 - 991: -55,-8 3341: -58,-1 3546: -19,44 3547: -20,44 3548: -21,44 + 3918: -57,-9 + 3919: -56,-9 + 3920: -55,-9 + 3934: -58,-7 + 3935: -57,-7 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5787,20 +5783,18 @@ entities: 993: -54,-11 994: -54,-12 2462: 17,49 - 3338: -54,-9 3540: 21,46 3541: 21,47 3542: 21,48 3543: 21,49 3545: -18,43 + 3925: -54,-13 + 3938: -56,-8 - node: color: '#FFFFFFFF' id: WarnLineW decals: 973: -57,-7 - 995: -55,-13 - 996: -56,-13 - 997: -57,-13 2458: 12,46 2459: 13,46 2460: 14,46 @@ -5812,10 +5806,15 @@ entities: 2476: 19,51 2477: 15,53 2478: 11,53 - 3342: -58,-7 3550: -21,42 3551: -20,42 3552: -19,42 + 3921: -57,-14 + 3922: -56,-14 + 3923: -55,-14 + 3933: -58,-7 + 3936: -58,-9 + 3937: -57,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7372,9 +7371,9 @@ entities: 3: 3276 0: 32768 -16,-5: - 0: 3080 + 0: 35848 -16,-4: - 3: 140 + 3: 52428 -15,-7: 3: 4368 0: 3276 @@ -7941,16 +7940,15 @@ entities: 0: 4879 3: 52224 14,5: - 0: 4593 + 0: 7633 14,6: - 0: 1 + 0: 15 3: 13056 15,5: - 0: 248 + 0: 35768 15,6: - 3: 14024 - 16,6: - 3: 34947 + 0: 15 + 3: 13824 16,7: 3: 55544 13,12: @@ -8101,19 +8099,18 @@ entities: 0: 1 -2,-18: 0: 4096 + -16,-3: + 3: 17612 -16,-2: - 3: 12 + 3: 4 0: 51200 -16,-1: 0: 2240 - -16,-3: - 3: 32768 -15,-3: - 3: 4369 - 0: 52428 - -15,-2: 3: 1 - 0: 64972 + 0: 56796 + -15,-2: + 0: 64975 -14,-3: 0: 65535 -14,-2: @@ -8121,7 +8118,9 @@ entities: 16,4: 3: 25188 16,5: - 3: 63010 + 3: 58914 + 16,6: + 3: 34946 16,3: 3: 18018 17,5: @@ -11271,11 +11270,19 @@ entities: parent: 2 - type: DeviceList devices: - - 29003 - - 29004 + - 10840 + - 10841 - 29050 - 9276 - - 28969 + - 10839 + - type: DeviceLinkSource + linkedPorts: + 12356: + - AirWarning: Close + - AirDanger: Close + 13577: + - AirDanger: Close + - AirWarning: Close - proto: AirCanister entities: - uid: 4223 @@ -12350,17 +12357,6 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 826 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28494: - - DoorStatus: DoorBolt - uid: 11331 components: - type: Transform @@ -12383,7 +12379,22 @@ entities: linkedPorts: 11336: - DoorStatus: DoorBolt - - uid: 28494 + - uid: 29523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 827: + - DoorStatus: InputB + 29543: + - DoorStatus: InputA + - DoorStatus: InputB + - uid: 29528 components: - type: Transform pos: -58.5,-19.5 @@ -12392,19 +12403,39 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 826: - - DoorStatus: DoorBolt - - uid: 28495 + 29536: + - DoorStatus: InputA + 29539: + - DoorStatus: InputA + - uid: 29532 components: - type: Transform + rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 277: - - DoorStatus: DoorBolt + 29538: + - DoorStatus: InputA + 29534: + - DoorStatus: InputA + - uid: 29541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29542: + - DoorStatus: InputA + - DoorStatus: InputB + 826: + - DoorStatus: InputB - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 234 @@ -12914,20 +12945,6 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-17.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5767: - - DoorStatus: InputA - - DockStatus: InputA - - DockStatus: InputB - - type: DeviceLinkSink - invokeCounter: 1 - uid: 353 components: - type: Transform @@ -13016,6 +13033,42 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 21002 + - uid: 24126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 277: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29540: + - DockStatus: InputA + 29535: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 29530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10843: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29533: + - DockStatus: InputA + 29537: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 24601 @@ -14417,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59140.387 + secondsUntilStateChange: -75908.84 state: Opening - uid: 6934 components: @@ -14429,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59143.02 + secondsUntilStateChange: -75911.48 state: Opening - uid: 6935 components: @@ -14441,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.87 + secondsUntilStateChange: -75910.33 state: Opening - uid: 6936 components: @@ -14452,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.086 + secondsUntilStateChange: -75909.55 state: Opening - proto: AirlockTheatreLocked entities: @@ -15623,14 +15676,6 @@ entities: - type: Transform pos: 21.42931,-41.39281 parent: 2 -- proto: AntimovCircuitBoard - entities: - - uid: 29447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.214676,22.569477 - parent: 2 - proto: APCBasic entities: - uid: 1172 @@ -36971,6 +37016,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 10836 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 - proto: BlastDoor entities: - uid: 7042 @@ -37187,6 +37239,430 @@ entities: - type: Transform pos: -11.612324,33.571518 parent: 2 + - uid: 11365 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7896 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11371 + components: + - type: MetaData + name: Smark Dock Mk VII User Manual + - type: Transform + parent: 7898 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11372 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7899 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 29573 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + rot: 9.42477796076938 rad + pos: -53.18508,9.538769 + parent: 2 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + - proto: BookMedicalOfficer entities: - uid: 29053 @@ -37285,6 +37761,18 @@ entities: - type: Transform pos: -6.5,32.5 parent: 2 + - type: Storage + storedItems: + 11365: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11365 - uid: 7897 components: - type: Transform @@ -37295,11 +37783,35 @@ entities: - type: Transform pos: -6.5,34.5 parent: 2 + - type: Storage + storedItems: + 11371: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11371 - uid: 7899 components: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Storage + storedItems: + 11372: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11372 - uid: 7900 components: - type: Transform @@ -37529,9 +38041,9 @@ entities: - uid: 15048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.241848,9.595246 - parent: 2 + parent: 29261 + - type: Physics + canCollide: False - uid: 29291 components: - type: Transform @@ -37600,11 +38112,11 @@ entities: 11862: position: 1,0 _rotation: South - - uid: 23238 + - uid: 29521 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.605057,5.3996086 + pos: -56.42585,5.4972024 parent: 2 - type: ContainerContainer containers: @@ -37677,9 +38189,9 @@ entities: - uid: 15047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.658516,9.595246 - parent: 2 + parent: 29260 + - type: Physics + canCollide: False - uid: 28614 components: - type: Transform @@ -37778,6 +38290,12 @@ entities: parent: 3609 - type: Physics canCollide: False + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.65753,9.624434 + parent: 2 - uid: 24154 components: - type: Transform @@ -38006,13 +38524,21 @@ entities: - uid: 9656 components: - type: Transform - pos: 7.5352507,21.61231 + pos: 3.4859555,19.501976 parent: 2 - uid: 22743 components: - type: Transform pos: 7.3088074,9.718449 parent: 21002 +- proto: ButtonFrameCaution + entities: + - uid: 5767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 10949 @@ -55628,6 +56154,61 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 29496 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 29497 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 29498 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 29499 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 29500 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 29501 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 29502 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 29503 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 29504 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 29505 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29506 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -74612,6 +75193,156 @@ entities: rot: 3.141592653589793 rad pos: 52.5,27.5 parent: 2 + - uid: 29547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 29548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 2 + - uid: 29549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 2 + - uid: 29550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 29551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - uid: 29552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - uid: 29553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 29554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 2 + - uid: 29555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 29556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 29557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - uid: 29558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-22.5 + parent: 2 + - uid: 29559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 + - uid: 29561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - uid: 29562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 2 + - uid: 29566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-26.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-25.5 + parent: 2 + - uid: 29568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-25.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 29571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -78394,6 +79125,11 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 11325 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 - uid: 11344 components: - type: Transform @@ -78466,6 +79202,11 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - uid: 11363 components: - type: Transform @@ -78476,6 +79217,11 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - uid: 11565 components: - type: Transform @@ -78526,6 +79272,11 @@ entities: - type: Transform pos: -57.5,-26.5 parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 - uid: 12092 components: - type: Transform @@ -78562,6 +79313,17 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-14.5 parent: 2 + - uid: 20597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 - uid: 29007 components: - type: Transform @@ -78609,6 +79371,44 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,20.5 parent: 2 + - uid: 29508 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 29512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 29515 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 29516 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 29517 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 20270 @@ -88783,7 +89583,7 @@ entities: - uid: 23236 components: - type: Transform - pos: -52.941887,9.867835 + pos: -52.803364,9.780684 parent: 2 - proto: DrinkGlass entities: @@ -90777,6 +91577,18 @@ entities: - type: Transform pos: 28.730253,22.5 parent: 2 + - type: Storage + storedItems: + 10837: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 10837 - uid: 19175 components: - type: Transform @@ -90792,6 +91604,18 @@ entities: - type: Transform pos: -52.221172,11.5 parent: 2 + - type: Storage + storedItems: + 15047: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15047 - uid: 29261 components: - type: Transform @@ -90802,6 +91626,9 @@ entities: 29262: position: 0,0 _rotation: South + 15048: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -90809,11 +91636,7 @@ entities: occludes: True ents: - 29262 - - uid: 29268 - components: - - type: Transform - pos: -54.773254,11.5 - parent: 2 + - 15048 - proto: filingCabinetTall entities: - uid: 19177 @@ -93232,7 +94055,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -50464.367 + secondsUntilStateChange: -67232.83 - type: DeviceNetwork deviceLists: - 18275 @@ -125898,6 +126721,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14721 components: - type: Transform @@ -127782,6 +128607,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14720 components: - type: Transform @@ -129094,7 +129921,9 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 28969 +- proto: GasVentScrubberVox + entities: + - uid: 10839 components: - type: Transform rot: 1.5707963267948966 rad @@ -129105,22 +129934,22 @@ entities: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29003 + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -12.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29004 + - uid: 10841 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: -13.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -132571,18 +133400,6 @@ entities: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 10845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 10847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 10925 components: - type: Transform @@ -132671,6 +133488,12 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,6.5 parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 - uid: 11340 components: - type: Transform @@ -132683,18 +133506,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,2.5 parent: 2 - - uid: 11342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-8.5 - parent: 2 - - uid: 11343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - uid: 11351 components: - type: Transform @@ -132713,60 +133524,18 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 - - uid: 11361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 2 - uid: 11362 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 - - uid: 11366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - uid: 11367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - - uid: 11372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - uid: 11380 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,4.5 parent: 2 - - uid: 11381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 - parent: 2 - uid: 11383 components: - type: Transform @@ -135155,6 +135924,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,34.5 parent: 2 + - uid: 23245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -135455,11 +136230,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-19.5 parent: 21002 - - uid: 24126 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 24133 components: - type: Transform @@ -136322,6 +137092,18 @@ entities: rot: 3.141592653589793 rad pos: 52.5,66.5 parent: 21002 + - uid: 28969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 - uid: 29043 components: - type: Transform @@ -136434,12 +137216,36 @@ entities: rot: 3.141592653589793 rad pos: 60.5,24.5 parent: 2 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 29458 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,23.5 parent: 2 + - uid: 29493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 29495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -136832,18 +137638,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-56.5 parent: 2 - - uid: 20597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 - parent: 2 - - uid: 20610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 2 - uid: 20611 components: - type: Transform @@ -137810,7 +138604,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -87296.22 + secondsUntilStateChange: -104064.67 state: Opening - uid: 5211 components: @@ -139548,8 +140342,228 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGateAnd + entities: + - uid: 2259 + components: + - type: Transform + anchored: True + pos: -59.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12066: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 28494 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29541: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29507 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29523: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29527 + components: + - type: Transform + anchored: True + pos: -59.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 11297: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29533 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29540: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29534 + components: + - type: Transform + anchored: True + pos: -61.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29539: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29535 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29537: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29536 + components: + - type: Transform + anchored: True + pos: -61.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29538: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static +- proto: LogicGateNor + entities: + - uid: 29542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputB + - uid: 29543 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateOr entities: + - uid: 826 + components: + - type: Transform + anchored: True + pos: -60.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputA + 12066: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 827 + components: + - type: Transform + anchored: True + pos: -60.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 2259: + - Output: InputA + 11297: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 11297 + components: + - type: Transform + anchored: True + pos: -58.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29528: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 12066 + components: + - type: Transform + anchored: True + pos: -58.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29532: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 28922 components: - type: Transform @@ -139583,8 +140597,146 @@ entities: linkedPorts: 28436: - Output: DoorBolt + - uid: 29522 + components: + - type: Transform + anchored: True + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 11 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputB + 2259: + - Output: InputB + 29533: + - Output: InputB + 29535: + - Output: InputB + 29536: + - Output: InputB + 29534: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29529 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputA + 24126: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29531 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputA + 29530: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29537 + components: + - type: Transform + anchored: True + pos: -61.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29538 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29539 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29540 + components: + - type: Transform + anchored: True + pos: -61.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateXor entities: + - uid: 277 + components: + - type: Transform + anchored: True + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 827: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 5762 components: - type: Transform @@ -139662,21 +140814,6 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 5767 - components: - - type: Transform - anchored: True - pos: -59.5,-17.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28495: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - uid: 6810 components: - type: Transform @@ -139724,6 +140861,21 @@ entities: - type: Physics canCollide: False bodyType: Static + - uid: 10843 + components: + - type: Transform + anchored: True + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 826: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 28961 components: - type: Transform @@ -140249,6 +141401,13 @@ entities: - type: Transform pos: -27.514933,-49.371128 parent: 2 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 29520 + components: + - type: Transform + pos: -56.05085,0.6887263 + parent: 2 - proto: MedicalBed entities: - uid: 1313 @@ -140867,6 +142026,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29490 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 8864 @@ -141010,14 +142174,6 @@ entities: - type: Transform pos: -27.493137,-34.27025 parent: 2 -- proto: OverlordCircuitBoard - entities: - - uid: 29448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.798008,22.579893 - parent: 2 - proto: OxygenCanister entities: - uid: 723 @@ -141272,9 +142428,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141366,6 +142520,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 7657 @@ -141378,9 +142533,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141472,6 +142625,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 9368 @@ -141557,6 +142711,112 @@ entities: components: - type: Transform parent: 2695 + - type: Physics + canCollide: False + - uid: 10837 + components: + - type: Transform + parent: 2693 + - type: Paper + content: >+ + [bold]=====================================================[/bold] + + + [head=1][bold][color=green] SHUTTLE CONSTRUCTION + AUTHORIZATION FORM[/color][/bold][/head] + [bold]=====================================================[/bold] + + + [bold]Authorizing Entity:[/bold] + + Name: ______________________ , Position: _______________________ + + + [bold]Approved Shipwright(s):[/bold] + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + + [bold]1. PROJECT DETAILS + + [/bold] + + Shuttle Name: ________________________ + + Class/Model: __________________________ + + Design Specifications: ______________________________ + + + [bold]2. AUTHORIZATION + + [/bold] + + The Authorizing Entity grants the Shipwright permission to commence construction of the specified shuttle. All designs and materials are to be approved by the Authorizing Entity before fabrication begins. + + + [bold]3. TERMS OF CONSTRUCTION + + [/bold] + + [bullet] [bold]Duration:[/bold] Construction to be completed within ______. + + [bullet] [bold]Resources:[/bold] All materials and components required for construction are to be sourced by the Shipwright, with costs covered by the Authorizing Entity only when preapproved unless otherwise specified. + + [bullet] [bold]Modifications:[/bold] Any design changes must receive prior approval from the Authorizing Entity. + + [bullet] [bold]Remittance:[/bold] As payment for authorization and support services the Shipwright agrees to provide the Authorizing Entity the sum of ___________ in either materials or speso equivalent. + + + [bold]4. INSPECTION & TESTING + + [/bold] + + The Authorizing Entity reserves the right to inspect the vessel at any stage of construction. Upon completion, the Shipwright must conduct a series of spaceworthiness tests, overseen by the Authorizing Entity. + + + [bold]5. WARRANTIES & LIABILITY + + [/bold] + + The Shipwright guarantees the vessel will be constructed according to the highest standards of interstellar engineering. Any defects or malfunctions discovered within ______ minutes of delivery must be rectified at the Shipwright’s expense. + + + [bold]6. DISPUTE RESOLUTION + + [/bold] + + Any disagreements will be resolved by the Station’s Resident Arbitrator. + + + [bold]SIGNED: + + [/bold] + + Shipwright(s): + + __________________________ + + __________________________ + + __________________________ + + __________________________ + + + Authorizing Entity: + + __________________________ (Stamp) + + + + - type: Physics canCollide: False - uid: 11861 @@ -141609,31 +142869,31 @@ entities: - uid: 23239 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23240 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23241 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23242 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23243 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23854 @@ -141661,7 +142921,7 @@ entities: - uid: 29252 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 29253 @@ -141781,9 +143041,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141875,6 +143133,7 @@ entities: __________________________ (Stamp) + - uid: 29262 components: - type: Transform @@ -141885,9 +143144,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141979,6 +143236,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29265 @@ -141991,9 +143249,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142084,6 +143340,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29266 @@ -142097,9 +143354,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142191,6 +143446,7 @@ entities: __________________________ (Stamp) + - uid: 29267 components: - type: Transform @@ -142202,9 +143458,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142296,6 +143550,7 @@ entities: __________________________ (Stamp) + - proto: PaperBin10 entities: - uid: 23867 @@ -142583,6 +143838,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.100553,-30.277967 parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.686268,5.695119 + parent: 2 - uid: 11857 components: - type: Transform @@ -142615,12 +143876,6 @@ entities: - type: Transform pos: 12.537674,6.638035 parent: 21002 - - uid: 23245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.667557,5.732942 - parent: 2 - uid: 23436 components: - type: Transform @@ -143056,14 +144311,16 @@ entities: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 11327 + - uid: 11366 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 - - uid: 11328 + - uid: 11367 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-5.5 parent: 2 - uid: 11546 @@ -143071,6 +144328,22 @@ entities: - type: Transform pos: -47.5,-0.5 parent: 2 + - uid: 29509 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 29510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29524 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - uid: 10165 @@ -143079,9 +144352,10 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 11225 + - uid: 11370 components: - type: Transform + rot: -1.5707963267948966 rad pos: -51.5,-14.5 parent: 2 - proto: PlayerStationAi @@ -145263,12 +146537,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-11.5 parent: 2 - - uid: 12066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - uid: 12067 components: - type: Transform @@ -145971,6 +147239,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,12.5 parent: 2 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 - uid: 29452 components: - type: Transform @@ -146011,11 +147285,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,37.5 parent: 2 - - uid: 2259 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - uid: 6947 components: - type: Transform @@ -146027,6 +147296,11 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,31.5 parent: 2 + - uid: 11343 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -146064,6 +147338,11 @@ entities: parent: 2 - type: PointLight radius: 8 + - uid: 11987 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 - uid: 12058 components: - type: Transform @@ -146095,11 +147374,6 @@ entities: - type: Transform pos: 48.5,51.5 parent: 2 - - uid: 24001 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - uid: 24003 components: - type: Transform @@ -146149,6 +147423,12 @@ entities: rot: 3.141592653589793 rad pos: -45.5,27.5 parent: 2 + - uid: 29572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 21438 @@ -148210,18 +149490,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-25.5 parent: 2 - - uid: 11986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-24.5 - parent: 2 - - uid: 11987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-23.5 - parent: 2 - uid: 11988 components: - type: Transform @@ -148494,6 +149762,12 @@ entities: rot: 3.141592653589793 rad pos: -14.5,12.5 parent: 2 + - uid: 28495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 - uid: 28983 components: - type: Transform @@ -148530,6 +149804,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -148804,6 +150084,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,30.5 parent: 2 + - uid: 29489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-10.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -149280,6 +150566,33 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,30.5 parent: 2 + - uid: 29486 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 29487 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 29488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29544 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 29545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -150352,6 +151665,11 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 1061 @@ -150946,11 +152264,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 - - uid: 827 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 1206 components: - type: Transform @@ -153220,41 +154533,17 @@ entities: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 10836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-8.5 - parent: 2 - - uid: 10837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - - uid: 10840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - uid: 10841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - uid: 10842 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -58.5,-11.5 parent: 2 - - uid: 10843 + - uid: 10847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 parent: 2 - uid: 10854 components: @@ -153337,22 +154626,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-55.5 parent: 2 - - uid: 11297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - uid: 11323 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 11325 - components: - - type: Transform - pos: -60.5,-6.5 - parent: 2 - uid: 11326 components: - type: Transform @@ -153363,17 +154641,11 @@ entities: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 11365 + - uid: 11342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - - uid: 11371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 parent: 2 - uid: 11373 components: @@ -153381,12 +154653,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 - - uid: 11375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 11469 components: - type: Transform @@ -153900,6 +155166,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-10.5 parent: 21002 + - uid: 23238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 - uid: 23416 components: - type: Transform @@ -154175,11 +155447,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 11990 + - uid: 29518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: -61.5,-25.5 parent: 2 - proto: SaxophoneInstrument entities: @@ -155372,6 +156644,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 29526 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputA + - uid: 29574 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputB - proto: ShuttersWindowOpen entities: - uid: 742 @@ -155987,6 +157277,18 @@ entities: - Pressed: Toggle 11337: - Pressed: Toggle + - uid: 11986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29526: + - Pressed: Toggle + 29574: + - Pressed: Toggle - uid: 12804 components: - type: MetaData @@ -159864,6 +161166,13 @@ entities: parent: 2 - type: SpamEmitSound enabled: False +- proto: SpawnMechRipley + entities: + - uid: 29519 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 - proto: SpawnMobBee entities: - uid: 610 @@ -163905,6 +165214,8 @@ entities: pos: -57.5,-20.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply id: Salvage - uid: 29177 components: @@ -163927,6 +165238,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Dock N + - uid: 29525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Dock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 23224 @@ -167585,6 +168907,69 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29268 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29511: + - Left: Forward + - Right: Reverse + - Middle: Off + 20597: + - Left: Forward + - Right: Reverse + - Middle: Off + 29512: + - Left: Forward + - Right: Reverse + - Middle: Off + 29513: + - Right: Reverse + - Middle: Off + - Left: Off + 29514: + - Left: Forward + - Right: Reverse + - Middle: Off + 11361: + - Left: Forward + - Right: Reverse + - Middle: Off + 11325: + - Left: Forward + - Right: Reverse + - Middle: Off + 24001: + - Left: Forward + - Right: Reverse + - Middle: Off + 29515: + - Left: Forward + - Right: Reverse + - Middle: Off + 29516: + - Left: Forward + - Right: Reverse + - Middle: Off + 29517: + - Left: Forward + - Right: Reverse + - Middle: Off + 11990: + - Left: Forward + - Right: Reverse + - Middle: Off + 29508: + - Left: Forward + - Right: Off + - Middle: Off + 11382: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 9643 @@ -176469,17 +177854,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-6.5 parent: 2 - - uid: 10838 + - uid: 10845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-10.5 + rot: 3.141592653589793 rad + pos: -60.5,-7.5 parent: 2 - uid: 10846 components: @@ -177191,6 +178570,12 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 - uid: 11226 components: - type: Transform @@ -178670,6 +180055,12 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-8.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -181122,6 +182513,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,34.5 parent: 2 + - uid: 29003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-10.5 + parent: 2 - uid: 29293 components: - type: Transform @@ -181302,6 +182699,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,21.5 parent: 2 + - uid: 29492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-9.5 + parent: 2 - proto: WallSolid entities: - uid: 309 @@ -185566,6 +186969,12 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 + - uid: 29491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -186775,7 +188184,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: 13577: @@ -186787,7 +188196,7 @@ entities: pos: -11.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 5 + invokeCounter: 7 - type: DeviceLinkSource linkedPorts: 12356: @@ -187643,6 +189052,18 @@ entities: rot: 3.141592653589793 rad pos: -24.5,38.5 parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 18936 components: - type: Transform @@ -188538,7 +189959,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -432500.88 + secondsUntilStateChange: -449269.3 state: Opening - uid: 28863 components: From 67b34cf8cfcf43aa84d7d2b2b6e9faf443f3d463 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:35:57 +0200 Subject: [PATCH 056/176] Update Omega (#32237) --- Resources/Maps/omega.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 77dea071ac..2ffa5eca03 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -31690,14 +31690,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 4984 + - uid: 6290 components: - type: Transform - pos: -3.5,26.5 + pos: 12.5,-18.5 parent: 4812 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 3469 @@ -58676,10 +58673,10 @@ entities: stash: !type:ContainerSlot {} - proto: PottedPlantRD entities: - - uid: 6290 + - uid: 12045 components: - type: Transform - pos: 24.5,-18.5 + pos: 28.5,-20.5 parent: 4812 - proto: PowerCellRecharger entities: @@ -67865,10 +67862,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterScience entities: - - uid: 12045 + - uid: 4984 components: - type: Transform - pos: 12.5,-18.5 + pos: 24.5,-18.5 parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: @@ -69907,6 +69904,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 4373 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 - uid: 4991 components: - type: Transform From 2e37b1fb2f3d6aaa38ee32dede36e7e2f8c6eb4a Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:36:12 +0200 Subject: [PATCH 057/176] Update Meta (#32238) --- Resources/Maps/meta.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index e8c1f0bb6a..1f210e438a 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -10880,7 +10880,7 @@ entities: pos: -42.5,29.5 parent: 5350 - type: Door - secondsUntilStateChange: -5682.053 + secondsUntilStateChange: -5745.716 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -63381,14 +63381,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 26528 + - uid: 26984 components: - type: Transform - pos: 108.5,-7.5 + pos: 29.5,-36.5 parent: 5350 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 10811 @@ -144591,6 +144588,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 26528 + components: + - type: Transform + pos: 108.5,-7.5 + parent: 5350 - uid: 26547 components: - type: Transform From 37a8c23f79ea83501e11132fd2ef18a027eae3ae Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:36:29 +0200 Subject: [PATCH 058/176] Update Fland (#32241) --- Resources/Maps/fland.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index ab72385723..54ef4d5510 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -98863,11 +98863,8 @@ entities: - uid: 27828 components: - type: Transform - pos: 97.5,33.5 + pos: 31.5,-31.5 parent: 13329 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 13050 @@ -198140,7 +198137,7 @@ entities: - uid: 13290 components: - type: Transform - pos: 31.5,-31.5 + pos: 97.5,33.5 parent: 13329 - uid: 35415 components: From cd8ba1d6b3f99b25c6e5d25c5b489728cdcf154d Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Thu, 19 Sep 2024 06:37:28 -0700 Subject: [PATCH 059/176] Cog update (Engineering update) (#32263) * updated cog atmos and engi * fixed that * updated --- Resources/Maps/cog.yml | 26141 ++++++++++++++++++++------------------- 1 file changed, 13631 insertions(+), 12510 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index bc5742dfac..7915d9cef0 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -80,7 +80,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 @@ -92,7 +92,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -100,7 +100,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD version: 6 -2,-1: ind: -2,-1 @@ -176,19 +176,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAwAAAAAABwAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 @@ -212,7 +212,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 @@ -228,7 +228,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAA version: 6 4,-2: ind: 4,-2 @@ -236,23 +236,23 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 @@ -296,11 +296,11 @@ entities: version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -320,7 +320,7 @@ entities: version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABCwAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -336,11 +336,11 @@ entities: version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 @@ -424,19 +424,19 @@ entities: version: 6 4,0: ind: 4,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 4,1: ind: 4,1 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: gAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -466,6 +466,10 @@ entities: ind: -5,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 5,1: + ind: 5,1 + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -487,11 +491,26 @@ entities: version: 2 nodes: - node: + angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 5498: 61,-4 - 5499: 62,-4 + 8241: 30,2 + 8242: 30,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 7781: 77,0 + 8243: 29,5 + 8313: 77,8 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 7788: 68,9 + 8312: 76,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -500,6 +519,21 @@ entities: 2955: 64,44 6205: 7,-43 6206: 4,-43 + 7783: 67,0 + 7789: 67,8 + 7989: 20,1 + 7990: 20,-1 + 7991: 20,-3 + 7992: 20,-5 + 7993: 20,-7 + 7994: 20,-9 + 7995: 20,-11 + 8201: 30,-3 + 8204: 26,-17 + 8205: 18,-17 + 8206: 45,-1 + 8364: 35.78848,-2.4661767 + 8365: 40,-1 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -507,12 +541,11 @@ entities: decals: 2960: 49,63 2961: 52,64 - 4654: 60,2 - 4655: 62,2 - 4656: 64,2 - 4657: 66,2 - 4658: 68,2 5198: 12.964991,13.606268 + 7784: 68,-1 + 7785: 76,-1 + 8199: 30,-15 + 8200: 30,-9 - node: color: '#FFFFFFFF' id: Basalt1 @@ -614,20 +647,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 5475: 53,-7 - 5476: 54,-7 - 5477: 55,-7 - 5478: 56,-7 - 5479: 57,-7 - 5480: 58,-7 - 5481: 57,-4 - 5482: 58,-4 - 5483: 55,-5 - 5484: 54,-5 - 5485: 53,-5 - 5486: 53,-4 - 5487: 54,-4 - 5488: 55,-4 + 8245: 31,2 + 8246: 31,3 + 8247: 31,4 - node: color: '#FFFFFFFF' id: Bot @@ -668,7 +690,6 @@ entities: 1436: -24,-32 1437: -25,-32 1438: -23,-32 - 1439: -42,-21 1440: -43,-24 1441: -49,-27 1442: -49,-23 @@ -690,7 +711,6 @@ entities: 2047: -15,-9 2048: -13,-7 2049: -26,2 - 2082: -1,-12 2089: -32,11 2090: -29,11 2091: -29,7 @@ -753,8 +773,6 @@ entities: 4343: -46,-50 4344: -46,-47 4345: -35,-38 - 4494: 17,0 - 4497: 25,0 4498: 33,-42 4523: 45,43 4524: 46,43 @@ -774,7 +792,6 @@ entities: 4543: -20,4 4544: -20,14 4545: -23,31 - 4635: 54,2 4713: 15,58 5020: 3,43 5047: 42,56 @@ -793,22 +810,14 @@ entities: 5799: -2,-4 6198: 3,-46 6200: 3,-40 - 6233: 11,-4 6258: 58,-27 6337: -11,2 - 6493: 51,4 - 6494: 52,4 - 6495: 53,4 6519: 45,2 - 6627: 17,-14 - 6628: 25,-14 6630: 20,-19 6631: 23,-19 6632: 16,-17 6633: 28,-17 6634: 33,-14 - 6635: 30,2 - 6636: 13,-14 6652: -24,-8 6654: -25,-11 6655: -25,-12 @@ -829,17 +838,37 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 6803: 35,-2 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 7521: 3,70 7522: 5,70 - 7552: 52,1 7598: -26,47 7599: -31,46 7600: -9,-36 + 7700: 3,-21 + 7701: 4,-21 + 7704: 3,-19 + 7705: 4,-19 + 7726: 24,7 + 7764: 50,-2 + 7765: 50,-1 + 7766: 58,0 + 7767: 58,8 + 7768: 62,9 + 7769: 60,-4 + 7770: 58,-5 + 7771: 57,12 + 7772: 68,0 + 7774: 76,8 + 8016: 20,-15 + 8196: 31,-3 + 8197: 42,-2 + 8198: 42,-1 + 8209: 39,4 + 8210: 40,4 + 8253: 31,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -878,17 +907,69 @@ entities: 2957: 50,59 2958: 48,65 2959: 50,65 - 6207: 18,7 + 7790: 76,0 + 7822: 68,8 + 7999: 8,-9 + - node: + color: '#000000FF' + id: BotGreyscale + decals: + 7721: 27,9 + - node: + color: '#0096FFFF' + id: BotGreyscale + decals: + 7712: 26,12 + 7713: 27,12 + 7714: 27,11 + - node: + color: '#90BBFFFF' + id: BotGreyscale + decals: + 7725: 25,8 + - node: + color: '#FF0000FF' + id: BotGreyscale + decals: + 7709: 26,11 + 7710: 25,11 + 7711: 25,12 - node: color: '#FF00FFFF' id: BotGreyscale decals: 6801: 2,59 + - node: + color: '#FF4DFFFF' + id: BotGreyscale + decals: + 7720: 24,8 + - node: + color: '#FFA500FF' + id: BotGreyscale + decals: + 7716: 27,6 + 7717: 27,7 + - node: + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7715: 27,8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7996: 10,-12 + 7997: 11,-12 + 7998: 12,-12 - node: color: '#FFFFFFFF' id: BotGreyscale decals: 6802: 2,58 + 7718: 25,9 + 7719: 25,10 - node: color: '#FFFFFFFF' id: Box @@ -908,16 +989,24 @@ entities: id: Box decals: 6702: 3,-6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Box + decals: + 7791: 64,8 + 7792: 64,0 + 7793: 68,-4 + 7794: 76,-4 + 7795: 80,0 + 7796: 76,12 + 7798: 80,8 + 7821: 68,12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 4659: 60,2 - 4660: 62,2 - 4661: 64,2 - 4662: 66,2 - 4663: 68,2 5199: 13,13 - node: color: '#3EB38896' @@ -998,6 +1087,9 @@ entities: 5582: -46,72 5583: -46,67 6692: 0,-15 + 7848: 53,4 + 7849: 53,5 + 7850: 53,6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1026,6 +1118,8 @@ entities: 7361: -12,-13 7362: -11,-15 7519: 59,58 + 7940: 57,-1 + 7974: 61,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1040,6 +1134,8 @@ entities: 7332: -13,21 7337: -21,24 7518: 57,58 + 7939: 54,-1 + 7973: 58,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1056,6 +1152,8 @@ entities: 7335: -20,19 7365: -11,-16 7366: -19,-16 + 7935: 57,-4 + 7971: 61,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1075,6 +1173,8 @@ entities: 7358: -20,-16 7359: -13,-16 7517: 57,52 + 7936: 54,-4 + 7972: 58,3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1176,6 +1276,9 @@ entities: 7514: 59,57 7515: 59,56 7516: 59,53 + 7945: 57,-3 + 7946: 57,-2 + 7980: 61,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1228,6 +1331,10 @@ entities: 7328: -11,21 7367: -20,-11 7510: 75,54 + 7943: 55,-1 + 7944: 56,-1 + 7977: 59,5 + 7978: 60,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1278,6 +1385,10 @@ entities: 7330: -11,19 7374: -12,-16 7504: 67,43 + 7937: 55,-4 + 7938: 56,-4 + 7975: 59,3 + 7976: 60,3 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1317,6 +1428,9 @@ entities: 7511: 57,56 7512: 57,57 7513: 57,53 + 7941: 54,-3 + 7942: 54,-2 + 7979: 58,4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1533,6 +1647,8 @@ entities: id: Caution decals: 5282: 60,-15 + 7799: 64,2 + 7800: 64,6 - node: cleanable: True color: '#3C44AAFF' @@ -1547,6 +1663,12 @@ entities: 4347: -44.25874,-48.932568 4357: -43.14474,-50.673935 4358: -44.534176,-46.580185 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 8244: 29,6 - node: color: '#FFFFFFFF' id: Delivery @@ -1556,7 +1678,6 @@ entities: 1270: 54,-23 1273: 62,-15 1276: 54,-37 - 1355: 19,3 1781: 33,35 1782: 33,36 1783: 33,37 @@ -1596,6 +1717,19 @@ entities: 6661: -30,-7 6666: -22,-3 7523: 3,68 + 8358: 24,-15 + 8359: 25,-15 + 8360: 26,-15 + 8362: 60,12 + 8363: 59,12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 7818: 62,3 + 7819: 62,4 + 7820: 62,5 - node: cleanable: True color: '#B02E26FF' @@ -1652,7 +1786,6 @@ entities: 6614: 39,24 6615: 51,18 6616: 45,8 - 6617: 45,0 7048: -38,-59 7049: -37,-57 7087: -35,-57 @@ -1700,6 +1833,11 @@ entities: 7498: -66,-20 7499: -65,-20 7500: -61,-31 + 8175: 3,-21 + 8176: 4,-19 + 8320: 36,1 + 8321: 37,-3 + 8322: 31,0 - node: cleanable: True zIndex: 1 @@ -1717,7 +1855,6 @@ entities: 6943: 39,7 6944: 40,6 6945: 41,6 - 6946: 43,1 6947: 44,-4 6948: 42,-5 6949: 43,-7 @@ -1740,6 +1877,11 @@ entities: 7034: 40,31 7035: 30,10 7036: 28,14 + 8099: 29,6 + 8129: 44,-1 + 8130: 47,-4 + 8168: 42,4 + 8169: 45,0 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1791,25 +1933,14 @@ entities: 1461: -10,-23 1466: 16,3 1467: 15,3 - 1468: 15,4 - 1469: 16,4 - 1470: 16,5 - 1471: 15,5 1481: 19,5 1482: 22,5 - 1483: 21,2 1484: 19,6 - 1485: 27,3 - 1486: 25,3 - 1487: 35,-3 - 1488: 33,-2 1489: 31,-12 1490: 30,-14 1491: 32,-16 1492: 27,-18 - 1493: 25,-16 1494: 21,-18 - 1495: 19,-17 1496: 32,-24 1497: 30,-22 1498: 23,-23 @@ -2007,20 +2138,9 @@ entities: 4272: 10,16 4273: 14,15 4274: 11,17 - 4275: 10,-6 - 4276: 7,-4 - 4277: 8,-3 - 4278: 9,-2 - 4279: 8,1 - 4280: 8,1 4282: 19,5 4283: 25,5 4284: 28,3 - 4285: 29,2 - 4289: 36,-2 - 4290: 36,-1 - 4291: 34,1 - 4292: 34,-2 4293: 13,-28 4294: 17,-27 4295: 20,-28 @@ -2133,41 +2253,9 @@ entities: 4908: -13,-28 4910: -22,-29 4911: -25,-29 - 4912: 13,-11 - 4913: 9,-11 - 4914: 10,-11 - 4915: 9,-9 - 4916: 8,-10 - 4917: 13,-9 - 4918: 11,-7 - 4919: 12,-7 - 4921: 8,-4 - 4922: 8,-2 - 4923: 10,-2 - 4925: 9,-4 - 4928: 7,5 - 4929: 8,5 4930: 11,4 - 4931: 12,3 - 4934: 27,3 4935: 27,4 4936: 28,3 - 5096: 64,-2 - 5097: 61,0 - 5098: 66,1 - 5099: 69,-2 - 5100: 73,0 - 5101: 70,1 - 5102: 73,6 - 5103: 71,-2 - 5104: 63,-3 - 5105: 56,-1 - 5106: 53,2 - 5107: 55,5 - 5108: 54,6 - 5109: 69,2 - 5110: 60,-3 - 5111: 62,-3 5112: 47,8 5113: 48,8 5114: 48,8 @@ -2230,19 +2318,6 @@ entities: 5402: 48,-19 5403: 52,-15 5404: 48,-15 - 5405: 78,5 - 5406: 78,8 - 5407: 78,11 - 5408: 75,11 - 5409: 73,12 - 5410: 71,11 - 5411: 74,12 - 5412: 71,12 - 5413: 69,12 - 5414: 66,12 - 5415: 64,12 - 5416: 61,12 - 5417: 57,12 5418: 55,12 5419: 54,11 5420: 54,10 @@ -2253,7 +2328,6 @@ entities: 5425: 51,8 5426: 50,8 5427: 48,8 - 5428: 54,4 5430: 45,8 5431: 5,-24 5432: -1,-24 @@ -2484,7 +2558,6 @@ entities: 6520: 41,-1 6521: 41,0 6522: 41,1 - 6523: 44,0 6524: 45,2 6525: 46,3 6526: 45,4 @@ -2494,15 +2567,8 @@ entities: 6530: 42,7 6531: 43,4 6532: 43,3 - 6533: 44,-2 - 6534: 45,-2 6535: 44,-5 6536: 44,-6 - 6537: 40,-3 - 6538: 40,-3 - 6539: 37,-3 - 6540: 35,0 - 6541: 31,-3 6542: 29,-4 6543: 29,-1 6544: 31,-9 @@ -2520,31 +2586,9 @@ entities: 6556: 40,-13 6557: 42,-14 6558: 43,-13 - 6559: 54,-7 - 6560: 56,-4 - 6561: 57,-6 - 6562: 54,-5 - 6563: 57,-5 6564: 55,-6 - 6565: 61,-5 - 6566: 63,-4 - 6567: 65,-5 - 6568: 68,-3 - 6569: 70,-5 - 6570: 72,-4 - 6571: 73,-5 - 6572: 71,-3 - 6573: 68,-5 - 6574: 68,0 - 6575: 66,0 - 6576: 63,-1 6577: 53,-2 - 6578: 48,-1 6579: 47,-1 - 6580: 45,-1 - 6581: 44,0 - 6582: 45,0 - 6583: 44,-2 6584: 44,-3 6585: 45,-3 6586: 46,-3 @@ -2698,6 +2742,14 @@ entities: 7494: -66,-30 7495: -65,-29 7496: -63,-29 + 8170: 4,-21 + 8171: 2,-20 + 8172: 3,-19 + 8173: 1,-21 + 8174: 1,-19 + 8317: 34,-2 + 8318: 40,-3 + 8319: 38,-2 - node: cleanable: True zIndex: 1 @@ -2720,11 +2772,79 @@ entities: 6975: 43,-6 6976: 42,-4 6977: 43,-4 - 6978: 43,-2 - 6979: 43,0 - 6980: 42,1 6981: 43,4 6982: 43,6 + 8075: 17,-11 + 8076: 10,-7 + 8077: 9,-12 + 8078: 20,-14 + 8080: 19,-11 + 8081: 12,-7 + 8082: 15,-5 + 8083: 16,-9 + 8084: 11,-10 + 8085: 17,-9 + 8086: 17,-6 + 8087: 9,-5 + 8088: 10,1 + 8089: 8,3 + 8090: 9,5 + 8091: 11,6 + 8092: 19,2 + 8093: 18,-3 + 8094: 16,-1 + 8095: 30,-5 + 8096: 25,6 + 8097: 27,10 + 8098: 26,11 + 8100: 29,12 + 8101: 29,10 + 8102: 30,9 + 8103: 30,8 + 8104: 31,8 + 8105: 31,7 + 8106: 31,6 + 8107: 31,5 + 8108: 30,4 + 8109: 30,4 + 8111: 29,2 + 8112: 29,6 + 8113: 34,4 + 8114: 35,4 + 8115: 37,4 + 8116: 40,4 + 8117: 40,2 + 8118: 40,1 + 8119: 39,0 + 8120: 39,0 + 8121: 45,-2 + 8122: 45,-1 + 8123: 43,-2 + 8124: 47,-2 + 8125: 48,-1 + 8126: 44,-1 + 8127: 43,1 + 8128: 42,2 + 8131: 56,-6 + 8132: 54,-5 + 8133: 58,-2 + 8134: 53,1 + 8135: 53,-1 + 8136: 56,0 + 8137: 61,2 + 8138: 58,4 + 8139: 61,6 + 8140: 62,4 + 8141: 54,4 + 8142: 55,6 + 8143: 58,8 + 8144: 57,10 + 8146: 62,8 + 8148: 62,12 + 8151: 72,12 + 8152: 64,4 + 8153: 64,-1 + 8154: 58,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -3180,17 +3300,8 @@ entities: 3410: 64,42 3411: 47,10 3412: 43,7 - 3413: 36,-3 - 3415: 30,2 - 3417: 25,3 - 3418: 21,2 - 3423: 9,-2 - 3424: 9,-3 - 3425: 8,-4 3426: 10,0 - 3427: 11,-8 3430: 13,-16 - 3431: 12,-14 3432: 11,-16 3433: 9,-21 3434: 10,-22 @@ -3738,6 +3849,8 @@ entities: 7041: 27,16 7042: 27,17 7043: 27,16 + 8159: 55,-2 + 8160: 56,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -3750,8 +3863,6 @@ entities: 1455: -8,-23 1456: -7,-23 1457: -7,-24 - 1476: 14,5 - 1477: 14,4 1642: 41,24 1643: 41,25 1644: 40,23 @@ -3887,7 +3998,6 @@ entities: 7000: 40,8 7001: 42,4 7002: 42,2 - 7003: 42,-3 7004: 44,-5 7005: 43,-5 7006: 42,-6 @@ -3914,6 +4024,20 @@ entities: 7027: 40,-29 7028: 37,-27 7029: 37,-23 + 8065: 16,-11 + 8066: 11,-9 + 8067: 15,-6 + 8068: 16,-1 + 8069: 18,-5 + 8070: 14,-9 + 8071: 11,-6 + 8072: 19,-5 + 8073: 18,2 + 8074: 15,-1 + 8155: 62,-1 + 8156: 61,0 + 8157: 58,-4 + 8158: 56,-2 - node: cleanable: True color: '#FFFFFFFF' @@ -3955,6 +4079,29 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 + 8323: 40,0 + 8324: 40,-1 + 8325: 38,-3 + 8326: 34,-2 + 8327: 40,-2 + 8328: 40,-1 + 8329: 39,-2 + 8330: 36,-3 + 8331: 40,3 + 8332: 39,2 + 8333: 36,1 + 8334: 35,1 + 8335: 34,2 + 8336: 35,3 + 8337: 35,3 + 8338: 34,3 + 8339: 35,4 + 8340: 37,3 + 8341: 36,2 + 8342: 34,0 + 8343: 33,1 + 8344: 34,2 + 8345: 35,3 - node: cleanable: True zIndex: 1 @@ -3967,6 +4114,13 @@ entities: 6986: 33,19 6987: 32,23 6988: 33,25 + 8161: 42,-8 + 8162: 42,1 + 8163: 43,0 + 8164: 42,4 + 8165: 42,4 + 8166: 42,4 + 8167: 42,4 - node: cleanable: True color: '#B02E26FF' @@ -4263,17 +4417,13 @@ entities: 692: 30,-19 693: 31,-19 703: 34,-22 - 832: 35,-2 847: 29,-14 848: 29,-13 849: 29,-12 - 864: 20,3 1360: 12,-25 1361: 13,-25 2825: 45,46 5767: 35,-8 - 6216: 17,4 - 6217: 17,5 - node: color: '#FFFFFFFF' id: Grassa2 @@ -4456,12 +4606,11 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale decals: - 4632: 55,2 - 4633: 53,2 - 4634: 52,2 - 5489: 56,-4 - 6487: 53,6 - 6488: 52,6 + 8037: 19,7 + 8038: 20,7 + 8039: 21,7 + 8040: 22,7 + 8251: 30,6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -4788,7 +4937,6 @@ entities: 777: 12,-20 778: 13,-20 801: 27,-16 - 837: 35,-3 858: 26,-21 1364: 32,-14 1393: -24,-3 @@ -4818,8 +4966,6 @@ entities: 4729: -13,-22 4730: -12,-22 4731: -11,-22 - 4957: 11,5 - 4958: 12,5 5048: 13,-26 5049: 12,-26 5050: 11,-26 @@ -4834,16 +4980,19 @@ entities: 5059: 5,-26 5276: 31,-26 5277: 30,-26 - 6208: 13,5 - 6209: 14,5 - 6210: 15,5 - 6231: 21,4 6622: 17,-16 6623: 18,-16 - 6624: 24,-16 - 6625: 25,-16 - 6626: 26,-16 6629: 27,-26 + 7844: 48,-1 + 7863: 53,2 + 7865: 57,0 + 7866: 56,0 + 7929: 56,-4 + 8048: 58,12 + 8220: 35,-2 + 8221: 36,-2 + 8222: 37,-2 + 8346: 38,-2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale @@ -4880,6 +5029,12 @@ entities: 6448: -23,26 6449: -21,26 6450: -20,26 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale180 + decals: + 8008: 17,-14 + 8009: 18,-14 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -5230,7 +5385,6 @@ entities: 812: 18,-18 817: 24,-18 859: 26,-24 - 868: 21,1 1362: 30,-17 1363: 31,-17 1391: -23,-8 @@ -5240,17 +5394,23 @@ entities: 2785: 44,47 2809: 32,45 2810: 31,45 - 4966: 8,0 6038: 30,45 6040: 33,45 6041: 34,45 - 6213: 15,4 - 6214: 14,4 - 6222: 23,3 6651: -24,-13 - 7403: 34,2 - 7404: 35,2 - 7405: 36,2 + 7823: 48,-2 + 7824: 46,-2 + 7825: 45,-2 + 7826: 44,-2 + 7851: 57,-7 + 7852: 56,-7 + 7853: 55,-7 + 7854: 54,-7 + 7912: 55,-1 + 8216: 37,-3 + 8217: 36,-3 + 8347: 38,-3 + 8348: 39,-3 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5286,8 +5446,12 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale270 decals: - 5492: 53,-6 - 6492: 51,5 + 8024: 8,-12 + 8025: 8,-11 + 8026: 8,-10 + 8248: 29,2 + 8249: 29,3 + 8250: 29,4 - node: color: '#43990996' id: HalfTileOverlayGreyscale270 @@ -5541,10 +5705,8 @@ entities: 780: 8,-21 781: 8,-22 782: 8,-23 - 829: 37,-1 856: 25,-23 857: 25,-22 - 865: 20,2 1933: -18,-7 1934: -18,-6 1935: -18,-5 @@ -5564,23 +5726,34 @@ entities: 4305: 48,61 4306: 48,62 4307: 48,63 - 4964: 7,1 - 4965: 7,2 - 4968: 9,-8 - 4969: 9,-7 5787: 29,-5 5788: 29,-4 5789: 29,-3 5790: 29,-2 5791: 29,-1 5792: 29,0 - 6218: 18,4 - 6219: 18,5 - 6220: 18,6 6514: 45,4 6518: 45,3 - 6804: 37,0 - 6805: 37,1 + 7832: 42,-7 + 7833: 42,-6 + 7834: 42,-4 + 7836: 42,0 + 7837: 42,1 + 7855: 53,-6 + 7856: 53,-5 + 7857: 53,-4 + 7870: 52,1 + 7930: 57,-3 + 7950: 57,2 + 7951: 57,3 + 7952: 57,4 + 7953: 57,5 + 7954: 57,6 + 8054: 57,8 + 8055: 57,9 + 8223: 39,-1 + 8224: 39,0 + 8236: 39,2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -5606,12 +5779,8 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale90 decals: - 4639: 55,4 - 4640: 55,5 - 5490: 58,-6 - 5491: 58,-5 - 6491: 55,6 7571: -50,30 + 8252: 31,5 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 @@ -5916,12 +6085,8 @@ entities: 790: 18,-23 791: 18,-22 805: 28,-18 - 840: 33,-1 - 841: 33,0 - 842: 33,1 854: 27,-23 855: 27,-22 - 867: 22,2 1397: -20,-4 1398: -20,-5 1399: -20,-6 @@ -5934,17 +6099,10 @@ entities: 4310: 58,62 4311: 58,63 4312: 58,64 - 4950: 13,-11 - 4951: 13,-10 - 4952: 13,-9 - 4953: 13,-8 - 4954: 13,-7 5793: 31,-1 5794: 31,0 - 5795: 31,-3 5796: 31,-4 5797: 31,-5 - 6230: 22,3 6471: -27,-3 6472: -27,-5 6473: -27,-6 @@ -5956,6 +6114,19 @@ entities: 6649: -23,-11 6650: -23,-10 7572: -50,27 + 7827: 43,-3 + 7828: 43,-4 + 7829: 43,-6 + 7839: 43,2 + 7867: 55,1 + 7911: 54,-2 + 7947: 55,4 + 7948: 55,5 + 7949: 55,6 + 8230: 40,0 + 8234: 40,2 + 8235: 40,3 + 8237: 10,-19 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -5967,11 +6138,16 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1357: 22,-1 - 1358: 20,-1 - 1359: 21,-1 6106: -27,-28 6108: -26,-28 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 7815: 64,5 + 7816: 64,4 + 7817: 64,3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5984,6 +6160,11 @@ entities: id: MiniTileBoxOverlay decals: 245: -44,-21 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 7727: -42,-21 - node: color: '#D381C996' id: MiniTileWhiteLineW @@ -6069,8 +6250,13 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale decals: - 4653: 56,2 - 5495: 57,-6 + 8012: 23,-17 + 8017: 22,-17 + 8018: 21,-17 + 8019: 20,-17 + 8020: 19,-17 + 8022: 24,-17 + 8023: 24,-16 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale @@ -6289,13 +6475,9 @@ entities: id: QuarterTileOverlayGreyscale decals: 712: 30,-21 - 833: 36,-3 - 838: 37,-2 2813: 40,43 2814: 50,45 2840: 44,49 - 4980: 12,-7 - 4981: 13,-7 6478: -28,-11 6479: -28,-10 6480: -28,-9 @@ -6305,6 +6487,17 @@ entities: 6484: -28,-5 6485: -28,-4 6486: -28,-3 + 7830: 42,-8 + 7846: 49,-1 + 7847: 44,0 + 7917: 57,-4 + 7923: 56,-2 + 7924: 55,-4 + 7926: 57,-2 + 7934: 55,-3 + 8225: 39,-2 + 8232: 33,-2 + 8233: 34,-2 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale @@ -6334,12 +6527,11 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale180 decals: - 4648: 56,1 - 4649: 56,0 - 4650: 56,-1 - 4651: 56,-2 - 4652: 56,2 - 5494: 56,-5 + 8021: 18,-16 + 8032: 27,5 + 8033: 26,5 + 8034: 25,5 + 8036: 24,5 - node: color: '#43990996' id: QuarterTileOverlayGreyscale180 @@ -6548,22 +6740,21 @@ entities: 1368: 31,-12 1369: 31,-13 1389: -21,-7 - 4972: 11,-3 - 4973: 11,-2 - 4979: 11,-6 5768: 31,-10 5769: 31,-9 5770: 31,-7 - 6215: 13,4 - 6234: 11,-5 - 6637: 12,-2 - 6638: 13,-2 - 6639: 13,-1 - 6640: 13,0 - 6641: 13,1 - 6642: 13,2 - 6643: 13,3 - 7406: 33,2 + 7840: 43,-2 + 7914: 54,-1 + 7918: 56,-1 + 7920: 54,-3 + 7928: 56,-2 + 7933: 55,-3 + 7955: 59,2 + 7956: 60,2 + 7957: 61,2 + 7958: 62,2 + 8219: 34,-3 + 8229: 33,-3 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -6588,11 +6779,6 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 - decals: - 5496: 57,-5 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -6781,17 +6967,15 @@ entities: 5777: 29,-8 5778: 29,-7 6620: 19,-18 - 7407: 37,2 + 7838: 42,3 + 7845: 49,-2 + 7931: 57,-1 + 8056: 57,10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 5737: -2,-8 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale90 - decals: - 5497: 56,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -6927,8 +7111,6 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 701: 32,-23 - 834: 34,-3 - 839: 33,-2 1936: -12,13 1937: -12,14 1938: -11,14 @@ -6985,8 +7167,15 @@ entities: 2608: 20,68 2609: 21,68 2610: 22,69 - 4955: 13,-12 5046: 28,43 + 7831: 43,-8 + 7841: 43,0 + 7868: 55,0 + 7932: 54,-4 + 7959: 59,6 + 7960: 60,6 + 7961: 61,6 + 8238: 10,-20 - node: color: '#FFFFFFFF' id: Rock01 @@ -7066,11 +7255,6 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 - - node: - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6490: 51,6 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7172,14 +7356,15 @@ entities: 698: 30,-20 699: 29,-21 772: 8,-19 - 835: 36,-2 850: 25,-21 1388: -25,-3 2827: 44,53 2828: 43,49 - 6228: 20,4 6512: 45,5 6621: 16,-16 + 7860: 52,2 + 8042: 53,-3 + 8043: 59,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -7275,17 +7460,21 @@ entities: 774: 18,-24 806: 28,-19 853: 27,-24 - 863: 22,1 1385: -21,-8 1386: -20,-7 2830: 48,47 6039: 35,45 - 6211: 16,4 + 8231: 40,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: 199: -26,-45 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8004: 16,-14 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7370,13 +7559,12 @@ entities: 792: 16,-18 793: 25,-19 852: 25,-24 - 862: 20,1 1384: -25,-8 2826: 43,47 - 4963: 7,0 6037: 29,45 - 6221: 18,3 6619: 19,-19 + 7859: 53,-7 + 8041: 52,0 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7479,13 +7667,12 @@ entities: 700: 35,-23 775: 18,-21 798: 28,-16 - 836: 34,-2 851: 27,-21 1387: -20,-3 2829: 48,53 - 6212: 16,5 - 6229: 22,4 6516: 46,5 + 7864: 55,2 + 8044: 60,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7501,17 +7688,19 @@ entities: color: '#000000FF' id: WarnBox decals: - 5192: 66,50 5194: -26,-51 5966: 37,19 5967: 43,14 + - node: + color: '#439909FF' + id: WarnBox + decals: + 8058: 39,53 - node: color: '#52B4E9FF' id: WarnBox decals: - 4099: 67,50 4100: 59,52 - 4104: 39,51 - node: color: '#DE3A3AFF' id: WarnBox @@ -7551,7 +7740,6 @@ entities: color: '#52B4E9FF' id: WarnBoxGreyscale decals: - 5193: 66,50 5195: -26,-51 - node: color: '#8C347FFF' @@ -7560,35 +7748,46 @@ entities: 5968: 37,19 5969: 43,14 - node: + zIndex: 1 color: '#52B4E9FF' + id: WarnCornerGreyscaleSW + decals: + 8064: 66,50 + - node: + color: '#439909FF' id: WarnCornerNE decals: - 4102: 25,56 + 8057: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 923: 36,1 2688: 22,66 2697: 12,84 2698: 25,84 2699: 26,82 + 8185: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 922: 34,1 1429: -37,-10 2687: 21,66 2700: 10,82 2701: 11,84 2742: 24,84 + 8184: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerNW decals: 542: -6,-50 + - node: + color: '#439909FF' + id: WarnCornerSE + decals: + 8059: 67,50 - node: color: '#DE3A3AFF' id: WarnCornerSE @@ -7600,21 +7799,26 @@ entities: decals: 22: -41,-44 23: -47,-28 - 917: 36,-1 2686: 22,65 2693: 12,72 2694: 25,72 2695: 26,77 + 8177: 35,1 + - node: + color: '#000000FF' + id: WarnCornerSW + decals: + 8063: 66,50 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 916: 34,-1 2689: 21,65 2690: 23,73 2691: 24,72 2692: 11,72 2696: 10,77 + 8183: 33,1 - node: color: '#334E6DFF' id: WarnCornerSmallGreyscaleNE @@ -7640,23 +7844,16 @@ entities: id: WarnCornerSmallNE decals: 886: 13,-22 - 891: 19,-17 - 892: 21,-17 902: 10,-17 2746: 25,82 2767: 54,61 - 4941: 10,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 - 889: 23,-17 - 890: 21,-17 2743: 11,82 2766: 58,61 - 3932: 26,3 - 4948: 10,-6 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -7668,8 +7865,6 @@ entities: 1260: 57,-37 2745: 25,77 2771: 52,64 - 3935: 29,4 - 4940: 10,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -7677,7 +7872,6 @@ entities: 905: 9,-15 1253: 57,-25 2744: 11,77 - 4949: 10,-1 - node: color: '#FFFFFFFF' id: WarnFull @@ -7713,11 +7907,9 @@ entities: 877: 23,-21 878: 13,-21 879: 13,-20 - 894: 20,-15 895: 10,-16 896: 10,-15 897: 10,-14 - 920: 36,0 1259: 57,-38 2069: -15,5 2070: -15,6 @@ -7764,13 +7956,10 @@ entities: 2770: 52,63 2946: 59,55 2947: 59,54 - 3930: 29,2 - 3931: 29,3 4606: 59,-49 4616: 59,-50 - 4942: 10,-11 - 4943: 10,-10 5598: -35,62 + 8195: 35,2 - node: color: '#334E6DFF' id: WarnLineGreyscaleE @@ -7818,7 +8007,6 @@ entities: 576: -4,-44 577: 0,-44 906: 8,-15 - 918: 35,-1 973: -1,-14 1244: 59,-15 1252: 56,-25 @@ -7837,6 +8025,15 @@ entities: 5522: -29,66 5523: -28,66 5524: -27,66 + 8192: 34,1 + 8297: 13,-12 + 8298: 14,-12 + 8299: 15,-12 + 8300: 16,-12 + 8301: 17,-12 + 8302: 18,-12 + 8303: 19,-12 + 8304: 20,-12 - node: zIndex: 2 color: '#FFFFFFFF' @@ -7864,10 +8061,8 @@ entities: 872: 20,-22 873: 20,-21 884: 18,-21 - 893: 22,-15 903: 9,-17 904: 9,-16 - 921: 34,0 1431: -37,-11 1715: 36,17 2060: -13,5 @@ -7914,13 +8109,8 @@ entities: 2762: 58,64 2944: 57,54 2945: 57,55 - 3928: 26,4 - 3929: 26,5 - 4944: 10,-5 - 4945: 10,-4 - 4946: 10,-3 - 4947: 10,-2 5597: -36,62 + 8193: 33,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7952,13 +8142,10 @@ entities: 881: 16,-22 882: 15,-22 883: 17,-22 - 887: 20,-17 - 888: 22,-17 898: 11,-17 899: 12,-17 900: 13,-17 901: 14,-17 - 919: 35,1 974: -1,-14 1249: 59,-15 1417: -32,-10 @@ -7973,8 +8160,14 @@ entities: 2757: 55,61 2758: 56,61 2759: 57,61 - 3933: 24,3 - 3934: 25,3 + 8194: 34,3 + 8305: 14,4 + 8306: 15,4 + 8307: 16,4 + 8308: 17,4 + 8309: 18,4 + 8310: 19,4 + 8311: 20,4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8299,52 +8492,53 @@ entities: 1,3: 0: 65524 1,0: - 2: 9830 - 0: 34952 + 2: 26214 1,1: - 2: 8738 - 0: 2184 + 2: 30438 1,4: 0: 65535 1,-1: - 2: 26208 + 2: 58976 0: 2186 2,0: - 0: 40445 + 1: 30576 2,1: - 0: 955 - 2: 32768 + 2: 8337 + 1: 3680 2,2: - 2: 65535 + 2: 65523 2,3: 0: 65520 + 2,-1: + 2: 36864 + 1: 24576 + 0: 239 2,4: 0: 65535 - 2,-1: - 0: 52701 3,0: - 0: 48051 - 1: 8 + 2: 4369 + 0: 52428 3,1: - 0: 33023 + 2: 4113 + 1: 256 + 0: 51404 3,2: - 2: 16368 - 0: 32768 + 2: 13105 + 0: 36040 3,3: 0: 65464 3,-1: - 0: 13063 - 1: 34952 + 2: 4096 + 0: 52479 3,4: 0: 65535 4,0: - 1: 71 - 0: 53520 + 0: 65535 4,1: - 0: 56831 + 0: 43775 4,2: - 0: 1 - 2: 53232 + 0: 816 + 2: 52416 4,3: 0: 1 1: 26112 @@ -8445,42 +8639,35 @@ entities: 1,-2: 0: 41718 1,-4: - 0: 17510 + 0: 17638 1,-3: 0: 25668 1,-5: - 0: 26214 + 0: 25687 2,-4: 0: 4095 2,-3: 0: 65535 2,-2: - 0: 56574 + 0: 61183 2,-5: 0: 62079 3,-4: - 0: 9079 - 1: 32768 + 0: 57463 3,-3: - 0: 13107 - 1: 34952 + 0: 65535 3,-2: - 0: 8243 - 1: 34952 + 0: 65535 3,-5: 0: 63247 4,-4: - 0: 7 - 1: 63232 + 0: 63239 4,-3: - 2: 18 - 1: 13032 + 0: 65535 4,-2: - 2: 754 - 1: 12288 + 0: 65535 4,-1: - 2: 528 - 1: 63714 + 0: 65535 -4,-8: 0: 63347 -4,-9: @@ -8531,18 +8718,17 @@ entities: 0,-7: 0: 4095 0,-6: - 0: 255 - 2: 8192 + 0: 57599 0,-9: 0: 57297 0,-5: - 2: 3170 + 0: 238 1,-8: 0: 3002 1,-7: 0: 12287 1,-6: - 0: 28279 + 0: 23671 1,-9: 0: 41710 2,-8: @@ -9119,8 +9305,8 @@ entities: 5,-9: 0: 63231 5,-4: - 0: 1365 - 1: 61440 + 0: 5461 + 2: 49152 6,-8: 0: 61678 6,-7: @@ -9130,8 +9316,9 @@ entities: 6,-6: 0: 61166 6,-4: - 0: 15 - 1: 63232 + 0: 127 + 1: 12288 + 2: 49152 6,-9: 0: 60637 7,-8: @@ -9155,25 +9342,31 @@ entities: 8,-5: 0: 3839 5,-3: - 2: 8818 - 1: 136 + 0: 4369 + 2: 17476 5,-2: - 2: 10231 + 0: 4369 + 2: 17476 5,-1: - 2: 626 - 1: 63616 + 0: 4369 + 2: 17476 + 5,0: + 0: 4369 + 2: 50244 6,-3: - 1: 60088 - 2: 66 + 3: 48 + 4: 12288 + 2: 34952 6,-2: - 2: 626 - 1: 59528 + 5: 48 + 1: 12288 + 2: 34952 6,-1: - 1: 63674 - 2: 576 + 1: 12336 + 2: 34952 6,0: - 1: 15 - 0: 65280 + 2: 51336 + 1: 12336 7,-3: 0: 61166 7,-2: @@ -9181,7 +9374,7 @@ entities: 7,-1: 0: 61166 7,0: - 0: 30542 + 0: 61006 8,-4: 0: 36795 8,-3: @@ -9190,50 +9383,43 @@ entities: 8,-2: 0: 61167 8,-1: - 0: 61408 + 0: 4080 4,4: 1: 6 0: 4352 2: 49152 - 5,0: - 0: 63344 5,1: - 0: 2047 + 0: 32753 5,2: - 2: 65014 + 2: 64880 5,3: 2: 30583 5,4: 2: 32767 6,1: - 0: 255 - 2: 32768 + 0: 65520 6,2: - 2: 32760 + 0: 61167 6,3: - 2: 1092 + 0: 14 + 2: 1024 7,1: - 0: 19 - 2: 65224 + 0: 36606 7,2: - 2: 287 - 0: 17408 + 0: 26478 7,3: - 0: 18271 + 0: 18254 6,4: 0: 200 2: 49971 7,4: 0: 26230 - 8,0: - 0: 4078 - 8,1: - 2: 15 - 0: 28160 8,2: 0: 63270 8,3: 0: 47935 + 8,0: + 0: 61166 9,-4: 0: 65535 9,-3: @@ -9242,15 +9428,15 @@ entities: 9,-2: 0: 57297 9,-1: - 0: 48944 + 0: 36848 9,0: - 0: 33723 + 0: 64443 10,-4: 0: 56797 10,-3: 0: 56543 10,-1: - 0: 64972 + 0: 65500 10,0: 0: 56797 10,-2: @@ -9263,9 +9449,8 @@ entities: 0: 57565 11,-2: 0: 13070 - 2: 32768 11,-1: - 0: 64497 + 0: 65439 11,-5: 0: 56797 11,0: @@ -9277,15 +9462,16 @@ entities: 2: 34816 12,-2: 0: 11 - 2: 65152 + 2: 61056 12,-1: - 0: 61440 + 0: 65280 2: 110 + 8,1: + 0: 28174 8,4: 0: 48059 9,1: - 2: 1 - 0: 65294 + 0: 65291 9,2: 0: 63343 9,3: @@ -9303,7 +9489,7 @@ entities: 11,1: 0: 14574 11,2: - 0: 65295 + 0: 65423 11,3: 0: 4063 11,4: @@ -9314,7 +9500,7 @@ entities: 12,1: 0: 3003 12,2: - 0: 48911 + 0: 48927 12,3: 0: 44943 8,-9: @@ -9463,8 +9649,8 @@ entities: 14,-8: 0: 65535 15,-9: - 0: 4147 - 2: 52428 + 0: 4351 + 2: 52224 15,-13: 0: 4352 15,-8: @@ -9474,7 +9660,8 @@ entities: 16,-10: 2: 65520 16,-9: - 2: 8191 + 0: 255 + 2: 7936 13,-16: 2: 36608 13,-15: @@ -9531,41 +9718,40 @@ entities: 0: 4335 2: 57344 13,-1: - 0: 64270 + 0: 65518 13,-2: 0: 61152 + 13,0: + 0: 20479 14,-3: 0: 16503 2: 45056 14,-2: - 0: 65392 + 0: 29488 + 2: 136 14,-1: - 0: 65303 - 13,0: - 0: 20472 + 0: 30719 14,0: - 0: 4095 + 0: 60999 15,-3: - 2: 21840 - 0: 8736 + 2: 12832 15,-2: - 2: 13 - 0: 65282 + 2: 4082 15,-1: - 0: 65535 + 0: 28767 15,0: - 0: 4095 + 0: 30471 16,-4: 0: 257 16,-2: - 0: 65280 + 2: 4080 16,-1: - 0: 65535 + 2: 8947 + 0: 4104 19,-8: 0: 61183 19,-9: - 0: 61952 - 2: 255 + 0: 62207 19,-7: 0: 14 20,-8: @@ -9576,67 +9762,76 @@ entities: 17,-10: 2: 65520 17,-9: - 2: 4095 + 0: 255 + 2: 3840 18,-10: 2: 32624 1: 32896 18,-9: - 2: 2047 + 0: 255 + 2: 1792 19,-10: 1: 65520 20,-10: 1: 13104 2: 34824 20,-9: - 2: 35071 - 0: 12544 + 0: 12799 + 2: 34816 21,-10: - 2: 65391 + 2: 3951 + 0: 61440 21,-9: - 2: 4095 - 1: 28672 + 0: 4027 + 2: 28672 21,-8: - 1: 34 - 2: 1368 + 2: 1402 22,-10: - 2: 4112 + 2: 16 + 0: 4096 22,-9: - 2: 273 + 0: 273 16,0: - 0: 4095 + 0: 4377 + 2: 8806 17,-2: - 0: 65280 + 2: 4080 17,-1: - 0: 65535 + 0: 4111 + 2: 33776 17,0: - 0: 4095 + 0: 19 + 2: 37132 18,-2: - 0: 30464 + 2: 4080 18,-1: - 0: 30591 + 0: 15 + 2: 14832 18,0: - 0: 1919 + 2: 12567 + 0: 8 19,-2: - 0: 20480 - 2: 35840 + 2: 4080 19,-1: - 0: 4113 - 2: 17612 + 0: 4099 + 2: 35320 19,0: - 0: 8465 - 2: 21572 + 0: 19 + 2: 47564 20,-2: - 2: 4352 + 2: 53232 20,-1: - 2: 21873 + 2: 61183 + 0: 4096 4,5: - 2: 30716 + 0: 17 + 2: 29900 + 3,5: + 0: 255 + 2: 61440 4,6: 2: 4371 0: 52224 - 3,5: - 2: 61440 - 0: 119 3,6: 2: 65535 4,7: @@ -10025,47 +10220,38 @@ entities: 13,1: 0: 20479 13,2: - 0: 24015 + 0: 56783 13,3: - 0: 4381 + 0: 4383 2: 3072 13,4: 0: 4437 1: 49152 - 14,3: - 0: 15 - 2: 3840 - 14,1: - 2: 8750 - 3: 34816 14,2: - 2: 50722 - 3: 8 - 0: 2048 + 0: 65262 + 14,3: + 2: 65504 + 0: 14 + 14,1: + 0: 20206 15,1: - 2: 15 - 4: 8704 - 5: 34816 + 0: 18295 15,2: - 0: 768 - 2: 64512 - 4: 2 - 5: 8 + 0: 21606 15,3: - 0: 15 - 2: 7936 + 0: 13 + 2: 65520 15,4: - 2: 15 + 2: 1 16,1: - 2: 15 - 1: 43520 + 0: 4369 + 2: 25134 16,2: - 2: 61696 - 1: 10 - 0: 3584 + 0: 25 + 2: 61990 16,3: - 0: 15 - 2: 12032 + 2: 65523 + 0: 8 12,8: 0: 65534 13,5: @@ -10077,8 +10263,6 @@ entities: 0: 61166 13,8: 0: 65535 - 14,4: - 2: 15 14,5: 2: 4383 14,6: @@ -10092,8 +10276,6 @@ entities: 2: 68 15,5: 2: 31 - 16,4: - 2: 15 16,5: 2: 47 12,9: @@ -10805,44 +10987,62 @@ entities: 2: 1092 -5,18: 0: 631 + 16,4: + 2: 2 17,1: - 2: 8751 - 1: 34816 + 2: 415 + 0: 4096 17,2: - 2: 8162 - 0: 32768 + 0: 19 + 2: 62348 17,3: 0: 15 - 2: 53120 + 2: 65520 17,4: - 2: 7 + 2: 4 18,1: - 2: 34959 - 1: 13056 + 2: 4415 18,2: - 2: 4088 - 0: 61440 + 2: 63799 + 0: 8 18,3: - 0: 7 - 2: 65408 + 0: 15 + 2: 65520 19,1: - 2: 13107 - 0: 17476 + 2: 51647 + 0: 4096 19,2: - 2: 819 - 0: 29764 + 0: 19 + 2: 63884 19,3: - 2: 61680 + 0: 3843 + 2: 61688 + 18,4: + 2: 8 20,0: - 2: 22357 + 0: 4369 + 2: 61166 20,1: - 2: 30037 + 0: 4369 + 2: 61166 20,2: - 2: 21845 + 0: 17 + 2: 65262 20,3: - 2: 30039 + 2: 64767 + 0: 512 17,5: 2: 71 + 20,4: + 2: 1 + 21,0: + 2: 16 + 21,1: + 2: 256 + 21,2: + 2: 4096 + 21,-1: + 2: 1 -14,-4: 0: 65520 -4,-18: @@ -10909,7 +11109,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -10921,11 +11120,12 @@ entities: - 0 - 0 - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11035,12 +11235,6 @@ entities: parent: 5895 - type: InstantAction container: 5895 - - uid: 6214 - components: - - type: Transform - parent: 6212 - - type: InstantAction - container: 6212 - uid: 9079 components: - type: Transform @@ -11083,6 +11277,30 @@ entities: parent: 27129 - type: InstantAction container: 27129 + - uid: 28700 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 + - uid: 28706 + components: + - type: Transform + parent: 28705 + - type: InstantAction + container: 28705 + - uid: 28708 + components: + - type: Transform + parent: 28707 + - type: InstantAction + container: 28707 + - uid: 28710 + components: + - type: Transform + parent: 28709 + - type: InstantAction + container: 28709 - uid: 30712 components: - type: Transform @@ -11101,6 +11319,14 @@ entities: parent: 30713 - type: InstantAction container: 30713 +- proto: ActionToggleJetpack + entities: + - uid: 28699 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 - proto: ActionToggleLight entities: - uid: 5596 @@ -11209,20 +11435,6 @@ entities: - 2762 - 3994 - 28345 - - uid: 447 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 12 - - type: DeviceList - devices: - - 4786 - - 4738 - - 9994 - - 9995 - - 5310 - - 4685 - - 9294 - uid: 448 components: - type: Transform @@ -11230,10 +11442,8 @@ entities: parent: 12 - type: DeviceList devices: - - 10001 + - 10811 - 5298 - - 5294 - - 5409 - 9485 - 9303 - 23891 @@ -11387,6 +11597,17 @@ entities: - 2100 - 1250 - 2081 + - uid: 2682 + components: + - type: Transform + pos: 35.5,5.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 2684 + - 26415 + - 4787 - uid: 2852 components: - type: Transform @@ -11437,16 +11658,11 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 12 - - type: DeviceList - devices: - - 9995 - - 5310 - - 4685 - - 4744 - - 4742 - - 4738 - - 9994 - - 27305 + - uid: 3983 + components: + - type: Transform + pos: 16.5,6.5 + parent: 12 - uid: 4418 components: - type: Transform @@ -11461,7 +11677,7 @@ entities: - 7389 - 7388 - 7390 - - 26311 + - 19173 - 26312 - 28364 - 29393 @@ -11474,10 +11690,24 @@ entities: devices: - 28375 - 9321 - - 9294 - 5255 - 10027 - 5305 + - uid: 4906 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 9303 + - 10811 + - 5298 + - 6709 + - 5011 + - 2679 + - 28904 - uid: 6833 components: - type: Transform @@ -11531,17 +11761,6 @@ entities: - 2909 - 346 - 8673 - - uid: 8910 - components: - - type: Transform - pos: 55.5,-2.5 - parent: 12 - - type: DeviceList - devices: - - 26637 - - 5128 - - 26457 - - 27003 - uid: 8914 components: - type: Transform @@ -11678,21 +11897,6 @@ entities: - 3533 - 2762 - 3584 - - uid: 10017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 12 - - type: DeviceList - devices: - - 10001 - - 5298 - - 5294 - - 10000 - - 5409 - - 10002 - - 5281 - uid: 10018 components: - type: Transform @@ -11716,13 +11920,25 @@ entities: - 9315 - 9314 - 9318 - - 9319 - 9305 - 9310 - 9311 - 5280 - 10003 - 10026 + - uid: 11505 + components: + - type: Transform + pos: 30.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 12232 + - 12231 + - 31515 + - 23891 + - 31516 + - 31517 - uid: 12032 components: - type: Transform @@ -12305,37 +12521,16 @@ entities: - 2201 - 19749 - 4153 - - uid: 26937 + - uid: 26792 components: - type: Transform - pos: 69.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - type: DeviceList devices: - - 27162 - - 26780 - - uid: 26938 - components: - - type: Transform - pos: 56.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 26924 - - 26639 - - 26940 - - 26979 - - 26441 - - 26928 - - 26949 - - 20793 - - 26923 - - 26941 - - 26931 - - 26935 - - 26932 - - 26933 - - 26934 + - 6212 + - 28752 - uid: 27296 components: - type: Transform @@ -12360,6 +12555,57 @@ entities: - 27280 - 4009 - 4011 + - uid: 27311 + components: + - type: Transform + pos: 52.5,3.5 + parent: 12 + - type: DeviceList + devices: + - 26949 + - 2021 + - 2020 + - 26923 + - 609 + - 2034 + - 26790 + - 15130 + - uid: 27312 + components: + - type: Transform + pos: 52.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 26923 + - 7789 + - 27005 + - 20793 + - uid: 27313 + components: + - type: Transform + pos: 59.5,13.5 + parent: 12 + - type: DeviceList + devices: + - 27309 + - 19292 + - 19188 + - 7807 + - 2359 + - uid: 27314 + components: + - type: Transform + pos: 61.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 7547 + - 5887 + - 9717 + - 27310 + - 2359 + - 2020 - uid: 28270 components: - type: Transform @@ -12662,33 +12908,6 @@ entities: - 9321 - 29981 - 29982 - - uid: 28377 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 27305 - - 4742 - - 4744 - - 9994 - - 4738 - - 9666 - - 2779 - - uid: 28378 - components: - - type: Transform - pos: 25.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 7787 - - 6766 - - 9666 - - 4949 - - 23891 - - 2779 - uid: 28381 components: - type: Transform @@ -12805,11 +13024,6 @@ entities: - 29820 - 29651 - 29784 - - uid: 29868 - components: - - type: Transform - pos: 15.5,20.5 - parent: 12 - uid: 30349 components: - type: Transform @@ -12892,14 +13106,28 @@ entities: devices: - 7357 - 2674 - - 31757 + - 2679 - 31758 - - 31756 + - 19555 - 7806 - 31760 - 31759 - 25681 - 2324 + - 28904 + - uid: 31894 + components: + - type: Transform + pos: 15.5,22.5 + parent: 12 + - type: DeviceList + devices: + - 29872 + - 3954 + - 9560 + - 9488 + - 29869 + - 29870 - proto: AirAlarmVox entities: - uid: 7822 @@ -12954,6 +13182,11 @@ entities: - type: Transform pos: 81.5,-30.5 parent: 12 + - uid: 9787 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 12 - uid: 10982 components: - type: Transform @@ -12989,15 +13222,20 @@ entities: - type: Transform pos: -20.5,61.5 parent: 12 - - uid: 26913 + - uid: 26544 components: - type: Transform - pos: 55.5,-3.5 + pos: 25.5,10.5 parent: 12 - - uid: 28943 + - uid: 26590 components: - type: Transform - pos: 5.5,-18.5 + pos: 2.5,-18.5 + parent: 12 + - uid: 26686 + components: + - type: Transform + pos: 25.5,9.5 parent: 12 - uid: 29112 components: @@ -13084,28 +13322,26 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,52.5 parent: 12 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 24654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 12 + - uid: 25466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,6.5 + parent: 12 - proto: AirlockAtmosphericsLocked entities: - - uid: 5886 + - uid: 2181 components: - type: Transform - pos: 56.5,-2.5 - parent: 12 - - uid: 5891 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - - uid: 5892 - components: - - type: Transform - pos: 59.5,-4.5 - parent: 12 - - uid: 5921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-3.5 + pos: 30.5,1.5 parent: 12 - uid: 7129 components: @@ -13113,11 +13349,32 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-33.5 parent: 12 - - uid: 26623 + - uid: 7224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + pos: 20.5,-15.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 22526: + - DoorStatus: DoorBolt + - uid: 22526 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7224: + - DoorStatus: DoorBolt + - uid: 29964 + components: + - type: Transform + pos: 28.5,5.5 parent: 12 - proto: AirlockBarLocked entities: @@ -13381,8 +13638,20 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,29.5 parent: 12 +- proto: AirlockEngineering + entities: + - uid: 26624 + components: + - type: Transform + pos: 17.5,6.5 + parent: 12 - proto: AirlockEngineeringGlassLocked entities: + - uid: 1346 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 12 - uid: 5096 components: - type: Transform @@ -13406,21 +13675,16 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-24.5 parent: 12 - - uid: 5538 + - uid: 11005 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 12 + - uid: 27383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - uid: 9127 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - uid: 26162 - components: - - type: Transform - pos: 17.5,5.5 + pos: 54.5,3.5 parent: 12 - proto: AirlockEngineeringLocked entities: @@ -13441,12 +13705,6 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 12 - - uid: 2874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 12 - uid: 2891 components: - type: Transform @@ -13470,45 +13728,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 - - uid: 4617 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 12 - - uid: 5103 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2010: - - DoorStatus: DoorBolt - 1700: - - DoorStatus: DoorBolt - - uid: 5104 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1700: - - DoorStatus: DoorBolt - 2010: - - DoorStatus: DoorBolt - uid: 5253 components: - type: Transform @@ -13557,18 +13776,40 @@ entities: - type: Transform pos: 39.5,-36.5 parent: 12 + - uid: 6707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 12 - uid: 7824 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-9.5 parent: 12 + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 12 - uid: 10667 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 12 + - uid: 11006 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 12 + - uid: 11007 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 12 - uid: 11351 components: - type: Transform @@ -13581,6 +13822,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,26.5 parent: 12 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 12 + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,1.5 + parent: 12 - uid: 15705 components: - type: Transform @@ -13613,11 +13866,11 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 - - uid: 25674 + - uid: 26470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-1.5 + pos: 58.5,7.5 parent: 12 - uid: 27457 components: @@ -13635,6 +13888,12 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 + - uid: 29098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 12 - uid: 31074 components: - type: Transform @@ -13661,20 +13920,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 12 -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 27153: - - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 1085 @@ -13713,34 +13958,6 @@ entities: linkedPorts: 1537: - DoorStatus: DoorBolt - - uid: 1700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5103: - - DoorStatus: DoorBolt - 5104: - - DoorStatus: DoorBolt - - uid: 2010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5104: - - DoorStatus: DoorBolt - 5103: - - DoorStatus: DoorBolt - uid: 2291 components: - type: Transform @@ -13753,47 +13970,6 @@ entities: linkedPorts: 1085: - DoorStatus: DoorBolt - - uid: 3524 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3524: - - DoorStatus: DoorBolt - 3627: - - DoorStatus: DoorBolt - uid: 6350 components: - type: Transform @@ -13818,70 +13994,6 @@ entities: linkedPorts: 6350: - DoorStatus: DoorBolt - - uid: 7889 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10165: - - DoorStatus: DoorBolt - - uid: 9176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 8 - - type: DeviceLinkSource - linkedPorts: - 3627: - - DoorStatus: DoorBolt - 9609: - - DoorStatus: DoorBolt - 3524: - - DoorStatus: DoorBolt - - uid: 9609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 7 - - type: DeviceLinkSource - linkedPorts: - 10657: - - DoorStatus: DoorBolt - 9176: - - DoorStatus: DoorBolt - - uid: 10165 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7889: - - DoorStatus: DoorBolt - - uid: 10657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 9609: - - DoorStatus: DoorBolt - uid: 11322 components: - type: Transform @@ -13893,6 +14005,30 @@ entities: linkedPorts: 12687: - DoorStatus: DoorBolt + - uid: 11379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-3.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11390: + - DoorStatus: DoorBolt + - uid: 11390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11379: + - DoorStatus: DoorBolt - uid: 12687 components: - type: Transform @@ -13940,6 +14076,42 @@ entities: linkedPorts: 19019: - DoorStatus: DoorBolt + - uid: 19663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,12.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24445: + - DoorStatus: DoorBolt + - uid: 24445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,10.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19663: + - DoorStatus: DoorBolt + - uid: 26625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 12 + - uid: 26626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 12 - uid: 31108 components: - type: Transform @@ -14108,62 +14280,49 @@ entities: parent: 12 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 4390 + - uid: 4947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + pos: 7.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10841: + 7250: - DoorStatus: DoorBolt - - uid: 10841 + - uid: 5024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,4.5 + pos: 22.5,-13.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4390: + 7562: - DoorStatus: DoorBolt - - uid: 26624 + - uid: 7250 components: - type: Transform - pos: 75.5,0.5 + pos: 8.5,-3.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 27137: + 4947: - DoorStatus: DoorBolt - - uid: 27137 + - uid: 7562 components: - type: Transform - pos: 76.5,2.5 + pos: 22.5,-15.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 26624: - - DoorStatus: DoorBolt - - uid: 27153 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 638: + 5024: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: @@ -14244,30 +14403,6 @@ entities: linkedPorts: 11931: - DoorStatus: DoorBolt - - uid: 2676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7322: - - DoorStatus: DoorBolt - - uid: 7322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2676: - - DoorStatus: DoorBolt - uid: 10785 components: - type: Transform @@ -14718,6 +14853,12 @@ entities: rot: 3.141592653589793 rad pos: -15.5,4.5 parent: 12 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 12 - uid: 549 components: - type: Transform @@ -14728,6 +14869,12 @@ entities: - type: Transform pos: -13.5,-23.5 parent: 12 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 12 - uid: 918 components: - type: Transform @@ -14805,11 +14952,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 12 - uid: 7847 components: - type: Transform @@ -14821,11 +14963,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-25.5 parent: 12 - - uid: 12288 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - uid: 13068 components: - type: Transform @@ -15155,12 +15292,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-32.5 parent: 12 - - uid: 2970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 12 - uid: 3037 components: - type: Transform @@ -15217,10 +15348,23 @@ entities: parent: 12 - proto: AirlockMaintAtmoLocked entities: - - uid: 20776 + - uid: 5070 components: - type: Transform - pos: 54.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 12 + - uid: 11016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - uid: 25481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 12 - proto: AirlockMaintCargoLocked entities: @@ -15241,11 +15385,22 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 12 - - uid: 28529 + - uid: 7829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 + pos: 7.5,-14.5 + parent: 12 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,11.5 parent: 12 - proto: AirlockMaintGlassLocked entities: @@ -15629,12 +15784,6 @@ entities: - type: Transform pos: 8.5,60.5 parent: 12 - - uid: 25573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - uid: 25595 components: - type: Transform @@ -16607,15 +16756,24 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 4949 + - uid: 4787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 2682 + - uid: 5011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 - uid: 7350 components: - type: Transform @@ -16632,6 +16790,15 @@ entities: - type: DeviceNetwork deviceLists: - 28363 + - uid: 7547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 7558 components: - type: Transform @@ -16641,6 +16808,24 @@ entities: - type: DeviceNetwork deviceLists: - 70 + - uid: 7789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27312 + - uid: 7807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 - uid: 8916 components: - type: Transform @@ -16800,35 +16985,12 @@ entities: - type: DeviceNetwork deviceLists: - 1699 - - uid: 9995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - uid: 10000 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - uid: 10001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - uid: 10002 components: - type: Transform @@ -16837,7 +16999,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - uid: 10003 components: @@ -17423,48 +17584,15 @@ entities: - type: DeviceNetwork deviceLists: - 20784 - - uid: 26940 + - uid: 26790 components: - type: Transform - pos: 63.5,-0.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 - - uid: 26941 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 27003 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 27162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - - uid: 27305 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 + - 27311 - uid: 27889 components: - type: Transform @@ -17641,6 +17769,15 @@ entities: - type: DeviceNetwork deviceLists: - 28383 + - uid: 28752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 29111 components: - type: Transform @@ -17690,6 +17827,9 @@ entities: - type: Transform pos: 10.5,16.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 30446 components: - type: Transform @@ -17716,6 +17856,15 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 31517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31759 components: - type: Transform @@ -17777,20 +17926,6 @@ entities: actions: !type:Container ents: - 4142 - - uid: 6212 - components: - - type: Transform - parent: 6209 - - type: GasTank - toggleActionEntity: 6214 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6214 - uid: 22527 components: - type: Transform @@ -17816,6 +17951,20 @@ entities: - type: Transform pos: 55.478806,-34.59952 parent: 12 + - uid: 28705 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.361034,9.478294 + parent: 12 + - type: GasTank + toggleActionEntity: 28706 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28706 - uid: 30709 components: - type: Transform @@ -17846,11 +17995,11 @@ entities: parent: 12 - proto: AlwaysPoweredLightExterior entities: - - uid: 22155 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,2.5 + pos: 83.5,6.5 parent: 12 - uid: 22157 components: @@ -17858,12 +18007,17 @@ entities: rot: 3.141592653589793 rad pos: 70.5,15.5 parent: 12 -- proto: AmeController - entities: - - uid: 2242 + - uid: 31887 components: - type: Transform - pos: 33.5,-2.5 + pos: 74.5,-6.5 + parent: 12 +- proto: AmeController + entities: + - uid: 4915 + components: + - type: Transform + pos: 36.5,2.5 parent: 12 - proto: AnomalyVesselCircuitboard entities: @@ -17890,6 +18044,12 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 12 - uid: 853 components: - type: Transform @@ -17971,12 +18131,6 @@ entities: - type: Transform pos: 54.5,13.5 parent: 12 - - uid: 4697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 12 - uid: 4868 components: - type: Transform @@ -18001,6 +18155,18 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 12 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 12 + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 12 - uid: 7899 components: - type: Transform @@ -18033,12 +18199,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 12 - - uid: 9717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 12 - uid: 9899 components: - type: Transform @@ -18328,18 +18488,24 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 12 + - uid: 26652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,0.5 + parent: 12 + - uid: 26780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 12 - uid: 27295 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-36.5 parent: 12 - - uid: 27326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 12 - uid: 27355 components: - type: Transform @@ -18352,6 +18518,17 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 12 + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 12 + - uid: 28720 + components: + - type: Transform + pos: 59.5,7.5 + parent: 12 - uid: 28969 components: - type: Transform @@ -18467,6 +18644,14 @@ entities: - type: Transform pos: 41.52228,-39.638065 parent: 12 +- proto: ArtistCircuitBoard + entities: + - uid: 28850 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.622931,-15.409775 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -18499,6 +18684,14 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 +- proto: AsimovCircuitBoard + entities: + - uid: 28848 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6072965,-1.5317864 + parent: 12 - proto: AsteroidRock entities: - uid: 31015 @@ -18981,16 +19174,36 @@ entities: - type: Transform pos: 22.5,23.5 parent: 12 - - uid: 1352 + - uid: 1351 components: - type: Transform - pos: 26.5,-13.5 + pos: 9.5,5.5 + parent: 12 + - uid: 1700 + components: + - type: Transform + pos: 9.5,-0.5 parent: 12 - uid: 2137 components: - type: Transform pos: 21.5,22.5 parent: 12 + - uid: 2160 + components: + - type: Transform + pos: 7.5,3.5 + parent: 12 + - uid: 2162 + components: + - type: Transform + pos: 7.5,2.5 + parent: 12 + - uid: 2163 + components: + - type: Transform + pos: 7.5,1.5 + parent: 12 - uid: 2178 components: - type: Transform @@ -19006,21 +19219,11 @@ entities: - type: Transform pos: 20.5,24.5 parent: 12 - - uid: 2184 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 12 - uid: 2881 components: - type: Transform pos: 19.5,14.5 parent: 12 - - uid: 2928 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 12 - uid: 2992 components: - type: Transform @@ -19031,305 +19234,130 @@ entities: - type: Transform pos: 18.5,16.5 parent: 12 + - uid: 4706 + components: + - type: Transform + pos: 8.5,2.5 + parent: 12 + - uid: 4722 + components: + - type: Transform + pos: 9.5,3.5 + parent: 12 + - uid: 4730 + components: + - type: Transform + pos: 8.5,1.5 + parent: 12 + - uid: 4733 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 12 + - uid: 4735 + components: + - type: Transform + pos: 9.5,2.5 + parent: 12 + - uid: 4737 + components: + - type: Transform + pos: 10.5,3.5 + parent: 12 + - uid: 4738 + components: + - type: Transform + pos: 10.5,1.5 + parent: 12 + - uid: 4740 + components: + - type: Transform + pos: 10.5,2.5 + parent: 12 + - uid: 4741 + components: + - type: Transform + pos: 25.5,1.5 + parent: 12 + - uid: 4742 + components: + - type: Transform + pos: 24.5,1.5 + parent: 12 + - uid: 4801 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 12 + - uid: 4852 + components: + - type: Transform + pos: 25.5,3.5 + parent: 12 + - uid: 4853 + components: + - type: Transform + pos: 24.5,3.5 + parent: 12 + - uid: 4865 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 12 + - uid: 4872 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 12 + - uid: 4873 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 12 + - uid: 4874 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 12 + - uid: 4878 + components: + - type: Transform + pos: 8.5,3.5 + parent: 12 + - uid: 5026 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 12 - uid: 5030 components: - type: Transform pos: 17.5,15.5 parent: 12 + - uid: 5191 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 12 + - uid: 5192 + components: + - type: Transform + pos: 10.5,5.5 + parent: 12 - uid: 5418 components: - type: Transform pos: 18.5,15.5 parent: 12 - - uid: 5544 + - uid: 5812 components: - type: Transform - pos: 16.5,-13.5 + pos: 9.5,1.5 parent: 12 - - uid: 5996 + - uid: 5819 components: - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 7198 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 7199 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 7200 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 7201 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 7202 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 7203 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 7204 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 7205 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 7206 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 7207 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 7208 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 7209 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 7210 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 7211 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 7212 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 7213 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - uid: 7214 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 7215 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 7216 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 7217 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 7218 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 7219 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 7220 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 7221 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 12 - - uid: 7222 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 7223 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 7224 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 7225 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 7226 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 7227 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 7228 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 7229 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 7230 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 7231 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 7232 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 7233 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 12 - - uid: 7234 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 7235 - components: - - type: Transform - pos: 27.5,0.5 - parent: 12 - - uid: 7236 - components: - - type: Transform - pos: 26.5,0.5 - parent: 12 - - uid: 7237 - components: - - type: Transform - pos: 25.5,0.5 - parent: 12 - - uid: 7238 - components: - - type: Transform - pos: 24.5,0.5 - parent: 12 - - uid: 7241 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 7242 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 7243 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 7244 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 7245 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 7246 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 7247 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 7248 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 7249 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 7250 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 7251 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 7252 - components: - - type: Transform - pos: 16.5,0.5 - parent: 12 - - uid: 7253 - components: - - type: Transform - pos: 17.5,0.5 - parent: 12 - - uid: 7254 - components: - - type: Transform - pos: 18.5,0.5 - parent: 12 - - uid: 7255 - components: - - type: Transform - pos: 18.5,1.5 + pos: 10.5,-0.5 parent: 12 - uid: 7261 components: @@ -19580,26 +19608,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,16.5 parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - - uid: 21616 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 23985 - components: - - type: Transform - pos: 67.5,7.5 - parent: 12 - - uid: 24006 - components: - - type: Transform - pos: 67.5,6.5 - parent: 12 - uid: 26206 components: - type: Transform @@ -19610,215 +19618,25 @@ entities: - type: Transform pos: 55.5,19.5 parent: 12 - - uid: 26761 + - uid: 28746 components: - type: Transform - pos: 73.5,6.5 + pos: 9.5,6.5 parent: 12 - - uid: 26762 + - uid: 28747 components: - type: Transform - pos: 73.5,7.5 + pos: 10.5,6.5 parent: 12 - - uid: 26763 + - uid: 28748 components: - type: Transform - pos: 73.5,8.5 + pos: 11.5,6.5 parent: 12 - - uid: 26764 + - uid: 28749 components: - type: Transform - pos: 72.5,6.5 - parent: 12 - - uid: 26765 - components: - - type: Transform - pos: 72.5,7.5 - parent: 12 - - uid: 26766 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - - uid: 26767 - components: - - type: Transform - pos: 71.5,6.5 - parent: 12 - - uid: 26768 - components: - - type: Transform - pos: 71.5,8.5 - parent: 12 - - uid: 26769 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - - uid: 27052 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 12 - - uid: 27177 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27178 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 27179 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 27180 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 28425 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - - uid: 28903 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 28904 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 28905 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 28906 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 12 - - uid: 28907 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 12 - - uid: 28908 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 12 - - uid: 28909 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 12 - - uid: 28910 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 12 - - uid: 28911 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 12 - - uid: 28912 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 12 - - uid: 28913 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 12 - - uid: 28914 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 12 - - uid: 28915 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 12 - - uid: 28916 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 12 - - uid: 28917 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 12 - - uid: 28918 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 12 - - uid: 28919 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 12 - - uid: 28920 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 12 - - uid: 28921 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 12 - - uid: 28922 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 12 - - uid: 28923 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 12 - - uid: 28924 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 12 - - uid: 28925 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 12 - - uid: 28926 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 12 - - uid: 28927 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 12 - - uid: 28928 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 12 - - uid: 28998 - components: - - type: Transform - pos: 26.5,-4.5 + pos: 12.5,6.5 parent: 12 - proto: AtmosFixFreezerMarker entities: @@ -19884,54 +19702,39 @@ entities: parent: 12 - proto: AtmosFixNitrogenMarker entities: - - uid: 26956 + - uid: 4881 components: - type: Transform - pos: 59.5,7.5 + pos: 25.5,-8.5 parent: 12 - - uid: 26959 + - uid: 4883 components: - type: Transform - pos: 59.5,8.5 - parent: 12 - - uid: 26968 - components: - - type: Transform - pos: 59.5,6.5 + pos: 24.5,-8.5 parent: 12 - proto: AtmosFixOxygenMarker entities: - - uid: 26960 + - uid: 4885 components: - type: Transform - pos: 61.5,6.5 + pos: 25.5,-10.5 parent: 12 - - uid: 26963 + - uid: 4888 components: - type: Transform - pos: 61.5,7.5 - parent: 12 - - uid: 26975 - components: - - type: Transform - pos: 61.5,8.5 + pos: 24.5,-10.5 parent: 12 - proto: AtmosFixPlasmaMarker entities: - - uid: 26737 + - uid: 4877 components: - type: Transform - pos: 63.5,6.5 + pos: 24.5,-6.5 parent: 12 - - uid: 26974 + - uid: 4886 components: - type: Transform - pos: 63.5,7.5 - parent: 12 - - uid: 27025 - components: - - type: Transform - pos: 63.5,8.5 + pos: 25.5,-6.5 parent: 12 - proto: AtmosFixVoxMarker entities: @@ -20020,6 +19823,11 @@ entities: - type: Transform pos: 18.5,-25.5 parent: 12 + - uid: 5542 + components: + - type: Transform + pos: 44.5,0.5 + parent: 12 - proto: BannerGreen entities: - uid: 4944 @@ -20186,11 +19994,11 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-50.5 parent: 12 - - uid: 26822 + - uid: 9418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-5.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 12 - proto: BeachBall entities: @@ -20751,25 +20559,15 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 12 - - uid: 5225 + - uid: 5199 components: - type: Transform - pos: 9.5,-3.5 + pos: 7.5,1.5 parent: 12 - - uid: 5226 + - uid: 7554 components: - type: Transform - pos: 9.5,-2.5 - parent: 12 - - uid: 5238 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 12 - - uid: 5528 - components: - - type: Transform - pos: 9.5,-1.5 + pos: 7.5,2.5 parent: 12 - uid: 7778 components: @@ -20816,20 +20614,25 @@ entities: - type: Transform pos: 59.5,-13.5 parent: 12 - - uid: 27214 + - uid: 26072 components: - type: Transform - pos: 73.5,8.5 + pos: 61.5,1.5 parent: 12 - - uid: 27216 + - uid: 26537 components: - type: Transform - pos: 72.5,8.5 + pos: 60.5,1.5 parent: 12 - - uid: 27217 + - uid: 26580 components: - type: Transform - pos: 71.5,8.5 + pos: 7.5,3.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + pos: 62.5,1.5 parent: 12 - proto: BlastDoorOpen entities: @@ -21079,13 +20882,12 @@ entities: parent: 12 - proto: BookAtmosAirAlarms entities: - - uid: 6287 + - uid: 29962 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -2.6867397195928788E-14 rad + pos: 31.427582,-0.63683224 + parent: 12 - uid: 31837 components: - type: Transform @@ -21094,13 +20896,11 @@ entities: canCollide: False - proto: BookAtmosDistro entities: - - uid: 6260 + - uid: 20542 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.610678,-2.4266233 + parent: 12 - uid: 31834 components: - type: Transform @@ -21109,13 +20909,11 @@ entities: canCollide: False - proto: BookAtmosVentsMore entities: - - uid: 6259 + - uid: 29961 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 31.687996,-0.33453882 + parent: 12 - uid: 31835 components: - type: Transform @@ -21124,13 +20922,11 @@ entities: canCollide: False - proto: BookAtmosWaste entities: - - uid: 6261 + - uid: 29960 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.346788,-2.2505753 + parent: 12 - uid: 31836 components: - type: Transform @@ -21601,16 +21397,6 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 12 - - uid: 21976 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 12 - - uid: 21977 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 12 - uid: 22189 components: - type: Transform @@ -21644,6 +21430,11 @@ entities: - type: Transform pos: 11.5,63.5 parent: 12 + - uid: 28846 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 12 - uid: 29122 components: - type: Transform @@ -21670,8 +21461,8 @@ entities: - uid: 2071 components: - type: Transform - rot: 6.283185307179586 rad - pos: -4.4788017,-12.486532 + rot: -18.84955592153876 rad + pos: -4.4606214,-12.385475 parent: 12 - proto: BorgModuleGPS entities: @@ -21694,6 +21485,12 @@ entities: parent: 12 - proto: BorgModuleRadiationDetection entities: + - uid: 22075 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 58.524303,12.480953 + parent: 12 - uid: 28441 components: - type: Transform @@ -22210,16 +22007,10 @@ entities: - uid: 15386 components: - type: Transform - pos: 42.45081,53.59018 + pos: 41.534676,52.435265 parent: 12 - proto: ButtonFrameCaution entities: - - uid: 2253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - uid: 17549 components: - type: Transform @@ -22248,24 +22039,18 @@ entities: rot: 3.141592653589793 rad pos: -36.5,21.5 parent: 12 - - uid: 27211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - uid: 27215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 12 - uid: 27246 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-28.5 parent: 12 + - uid: 28721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 12 - uid: 29835 components: - type: Transform @@ -22362,18 +22147,18 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,54.5 parent: 12 - - uid: 25199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26380 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 + - uid: 26789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 - uid: 28554 components: - type: Transform @@ -22385,6 +22170,17 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-19.5 parent: 12 + - uid: 28722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - uid: 28740 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 - uid: 29345 components: - type: Transform @@ -22474,6 +22270,16 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 194 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 12 + - uid: 253 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 335 components: - type: Transform @@ -22494,6 +22300,21 @@ entities: - type: Transform pos: 9.5,-34.5 parent: 12 + - uid: 356 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 408 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 447 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 456 components: - type: Transform @@ -22504,6 +22325,11 @@ entities: - type: Transform pos: -45.5,1.5 parent: 12 + - uid: 501 + components: + - type: Transform + pos: 15.5,21.5 + parent: 12 - uid: 628 components: - type: Transform @@ -22539,6 +22365,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 + - uid: 924 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 12 - uid: 961 components: - type: Transform @@ -22549,6 +22380,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1074 + components: + - type: Transform + pos: 24.5,11.5 + parent: 12 - uid: 1077 components: - type: Transform @@ -22559,6 +22395,11 @@ entities: - type: Transform pos: 37.5,6.5 parent: 12 + - uid: 1091 + components: + - type: Transform + pos: 24.5,12.5 + parent: 12 - uid: 1315 components: - type: Transform @@ -23679,40 +23520,10 @@ entities: - type: Transform pos: -43.5,-14.5 parent: 12 - - uid: 2034 + - uid: 2136 components: - type: Transform - pos: 8.5,4.5 - parent: 12 - - uid: 2039 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 2052 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2053 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 12 - - uid: 2086 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 12 - - uid: 2087 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2105 - components: - - type: Transform - pos: 25.5,-12.5 + pos: 24.5,3.5 parent: 12 - uid: 2142 components: @@ -23734,70 +23545,30 @@ entities: - type: Transform pos: -25.5,10.5 parent: 12 - - uid: 2149 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - uid: 2150 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 2152 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - uid: 2153 components: - type: Transform - pos: 78.5,7.5 + pos: 25.5,9.5 parent: 12 - uid: 2155 components: - type: Transform - pos: 78.5,6.5 + pos: 24.5,9.5 parent: 12 - uid: 2156 components: - type: Transform - pos: 78.5,5.5 + pos: 24.5,10.5 parent: 12 - - uid: 2157 + - uid: 2170 components: - type: Transform - pos: 78.5,4.5 + pos: 27.5,-0.5 parent: 12 - - uid: 2158 + - uid: 2183 components: - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 2159 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 2160 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 2162 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 2163 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 2164 - components: - - type: Transform - pos: 10.5,-5.5 + pos: 25.5,-12.5 parent: 12 - uid: 2202 components: @@ -23984,6 +23755,16 @@ entities: - type: Transform pos: 67.5,44.5 parent: 12 + - uid: 2338 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 12 + - uid: 2342 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 12 - uid: 2346 components: - type: Transform @@ -23994,6 +23775,11 @@ entities: - type: Transform pos: 39.5,-1.5 parent: 12 + - uid: 2509 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 - uid: 2544 components: - type: Transform @@ -24064,6 +23850,11 @@ entities: - type: Transform pos: -4.5,-40.5 parent: 12 + - uid: 2779 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 2796 components: - type: Transform @@ -24109,36 +23900,16 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 12 - - uid: 2981 - components: - - type: Transform - pos: 22.5,4.5 - parent: 12 - uid: 3017 components: - type: Transform pos: 10.5,-38.5 parent: 12 - - uid: 3019 - components: - - type: Transform - pos: 22.5,2.5 - parent: 12 - - uid: 3020 - components: - - type: Transform - pos: 23.5,2.5 - parent: 12 - uid: 3034 components: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 3089 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3102 components: - type: Transform @@ -24159,10 +23930,15 @@ entities: - type: Transform pos: 54.5,-21.5 parent: 12 - - uid: 3127 + - uid: 3129 components: - type: Transform - pos: 66.5,2.5 + pos: 15.5,-12.5 + parent: 12 + - uid: 3130 + components: + - type: Transform + pos: 11.5,-11.5 parent: 12 - uid: 3157 components: @@ -25129,21 +24905,56 @@ entities: - type: Transform pos: -23.5,-1.5 parent: 12 - - uid: 3690 + - uid: 3524 components: - type: Transform - pos: 16.5,8.5 + pos: 12.5,-11.5 parent: 12 - - uid: 3691 + - uid: 3553 components: - type: Transform - pos: 16.5,7.5 + pos: 9.5,-11.5 + parent: 12 + - uid: 3556 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 12 + - uid: 3626 + components: + - type: Transform + pos: 27.5,0.5 + parent: 12 + - uid: 3627 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 12 + - uid: 3709 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 + - uid: 3713 + components: + - type: Transform + pos: 26.5,6.5 + parent: 12 + - uid: 3777 + components: + - type: Transform + pos: 14.5,5.5 parent: 12 - uid: 3892 components: - type: Transform pos: 51.5,12.5 parent: 12 + - uid: 3895 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 - uid: 3901 components: - type: Transform @@ -25154,6 +24965,16 @@ entities: - type: Transform pos: 40.5,3.5 parent: 12 + - uid: 3978 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 12 + - uid: 3980 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 12 - uid: 4000 components: - type: Transform @@ -25164,6 +24985,11 @@ entities: - type: Transform pos: 10.5,-46.5 parent: 12 + - uid: 4064 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 12 - uid: 4119 components: - type: Transform @@ -25484,6 +25310,26 @@ entities: - type: Transform pos: 1.5,-27.5 parent: 12 + - uid: 4388 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 4410 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 12 + - uid: 4411 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 4414 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 - uid: 4560 components: - type: Transform @@ -25494,6 +25340,36 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 12 + - uid: 4567 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 12 + - uid: 4569 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 12 + - uid: 4572 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 12 + - uid: 4578 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 + - uid: 4583 + components: + - type: Transform + pos: 27.5,3.5 + parent: 12 + - uid: 4586 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 12 - uid: 4587 components: - type: Transform @@ -25504,16 +25380,41 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 + - uid: 4590 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 12 + - uid: 4597 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 12 + - uid: 4599 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 12 + - uid: 4603 + components: + - type: Transform + pos: 23.5,3.5 + parent: 12 + - uid: 4612 + components: + - type: Transform + pos: 22.5,3.5 + parent: 12 + - uid: 4619 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 - uid: 4721 components: - type: Transform pos: 10.5,-37.5 parent: 12 - - uid: 4730 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 12 - uid: 4739 components: - type: Transform @@ -25524,26 +25425,21 @@ entities: - type: Transform pos: 6.5,-20.5 parent: 12 - - uid: 4795 + - uid: 4786 components: - type: Transform - pos: 10.5,0.5 + pos: 25.5,3.5 + parent: 12 + - uid: 4788 + components: + - type: Transform + pos: 11.5,1.5 parent: 12 - uid: 4857 components: - type: Transform pos: 57.5,58.5 parent: 12 - - uid: 4865 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 4886 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - uid: 4903 components: - type: Transform @@ -25554,10 +25450,30 @@ entities: - type: Transform pos: -23.5,-11.5 parent: 12 - - uid: 4976 + - uid: 5013 components: - type: Transform - pos: 63.5,-5.5 + pos: 11.5,3.5 + parent: 12 + - uid: 5014 + components: + - type: Transform + pos: 12.5,1.5 + parent: 12 + - uid: 5022 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 12 + - uid: 5029 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 5032 + components: + - type: Transform + pos: 21.5,-9.5 parent: 12 - uid: 5038 components: @@ -25569,15 +25485,35 @@ entities: - type: Transform pos: -28.5,8.5 parent: 12 + - uid: 5080 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 + - uid: 5081 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 12 + - uid: 5082 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 12 - uid: 5083 components: - type: Transform - pos: 24.5,4.5 + pos: 11.5,2.5 parent: 12 - - uid: 5109 + - uid: 5091 components: - type: Transform - pos: 10.5,1.5 + pos: 29.5,2.5 + parent: 12 + - uid: 5118 + components: + - type: Transform + pos: 4.5,-19.5 parent: 12 - uid: 5133 components: @@ -25609,15 +25545,25 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 12 - - uid: 5221 + - uid: 5184 components: - type: Transform - pos: 8.5,3.5 + pos: 29.5,5.5 parent: 12 - - uid: 5230 + - uid: 5188 components: - type: Transform - pos: 10.5,2.5 + pos: 21.5,-3.5 + parent: 12 + - uid: 5222 + components: + - type: Transform + pos: 14.5,4.5 + parent: 12 + - uid: 5226 + components: + - type: Transform + pos: 21.5,2.5 parent: 12 - uid: 5249 components: @@ -25629,15 +25575,45 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 + - uid: 5363 + components: + - type: Transform + pos: 29.5,3.5 + parent: 12 + - uid: 5377 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 12 + - uid: 5404 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - uid: 5429 + components: + - type: Transform + pos: 27.5,1.5 + parent: 12 + - uid: 5481 + components: + - type: Transform + pos: 34.5,0.5 + parent: 12 + - uid: 5503 + components: + - type: Transform + pos: 36.5,4.5 + parent: 12 - uid: 5535 components: - type: Transform pos: 40.5,0.5 parent: 12 - - uid: 5547 + - uid: 5544 components: - type: Transform - pos: 27.5,-1.5 + pos: 26.5,3.5 parent: 12 - uid: 5554 components: @@ -25649,6 +25625,36 @@ entities: - type: Transform pos: 51.5,10.5 parent: 12 + - uid: 5598 + components: + - type: Transform + pos: 27.5,2.5 + parent: 12 + - uid: 5601 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 12 + - uid: 5627 + components: + - type: Transform + pos: 12.5,3.5 + parent: 12 + - uid: 5631 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 12 + - uid: 5632 + components: + - type: Transform + pos: 25.5,5.5 + parent: 12 + - uid: 5633 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 - uid: 5643 components: - type: Transform @@ -25749,95 +25755,35 @@ entities: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 5664 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 5665 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 5666 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 5667 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 5668 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - uid: 5669 components: - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 5670 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5671 - components: - - type: Transform - pos: 27.5,-3.5 + pos: 5.5,-19.5 parent: 12 - uid: 5672 components: - type: Transform - pos: 27.5,-4.5 + pos: 10.5,-1.5 parent: 12 - uid: 5673 components: - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5674 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5675 - components: - - type: Transform - pos: 27.5,-7.5 + pos: 12.5,-1.5 parent: 12 - uid: 5676 components: - type: Transform - pos: 27.5,-8.5 + pos: 21.5,-7.5 parent: 12 - uid: 5677 components: - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5678 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5679 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 5680 - components: - - type: Transform - pos: 27.5,-12.5 + pos: 11.5,-1.5 parent: 12 - uid: 5681 components: - type: Transform - pos: 28.5,-10.5 + pos: 13.5,1.5 parent: 12 - uid: 5683 components: @@ -25960,64 +25906,14 @@ entities: pos: 30.5,-16.5 parent: 12 - uid: 5708 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - uid: 5710 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 12 - - uid: 5711 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 5712 components: - type: Transform pos: 23.5,-12.5 parent: 12 - - uid: 5713 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 5714 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 5715 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - uid: 5716 components: - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 5717 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 5718 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - uid: 5719 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 5720 - components: - - type: Transform - pos: 15.5,-12.5 + pos: 21.5,-6.5 parent: 12 - uid: 5721 components: @@ -26204,11 +26100,6 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 12 - - uid: 5759 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 5760 components: - type: Transform @@ -26379,120 +26270,15 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 12 - - uid: 5795 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 12 - - uid: 5796 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 12 - - uid: 5797 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - - uid: 5798 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5799 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5800 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5801 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5802 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5804 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 5806 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 5808 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 5809 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 5810 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 5811 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 5812 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - uid: 5813 components: - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 5814 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 5815 - components: - - type: Transform - pos: 15.5,0.5 + pos: 28.5,5.5 parent: 12 - uid: 5816 components: - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 5817 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 5818 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 5819 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 5820 - components: - - type: Transform - pos: 15.5,5.5 + pos: 27.5,5.5 parent: 12 - uid: 5821 components: @@ -26524,110 +26310,40 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 - - uid: 5830 - components: - - type: Transform - pos: 24.5,3.5 - parent: 12 - - uid: 5831 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 5832 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - - uid: 5833 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 5835 - components: - - type: Transform - pos: 14.5,5.5 - parent: 12 - uid: 5837 components: - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 5838 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 5839 - components: - - type: Transform - pos: 18.5,-0.5 + pos: 21.5,-1.5 parent: 12 - uid: 5840 components: - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5841 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - - uid: 5842 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - - uid: 5843 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - - uid: 5844 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 12 - - uid: 5845 - components: - - type: Transform - pos: 9.5,-10.5 + pos: 26.5,5.5 parent: 12 - uid: 5846 components: - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 5847 - components: - - type: Transform - pos: 9.5,-6.5 + pos: 21.5,-4.5 parent: 12 - uid: 5849 components: - type: Transform - pos: 9.5,-4.5 + pos: 21.5,1.5 parent: 12 - - uid: 5850 + - uid: 5855 components: - type: Transform - pos: 9.5,-3.5 + pos: 24.5,-12.5 parent: 12 - - uid: 5851 + - uid: 5859 components: - type: Transform - pos: 9.5,-2.5 + pos: 21.5,-5.5 parent: 12 - - uid: 5852 + - uid: 5860 components: - type: Transform - pos: 9.5,-1.5 - parent: 12 - - uid: 5922 - components: - - type: Transform - pos: 67.5,2.5 + pos: 15.5,-3.5 parent: 12 - uid: 5927 components: @@ -26639,30 +26355,20 @@ entities: - type: Transform pos: 39.5,4.5 parent: 12 - - uid: 6006 + - uid: 6020 components: - type: Transform - pos: 21.5,4.5 + pos: 37.5,1.5 parent: 12 - - uid: 6007 + - uid: 6029 components: - type: Transform - pos: 21.5,3.5 + pos: 37.5,0.5 parent: 12 - - uid: 6009 + - uid: 6033 components: - type: Transform - pos: 20.5,3.5 - parent: 12 - - uid: 6010 - components: - - type: Transform - pos: 20.5,1.5 - parent: 12 - - uid: 6011 - components: - - type: Transform - pos: 21.5,1.5 + pos: 22.5,-12.5 parent: 12 - uid: 6034 components: @@ -26764,10 +26470,10 @@ entities: - type: Transform pos: 14.5,-37.5 parent: 12 - - uid: 6707 + - uid: 6708 components: - type: Transform - pos: 54.5,-5.5 + pos: 35.5,0.5 parent: 12 - uid: 6838 components: @@ -26784,6 +26490,11 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 12 + - uid: 6899 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 12 - uid: 6906 components: - type: Transform @@ -27119,6 +26830,26 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7202 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 7213 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 12 + - uid: 7217 + components: + - type: Transform + pos: 21.5,0.5 + parent: 12 + - uid: 7223 + components: + - type: Transform + pos: 37.5,3.5 + parent: 12 - uid: 7258 components: - type: Transform @@ -27134,6 +26865,11 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 7354 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 - uid: 7355 components: - type: Transform @@ -27174,26 +26910,6 @@ entities: - type: Transform pos: -42.5,52.5 parent: 12 - - uid: 7549 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - uid: 7554 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 7555 - components: - - type: Transform - pos: 60.5,2.5 - parent: 12 - - uid: 7556 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - uid: 7564 components: - type: Transform @@ -27204,21 +26920,6 @@ entities: - type: Transform pos: 5.5,-26.5 parent: 12 - - uid: 7766 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 7777 components: - type: Transform @@ -27229,20 +26930,15 @@ entities: - type: Transform pos: 54.5,12.5 parent: 12 - - uid: 7782 + - uid: 7827 components: - type: Transform - pos: 71.5,12.5 + pos: 13.5,-3.5 parent: 12 - - uid: 7783 + - uid: 7830 components: - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 7786 - components: - - type: Transform - pos: 69.5,12.5 + pos: 12.5,-3.5 parent: 12 - uid: 7902 components: @@ -28449,11 +28145,6 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 12 - - uid: 8439 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - uid: 8463 components: - type: Transform @@ -28574,6 +28265,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 + - uid: 8979 + components: + - type: Transform + pos: 33.5,0.5 + parent: 12 - uid: 8995 components: - type: Transform @@ -28724,11 +28420,6 @@ entities: - type: Transform pos: 42.5,-35.5 parent: 12 - - uid: 9168 - components: - - type: Transform - pos: 23.5,4.5 - parent: 12 - uid: 9170 components: - type: Transform @@ -28909,6 +28600,16 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 12 + - uid: 9294 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 12 + - uid: 9300 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 - uid: 9376 components: - type: Transform @@ -28949,41 +28650,11 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 12 - - uid: 9424 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 9430 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 9432 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 9436 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - uid: 9438 components: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 9468 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9481 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - uid: 9520 components: - type: Transform @@ -29024,11 +28695,6 @@ entities: - type: Transform pos: 10.5,22.5 parent: 12 - - uid: 9588 - components: - - type: Transform - pos: 28.5,2.5 - parent: 12 - uid: 9616 components: - type: Transform @@ -29044,11 +28710,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 9684 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - uid: 9723 components: - type: Transform @@ -29229,16 +28890,6 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 12 - - uid: 10025 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 12 - - uid: 10306 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 10328 components: - type: Transform @@ -29404,15 +29055,65 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 12 + - uid: 10796 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 12 + - uid: 10797 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 12 + - uid: 10798 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 12 + - uid: 10799 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 12 + - uid: 10800 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 12 + - uid: 10801 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 12 + - uid: 10804 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 + - uid: 10805 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 + - uid: 10806 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 12 - uid: 10807 components: - type: Transform pos: 13.5,20.5 parent: 12 - - uid: 11016 + - uid: 10809 components: - type: Transform - pos: 8.5,2.5 + pos: 8.5,-7.5 + parent: 12 + - uid: 10824 + components: + - type: Transform + pos: 8.5,-6.5 parent: 12 - uid: 11129 components: @@ -29429,11 +29130,6 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 12 - - uid: 11276 - components: - - type: Transform - pos: 8.5,1.5 - parent: 12 - uid: 11282 components: - type: Transform @@ -29474,6 +29170,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 12 + - uid: 11388 + components: + - type: Transform + pos: 26.5,8.5 + parent: 12 - uid: 11399 components: - type: Transform @@ -30074,21 +29775,71 @@ entities: - type: Transform pos: 12.5,22.5 parent: 12 + - uid: 12288 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 12 + - uid: 12310 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 12 + - uid: 12315 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 12 + - uid: 12322 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 12 - uid: 12636 components: - type: Transform pos: 52.5,12.5 parent: 12 + - uid: 12646 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 12 + - uid: 12698 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 12 - uid: 12714 components: - type: Transform pos: 3.5,16.5 parent: 12 + - uid: 12722 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 12 + - uid: 12724 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 12 - uid: 12910 components: - type: Transform pos: 30.5,19.5 parent: 12 + - uid: 12912 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 12 + - uid: 12913 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 12 - uid: 12926 components: - type: Transform @@ -30264,11 +30015,6 @@ entities: - type: Transform pos: -14.5,-1.5 parent: 12 - - uid: 13169 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 12 - uid: 13224 components: - type: Transform @@ -33764,11 +33510,6 @@ entities: - type: Transform pos: 4.5,27.5 parent: 12 - - uid: 16415 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - uid: 16425 components: - type: Transform @@ -33809,26 +33550,6 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 12 - - uid: 16658 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 16660 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 16663 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 16664 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - uid: 16842 components: - type: Transform @@ -34579,10 +34300,10 @@ entities: - type: Transform pos: -28.5,7.5 parent: 12 - - uid: 17772 + - uid: 17843 components: - type: Transform - pos: 11.5,4.5 + pos: 23.5,4.5 parent: 12 - uid: 17934 components: @@ -35119,11 +34840,6 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 12 - - uid: 18304 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 18305 components: - type: Transform @@ -35564,11 +35280,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 12 - - uid: 18758 - components: - - type: Transform - pos: 68.5,2.5 - parent: 12 - uid: 18898 components: - type: Transform @@ -35774,36 +35485,6 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 - - uid: 19173 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 19175 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 19176 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 19188 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 19189 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 19195 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - uid: 19556 components: - type: Transform @@ -35899,6 +35580,11 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 + - uid: 20552 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 20570 components: - type: Transform @@ -36074,10 +35760,10 @@ entities: - type: Transform pos: -39.5,55.5 parent: 12 - - uid: 20606 + - uid: 20607 components: - type: Transform - pos: 73.5,11.5 + pos: 17.5,-11.5 parent: 12 - uid: 20608 components: @@ -36909,11 +36595,6 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 12 - - uid: 20876 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - uid: 20882 components: - type: Transform @@ -37614,21 +37295,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 - - uid: 22158 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - - uid: 22160 - components: - - type: Transform - pos: 76.5,0.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - pos: 75.5,0.5 - parent: 12 - uid: 22217 components: - type: Transform @@ -37684,11 +37350,6 @@ entities: - type: Transform pos: 33.5,-6.5 parent: 12 - - uid: 22289 - components: - - type: Transform - pos: 8.5,5.5 - parent: 12 - uid: 22298 components: - type: Transform @@ -37714,10 +37375,10 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 22528 + - uid: 23137 components: - type: Transform - pos: 8.5,6.5 + pos: 21.5,4.5 parent: 12 - uid: 23154 components: @@ -39544,6 +39205,21 @@ entities: - type: Transform pos: -26.5,61.5 parent: 12 + - uid: 25463 + components: + - type: Transform + pos: 30.5,4.5 + parent: 12 + - uid: 25465 + components: + - type: Transform + pos: 33.5,4.5 + parent: 12 + - uid: 25483 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 - uid: 25514 components: - type: Transform @@ -39694,140 +39370,155 @@ entities: - type: Transform pos: 59.5,-48.5 parent: 12 - - uid: 26442 + - uid: 26425 components: - type: Transform - pos: 55.5,-5.5 + pos: 1.5,-21.5 + parent: 12 + - uid: 26434 + components: + - type: Transform + pos: 51.5,0.5 + parent: 12 + - uid: 26444 + components: + - type: Transform + pos: 17.5,0.5 parent: 12 - uid: 26446 components: - type: Transform pos: 56.5,-2.5 parent: 12 - - uid: 26453 + - uid: 26456 components: - type: Transform - pos: 56.5,-5.5 + pos: 17.5,3.5 parent: 12 - - uid: 26455 + - uid: 26457 components: - type: Transform - pos: 65.5,8.5 + pos: 17.5,1.5 parent: 12 - uid: 26458 components: - type: Transform - pos: 61.5,-5.5 + pos: 17.5,2.5 parent: 12 - uid: 26459 components: - type: Transform - pos: 57.5,-4.5 + pos: 12.5,-10.5 parent: 12 - uid: 26460 components: - type: Transform - pos: 59.5,-5.5 + pos: 12.5,-9.5 parent: 12 - - uid: 26461 + - uid: 26467 components: - type: Transform - pos: 62.5,2.5 - parent: 12 - - uid: 26462 - components: - - type: Transform - pos: 57.5,2.5 - parent: 12 - - uid: 26463 - components: - - type: Transform - pos: 59.5,2.5 - parent: 12 - - uid: 26464 - components: - - type: Transform - pos: 66.5,-5.5 + pos: 26.5,10.5 parent: 12 - uid: 26468 components: - type: Transform pos: 55.5,2.5 parent: 12 - - uid: 26470 + - uid: 26500 components: - type: Transform - pos: 56.5,-3.5 + pos: 31.5,4.5 parent: 12 - - uid: 26551 + - uid: 26501 components: - type: Transform - pos: 65.5,6.5 + pos: 26.5,11.5 parent: 12 - - uid: 26559 + - uid: 26502 components: - type: Transform - pos: 9.5,1.5 + pos: 35.5,4.5 parent: 12 - - uid: 26580 + - uid: 26503 components: - type: Transform - pos: 65.5,7.5 + pos: 34.5,4.5 parent: 12 - - uid: 26698 + - uid: 26505 components: - type: Transform - pos: 65.5,5.5 + pos: 31.5,5.5 parent: 12 - - uid: 26699 + - uid: 26507 components: - type: Transform - pos: 65.5,4.5 + pos: 31.5,6.5 parent: 12 - - uid: 26700 + - uid: 26508 components: - type: Transform - pos: 65.5,3.5 + pos: 31.5,8.5 parent: 12 - - uid: 26701 + - uid: 26509 components: - type: Transform - pos: 65.5,2.5 + pos: 31.5,7.5 parent: 12 - - uid: 26702 + - uid: 26574 components: - type: Transform - pos: 61.5,2.5 + pos: 15.5,7.5 parent: 12 - - uid: 26703 + - uid: 26589 components: - type: Transform - pos: 61.5,3.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26704 + - uid: 26599 components: - type: Transform - pos: 61.5,4.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26705 + - uid: 26600 components: - type: Transform - pos: 61.5,5.5 + pos: 2.5,-21.5 parent: 12 - - uid: 26706 + - uid: 26615 components: - type: Transform - pos: 61.5,6.5 + pos: 17.5,-10.5 parent: 12 - - uid: 26707 + - uid: 26649 components: - type: Transform - pos: 61.5,7.5 + pos: 17.5,6.5 parent: 12 - - uid: 26708 + - uid: 26674 components: - type: Transform - pos: 61.5,8.5 + pos: 26.5,7.5 + parent: 12 + - uid: 26766 + components: + - type: Transform + pos: 30.5,10.5 + parent: 12 + - uid: 26767 + components: + - type: Transform + pos: 30.5,8.5 + parent: 12 + - uid: 26768 + components: + - type: Transform + pos: 27.5,10.5 + parent: 12 + - uid: 26769 + components: + - type: Transform + pos: 30.5,9.5 parent: 12 - uid: 26770 components: @@ -39854,30 +39545,20 @@ entities: - type: Transform pos: 54.5,5.5 parent: 12 - - uid: 26794 + - uid: 26776 components: - type: Transform - pos: 74.5,1.5 + pos: 29.5,10.5 parent: 12 - - uid: 26795 + - uid: 26777 components: - type: Transform - pos: 74.5,0.5 + pos: 28.5,10.5 parent: 12 - - uid: 26796 + - uid: 26804 components: - type: Transform - pos: 74.5,-0.5 - parent: 12 - - uid: 26797 - components: - - type: Transform - pos: 72.5,2.5 - parent: 12 - - uid: 26807 - components: - - type: Transform - pos: 62.5,-5.5 + pos: 16.5,20.5 parent: 12 - uid: 26812 components: @@ -39894,11 +39575,6 @@ entities: - type: Transform pos: 56.5,-1.5 parent: 12 - - uid: 26815 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - uid: 26817 components: - type: Transform @@ -39924,65 +39600,440 @@ entities: - type: Transform pos: 51.5,-0.5 parent: 12 - - uid: 26823 - components: - - type: Transform - pos: 74.5,-1.5 - parent: 12 - - uid: 26824 - components: - - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26825 - components: - - type: Transform - pos: 72.5,4.5 - parent: 12 - - uid: 26826 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26827 - components: - - type: Transform - pos: 72.5,6.5 - parent: 12 - - uid: 26828 - components: - - type: Transform - pos: 72.5,7.5 - parent: 12 - uid: 26838 components: - type: Transform pos: -41.5,52.5 parent: 12 + - uid: 26858 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 12 + - uid: 26859 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 + - uid: 26860 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 12 + - uid: 26861 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 + - uid: 26862 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 + - uid: 26863 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 12 + - uid: 26864 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 12 + - uid: 26865 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 26867 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 12 + - uid: 26868 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 26869 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26870 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26873 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26874 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 26875 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 26876 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 26877 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 26878 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 26880 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 + - uid: 26883 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 12 + - uid: 26884 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 12 - uid: 26886 components: - type: Transform - pos: 60.5,-5.5 + pos: 78.5,-2.5 parent: 12 - uid: 26887 components: - type: Transform - pos: 73.5,-5.5 + pos: 79.5,-2.5 + parent: 12 + - uid: 26888 + components: + - type: Transform + pos: 79.5,-1.5 parent: 12 - uid: 26889 components: - type: Transform - pos: 74.5,-4.5 + pos: 79.5,-0.5 + parent: 12 + - uid: 26890 + components: + - type: Transform + pos: 79.5,0.5 parent: 12 - uid: 26891 components: - type: Transform - pos: 69.5,-5.5 + pos: 79.5,1.5 parent: 12 - - uid: 27000 + - uid: 26895 components: - type: Transform - pos: 65.5,-5.5 + pos: 79.5,2.5 + parent: 12 + - uid: 26896 + components: + - type: Transform + pos: 79.5,3.5 + parent: 12 + - uid: 26897 + components: + - type: Transform + pos: 79.5,4.5 + parent: 12 + - uid: 26901 + components: + - type: Transform + pos: 79.5,5.5 + parent: 12 + - uid: 26902 + components: + - type: Transform + pos: 79.5,6.5 + parent: 12 + - uid: 26903 + components: + - type: Transform + pos: 79.5,7.5 + parent: 12 + - uid: 26904 + components: + - type: Transform + pos: 79.5,8.5 + parent: 12 + - uid: 26905 + components: + - type: Transform + pos: 79.5,9.5 + parent: 12 + - uid: 26906 + components: + - type: Transform + pos: 79.5,10.5 + parent: 12 + - uid: 26907 + components: + - type: Transform + pos: 14.5,21.5 + parent: 12 + - uid: 26908 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 26909 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 + - uid: 26910 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 26911 + components: + - type: Transform + pos: 76.5,11.5 + parent: 12 + - uid: 26912 + components: + - type: Transform + pos: 75.5,11.5 + parent: 12 + - uid: 26913 + components: + - type: Transform + pos: 74.5,11.5 + parent: 12 + - uid: 26914 + components: + - type: Transform + pos: 73.5,11.5 + parent: 12 + - uid: 26915 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 + - uid: 26916 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 + - uid: 26917 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 26918 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 26919 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 26920 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 26921 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 26922 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 26924 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 26928 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 26931 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 26932 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 26933 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 26934 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 26935 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 26936 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26937 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 + - uid: 26938 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26940 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26942 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26943 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 + - uid: 26945 + components: + - type: Transform + pos: 64.5,12.5 + parent: 12 + - uid: 26950 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 + - uid: 26951 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 + - uid: 26952 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 26953 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 + - uid: 26954 + components: + - type: Transform + pos: 62.5,8.5 + parent: 12 + - uid: 26956 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26957 + components: + - type: Transform + pos: 62.5,6.5 + parent: 12 + - uid: 26958 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26959 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 + - uid: 26960 + components: + - type: Transform + pos: 62.5,4.5 + parent: 12 + - uid: 26961 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 26962 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 + - uid: 26963 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 + - uid: 26967 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 26968 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 26969 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 + - uid: 26970 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26974 + components: + - type: Transform + pos: 58.5,-0.5 parent: 12 - uid: 27046 components: @@ -39999,11 +40050,6 @@ entities: - type: Transform pos: 8.5,31.5 parent: 12 - - uid: 27134 - components: - - type: Transform - pos: 70.5,-5.5 - parent: 12 - uid: 27158 components: - type: Transform @@ -40014,51 +40060,6 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 12 - - uid: 27181 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 27185 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 27186 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - - uid: 27204 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - - uid: 27205 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 12 - - uid: 27206 - components: - - type: Transform - pos: 72.5,-5.5 - parent: 12 - - uid: 27240 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 12 - - uid: 27241 - components: - - type: Transform - pos: 58.5,-4.5 - parent: 12 - - uid: 27242 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - uid: 27257 components: - type: Transform @@ -40534,16 +40535,6 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 12 - - uid: 27830 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27836 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - uid: 27848 components: - type: Transform @@ -40839,16 +40830,6 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 12 - - uid: 28493 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28494 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - uid: 28495 components: - type: Transform @@ -40924,11 +40905,6 @@ entities: - type: Transform pos: -5.5,9.5 parent: 12 - - uid: 28535 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - uid: 28556 components: - type: Transform @@ -40999,110 +40975,215 @@ entities: - type: Transform pos: 46.5,8.5 parent: 12 - - uid: 28858 + - uid: 28672 components: - type: Transform - pos: 74.5,-2.5 + pos: 59.5,7.5 parent: 12 - - uid: 28859 + - uid: 28678 components: - type: Transform - pos: 69.5,2.5 + pos: 56.5,-3.5 parent: 12 - - uid: 28860 + - uid: 28679 components: - type: Transform - pos: 70.5,2.5 + pos: 59.5,5.5 parent: 12 - - uid: 28861 + - uid: 28680 components: - type: Transform - pos: 71.5,2.5 + pos: 59.5,6.5 parent: 12 - - uid: 28862 - components: - - type: Transform - pos: 73.5,2.5 - parent: 12 - - uid: 28863 - components: - - type: Transform - pos: 74.5,2.5 - parent: 12 - - uid: 28864 - components: - - type: Transform - pos: 73.5,-1.5 - parent: 12 - - uid: 28865 - components: - - type: Transform - pos: 72.5,-1.5 - parent: 12 - - uid: 28866 - components: - - type: Transform - pos: 71.5,-1.5 - parent: 12 - - uid: 28867 - components: - - type: Transform - pos: 70.5,-1.5 - parent: 12 - - uid: 28868 - components: - - type: Transform - pos: 69.5,-1.5 - parent: 12 - - uid: 28869 - components: - - type: Transform - pos: 68.5,-1.5 - parent: 12 - - uid: 28870 - components: - - type: Transform - pos: 67.5,-1.5 - parent: 12 - - uid: 28871 - components: - - type: Transform - pos: 66.5,-1.5 - parent: 12 - - uid: 28872 - components: - - type: Transform - pos: 64.5,-1.5 - parent: 12 - - uid: 28873 - components: - - type: Transform - pos: 63.5,-1.5 - parent: 12 - - uid: 28874 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 12 - - uid: 28875 - components: - - type: Transform - pos: 61.5,-1.5 - parent: 12 - - uid: 28876 - components: - - type: Transform - pos: 65.5,-1.5 - parent: 12 - - uid: 28877 + - uid: 28681 components: - type: Transform pos: 59.5,-1.5 parent: 12 + - uid: 28866 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 12 + - uid: 28867 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 12 + - uid: 28868 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 12 + - uid: 28869 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 12 + - uid: 28870 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 12 + - uid: 28871 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 12 + - uid: 28872 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 + - uid: 28873 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 12 + - uid: 28874 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 28875 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 + - uid: 28876 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 + - uid: 28877 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 12 - uid: 28878 components: - type: Transform - pos: 60.5,-1.5 + pos: 59.5,2.5 + parent: 12 + - uid: 28879 + components: + - type: Transform + pos: 60.5,2.5 + parent: 12 + - uid: 28880 + components: + - type: Transform + pos: 61.5,2.5 + parent: 12 + - uid: 28881 + components: + - type: Transform + pos: 61.5,1.5 + parent: 12 + - uid: 28882 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - uid: 28883 + components: + - type: Transform + pos: 61.5,0.5 + parent: 12 + - uid: 28884 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 + - uid: 28885 + components: + - type: Transform + pos: 53.5,5.5 + parent: 12 + - uid: 28887 + components: + - type: Transform + pos: 55.5,5.5 + parent: 12 + - uid: 28890 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 + - uid: 28903 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 28905 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 28906 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 28907 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28908 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 28909 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 28910 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 28911 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 28912 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 28913 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 28914 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 28915 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 28916 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 12 + - uid: 28917 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 12 + - uid: 28918 + components: + - type: Transform + pos: 3.5,-19.5 parent: 12 - uid: 28949 components: @@ -42999,6 +43080,16 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 12 + - uid: 31893 + components: + - type: Transform + pos: 16.5,21.5 + parent: 12 + - uid: 31909 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -43021,6 +43112,12 @@ entities: - type: Transform pos: -22.691366,-9.292267 parent: 12 + - uid: 28714 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.502815,-6.30376 + parent: 12 - proto: CableApcStack1 entities: - uid: 340 @@ -43091,6 +43188,11 @@ entities: parent: 12 - proto: CableHV entities: + - uid: 16 + components: + - type: Transform + pos: 54.5,7.5 + parent: 12 - uid: 21 components: - type: Transform @@ -43101,11 +43203,21 @@ entities: - type: Transform pos: -9.5,-0.5 parent: 12 + - uid: 105 + components: + - type: Transform + pos: 53.5,8.5 + parent: 12 - uid: 108 components: - type: Transform pos: 5.5,3.5 parent: 12 + - uid: 153 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 - uid: 192 components: - type: Transform @@ -43116,11 +43228,36 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 12 + - uid: 254 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 355 components: - type: Transform pos: 36.5,-1.5 parent: 12 + - uid: 361 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 384 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 405 + components: + - type: Transform + pos: 21.5,5.5 + parent: 12 + - uid: 407 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 - uid: 759 components: - type: Transform @@ -43164,22 +43301,12 @@ entities: - uid: 896 components: - type: Transform - pos: 15.5,0.5 + pos: 18.5,-12.5 parent: 12 - - uid: 920 + - uid: 899 components: - type: Transform - pos: 17.5,4.5 - parent: 12 - - uid: 923 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 12 - - uid: 924 - components: - - type: Transform - pos: 16.5,4.5 + pos: 39.5,3.5 parent: 12 - uid: 938 components: @@ -43221,6 +43348,11 @@ entities: - type: Transform pos: 7.5,11.5 parent: 12 + - uid: 1170 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 - uid: 1283 components: - type: Transform @@ -43366,20 +43498,20 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 12 - - uid: 1346 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - uid: 1348 components: - type: Transform pos: -15.5,-30.5 parent: 12 + - uid: 1350 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 12 - uid: 1353 components: - type: Transform - pos: 25.5,-15.5 + pos: 19.5,10.5 parent: 12 - uid: 1358 components: @@ -43406,6 +43538,11 @@ entities: - type: Transform pos: -15.5,-25.5 parent: 12 + - uid: 1482 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 - uid: 1703 components: - type: Transform @@ -43416,6 +43553,31 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 12 + - uid: 1997 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2053 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 2055 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 2087 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 2090 + components: + - type: Transform + pos: 40.5,4.5 + parent: 12 - uid: 2122 components: - type: Transform @@ -43446,25 +43608,30 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 12 - - uid: 2136 + - uid: 2167 components: - type: Transform - pos: 6.5,-6.5 + pos: 48.5,8.5 parent: 12 - - uid: 2181 + - uid: 2176 components: - type: Transform - pos: 33.5,-0.5 + pos: 46.5,8.5 parent: 12 - uid: 2188 components: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 2246 + - uid: 2239 components: - type: Transform - pos: 29.5,8.5 + pos: 47.5,8.5 + parent: 12 + - uid: 2255 + components: + - type: Transform + pos: 19.5,-12.5 parent: 12 - uid: 2301 components: @@ -43476,25 +43643,20 @@ entities: - type: Transform pos: 15.5,10.5 parent: 12 - - uid: 2357 + - uid: 2604 components: - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 2359 - components: - - type: Transform - pos: 39.5,8.5 + pos: 79.5,0.5 parent: 12 - uid: 2669 components: - type: Transform pos: 39.5,-1.5 parent: 12 - - uid: 2781 + - uid: 2874 components: - type: Transform - pos: 19.5,4.5 + pos: 16.5,-12.5 parent: 12 - uid: 2887 components: @@ -43506,6 +43668,21 @@ entities: - type: Transform pos: -10.5,-23.5 parent: 12 + - uid: 2926 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 12 + - uid: 2927 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 + - uid: 2968 + components: + - type: Transform + pos: 19.5,5.5 + parent: 12 - uid: 2975 components: - type: Transform @@ -43516,10 +43693,10 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 12 - - uid: 3022 + - uid: 3077 components: - type: Transform - pos: 23.5,4.5 + pos: 37.5,3.5 parent: 12 - uid: 3147 components: @@ -43701,45 +43878,15 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 - - uid: 3198 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - - uid: 3556 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - - uid: 3586 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 3630 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 3631 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3632 components: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 3824 + - uid: 3894 components: - type: Transform - pos: 26.5,-4.5 - parent: 12 - - uid: 3978 - components: - - type: Transform - pos: 28.5,8.5 + pos: 54.5,-3.5 parent: 12 - uid: 3985 components: @@ -43749,7 +43896,7 @@ entities: - uid: 4046 components: - type: Transform - pos: 11.5,1.5 + pos: 13.5,-11.5 parent: 12 - uid: 4058 components: @@ -43781,11 +43928,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 36.5,2.5 - parent: 12 - uid: 4199 components: - type: Transform @@ -43811,11 +43953,6 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 12 - - uid: 4479 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 12 - uid: 4480 components: - type: Transform @@ -44011,11 +44148,6 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 12 - - uid: 4542 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - uid: 4544 components: - type: Transform @@ -44036,345 +44168,135 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 12 - - uid: 4548 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 12 - uid: 4549 components: - type: Transform pos: 12.5,-16.5 parent: 12 - - uid: 4597 + - uid: 4565 components: - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 4598 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 4599 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 4600 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 4601 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 4603 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 12 - - uid: 4604 - components: - - type: Transform - pos: 8.5,-6.5 + pos: 53.5,-5.5 parent: 12 - uid: 4605 components: - type: Transform - pos: 9.5,-6.5 - parent: 12 - - uid: 4606 - components: - - type: Transform - pos: 10.5,-6.5 + pos: 53.5,-6.5 parent: 12 - uid: 4607 components: - type: Transform - pos: 11.5,-6.5 - parent: 12 - - uid: 4608 - components: - - type: Transform - pos: 12.5,-6.5 + pos: 6.5,-6.5 parent: 12 - uid: 4609 components: - type: Transform - pos: 13.5,-6.5 + pos: 22.5,5.5 parent: 12 - - uid: 4610 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - uid: 4611 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 4612 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 4619 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4620 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 4621 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 4622 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 4623 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 4624 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 4625 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 4626 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 4627 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 4628 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 4630 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 4631 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 4634 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 4635 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 4636 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 4637 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 4638 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 4639 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 4640 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 4641 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 4642 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 4643 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 4644 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 4645 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 12 - - uid: 4646 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 4647 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 4648 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 4649 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 4650 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 4651 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 4652 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 4653 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 4654 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 4655 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4656 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 4657 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 4658 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 12 - - uid: 4659 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 4660 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 4661 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 4662 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 4663 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4664 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 4665 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 4666 + - uid: 4617 components: - type: Transform pos: 17.5,-12.5 parent: 12 - - uid: 4667 + - uid: 4623 components: - type: Transform - pos: 16.5,-12.5 + pos: 16.5,-16.5 + parent: 12 + - uid: 4624 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 + - uid: 4626 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 12 + - uid: 4627 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 12 + - uid: 4646 + components: + - type: Transform + pos: 71.5,9.5 + parent: 12 + - uid: 4657 + components: + - type: Transform + pos: 18.5,10.5 + parent: 12 + - uid: 4665 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 12 + - uid: 4668 + components: + - type: Transform + pos: 74.5,11.5 + parent: 12 + - uid: 4679 + components: + - type: Transform + pos: 26.5,5.5 + parent: 12 + - uid: 4680 + components: + - type: Transform + pos: 75.5,11.5 + parent: 12 + - uid: 4681 + components: + - type: Transform + pos: 77.5,11.5 parent: 12 - uid: 4691 components: - type: Transform pos: -14.5,-23.5 parent: 12 + - uid: 4692 + components: + - type: Transform + pos: 76.5,11.5 + parent: 12 - uid: 4713 components: - type: Transform pos: -10.5,-22.5 parent: 12 - - uid: 4735 + - uid: 4745 components: - type: Transform - pos: 14.5,-7.5 + pos: 25.5,5.5 + parent: 12 + - uid: 4755 + components: + - type: Transform + pos: 79.5,7.5 + parent: 12 + - uid: 4756 + components: + - type: Transform + pos: 79.5,4.5 + parent: 12 + - uid: 4766 + components: + - type: Transform + pos: 79.5,1.5 + parent: 12 + - uid: 4785 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 12 + - uid: 4799 + components: + - type: Transform + pos: 25.5,-16.5 parent: 12 - uid: 4858 components: @@ -44406,16 +44328,111 @@ entities: - type: Transform pos: 40.5,0.5 parent: 12 + - uid: 4895 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - uid: 4917 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 - uid: 4919 components: - type: Transform pos: 34.5,-1.5 parent: 12 + - uid: 4929 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 + - uid: 4935 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 12 + - uid: 4953 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 4957 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 + - uid: 4958 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 - uid: 4970 components: - type: Transform pos: 42.5,-0.5 parent: 12 + - uid: 4974 + components: + - type: Transform + pos: 64.5,12.5 + parent: 12 + - uid: 4976 + components: + - type: Transform + pos: 30.5,4.5 + parent: 12 + - uid: 4994 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 12 + - uid: 4995 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 + - uid: 4996 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 + - uid: 4998 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 12 + - uid: 4999 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 12 + - uid: 5000 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 12 + - uid: 5001 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 12 + - uid: 5002 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 12 + - uid: 5008 + components: + - type: Transform + pos: 28.5,5.5 + parent: 12 + - uid: 5046 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 12 - uid: 5059 components: - type: Transform @@ -44426,6 +44443,11 @@ entities: - type: Transform pos: -10.5,-30.5 parent: 12 + - uid: 5109 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 - uid: 5113 components: - type: Transform @@ -44446,11 +44468,6 @@ entities: - type: Transform pos: 30.5,-1.5 parent: 12 - - uid: 5129 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - uid: 5174 components: - type: Transform @@ -44476,56 +44493,6 @@ entities: - type: Transform pos: 20.5,-27.5 parent: 12 - - uid: 5183 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 12 - - uid: 5184 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 12 - - uid: 5185 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 12 - - uid: 5186 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 12 - - uid: 5187 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 12 - - uid: 5188 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 12 - - uid: 5189 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 12 - - uid: 5190 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 12 - - uid: 5191 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 12 - - uid: 5192 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 12 - uid: 5193 components: - type: Transform @@ -44541,21 +44508,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 12 - - uid: 5197 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - - uid: 5198 - components: - - type: Transform - pos: 43.5,0.5 - parent: 12 - - uid: 5199 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - uid: 5200 components: - type: Transform @@ -44616,6 +44568,11 @@ entities: - type: Transform pos: 33.5,-11.5 parent: 12 + - uid: 5230 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 5231 components: - type: Transform @@ -44631,36 +44588,66 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 5368 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 5407 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 - uid: 5421 components: - type: Transform pos: 1.5,15.5 parent: 12 - - uid: 5478 + - uid: 5638 components: - type: Transform - pos: 22.5,-13.5 + pos: 27.5,5.5 parent: 12 - - uid: 5479 + - uid: 5640 components: - type: Transform - pos: 22.5,-14.5 + pos: 18.5,5.5 parent: 12 - - uid: 5487 + - uid: 5667 components: - type: Transform - pos: 26.5,-15.5 + pos: 15.5,-12.5 parent: 12 - - uid: 5923 + - uid: 5671 components: - type: Transform - pos: 66.5,-5.5 + pos: 17.5,-16.5 + parent: 12 + - uid: 5759 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 5842 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 12 + - uid: 5868 + components: + - type: Transform + pos: 17.5,7.5 parent: 12 - uid: 5989 components: - type: Transform pos: -0.5,-4.5 parent: 12 + - uid: 6013 + components: + - type: Transform + pos: 17.5,5.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -45336,60 +45323,45 @@ entities: - type: Transform pos: 47.5,-54.5 parent: 12 - - uid: 6704 - components: - - type: Transform - pos: 11.5,5.5 - parent: 12 - - uid: 6708 - components: - - type: Transform - pos: 33.5,2.5 - parent: 12 - - uid: 6709 - components: - - type: Transform - pos: 35.5,2.5 - parent: 12 - uid: 6717 components: - type: Transform pos: -52.5,21.5 parent: 12 - - uid: 6728 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 12 - uid: 6735 components: - type: Transform pos: 1.5,18.5 parent: 12 - - uid: 6748 + - uid: 6741 components: - type: Transform - pos: 14.5,4.5 + pos: 37.5,0.5 parent: 12 - uid: 6768 components: - type: Transform pos: -48.5,25.5 parent: 12 - - uid: 6855 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - uid: 7187 components: - type: Transform pos: -0.5,-5.5 parent: 12 - - uid: 7262 + - uid: 7231 components: - type: Transform - pos: 11.5,4.5 + pos: 29.5,5.5 + parent: 12 + - uid: 7233 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 12 + - uid: 7278 + components: + - type: Transform + pos: 65.5,-3.5 parent: 12 - uid: 7283 components: @@ -45411,35 +45383,35 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 + - uid: 7356 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 12 + - uid: 7366 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 - uid: 7546 components: - type: Transform - pos: 71.5,-5.5 + pos: 62.5,8.5 parent: 12 - - uid: 7547 + - uid: 7549 components: - type: Transform - pos: 70.5,-5.5 + pos: 62.5,9.5 parent: 12 - - uid: 7548 + - uid: 7556 components: - type: Transform - pos: 60.5,-5.5 + pos: 62.5,-3.5 parent: 12 - uid: 7557 components: - type: Transform - pos: 61.5,-5.5 - parent: 12 - - uid: 7562 - components: - - type: Transform - pos: 20.5,4.5 - parent: 12 - - uid: 7580 - components: - - type: Transform - pos: 13.5,4.5 + pos: 61.5,-3.5 parent: 12 - uid: 7724 components: @@ -45451,61 +45423,6 @@ entities: - type: Transform pos: -38.5,-52.5 parent: 12 - - uid: 7807 - components: - - type: Transform - pos: 40.5,8.5 - parent: 12 - - uid: 7825 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 12 - - uid: 7826 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 12 - - uid: 7827 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 12 - - uid: 7829 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 12 - - uid: 7830 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - uid: 7831 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 12 - - uid: 7832 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 12 - - uid: 7833 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 12 - - uid: 7834 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 12 - uid: 7835 components: - type: Transform @@ -45806,6 +45723,21 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 + - uid: 8440 + components: + - type: Transform + pos: 73.5,9.5 + parent: 12 + - uid: 8441 + components: + - type: Transform + pos: 34.5,0.5 + parent: 12 + - uid: 8443 + components: + - type: Transform + pos: 73.5,11.5 + parent: 12 - uid: 8494 components: - type: Transform @@ -45821,95 +45753,30 @@ entities: - type: Transform pos: 10.5,16.5 parent: 12 - - uid: 8918 + - uid: 8910 components: - type: Transform - pos: 15.5,2.5 + pos: 79.5,3.5 parent: 12 - uid: 8937 components: - type: Transform - pos: 73.5,-5.5 + pos: 78.5,-2.5 parent: 12 - uid: 8957 components: - type: Transform pos: 10.5,-46.5 parent: 12 + - uid: 9000 + components: + - type: Transform + pos: 77.5,3.5 + parent: 12 - uid: 9003 components: - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 9004 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 9007 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 12 - - uid: 9008 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - - uid: 9009 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 9010 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 9011 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 9012 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 9013 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 9014 - components: - - type: Transform - pos: 43.5,-24.5 - parent: 12 - - uid: 9015 - components: - - type: Transform - pos: 42.5,-24.5 - parent: 12 - - uid: 9016 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 12 - - uid: 9017 - components: - - type: Transform - pos: 42.5,-26.5 + pos: 76.5,-2.5 parent: 12 - uid: 9018 components: @@ -46021,35 +45888,100 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 9142 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 - uid: 9328 components: - type: Transform pos: -0.5,-6.5 parent: 12 + - uid: 9407 + components: + - type: Transform + pos: 79.5,5.5 + parent: 12 + - uid: 9408 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 9410 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 12 + - uid: 9411 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 12 + - uid: 9412 + components: + - type: Transform + pos: 79.5,2.5 + parent: 12 + - uid: 9422 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 + - uid: 9424 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 9426 + components: + - type: Transform + pos: 15.5,9.5 + parent: 12 + - uid: 9434 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 9437 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 - uid: 9449 components: - type: Transform - pos: 16.5,-4.5 + pos: 79.5,6.5 parent: 12 - - uid: 9451 + - uid: 9450 components: - type: Transform - pos: 18.5,4.5 + pos: 79.5,9.5 parent: 12 - uid: 9453 components: - type: Transform - pos: 22.5,4.5 - parent: 12 - - uid: 9456 - components: - - type: Transform - pos: 24.5,3.5 + pos: 79.5,10.5 parent: 12 - uid: 9457 components: - type: Transform - pos: 24.5,2.5 + pos: 79.5,-2.5 + parent: 12 + - uid: 9458 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 12 + - uid: 9460 + components: + - type: Transform + pos: 79.5,8.5 + parent: 12 + - uid: 9468 + components: + - type: Transform + pos: 71.5,-0.5 parent: 12 - uid: 9519 components: @@ -46091,16 +46023,6 @@ entities: - type: Transform pos: 1.5,19.5 parent: 12 - - uid: 9612 - components: - - type: Transform - pos: 24.5,4.5 - parent: 12 - - uid: 9628 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - uid: 9631 components: - type: Transform @@ -46111,20 +46033,45 @@ entities: - type: Transform pos: 9.5,-37.5 parent: 12 - - uid: 9650 - components: - - type: Transform - pos: 16.5,10.5 - parent: 12 - uid: 9657 components: - type: Transform pos: 10.5,-38.5 parent: 12 - - uid: 9671 + - uid: 9658 components: - type: Transform - pos: 32.5,-0.5 + pos: 80.5,2.5 + parent: 12 + - uid: 9663 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 12 + - uid: 9664 + components: + - type: Transform + pos: 74.5,-3.5 + parent: 12 + - uid: 9666 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 12 + - uid: 9670 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 9676 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 9785 + components: + - type: Transform + pos: 29.5,10.5 parent: 12 - uid: 9810 components: @@ -46151,31 +46098,11 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 9860 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - uid: 9861 components: - type: Transform pos: 10.5,-41.5 parent: 12 - - uid: 9862 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 10284 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 12 - - uid: 10305 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - uid: 10319 components: - type: Transform @@ -46476,106 +46403,11 @@ entities: - type: Transform pos: -3.5,13.5 parent: 12 - - uid: 10790 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 10791 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - - uid: 10794 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 12 - - uid: 10795 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 12 - - uid: 10796 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 12 - - uid: 10797 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 12 - - uid: 10798 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - uid: 10799 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 10800 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 10801 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - uid: 10802 components: - type: Transform pos: 43.5,-0.5 parent: 12 - - uid: 10804 - components: - - type: Transform - pos: 43.5,1.5 - parent: 12 - - uid: 10805 - components: - - type: Transform - pos: 43.5,2.5 - parent: 12 - - uid: 10806 - components: - - type: Transform - pos: 43.5,3.5 - parent: 12 - - uid: 10810 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 10811 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - - uid: 10812 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 10813 - components: - - type: Transform - pos: 37.5,4.5 - parent: 12 - uid: 10814 components: - type: Transform @@ -46596,11 +46428,6 @@ entities: - type: Transform pos: 33.5,4.5 parent: 12 - - uid: 10818 - components: - - type: Transform - pos: 32.5,4.5 - parent: 12 - uid: 10819 components: - type: Transform @@ -46626,21 +46453,6 @@ entities: - type: Transform pos: 31.5,8.5 parent: 12 - - uid: 10824 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10825 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10826 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - uid: 10827 components: - type: Transform @@ -46676,11 +46488,6 @@ entities: - type: Transform pos: 5.5,-5.5 parent: 12 - - uid: 10840 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 10843 components: - type: Transform @@ -46806,16 +46613,6 @@ entities: - type: Transform pos: 27.5,10.5 parent: 12 - - uid: 10869 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - - uid: 10870 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - uid: 10878 components: - type: Transform @@ -46856,21 +46653,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 10900 - components: - - type: Transform - pos: 37.5,9.5 - parent: 12 - uid: 10913 components: - type: Transform pos: 24.5,10.5 parent: 12 - - uid: 10914 - components: - - type: Transform - pos: 25.5,10.5 - parent: 12 - uid: 10928 components: - type: Transform @@ -46901,6 +46688,11 @@ entities: - type: Transform pos: 22.5,17.5 parent: 12 + - uid: 11020 + components: + - type: Transform + pos: 52.5,8.5 + parent: 12 - uid: 11055 components: - type: Transform @@ -47016,6 +46808,16 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 + - uid: 11376 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 12 + - uid: 11377 + components: + - type: Transform + pos: 35.5,0.5 + parent: 12 - uid: 11395 components: - type: Transform @@ -47061,6 +46863,16 @@ entities: - type: Transform pos: 32.5,17.5 parent: 12 + - uid: 11591 + components: + - type: Transform + pos: 40.5,3.5 + parent: 12 + - uid: 11646 + components: + - type: Transform + pos: 38.5,3.5 + parent: 12 - uid: 11866 components: - type: Transform @@ -47221,36 +47033,11 @@ entities: - type: Transform pos: 36.5,11.5 parent: 12 - - uid: 12224 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 12 - - uid: 12261 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 12 - - uid: 12641 - components: - - type: Transform - pos: 33.5,1.5 - parent: 12 - - uid: 12711 - components: - - type: Transform - pos: 37.5,0.5 - parent: 12 - uid: 12894 components: - type: Transform pos: 41.5,-11.5 parent: 12 - - uid: 12999 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 13080 components: - type: Transform @@ -48161,6 +47948,81 @@ entities: - type: Transform pos: -6.5,36.5 parent: 12 + - uid: 16357 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 16415 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 16420 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 16421 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 16435 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 16445 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 16446 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 16447 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 16448 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 16449 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 16450 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 16493 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 16520 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 16521 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 16533 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 - uid: 16640 components: - type: Transform @@ -48961,6 +48823,16 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 + - uid: 18307 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 18315 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 18383 components: - type: Transform @@ -50176,6 +50048,11 @@ entities: - type: Transform pos: -38.5,59.5 parent: 12 + - uid: 19548 + components: + - type: Transform + pos: 25.5,10.5 + parent: 12 - uid: 19617 components: - type: Transform @@ -50191,6 +50068,11 @@ entities: - type: Transform pos: 2.5,22.5 parent: 12 + - uid: 19836 + components: + - type: Transform + pos: 21.5,9.5 + parent: 12 - uid: 19840 components: - type: Transform @@ -50266,16 +50148,26 @@ entities: - type: Transform pos: -49.5,46.5 parent: 12 - - uid: 20607 - components: - - type: Transform - pos: 76.5,2.5 - parent: 12 - uid: 21077 components: - type: Transform pos: 10.5,-44.5 parent: 12 + - uid: 21078 + components: + - type: Transform + pos: 54.5,1.5 + parent: 12 + - uid: 21601 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 21648 + components: + - type: Transform + pos: 54.5,8.5 + parent: 12 - uid: 21859 components: - type: Transform @@ -50346,6 +50238,11 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 12 + - uid: 21925 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 21937 components: - type: Transform @@ -50386,21 +50283,61 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 - - uid: 22078 + - uid: 22094 components: - type: Transform - pos: 15.5,1.5 + pos: 57.5,11.5 + parent: 12 + - uid: 22095 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 + - uid: 22109 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 12 + - uid: 22126 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 + - uid: 22136 + components: + - type: Transform + pos: 54.5,5.5 + parent: 12 + - uid: 22140 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 + - uid: 22148 + components: + - type: Transform + pos: 17.5,10.5 + parent: 12 + - uid: 22160 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 22528 + components: + - type: Transform + pos: 17.5,8.5 parent: 12 - uid: 22712 components: - type: Transform pos: -49.5,25.5 parent: 12 - - uid: 22857 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - uid: 23101 components: - type: Transform @@ -50411,6 +50348,16 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 12 + - uid: 23127 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 + - uid: 23163 + components: + - type: Transform + pos: 17.5,9.5 + parent: 12 - uid: 23265 components: - type: Transform @@ -50896,6 +50843,11 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 + - uid: 23984 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 - uid: 24478 components: - type: Transform @@ -50951,6 +50903,21 @@ entities: - type: Transform pos: 9.5,65.5 parent: 12 + - uid: 25199 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 25200 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 25201 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 25305 components: - type: Transform @@ -50961,11 +50928,31 @@ entities: - type: Transform pos: -31.5,59.5 parent: 12 + - uid: 25416 + components: + - type: Transform + pos: 43.5,0.5 + parent: 12 - uid: 25451 components: - type: Transform pos: -22.5,59.5 parent: 12 + - uid: 25460 + components: + - type: Transform + pos: 43.5,6.5 + parent: 12 + - uid: 25461 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - uid: 25462 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 - uid: 25535 components: - type: Transform @@ -51216,6 +51203,11 @@ entities: - type: Transform pos: -25.5,-54.5 parent: 12 + - uid: 25888 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 26079 components: - type: Transform @@ -51261,110 +51253,150 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 26131 + - uid: 26101 components: - type: Transform - pos: 11.5,0.5 + pos: 58.5,-2.5 parent: 12 - - uid: 26132 + - uid: 26102 components: - type: Transform - pos: 11.5,2.5 - parent: 12 - - uid: 26153 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 26154 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 26155 - components: - - type: Transform - pos: 11.5,-3.5 + pos: 59.5,-3.5 parent: 12 - uid: 26156 components: - type: Transform - pos: 11.5,-4.5 + pos: 74.5,12.5 parent: 12 - - uid: 26157 + - uid: 26417 components: - type: Transform - pos: 11.5,-5.5 + pos: 30.5,10.5 parent: 12 - - uid: 26158 + - uid: 26441 components: - type: Transform - pos: 16.5,7.5 + pos: 54.5,0.5 parent: 12 - - uid: 26159 + - uid: 26452 components: - type: Transform - pos: 16.5,9.5 + pos: 57.5,-3.5 parent: 12 - - uid: 26160 + - uid: 26464 components: - type: Transform - pos: 16.5,8.5 + pos: 28.5,10.5 parent: 12 - - uid: 26465 + - uid: 26493 components: - type: Transform - pos: 72.5,-5.5 + pos: 43.5,4.5 parent: 12 - - uid: 26467 + - uid: 26494 components: - type: Transform - pos: 62.5,-5.5 + pos: 43.5,7.5 parent: 12 - - uid: 26469 + - uid: 26495 components: - type: Transform - pos: 69.5,-5.5 + pos: 43.5,8.5 + parent: 12 + - uid: 26496 + components: + - type: Transform + pos: 43.5,3.5 + parent: 12 + - uid: 26497 + components: + - type: Transform + pos: 43.5,1.5 + parent: 12 + - uid: 26498 + components: + - type: Transform + pos: 43.5,2.5 + parent: 12 + - uid: 26499 + components: + - type: Transform + pos: 43.5,5.5 + parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 + - uid: 26521 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26523 + components: + - type: Transform + pos: 80.5,6.5 + parent: 12 + - uid: 26524 + components: + - type: Transform + pos: 70.5,12.5 + parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 72.5,12.5 parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 26551 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 - uid: 26561 components: - type: Transform pos: 47.5,3.5 parent: 12 + - uid: 26562 + components: + - type: Transform + pos: 80.5,4.5 + parent: 12 + - uid: 26576 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 26583 components: - type: Transform pos: 30.5,-2.5 parent: 12 - - uid: 26615 + - uid: 26606 components: - type: Transform - pos: 55.5,-1.5 + pos: 51.5,8.5 parent: 12 - - uid: 26633 + - uid: 26622 components: - type: Transform - pos: 74.5,-1.5 + pos: 74.5,-2.5 parent: 12 - - uid: 26634 + - uid: 26636 components: - type: Transform - pos: 74.5,-0.5 + pos: 65.5,1.5 parent: 12 - - uid: 26635 + - uid: 26643 components: - type: Transform - pos: 74.5,0.5 - parent: 12 - - uid: 26638 - components: - - type: Transform - pos: 76.5,0.5 + pos: 20.5,9.5 parent: 12 - uid: 26646 components: @@ -51431,15 +51463,125 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26800 + - uid: 26671 components: - type: Transform - pos: 56.5,-3.5 + pos: 70.5,-2.5 parent: 12 - - uid: 26801 + - uid: 26683 components: - type: Transform - pos: 56.5,-4.5 + pos: 67.5,-2.5 + parent: 12 + - uid: 26684 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 12 + - uid: 26690 + components: + - type: Transform + pos: 36.5,3.5 + parent: 12 + - uid: 26700 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26701 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26702 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26704 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26717 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26719 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26721 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26728 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26731 + components: + - type: Transform + pos: 58.5,0.5 + parent: 12 + - uid: 26732 + components: + - type: Transform + pos: 62.5,4.5 + parent: 12 + - uid: 26735 + components: + - type: Transform + pos: 54.5,4.5 + parent: 12 + - uid: 26736 + components: + - type: Transform + pos: 54.5,3.5 + parent: 12 + - uid: 26737 + components: + - type: Transform + pos: 54.5,2.5 + parent: 12 + - uid: 26742 + components: + - type: Transform + pos: 49.5,8.5 + parent: 12 + - uid: 26743 + components: + - type: Transform + pos: 50.5,8.5 + parent: 12 + - uid: 26744 + components: + - type: Transform + pos: 44.5,8.5 + parent: 12 + - uid: 26745 + components: + - type: Transform + pos: 45.5,8.5 + parent: 12 + - uid: 26756 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26757 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26803 + components: + - type: Transform + pos: 62.5,6.5 parent: 12 - uid: 26805 components: @@ -51461,46 +51603,391 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26897 + - uid: 27028 components: - type: Transform - pos: 63.5,-5.5 + pos: 43.5,-24.5 parent: 12 - - uid: 26906 + - uid: 27029 components: - type: Transform - pos: 75.5,0.5 + pos: 43.5,-25.5 parent: 12 - - uid: 27002 + - uid: 27051 components: - type: Transform - pos: 68.5,-5.5 + pos: 43.5,-26.5 parent: 12 - - uid: 27042 + - uid: 27052 components: - type: Transform - pos: 37.5,1.5 + pos: 43.5,-23.5 + parent: 12 + - uid: 27055 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 12 + - uid: 27057 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 12 + - uid: 27079 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 12 + - uid: 27080 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 12 + - uid: 27081 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 12 + - uid: 27082 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 12 + - uid: 27087 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 12 + - uid: 27088 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 12 + - uid: 27090 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 12 + - uid: 27092 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 12 + - uid: 27105 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 12 + - uid: 27107 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 + - uid: 27132 + components: + - type: Transform + pos: 51.5,-40.5 parent: 12 - uid: 27133 components: - type: Transform - pos: 75.5,-3.5 + pos: 52.5,-40.5 + parent: 12 + - uid: 27134 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 12 + - uid: 27135 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 12 + - uid: 27136 + components: + - type: Transform + pos: 55.5,-40.5 + parent: 12 + - uid: 27137 + components: + - type: Transform + pos: 56.5,-40.5 + parent: 12 + - uid: 27138 + components: + - type: Transform + pos: 56.5,-39.5 + parent: 12 + - uid: 27139 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 12 + - uid: 27140 + components: + - type: Transform + pos: 56.5,-37.5 + parent: 12 + - uid: 27141 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 12 + - uid: 27142 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 12 + - uid: 27143 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 12 + - uid: 27144 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 12 + - uid: 27145 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 12 + - uid: 27146 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 12 + - uid: 27149 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 12 + - uid: 27151 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 12 + - uid: 27153 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 12 + - uid: 27160 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 12 + - uid: 27162 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 12 + - uid: 27163 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 12 + - uid: 27164 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 12 + - uid: 27165 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 12 + - uid: 27166 + components: + - type: Transform + pos: 50.5,-28.5 + parent: 12 + - uid: 27167 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 12 + - uid: 27168 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 12 + - uid: 27171 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 12 + - uid: 27177 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 12 + - uid: 27178 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 12 + - uid: 27179 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 12 + - uid: 27180 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 12 + - uid: 27181 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 12 + - uid: 27182 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 12 + - uid: 27183 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 12 + - uid: 27185 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 12 + - uid: 27186 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 12 + - uid: 27190 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 12 + - uid: 27191 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 12 + - uid: 27192 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 12 + - uid: 27193 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 12 + - uid: 27194 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 12 + - uid: 27195 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 12 + - uid: 27196 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 12 + - uid: 27197 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 12 + - uid: 27198 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 12 + - uid: 27199 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 12 + - uid: 27200 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 12 + - uid: 27201 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 12 + - uid: 27202 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 12 + - uid: 27204 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 12 + - uid: 27205 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 12 + - uid: 27206 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 12 + - uid: 27207 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 12 + - uid: 27208 + components: + - type: Transform + pos: 49.5,-13.5 parent: 12 - uid: 27210 components: - type: Transform pos: 10.5,18.5 parent: 12 + - uid: 27211 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 12 + - uid: 27212 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 12 + - uid: 27213 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 12 + - uid: 27214 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 12 + - uid: 27215 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 12 - uid: 27235 components: - type: Transform pos: 56.5,-2.5 parent: 12 - - uid: 27250 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - uid: 27339 components: - type: Transform @@ -51551,56 +52038,11 @@ entities: - type: Transform pos: -30.5,-26.5 parent: 12 - - uid: 27353 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 12 - - uid: 27354 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 12 - uid: 27376 components: - type: Transform pos: 13.5,-16.5 parent: 12 - - uid: 27382 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 12 - - uid: 27383 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 12 - - uid: 27384 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 12 - - uid: 27385 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 12 - - uid: 27386 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 12 - - uid: 27387 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 12 - - uid: 27388 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 12 - uid: 27459 components: - type: Transform @@ -52371,26 +52813,6 @@ entities: - type: Transform pos: -37.5,-30.5 parent: 12 - - uid: 27893 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 27904 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27905 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - - uid: 27907 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 12 - uid: 27923 components: - type: Transform @@ -52731,295 +53153,10 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 12 - - uid: 28648 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 28649 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 28650 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - uid: 28668 - components: - - type: Transform - pos: 76.5,3.5 - parent: 12 - - uid: 28669 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 28670 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 28671 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 28672 - components: - - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 28673 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 28674 - components: - - type: Transform - pos: 78.5,7.5 - parent: 12 - - uid: 28675 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - - uid: 28676 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - uid: 28677 components: - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28678 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28679 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28680 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28681 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28682 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28683 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28684 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28685 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28686 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28687 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28688 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28689 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28690 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28691 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28692 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28693 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28694 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28695 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 28696 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 28697 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 28698 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28699 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 28700 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 28701 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 28702 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 28703 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 28704 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 28705 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 28706 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 28707 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 28708 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 28709 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - - uid: 28710 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - - uid: 28711 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - - uid: 28712 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - - uid: 28713 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 28714 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - - uid: 28715 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 28716 - components: - - type: Transform - pos: 45.5,8.5 - parent: 12 - - uid: 28717 - components: - - type: Transform - pos: 44.5,8.5 - parent: 12 - - uid: 28718 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 28719 - components: - - type: Transform - pos: 43.5,4.5 - parent: 12 - - uid: 28720 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 28721 - components: - - type: Transform - pos: 43.5,6.5 - parent: 12 - - uid: 28722 - components: - - type: Transform - pos: 43.5,7.5 + pos: 55.5,-3.5 parent: 12 - uid: 28723 components: @@ -53091,66 +53228,11 @@ entities: - type: Transform pos: 41.5,11.5 parent: 12 - - uid: 28737 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - uid: 28738 - components: - - type: Transform - pos: 41.5,8.5 - parent: 12 - - uid: 28739 - components: - - type: Transform - pos: 41.5,9.5 - parent: 12 - - uid: 28740 - components: - - type: Transform - pos: 42.5,8.5 - parent: 12 - - uid: 28784 - components: - - type: Transform - pos: 74.5,-4.5 - parent: 12 - - uid: 28879 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - - uid: 28880 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - - uid: 28881 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 12 - - uid: 28882 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - - uid: 28883 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - uid: 28889 components: - type: Transform pos: 29.5,3.5 parent: 12 - - uid: 28890 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - uid: 28891 components: - type: Transform @@ -53209,17 +53291,7 @@ entities: - uid: 29001 components: - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 29002 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 29003 - components: - - type: Transform - pos: 21.5,-11.5 + pos: 36.5,2.5 parent: 12 - uid: 29034 components: @@ -53301,6 +53373,11 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 + - uid: 29087 + components: + - type: Transform + pos: 36.5,1.5 + parent: 12 - uid: 29182 components: - type: Transform @@ -53341,11 +53418,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 29819 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 29873 components: - type: Transform @@ -53661,101 +53733,6 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 - - uid: 29959 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 12 - - uid: 29960 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 12 - - uid: 29961 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 12 - - uid: 29962 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 12 - - uid: 29963 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 12 - - uid: 29964 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 12 - - uid: 29965 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 12 - - uid: 29966 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 12 - - uid: 29967 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 12 - - uid: 29968 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 12 - - uid: 29969 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 12 - - uid: 29970 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 12 - - uid: 29971 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 12 - - uid: 29972 - components: - - type: Transform - pos: 37.5,-22.5 - parent: 12 - - uid: 29973 - components: - - type: Transform - pos: 38.5,-22.5 - parent: 12 - - uid: 29974 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 12 - - uid: 29975 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 12 - - uid: 29976 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 12 - - uid: 29977 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 12 - uid: 29986 components: - type: Transform @@ -53886,16 +53863,6 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 12 - - uid: 30434 - components: - - type: Transform - pos: 37.5,8.5 - parent: 12 - - uid: 30436 - components: - - type: Transform - pos: 38.5,8.5 - parent: 12 - uid: 30496 components: - type: Transform @@ -54681,6 +54648,51 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 + - uid: 31880 + components: + - type: Transform + pos: 72.5,9.5 + parent: 12 + - uid: 31881 + components: + - type: Transform + pos: 72.5,10.5 + parent: 12 + - uid: 31883 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 31884 + components: + - type: Transform + pos: 78.5,4.5 + parent: 12 + - uid: 31885 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 12 + - uid: 31886 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 12 + - uid: 31898 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 + - uid: 31899 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31900 + components: + - type: Transform + pos: 59.5,12.5 + parent: 12 - proto: CableHVStack entities: - uid: 353 @@ -54698,13 +54710,44 @@ entities: - type: Transform pos: 44.585773,52.36379 parent: 12 + - uid: 28713 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.496643,-6.643266 + parent: 12 - proto: CableMV entities: + - uid: 22 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 - uid: 87 components: - type: Transform pos: 0.5,2.5 parent: 12 + - uid: 206 + components: + - type: Transform + pos: 79.5,14.5 + parent: 12 + - uid: 227 + components: + - type: Transform + pos: 80.5,14.5 + parent: 12 + - uid: 286 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 366 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 - uid: 392 components: - type: Transform @@ -54715,31 +54758,11 @@ entities: - type: Transform pos: -21.5,-30.5 parent: 12 - - uid: 498 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 500 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 502 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - uid: 507 components: - type: Transform pos: -25.5,59.5 parent: 12 - - uid: 570 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - uid: 601 components: - type: Transform @@ -54755,21 +54778,16 @@ entities: - type: Transform pos: -56.5,45.5 parent: 12 + - uid: 763 + components: + - type: Transform + pos: 56.5,4.5 + parent: 12 - uid: 904 components: - type: Transform pos: -53.5,43.5 parent: 12 - - uid: 908 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 1058 - components: - - type: Transform - pos: 24.5,2.5 - parent: 12 - uid: 1059 components: - type: Transform @@ -54780,15 +54798,20 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 12 - - uid: 1170 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - uid: 1191 components: - type: Transform - pos: 73.5,12.5 + pos: 62.5,4.5 + parent: 12 + - uid: 1344 + components: + - type: Transform + pos: 64.5,4.5 + parent: 12 + - uid: 1349 + components: + - type: Transform + pos: 57.5,-8.5 parent: 12 - uid: 1437 components: @@ -55250,15 +55273,25 @@ entities: - type: Transform pos: -53.5,40.5 parent: 12 - - uid: 2055 + - uid: 2039 components: - type: Transform - pos: 69.5,12.5 + pos: 62.5,6.5 + parent: 12 + - uid: 2052 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 2105 + components: + - type: Transform + pos: 26.5,5.5 parent: 12 - uid: 2113 components: - type: Transform - pos: 70.5,12.5 + pos: 26.5,6.5 parent: 12 - uid: 2115 components: @@ -55285,20 +55318,45 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 12 + - uid: 2130 + components: + - type: Transform + pos: 26.5,7.5 + parent: 12 - uid: 2139 components: - type: Transform - pos: 73.5,11.5 + pos: 26.5,8.5 parent: 12 - uid: 2140 components: - type: Transform - pos: 71.5,12.5 + pos: 23.5,5.5 parent: 12 - uid: 2141 components: - type: Transform - pos: 63.5,12.5 + pos: 25.5,5.5 + parent: 12 + - uid: 2152 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2157 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 + - uid: 2158 + components: + - type: Transform + pos: 25.5,9.5 + parent: 12 + - uid: 2159 + components: + - type: Transform + pos: 24.5,9.5 parent: 12 - uid: 2177 components: @@ -55365,11 +55423,21 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 12 + - uid: 2246 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 - uid: 2249 components: - type: Transform pos: -56.5,40.5 parent: 12 + - uid: 2251 + components: + - type: Transform + pos: 56.5,6.5 + parent: 12 - uid: 2259 components: - type: Transform @@ -55380,16 +55448,31 @@ entities: - type: Transform pos: -23.5,57.5 parent: 12 + - uid: 2287 + components: + - type: Transform + pos: 82.5,5.5 + parent: 12 - uid: 2529 components: - type: Transform pos: 45.5,-20.5 parent: 12 + - uid: 2574 + components: + - type: Transform + pos: 80.5,8.5 + parent: 12 - uid: 2581 components: - type: Transform pos: -56.5,39.5 parent: 12 + - uid: 2676 + components: + - type: Transform + pos: 80.5,9.5 + parent: 12 - uid: 2740 components: - type: Transform @@ -55430,6 +55513,11 @@ entities: - type: Transform pos: -57.5,36.5 parent: 12 + - uid: 2859 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 - uid: 2860 components: - type: Transform @@ -55445,11 +55533,21 @@ entities: - type: Transform pos: -57.5,39.5 parent: 12 + - uid: 2869 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 12 - uid: 2882 components: - type: Transform pos: 0.5,-40.5 parent: 12 + - uid: 2929 + components: + - type: Transform + pos: 80.5,0.5 + parent: 12 - uid: 2946 components: - type: Transform @@ -55480,6 +55578,11 @@ entities: - type: Transform pos: 0.5,-38.5 parent: 12 + - uid: 3078 + components: + - type: Transform + pos: 14.5,5.5 + parent: 12 - uid: 3080 components: - type: Transform @@ -55850,6 +55953,11 @@ entities: - type: Transform pos: -18.5,-27.5 parent: 12 + - uid: 3470 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 - uid: 3485 components: - type: Transform @@ -55870,6 +55978,16 @@ entities: - type: Transform pos: -24.5,-30.5 parent: 12 + - uid: 3613 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 + - uid: 3625 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 - uid: 3719 components: - type: Transform @@ -55885,6 +56003,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 + - uid: 4185 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 12 - uid: 4258 components: - type: Transform @@ -55985,16 +56108,31 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 + - uid: 4629 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 12 - uid: 4632 components: - type: Transform pos: 56.5,46.5 parent: 12 + - uid: 4663 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 12 - uid: 4683 components: - type: Transform pos: 74.5,14.5 parent: 12 + - uid: 4684 + components: + - type: Transform + pos: 80.5,1.5 + parent: 12 - uid: 4686 components: - type: Transform @@ -56040,16 +56178,46 @@ entities: - type: Transform pos: -20.5,-30.5 parent: 12 + - uid: 4761 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 12 + - uid: 4800 + components: + - type: Transform + pos: 40.5,0.5 + parent: 12 - uid: 4859 components: - type: Transform pos: 57.5,56.5 parent: 12 + - uid: 4910 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 12 + - uid: 4921 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 12 + - uid: 4928 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 12 - uid: 4933 components: - type: Transform pos: -11.5,-30.5 parent: 12 + - uid: 4954 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 - uid: 4963 components: - type: Transform @@ -56060,236 +56228,11 @@ entities: - type: Transform pos: 15.5,11.5 parent: 12 - - uid: 4975 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - uid: 4977 components: - type: Transform pos: -27.5,65.5 parent: 12 - - uid: 4984 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 4986 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 4987 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 4988 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 4989 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 4990 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4991 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 4992 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 4994 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 4995 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4998 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4999 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5000 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5001 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 5002 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 5003 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5004 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5005 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 5006 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 5007 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5008 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 12 - - uid: 5009 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 5010 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 5011 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 5012 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 5013 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 5014 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 5016 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 5017 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5018 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 5019 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 5020 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 5021 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 5022 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 5023 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 5024 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 5025 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 5026 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 5027 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 5029 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 5031 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 5032 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 5033 - components: - - type: Transform - pos: 17.5,0.5 - parent: 12 - - uid: 5034 - components: - - type: Transform - pos: 25.5,0.5 - parent: 12 - uid: 5036 components: - type: Transform @@ -56310,11 +56253,26 @@ entities: - type: Transform pos: 57.5,58.5 parent: 12 + - uid: 5064 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 12 - uid: 5077 components: - type: Transform pos: 30.5,-9.5 parent: 12 + - uid: 5093 + components: + - type: Transform + pos: 40.5,4.5 + parent: 12 + - uid: 5098 + components: + - type: Transform + pos: 59.5,6.5 + parent: 12 - uid: 5102 components: - type: Transform @@ -56325,41 +56283,91 @@ entities: - type: Transform pos: 57.5,55.5 parent: 12 + - uid: 5125 + components: + - type: Transform + pos: 82.5,12.5 + parent: 12 + - uid: 5127 + components: + - type: Transform + pos: 58.5,-8.5 + parent: 12 + - uid: 5128 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 12 - uid: 5132 components: - type: Transform pos: -1.5,1.5 parent: 12 - - uid: 5220 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 12 - uid: 5245 components: - type: Transform pos: -56.5,48.5 parent: 12 - - uid: 5247 + - uid: 5272 components: - type: Transform - pos: 9.5,-8.5 + pos: 33.5,-1.5 parent: 12 - uid: 5290 components: - type: Transform pos: 3.5,-5.5 parent: 12 + - uid: 5301 + components: + - type: Transform + pos: 14.5,4.5 + parent: 12 - uid: 5311 components: - type: Transform pos: -27.5,66.5 parent: 12 + - uid: 5316 + components: + - type: Transform + pos: 77.5,-3.5 + parent: 12 + - uid: 5319 + components: + - type: Transform + pos: 82.5,10.5 + parent: 12 + - uid: 5364 + components: + - type: Transform + pos: 82.5,9.5 + parent: 12 + - uid: 5370 + components: + - type: Transform + pos: 82.5,8.5 + parent: 12 + - uid: 5386 + components: + - type: Transform + pos: 82.5,11.5 + parent: 12 + - uid: 5405 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 12 - uid: 5415 components: - type: Transform pos: -55.5,46.5 parent: 12 + - uid: 5425 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 12 - uid: 5431 components: - type: Transform @@ -56415,11 +56423,6 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 12 - - uid: 5595 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - uid: 5603 components: - type: Transform @@ -56495,21 +56498,11 @@ entities: - type: Transform pos: 27.5,-16.5 parent: 12 - - uid: 5618 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - uid: 5619 components: - type: Transform pos: 25.5,-16.5 parent: 12 - - uid: 5620 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - uid: 5621 components: - type: Transform @@ -56540,86 +56533,16 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5627 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 5628 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 12 - - uid: 5629 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 5630 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 5631 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 5632 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 5633 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - uid: 5634 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 5635 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 5636 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5637 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5638 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5639 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5640 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5641 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 12 - uid: 5663 components: - type: Transform pos: -54.5,46.5 parent: 12 + - uid: 5720 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 - uid: 5836 components: - type: Transform @@ -56630,15 +56553,10 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 12 - - uid: 5885 + - uid: 5850 components: - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 5888 - components: - - type: Transform - pos: 74.5,-3.5 + pos: 13.5,-0.5 parent: 12 - uid: 5934 components: @@ -56665,51 +56583,16 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 + - uid: 6007 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 12 - uid: 6012 components: - type: Transform pos: -48.5,56.5 parent: 12 - - uid: 6013 - components: - - type: Transform - pos: 20.5,0.5 - parent: 12 - - uid: 6014 - components: - - type: Transform - pos: 22.5,0.5 - parent: 12 - - uid: 6017 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 6018 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6019 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 6020 - components: - - type: Transform - pos: 20.5,3.5 - parent: 12 - - uid: 6021 - components: - - type: Transform - pos: 21.5,5.5 - parent: 12 - - uid: 6022 - components: - - type: Transform - pos: 20.5,5.5 - parent: 12 - uid: 6024 components: - type: Transform @@ -56730,36 +56613,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 6028 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 6029 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 6030 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 6031 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 6032 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 6033 - components: - - type: Transform - pos: 21.5,1.5 - parent: 12 - uid: 6151 components: - type: Transform @@ -56785,11 +56638,6 @@ entities: - type: Transform pos: 10.5,-47.5 parent: 12 - - uid: 6183 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 6184 components: - type: Transform @@ -56815,6 +56663,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 12 + - uid: 6354 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 6704 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 6711 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 12 + - uid: 6728 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 - uid: 6756 components: - type: Transform @@ -56840,6 +56708,36 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 7124 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 12 + - uid: 7208 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 7209 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7218 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7220 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 7237 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 7276 components: - type: Transform @@ -56860,26 +56758,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 7354 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 7356 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 7364 components: - type: Transform pos: 30.5,15.5 parent: 12 - - uid: 7366 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 7381 components: - type: Transform @@ -56900,11 +56783,81 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7555 + components: + - type: Transform + pos: 77.5,14.5 + parent: 12 + - uid: 7563 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 12 + - uid: 7580 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7586 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 12 + - uid: 7766 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 12 + - uid: 7767 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 12 + - uid: 7768 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 12 + - uid: 7782 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 7783 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 7786 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 7787 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 - uid: 7791 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 7811 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 7828 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 7834 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 - uid: 7840 components: - type: Transform @@ -57135,6 +57088,11 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 + - uid: 7889 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 - uid: 7890 components: - type: Transform @@ -57508,43 +57466,73 @@ entities: - uid: 8198 components: - type: Transform - pos: 74.5,11.5 + pos: 77.5,-2.5 parent: 12 - uid: 8199 components: - type: Transform - pos: 78.5,7.5 + pos: 78.5,-2.5 parent: 12 - uid: 8225 components: - type: Transform pos: -36.5,-35.5 parent: 12 - - uid: 8435 + - uid: 8344 components: - type: Transform - pos: 78.5,5.5 + pos: 68.5,12.5 parent: 12 - uid: 8436 components: - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 8440 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 8443 - components: - - type: Transform - pos: 61.5,12.5 + pos: 69.5,11.5 parent: 12 - uid: 9002 components: - type: Transform pos: 30.5,16.5 parent: 12 + - uid: 9004 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 + - uid: 9005 + components: + - type: Transform + pos: 73.5,-5.5 + parent: 12 + - uid: 9006 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 12 + - uid: 9007 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 12 + - uid: 9046 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 12 + - uid: 9047 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 12 + - uid: 9052 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 12 + - uid: 9069 + components: + - type: Transform + pos: 40.5,2.5 + parent: 12 - uid: 9070 components: - type: Transform @@ -57555,11 +57543,31 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 12 + - uid: 9127 + components: + - type: Transform + pos: 30.5,0.5 + parent: 12 + - uid: 9173 + components: + - type: Transform + pos: 69.5,12.5 + parent: 12 - uid: 9253 components: - type: Transform pos: -39.5,70.5 parent: 12 + - uid: 9298 + components: + - type: Transform + pos: 67.5,12.5 + parent: 12 + - uid: 9306 + components: + - type: Transform + pos: 64.5,7.5 + parent: 12 - uid: 9333 components: - type: Transform @@ -57580,6 +57588,16 @@ entities: - type: Transform pos: -39.5,65.5 parent: 12 + - uid: 9338 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 9400 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 - uid: 9425 components: - type: Transform @@ -57588,37 +57606,37 @@ entities: - uid: 9433 components: - type: Transform - pos: 24.5,0.5 - parent: 12 - - uid: 9434 - components: - - type: Transform - pos: 24.5,1.5 + pos: 40.5,3.5 parent: 12 - uid: 9444 components: - type: Transform pos: 61.5,-23.5 parent: 12 + - uid: 9451 + components: + - type: Transform + pos: 82.5,2.5 + parent: 12 - uid: 9455 components: - type: Transform pos: -39.5,66.5 parent: 12 + - uid: 9459 + components: + - type: Transform + pos: 80.5,7.5 + parent: 12 - uid: 9480 components: - type: Transform pos: -0.5,-12.5 parent: 12 - - uid: 9483 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - uid: 9484 components: - type: Transform - pos: 15.5,-7.5 + pos: 54.5,8.5 parent: 12 - uid: 9489 components: @@ -57630,11 +57648,26 @@ entities: - type: Transform pos: -0.5,-13.5 parent: 12 + - uid: 9492 + components: + - type: Transform + pos: 30.5,1.5 + parent: 12 + - uid: 9495 + components: + - type: Transform + pos: 30.5,2.5 + parent: 12 - uid: 9497 components: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 9499 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 9503 components: - type: Transform @@ -57665,70 +57698,75 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 12 - - uid: 9662 + - uid: 9614 components: - type: Transform - pos: 21.5,6.5 + pos: 76.5,14.5 parent: 12 - - uid: 9663 + - uid: 9629 components: - type: Transform - pos: 21.5,7.5 + pos: 30.5,3.5 parent: 12 - - uid: 9664 + - uid: 9641 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,4.5 parent: 12 - - uid: 9667 + - uid: 9671 components: - type: Transform - pos: 20.5,7.5 - parent: 12 - - uid: 9668 - components: - - type: Transform - pos: 20.5,8.5 - parent: 12 - - uid: 9669 - components: - - type: Transform - pos: 19.5,8.5 - parent: 12 - - uid: 9670 - components: - - type: Transform - pos: 18.5,8.5 + pos: 37.5,-1.5 parent: 12 - uid: 9707 components: - type: Transform - pos: 16.5,6.5 + pos: 82.5,1.5 parent: 12 - uid: 9708 components: - type: Transform - pos: 16.5,7.5 - parent: 12 - - uid: 9709 - components: - - type: Transform - pos: 16.5,8.5 - parent: 12 - - uid: 9710 - components: - - type: Transform - pos: 16.5,9.5 + pos: 82.5,0.5 parent: 12 - uid: 9711 components: - type: Transform - pos: 16.5,10.5 + pos: 51.5,0.5 parent: 12 - - uid: 9853 + - uid: 9720 components: - type: Transform - pos: 21.5,0.5 + pos: 38.5,-1.5 + parent: 12 + - uid: 9820 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 12 + - uid: 9840 + components: + - type: Transform + pos: 38.5,4.5 + parent: 12 + - uid: 9865 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 + - uid: 9866 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 9867 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 + - uid: 9868 + components: + - type: Transform + pos: 64.5,12.5 parent: 12 - uid: 9876 components: @@ -57855,6 +57893,11 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 12 + - uid: 9908 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 - uid: 9909 components: - type: Transform @@ -57970,6 +58013,11 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 12 + - uid: 9956 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 - uid: 9965 components: - type: Transform @@ -57985,11 +58033,36 @@ entities: - type: Transform pos: -1.5,-33.5 parent: 12 + - uid: 10001 + components: + - type: Transform + pos: 39.5,4.5 + parent: 12 - uid: 10020 components: - type: Transform pos: -0.5,-16.5 parent: 12 + - uid: 10022 + components: + - type: Transform + pos: 56.5,5.5 + parent: 12 + - uid: 10023 + components: + - type: Transform + pos: 57.5,1.5 + parent: 12 + - uid: 10024 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 + - uid: 10025 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 - uid: 10074 components: - type: Transform @@ -58000,6 +58073,11 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 + - uid: 10165 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 - uid: 10196 components: - type: Transform @@ -58020,6 +58098,11 @@ entities: - type: Transform pos: -54.5,13.5 parent: 12 + - uid: 10305 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 10307 components: - type: Transform @@ -58030,6 +58113,11 @@ entities: - type: Transform pos: -46.5,51.5 parent: 12 + - uid: 10376 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 12 - uid: 10377 components: - type: Transform @@ -58175,6 +58263,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 12 + - uid: 10518 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 12 + - uid: 10519 + components: + - type: Transform + pos: 82.5,-2.5 + parent: 12 + - uid: 10549 + components: + - type: Transform + pos: 82.5,-3.5 + parent: 12 - uid: 10550 components: - type: Transform @@ -58200,6 +58303,16 @@ entities: - type: Transform pos: -6.5,30.5 parent: 12 + - uid: 10812 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 + - uid: 10841 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 12 - uid: 10917 components: - type: Transform @@ -58218,23 +58331,68 @@ entities: - uid: 10940 components: - type: Transform - pos: 8.5,-7.5 + pos: 28.5,5.5 + parent: 12 + - uid: 10952 + components: + - type: Transform + pos: 27.5,5.5 parent: 12 - uid: 10956 components: - type: Transform pos: -0.5,-0.5 parent: 12 + - uid: 10983 + components: + - type: Transform + pos: 29.5,5.5 + parent: 12 + - uid: 10986 + components: + - type: Transform + pos: 30.5,5.5 + parent: 12 + - uid: 10996 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 12 - uid: 11034 components: - type: Transform pos: -47.5,15.5 parent: 12 + - uid: 11203 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 + - uid: 11331 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 - uid: 11359 components: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11365 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 12 + - uid: 11383 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 12 + - uid: 11387 + components: + - type: Transform + pos: 21.5,4.5 + parent: 12 - uid: 11450 components: - type: Transform @@ -58285,6 +58443,16 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 12047 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 12 + - uid: 12056 + components: + - type: Transform + pos: 76.5,-5.5 + parent: 12 - uid: 12142 components: - type: Transform @@ -58603,12 +58771,32 @@ entities: - uid: 12916 components: - type: Transform - pos: 23.5,2.5 + pos: 81.5,-5.5 + parent: 12 + - uid: 12917 + components: + - type: Transform + pos: 82.5,-5.5 + parent: 12 + - uid: 12920 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 12 + - uid: 12929 + components: + - type: Transform + pos: 78.5,-5.5 parent: 12 - uid: 12931 components: - type: Transform - pos: 59.5,-4.5 + pos: 79.5,-5.5 + parent: 12 + - uid: 13011 + components: + - type: Transform + pos: 80.5,-5.5 parent: 12 - uid: 13043 components: @@ -60180,6 +60368,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 12 + - uid: 16356 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 12 - uid: 16377 components: - type: Transform @@ -60235,20 +60428,10 @@ entities: - type: Transform pos: -10.5,23.5 parent: 12 - - uid: 16448 + - uid: 16436 components: - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 78.5,2.5 - parent: 12 - - uid: 16450 - components: - - type: Transform - pos: 78.5,-0.5 + pos: 59.5,-5.5 parent: 12 - uid: 16534 components: @@ -60285,20 +60468,15 @@ entities: - type: Transform pos: 0.5,3.5 parent: 12 - - uid: 16659 + - uid: 16660 components: - type: Transform - pos: 78.5,4.5 + pos: 65.5,-2.5 parent: 12 - - uid: 16661 + - uid: 16663 components: - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 16662 - components: - - type: Transform - pos: 78.5,8.5 + pos: 66.5,-2.5 parent: 12 - uid: 16798 components: @@ -60885,11 +61063,6 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 - - uid: 17552 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 17735 components: - type: Transform @@ -61115,11 +61288,6 @@ entities: - type: Transform pos: -59.5,20.5 parent: 12 - - uid: 17948 - components: - - type: Transform - pos: 76.5,2.5 - parent: 12 - uid: 17949 components: - type: Transform @@ -61175,31 +61343,6 @@ entities: - type: Transform pos: -15.5,8.5 parent: 12 - - uid: 18306 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 18307 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 18312 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 18313 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 18315 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - uid: 18337 components: - type: Transform @@ -61305,16 +61448,6 @@ entities: - type: Transform pos: -28.5,-42.5 parent: 12 - - uid: 19168 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 19177 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 19235 components: - type: Transform @@ -61330,10 +61463,10 @@ entities: - type: Transform pos: -51.5,13.5 parent: 12 - - uid: 19459 + - uid: 19462 components: - type: Transform - pos: 76.5,3.5 + pos: 59.5,7.5 parent: 12 - uid: 19506 components: @@ -61390,10 +61523,10 @@ entities: - type: Transform pos: -35.5,60.5 parent: 12 - - uid: 19540 + - uid: 19538 components: - type: Transform - pos: 22.5,2.5 + pos: 26.5,-16.5 parent: 12 - uid: 19554 components: @@ -61430,11 +61563,6 @@ entities: - type: Transform pos: -47.5,13.5 parent: 12 - - uid: 19816 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - uid: 19817 components: - type: Transform @@ -62475,6 +62603,11 @@ entities: - type: Transform pos: -37.5,51.5 parent: 12 + - uid: 20606 + components: + - type: Transform + pos: 82.5,6.5 + parent: 12 - uid: 20767 components: - type: Transform @@ -62485,11 +62618,6 @@ entities: - type: Transform pos: -24.5,38.5 parent: 12 - - uid: 20782 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - uid: 20783 components: - type: Transform @@ -62690,6 +62818,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21607 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62710,6 +62843,11 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 12 + - uid: 21871 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 21901 components: - type: Transform @@ -62720,11 +62858,6 @@ entities: - type: Transform pos: -39.5,-25.5 parent: 12 - - uid: 22006 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 22007 components: - type: Transform @@ -62735,11 +62868,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 12 - - uid: 22024 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - uid: 22027 components: - type: Transform @@ -62755,16 +62883,16 @@ entities: - type: Transform pos: -32.5,70.5 parent: 12 - - uid: 22049 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - uid: 22054 components: - type: Transform pos: -0.5,1.5 parent: 12 + - uid: 22073 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 12 - uid: 22079 components: - type: Transform @@ -62780,31 +62908,6 @@ entities: - type: Transform pos: -41.5,52.5 parent: 12 - - uid: 22108 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 22109 - components: - - type: Transform - pos: 78.5,0.5 - parent: 12 - - uid: 22111 - components: - - type: Transform - pos: 78.5,-1.5 - parent: 12 - - uid: 22125 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22128 components: - type: Transform @@ -62823,12 +62926,7 @@ entities: - uid: 22135 components: - type: Transform - pos: 75.5,13.5 - parent: 12 - - uid: 22136 - components: - - type: Transform - pos: 80.5,9.5 + pos: 62.5,-3.5 parent: 12 - uid: 22137 components: @@ -62845,21 +62943,6 @@ entities: - type: Transform pos: 66.5,14.5 parent: 12 - - uid: 22140 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - - uid: 22141 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - - uid: 22142 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - uid: 22143 components: - type: Transform @@ -62880,6 +62963,11 @@ entities: - type: Transform pos: 61.5,14.5 parent: 12 + - uid: 22163 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 22188 components: - type: Transform @@ -62925,11 +63013,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 22226 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 22227 components: - type: Transform @@ -62970,6 +63053,21 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 + - uid: 23134 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 12 + - uid: 23174 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 23175 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 12 - uid: 23713 components: - type: Transform @@ -62995,6 +63093,11 @@ entities: - type: Transform pos: -20.5,-29.5 parent: 12 + - uid: 24455 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 24661 components: - type: Transform @@ -63005,6 +63108,11 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 + - uid: 24688 + components: + - type: Transform + pos: 81.5,14.5 + parent: 12 - uid: 24714 components: - type: Transform @@ -63580,21 +63688,11 @@ entities: - type: Transform pos: 65.5,44.5 parent: 12 - - uid: 25093 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 25099 components: - type: Transform pos: 62.5,-23.5 parent: 12 - - uid: 25104 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - uid: 25107 components: - type: Transform @@ -63715,40 +63813,35 @@ entities: - type: Transform pos: 38.5,11.5 parent: 12 - - uid: 25479 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 25480 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 12 - - uid: 25481 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - uid: 25482 components: - type: Transform pos: 37.5,11.5 parent: 12 - - uid: 25483 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - uid: 25484 components: - type: Transform pos: 36.5,11.5 parent: 12 + - uid: 25537 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 25538 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 - uid: 25539 components: - type: Transform - pos: 12.5,-8.5 + pos: 58.5,-2.5 + parent: 12 + - uid: 25540 + components: + - type: Transform + pos: 58.5,-1.5 parent: 12 - uid: 25542 components: @@ -63770,6 +63863,11 @@ entities: - type: Transform pos: 33.5,12.5 parent: 12 + - uid: 25598 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 - uid: 25633 components: - type: Transform @@ -63920,45 +64018,35 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 12 - - uid: 26067 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 26072 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - uid: 26073 components: - type: Transform pos: -20.5,-27.5 parent: 12 - - uid: 26101 + - uid: 26132 components: - type: Transform - pos: 16.5,-13.5 + pos: 62.5,-5.5 parent: 12 - - uid: 26102 + - uid: 26133 components: - type: Transform - pos: 80.5,4.5 + pos: 60.5,-5.5 parent: 12 - - uid: 26103 + - uid: 26153 components: - type: Transform - pos: 80.5,6.5 + pos: 64.5,-5.5 parent: 12 - - uid: 26104 + - uid: 26155 components: - type: Transform - pos: 18.5,-13.5 + pos: 66.5,-5.5 parent: 12 - - uid: 26114 + - uid: 26162 components: - type: Transform - pos: 58.5,12.5 + pos: 79.5,2.5 parent: 12 - uid: 26208 components: @@ -63980,20 +64068,130 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 79.5,7.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 79.5,1.5 + parent: 12 - uid: 26389 components: - type: Transform - pos: 57.5,12.5 + pos: 79.5,3.5 parent: 12 - - uid: 26564 + - uid: 26422 components: - type: Transform - pos: 58.5,-7.5 + pos: 82.5,4.5 parent: 12 - - uid: 26584 + - uid: 26432 components: - type: Transform - pos: 78.5,1.5 + pos: 62.5,8.5 + parent: 12 + - uid: 26445 + components: + - type: Transform + pos: 82.5,13.5 + parent: 12 + - uid: 26451 + components: + - type: Transform + pos: 57.5,4.5 + parent: 12 + - uid: 26455 + components: + - type: Transform + pos: 82.5,3.5 + parent: 12 + - uid: 26462 + components: + - type: Transform + pos: 82.5,7.5 + parent: 12 + - uid: 26478 + components: + - type: Transform + pos: 17.5,7.5 + parent: 12 + - uid: 26488 + components: + - type: Transform + pos: 82.5,14.5 + parent: 12 + - uid: 26512 + components: + - type: Transform + pos: 58.5,0.5 + parent: 12 + - uid: 26513 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26514 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 26515 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 + - uid: 26516 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 + - uid: 26529 + components: + - type: Transform + pos: 79.5,6.5 + parent: 12 + - uid: 26530 + components: + - type: Transform + pos: 79.5,4.5 + parent: 12 + - uid: 26531 + components: + - type: Transform + pos: 79.5,5.5 + parent: 12 + - uid: 26532 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 12 + - uid: 26533 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 12 + - uid: 26534 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 12 + - uid: 26535 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 12 + - uid: 26545 + components: + - type: Transform + pos: 21.5,5.5 + parent: 12 + - uid: 26559 + components: + - type: Transform + pos: 79.5,-2.5 parent: 12 - uid: 26585 components: @@ -64005,40 +64203,215 @@ entities: - type: Transform pos: 57.5,14.5 parent: 12 - - uid: 26621 + - uid: 26597 components: - type: Transform - pos: 58.5,-2.5 + pos: 15.5,9.5 parent: 12 - - uid: 26622 + - uid: 26644 components: - type: Transform - pos: 59.5,-3.5 + pos: 17.5,6.5 parent: 12 - - uid: 26631 + - uid: 26645 components: - type: Transform - pos: 59.5,-2.5 + pos: 78.5,14.5 parent: 12 - - uid: 26636 + - uid: 26654 components: - type: Transform - pos: 57.5,-2.5 + pos: 73.5,11.5 parent: 12 - - uid: 26640 + - uid: 26669 components: - type: Transform - pos: 76.5,0.5 + pos: 71.5,11.5 parent: 12 - - uid: 26642 + - uid: 26675 components: - type: Transform - pos: 75.5,0.5 + pos: 72.5,11.5 parent: 12 - - uid: 26650 + - uid: 26677 components: - type: Transform - pos: 80.5,-5.5 + pos: 70.5,11.5 + parent: 12 + - uid: 26678 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 26681 + components: + - type: Transform + pos: 64.5,8.5 + parent: 12 + - uid: 26688 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 26703 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 + - uid: 26706 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 26707 + components: + - type: Transform + pos: 64.5,9.5 + parent: 12 + - uid: 26708 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26709 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26710 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26711 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 26715 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 26718 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 12 + - uid: 26720 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 26722 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 26723 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 26724 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 26730 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 26733 + components: + - type: Transform + pos: 63.5,3.5 + parent: 12 + - uid: 26734 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 26741 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 + - uid: 26748 + components: + - type: Transform + pos: 77.5,12.5 + parent: 12 + - uid: 26749 + components: + - type: Transform + pos: 75.5,12.5 + parent: 12 + - uid: 26750 + components: + - type: Transform + pos: 75.5,11.5 + parent: 12 + - uid: 26751 + components: + - type: Transform + pos: 74.5,11.5 + parent: 12 + - uid: 26752 + components: + - type: Transform + pos: 79.5,9.5 + parent: 12 + - uid: 26753 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 + - uid: 26755 + components: + - type: Transform + pos: 79.5,10.5 + parent: 12 + - uid: 26761 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 26762 + components: + - type: Transform + pos: 63.5,4.5 + parent: 12 + - uid: 26779 + components: + - type: Transform + pos: 22.5,5.5 + parent: 12 + - uid: 26783 + components: + - type: Transform + pos: 64.5,1.5 + parent: 12 + - uid: 26785 + components: + - type: Transform + pos: 64.5,0.5 + parent: 12 + - uid: 26806 + components: + - type: Transform + pos: 63.5,5.5 + parent: 12 + - uid: 26807 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 + - uid: 26808 + components: + - type: Transform + pos: 63.5,2.5 parent: 12 - uid: 26829 components: @@ -64050,21 +64423,6 @@ entities: - type: Transform pos: 52.5,2.5 parent: 12 - - uid: 26840 - components: - - type: Transform - pos: 56.5,6.5 - parent: 12 - - uid: 26841 - components: - - type: Transform - pos: 56.5,4.5 - parent: 12 - - uid: 26842 - components: - - type: Transform - pos: 56.5,5.5 - parent: 12 - uid: 26844 components: - type: Transform @@ -64090,161 +64448,11 @@ entities: - type: Transform pos: 53.5,2.5 parent: 12 - - uid: 26849 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26850 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26851 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26852 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26853 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26854 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26855 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26856 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26857 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26858 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26859 - components: - - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26860 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - - uid: 26861 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - - uid: 26862 - components: - - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26863 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26864 - components: - - type: Transform - pos: 74.5,3.5 - parent: 12 - - uid: 26865 - components: - - type: Transform - pos: 70.5,3.5 - parent: 12 - - uid: 26867 - components: - - type: Transform - pos: 70.5,8.5 - parent: 12 - - uid: 26868 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26869 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26870 - components: - - type: Transform - pos: 70.5,5.5 - parent: 12 - - uid: 26871 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26872 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26873 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26874 - components: - - type: Transform - pos: 74.5,5.5 - parent: 12 - - uid: 26875 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26876 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26877 - components: - - type: Transform - pos: 74.5,8.5 - parent: 12 - - uid: 26878 - components: - - type: Transform - pos: 72.5,4.5 - parent: 12 - uid: 26879 components: - type: Transform pos: 53.5,-7.5 parent: 12 - - uid: 26884 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 12 - uid: 26885 components: - type: Transform @@ -64260,76 +64468,6 @@ entities: - type: Transform pos: 55.5,2.5 parent: 12 - - uid: 26901 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 26902 - components: - - type: Transform - pos: 57.5,2.5 - parent: 12 - - uid: 26903 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - uid: 26905 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 12 - - uid: 26908 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 12 - - uid: 26914 - components: - - type: Transform - pos: 80.5,-3.5 - parent: 12 - - uid: 26915 - components: - - type: Transform - pos: 74.5,0.5 - parent: 12 - - uid: 26916 - components: - - type: Transform - pos: 74.5,1.5 - parent: 12 - - uid: 26917 - components: - - type: Transform - pos: 74.5,2.5 - parent: 12 - - uid: 26918 - components: - - type: Transform - pos: 79.5,-5.5 - parent: 12 - - uid: 26922 - components: - - type: Transform - pos: 74.5,-1.5 - parent: 12 - - uid: 26943 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 26953 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 12 - - uid: 26962 - components: - - type: Transform - pos: 78.5,-3.5 - parent: 12 - uid: 27019 components: - type: Transform @@ -64360,31 +64498,6 @@ entities: - type: Transform pos: 68.5,14.5 parent: 12 - - uid: 27079 - components: - - type: Transform - pos: 77.5,13.5 - parent: 12 - - uid: 27080 - components: - - type: Transform - pos: 78.5,13.5 - parent: 12 - - uid: 27081 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - - uid: 27087 - components: - - type: Transform - pos: 80.5,11.5 - parent: 12 - - uid: 27088 - components: - - type: Transform - pos: 79.5,13.5 - parent: 12 - uid: 27113 components: - type: Transform @@ -64455,75 +64568,15 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 12 - - uid: 27191 + - uid: 27216 components: - type: Transform - pos: 59.5,4.5 + pos: 60.5,11.5 parent: 12 - - uid: 27192 + - uid: 27237 components: - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 27193 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 27194 - components: - - type: Transform - pos: 61.5,5.5 - parent: 12 - - uid: 27195 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 27196 - components: - - type: Transform - pos: 63.5,5.5 - parent: 12 - - uid: 27197 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 27198 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 27199 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 27200 - components: - - type: Transform - pos: 67.5,5.5 - parent: 12 - - uid: 27201 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 27208 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 27236 - components: - - type: Transform - pos: 78.5,-5.5 - parent: 12 - - uid: 27238 - components: - - type: Transform - pos: 59.5,-5.5 + pos: 57.5,-6.5 parent: 12 - uid: 27253 components: @@ -64940,6 +64993,51 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 + - uid: 28220 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 + - uid: 28222 + components: + - type: Transform + pos: 54.5,7.5 + parent: 12 + - uid: 28223 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 + - uid: 28224 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 + - uid: 28225 + components: + - type: Transform + pos: 57.5,11.5 + parent: 12 + - uid: 28226 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 28227 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 28228 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 28229 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 - uid: 28424 components: - type: Transform @@ -65005,131 +65103,11 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 28828 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28833 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28834 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28835 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28836 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28837 - components: - - type: Transform - pos: 63.5,-6.5 - parent: 12 - - uid: 28838 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28839 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28840 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28841 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28842 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28843 - components: - - type: Transform - pos: 69.5,-6.5 - parent: 12 - - uid: 28844 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 28845 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28846 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28847 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 28848 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28850 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - - uid: 28851 - components: - - type: Transform - pos: 74.5,-4.5 - parent: 12 - - uid: 28853 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - - uid: 28854 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 28855 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 28857 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - uid: 28886 components: - type: Transform pos: 50.5,0.5 parent: 12 - - uid: 28887 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 28888 components: - type: Transform @@ -65290,26 +65268,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 29086 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 12 - - uid: 29087 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 12 - uid: 29088 components: - type: Transform pos: 30.5,-1.5 parent: 12 - - uid: 29089 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 12 - uid: 29096 components: - type: Transform @@ -65320,35 +65283,30 @@ entities: - type: Transform pos: 32.5,-1.5 parent: 12 - - uid: 29098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - - uid: 29102 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - uid: 29103 + - uid: 29114 components: - type: Transform pos: 33.5,-0.5 parent: 12 - - uid: 29107 + - uid: 29155 components: - type: Transform - pos: 33.5,0.5 + pos: 34.5,-0.5 parent: 12 - - uid: 29108 + - uid: 29156 components: - type: Transform - pos: 33.5,1.5 + pos: 35.5,-0.5 parent: 12 - - uid: 29114 + - uid: 29157 components: - type: Transform - pos: 33.5,2.5 + pos: 36.5,-0.5 + parent: 12 + - uid: 29158 + components: + - type: Transform + pos: 37.5,-0.5 parent: 12 - uid: 29206 components: @@ -66175,11 +66133,6 @@ entities: - type: Transform pos: 47.5,0.5 parent: 12 - - uid: 29992 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 30246 components: - type: Transform @@ -66470,6 +66423,16 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 12 + - uid: 31904 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31905 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 12 - proto: CableMVStack entities: - uid: 5999 @@ -66487,6 +66450,12 @@ entities: - type: Transform pos: 44.46338,52.56763 parent: 12 + - uid: 28716 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.49973,-6.4827724 + parent: 12 - proto: CableMVStack1 entities: - uid: 30733 @@ -66552,12 +66521,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,4.5 parent: 12 - - uid: 29722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 12 - uid: 30247 components: - type: Transform @@ -66570,6 +66533,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 + - uid: 31897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,11.5 + parent: 12 - proto: Candle entities: - uid: 13090 @@ -66732,10 +66701,15 @@ entities: - type: Transform pos: -51.5,-32.5 parent: 12 - - uid: 22148 + - uid: 5635 components: - type: Transform - pos: 55.5,-4.5 + pos: 24.5,-4.5 + parent: 12 + - uid: 26628 + components: + - type: Transform + pos: 27.5,9.5 parent: 12 - proto: Carpet entities: @@ -69356,11 +69330,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 12 - - uid: 105 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - uid: 107 components: - type: Transform @@ -69372,11 +69341,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 12 - - uid: 153 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - uid: 225 components: - type: Transform @@ -69389,47 +69353,17 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 12 - - uid: 249 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 250 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 252 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 254 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 12 - - uid: 501 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - uid: 506 components: - type: Transform pos: -29.5,-53.5 parent: 12 - - uid: 553 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - uid: 555 components: - type: Transform @@ -69440,11 +69374,6 @@ entities: - type: Transform pos: 54.5,10.5 parent: 12 - - uid: 565 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - uid: 566 components: - type: Transform @@ -69466,11 +69395,23 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 12 + - uid: 1555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 - uid: 2322 components: - type: Transform pos: 40.5,11.5 parent: 12 + - uid: 2357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 12 - uid: 2487 components: - type: Transform @@ -69491,18 +69432,6 @@ entities: - type: Transform pos: -38.5,-53.5 parent: 12 - - uid: 2682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 - parent: 12 - - uid: 2684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 12 - uid: 2899 components: - type: Transform @@ -69538,6 +69467,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 12 + - uid: 2988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 - uid: 3086 components: - type: Transform @@ -69747,28 +69682,35 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 12 - - uid: 4410 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 4561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 12 - - uid: 4586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 12 - uid: 4593 components: - type: Transform pos: -38.5,-51.5 parent: 12 + - uid: 4611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 12 + - uid: 4644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 12 + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 4656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 - uid: 4699 components: - type: Transform @@ -69791,6 +69733,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 12 + - uid: 4793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 - uid: 4869 components: - type: Transform @@ -69821,6 +69769,18 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,10.5 parent: 12 + - uid: 5023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 12 + - uid: 5097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 12 - uid: 5105 components: - type: Transform @@ -69833,30 +69793,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-21.5 parent: 12 - - uid: 5386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 12 - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 12 - - uid: 5425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 12 - - uid: 5514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 12 - uid: 5556 components: - type: Transform @@ -69881,6 +69823,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,12.5 parent: 12 + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 5805 components: - type: Transform @@ -69893,6 +69841,24 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 12 + - uid: 5844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 5852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 - uid: 5857 components: - type: Transform @@ -69905,6 +69871,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 12 + - uid: 6032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 - uid: 6096 components: - type: Transform @@ -70414,11 +70386,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 - - uid: 7285 + - uid: 7215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 12 + - uid: 7254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - uid: 7621 components: @@ -70857,10 +70841,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 - - uid: 9084 + - uid: 9416 components: - type: Transform - pos: 39.5,-1.5 + rot: -1.5707963267948966 rad + pos: 20.5,10.5 parent: 12 - uid: 9528 components: @@ -70931,10 +70916,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,69.5 parent: 12 - - uid: 10833 + - uid: 10818 components: - type: Transform - pos: 20.5,9.5 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 12 - uid: 10835 components: @@ -70954,75 +70940,11 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 12 - - uid: 10877 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 10905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 10906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 10907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 10908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 12 - - uid: 10909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 - parent: 12 - - uid: 10910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,6.5 - parent: 12 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 12 - uid: 10921 components: - type: Transform pos: 21.5,12.5 parent: 12 - - uid: 10927 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - uid: 10929 components: - type: Transform @@ -71062,18 +70984,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 - - uid: 10951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 10952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10977 components: - type: Transform @@ -71084,11 +70994,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 11053 - components: - - type: Transform - pos: 23.5,10.5 - parent: 12 - uid: 11056 components: - type: Transform @@ -71129,6 +71034,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 12 + - uid: 11214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 12 - uid: 11227 components: - type: Transform @@ -71228,6 +71139,12 @@ entities: - type: Transform pos: -4.5,9.5 parent: 12 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 12 - uid: 11385 components: - type: Transform @@ -71238,15 +71155,11 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 - - uid: 11387 + - uid: 11392 components: - type: Transform - pos: 29.5,8.5 - parent: 12 - - uid: 11388 - components: - - type: Transform - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 12 - uid: 11398 components: @@ -71268,6 +71181,16 @@ entities: - type: Transform pos: 24.5,17.5 parent: 12 + - uid: 11455 + components: + - type: Transform + pos: 47.5,11.5 + parent: 12 + - uid: 11464 + components: + - type: Transform + pos: 47.5,9.5 + parent: 12 - uid: 11937 components: - type: Transform @@ -71692,21 +71615,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 12 - - uid: 16445 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 16493 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 16533 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - uid: 16639 components: - type: Transform @@ -71718,6 +71626,18 @@ entities: - type: Transform pos: -6.5,22.5 parent: 12 + - uid: 17552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 12 + - uid: 17607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,11.5 + parent: 12 - uid: 17641 components: - type: Transform @@ -71730,12 +71650,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 12 - - uid: 17843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 12 - uid: 17845 components: - type: Transform @@ -71977,18 +71891,6 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 - - uid: 19243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - uid: 19277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 - uid: 19864 components: - type: Transform @@ -72321,6 +72223,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 12 + - uid: 22110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 12 - uid: 22170 components: - type: Transform @@ -73102,6 +73010,12 @@ entities: - type: Transform pos: -44.5,45.5 parent: 12 + - uid: 25194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 12 - uid: 25415 components: - type: Transform @@ -73265,11 +73179,29 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 - - uid: 26550 + - uid: 26447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,1.5 + pos: 34.5,0.5 + parent: 12 + - uid: 26778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 12 + - uid: 27240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 12 + - uid: 27241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 12 - uid: 27319 components: @@ -73748,60 +73680,47 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,18.5 parent: 12 - - uid: 28147 + - uid: 28230 components: - type: Transform - pos: 58.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,8.5 parent: 12 - - uid: 28148 + - uid: 28231 components: - type: Transform - pos: 59.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,8.5 parent: 12 - - uid: 28149 + - uid: 28232 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 52.5,8.5 parent: 12 - - uid: 28150 + - uid: 28233 components: - type: Transform - pos: 62.5,4.5 + rot: 1.5707963267948966 rad + pos: 51.5,8.5 parent: 12 - - uid: 28151 + - uid: 28238 components: - type: Transform - pos: 63.5,4.5 + rot: 1.5707963267948966 rad + pos: 50.5,8.5 parent: 12 - - uid: 28152 + - uid: 28377 components: - type: Transform - pos: 64.5,4.5 + rot: 1.5707963267948966 rad + pos: 49.5,8.5 parent: 12 - - uid: 28153 + - uid: 28378 components: - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 28154 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 28155 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 28156 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 28164 - components: - - type: Transform - pos: 60.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,8.5 parent: 12 - uid: 28392 components: @@ -73863,12 +73782,24 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 12 + - uid: 28425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 - uid: 28457 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 12 + - uid: 28493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 12 - uid: 28526 components: - type: Transform @@ -74070,125 +74001,22 @@ entities: - type: Transform pos: -4.5,-21.5 parent: 12 - - uid: 28744 + - uid: 28922 components: - type: Transform - pos: 60.5,12.5 + pos: 47.5,10.5 parent: 12 - - uid: 28745 + - uid: 28926 components: - type: Transform - pos: 61.5,12.5 + rot: 3.141592653589793 rad + pos: 65.5,-1.5 parent: 12 - - uid: 28746 + - uid: 28927 components: - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28747 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28748 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28749 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28750 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28751 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28752 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28753 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28754 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28755 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28756 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28757 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28758 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28759 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28760 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28761 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28762 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28763 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28764 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28765 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 28766 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - - uid: 28767 - components: - - type: Transform - pos: 78.5,7.5 + rot: 3.141592653589793 rad + pos: 65.5,-0.5 parent: 12 - uid: 28932 components: @@ -74244,11 +74072,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 28942 + - uid: 28944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 12 + - uid: 29000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 34.5,4.5 + parent: 12 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - uid: 29054 components: @@ -74358,6 +74198,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,23.5 parent: 12 + - uid: 29086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 12 - uid: 29090 components: - type: Transform @@ -74368,18 +74214,48 @@ entities: - type: Transform pos: 9.5,23.5 parent: 12 + - uid: 29094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 12 + - uid: 29102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 12 + - uid: 29107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 12 + - uid: 29148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 12 - uid: 29180 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 12 - - uid: 29302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 12 - uid: 29418 components: - type: Transform @@ -74714,16 +74590,6 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 - - uid: 30454 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - pos: 45.5,0.5 - parent: 12 - uid: 30473 components: - type: Transform @@ -75070,6 +74936,318 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 + - uid: 31518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,0.5 + parent: 12 + - uid: 31519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,1.5 + parent: 12 + - uid: 31742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,2.5 + parent: 12 + - uid: 31743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,3.5 + parent: 12 + - uid: 31744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,4.5 + parent: 12 + - uid: 31745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,5.5 + parent: 12 + - uid: 31747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,6.5 + parent: 12 + - uid: 31756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,7.5 + parent: 12 + - uid: 31757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 12 + - uid: 31764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,9.5 + parent: 12 + - uid: 31838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,10.5 + parent: 12 + - uid: 31839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,11.5 + parent: 12 + - uid: 31840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,11.5 + parent: 12 + - uid: 31841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 12 + - uid: 31842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,11.5 + parent: 12 + - uid: 31843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 12 + - uid: 31844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,11.5 + parent: 12 + - uid: 31845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,11.5 + parent: 12 + - uid: 31846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,11.5 + parent: 12 + - uid: 31847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,11.5 + parent: 12 + - uid: 31848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,11.5 + parent: 12 + - uid: 31849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,11.5 + parent: 12 + - uid: 31850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,11.5 + parent: 12 + - uid: 31851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,11.5 + parent: 12 + - uid: 31852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,11.5 + parent: 12 + - uid: 31853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,10.5 + parent: 12 + - uid: 31854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,8.5 + parent: 12 + - uid: 31855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,7.5 + parent: 12 + - uid: 31856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,6.5 + parent: 12 + - uid: 31857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,5.5 + parent: 12 + - uid: 31858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,9.5 + parent: 12 + - uid: 31859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,4.5 + parent: 12 + - uid: 31860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,3.5 + parent: 12 + - uid: 31861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,2.5 + parent: 12 + - uid: 31862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,0.5 + parent: 12 + - uid: 31863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-0.5 + parent: 12 + - uid: 31864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-1.5 + parent: 12 + - uid: 31865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-2.5 + parent: 12 + - uid: 31866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,1.5 + parent: 12 + - uid: 31867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-2.5 + parent: 12 + - uid: 31868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-2.5 + parent: 12 + - uid: 31869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-2.5 + parent: 12 + - uid: 31870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-2.5 + parent: 12 + - uid: 31871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-2.5 + parent: 12 + - uid: 31872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-2.5 + parent: 12 + - uid: 31873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 12 + - uid: 31874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-2.5 + parent: 12 + - uid: 31875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-2.5 + parent: 12 + - uid: 31876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 12 + - uid: 31877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-2.5 + parent: 12 + - uid: 31878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 12 + - uid: 31879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 12 - proto: Cautery entities: - uid: 9752 @@ -75101,12 +75279,6 @@ entities: canCollide: False - proto: Chair entities: - - uid: 408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 12 - uid: 907 components: - type: Transform @@ -75365,12 +75537,6 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 10938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 12 - uid: 11124 components: - type: Transform @@ -75389,24 +75555,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,42.5 parent: 12 - - uid: 11942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 12 - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,10.5 parent: 12 - - uid: 12056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 12 - uid: 12281 components: - type: Transform @@ -75509,12 +75663,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 12 - - uid: 16357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 12 - uid: 16767 components: - type: Transform @@ -75600,12 +75748,6 @@ entities: - type: Transform pos: -42.5,62.5 parent: 12 - - uid: 19436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 - parent: 12 - uid: 20875 components: - type: Transform @@ -75990,21 +76132,6 @@ entities: - type: Transform pos: 3.5,65.5 parent: 12 - - uid: 25192 - components: - - type: Transform - pos: 12.5,0.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 25194 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - uid: 25365 components: - type: Transform @@ -76422,12 +76549,58 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 + - uid: 26592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 12 + - uid: 27042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,10.5 + parent: 12 - uid: 28251 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 12 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,6.5 + parent: 12 + - uid: 28673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,5.5 + parent: 12 + - uid: 28675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 12 + - uid: 28676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 12 + - uid: 28757 + components: + - type: Transform + pos: 55.5,0.5 + parent: 12 + - uid: 28758 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 - uid: 29349 components: - type: Transform @@ -76455,6 +76628,24 @@ entities: - type: Transform pos: -38.5,60.5 parent: 12 + - uid: 29972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 12 + - uid: 29973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 + - uid: 29974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 12 - uid: 30342 components: - type: Transform @@ -76579,12 +76770,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 12 - - uid: 30483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 12 - uid: 30484 components: - type: Transform @@ -76764,6 +76949,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,78.5 parent: 12 + - uid: 21313 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 12 - uid: 22348 components: - type: Transform @@ -76794,6 +76984,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26552 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 27066 components: - type: Transform @@ -76895,6 +77090,11 @@ entities: rot: 1.5707963267948966 rad pos: -19.470709,-20.484278 parent: 12 + - uid: 29971 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 - uid: 31486 components: - type: Transform @@ -77334,21 +77534,11 @@ entities: parent: 12 - proto: ClosetEmergencyFilledRandom entities: - - uid: 149 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - uid: 1276 components: - type: Transform pos: 35.5,-43.5 parent: 12 - - uid: 3078 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 - uid: 4140 components: - type: Transform @@ -77524,30 +77714,40 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 + - uid: 26682 + components: + - type: Transform + pos: 14.5,7.5 + parent: 12 + - uid: 26693 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 27016 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 12 - uid: 27228 components: - type: Transform pos: -29.5,60.5 parent: 12 - - uid: 27311 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 12 - uid: 27862 components: - type: Transform pos: 27.5,16.5 parent: 12 - - uid: 28533 + - uid: 28751 components: - type: Transform - pos: 15.5,7.5 + pos: 62.5,-2.5 parent: 12 - - uid: 28534 + - uid: 28840 components: - type: Transform - pos: 13.5,-4.5 + pos: 29.5,9.5 parent: 12 - uid: 29230 components: @@ -77587,13 +77787,13 @@ entities: - type: Transform pos: -61.5,-18.5 parent: 12 - - uid: 31764 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 5121 + components: + - type: Transform + pos: 61.5,9.5 + parent: 12 - uid: 6198 components: - type: Transform @@ -77661,11 +77861,6 @@ entities: parent: 12 - proto: ClosetFireFilled entities: - - uid: 253 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - uid: 913 components: - type: Transform @@ -77816,16 +78011,6 @@ entities: - type: Transform pos: -45.5,30.5 parent: 12 - - uid: 27190 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - - uid: 27304 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 27833 components: - type: Transform @@ -77953,43 +78138,6 @@ entities: parent: 12 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 102 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - - 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: - - 6287 - - 6261 - - 6260 - - 6259 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 894 components: - type: Transform @@ -78059,11 +78207,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 8293 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 12 - uid: 8982 components: - type: Transform @@ -78074,6 +78217,11 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 12 + - uid: 11472 + components: + - type: Transform + pos: 55.5,12.5 + parent: 12 - uid: 12021 components: - type: Transform @@ -78104,6 +78252,11 @@ entities: - type: Transform pos: -7.5,15.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 - uid: 18105 components: - type: Transform @@ -78164,11 +78317,6 @@ entities: - type: Transform pos: 0.5,54.5 parent: 12 - - uid: 24655 - components: - - type: Transform - pos: 30.5,10.5 - parent: 12 - uid: 24994 components: - type: Transform @@ -78240,10 +78388,10 @@ entities: - type: Transform pos: -7.5,3.5 parent: 12 - - uid: 28946 + - uid: 28839 components: - type: Transform - pos: 5.5,-16.5 + pos: 29.5,8.5 parent: 12 - uid: 29165 components: @@ -78277,20 +78425,15 @@ entities: parent: 12 - proto: ClosetRadiationSuitFilled entities: - - uid: 1354 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 2315 components: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 4874 + - uid: 6259 components: - type: Transform - pos: 10.5,-11.5 + pos: 57.5,2.5 parent: 12 - uid: 6771 components: @@ -78302,11 +78445,6 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 12 - - uid: 10981 - components: - - type: Transform - pos: 19.5,7.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -78322,6 +78460,26 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 12 + - uid: 27218 + components: + - type: Transform + pos: 59.5,8.5 + parent: 12 + - uid: 28692 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28693 + components: + - type: Transform + pos: 52.5,1.5 + parent: 12 + - uid: 28694 + components: + - type: Transform + pos: 52.5,2.5 + parent: 12 - proto: ClosetSteelBase entities: - uid: 16506 @@ -78368,23 +78526,11 @@ entities: parent: 12 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 6741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 12 - uid: 8883 components: - type: Transform pos: 39.5,-20.5 parent: 12 - - uid: 9641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 21377 components: - type: Transform @@ -78401,13 +78547,14 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,40.5 parent: 12 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 9461 + - uid: 28494 components: - type: Transform - pos: 14.5,6.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 12 +- proto: ClosetWallFireFilledRandom + entities: - uid: 21378 components: - type: Transform @@ -78429,6 +78576,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,39.5 parent: 12 + - uid: 28744 + components: + - type: Transform + pos: 20.5,8.5 + parent: 12 - proto: ClothingBackpackSatchelGenetics entities: - uid: 2696 @@ -78487,6 +78639,14 @@ entities: - type: Transform pos: 11.527891,-16.45502 parent: 12 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 28711 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.532898,-6.47126 + parent: 12 - proto: ClothingEyesBlindfold entities: - uid: 17606 @@ -78655,7 +78815,7 @@ entities: - uid: 23561 components: - type: Transform - pos: 39.49916,53.57387 + pos: 42.446712,53.64907 parent: 12 - uid: 28501 components: @@ -78887,14 +79047,6 @@ entities: - type: Transform pos: -21.667349,-7.343448 parent: 12 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 2021 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingHeadHelmetRiot entities: - uid: 20866 @@ -78959,14 +79111,6 @@ entities: - type: Transform pos: 0.50635767,25.52865 parent: 12 -- proto: ClothingMaskBreath - entities: - - uid: 6220 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingMaskBreathMedical entities: - uid: 2924 @@ -79006,8 +79150,8 @@ entities: - uid: 27188 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.727516,2.346661 + rot: -25.132741228718352 rad + pos: 17.825888,-13.641907 parent: 12 - uid: 29095 components: @@ -79271,14 +79415,6 @@ entities: - type: Transform pos: -11.945792,60.527626 parent: 12 -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 2020 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingOuterHoodieBlack entities: - uid: 25982 @@ -79357,6 +79493,18 @@ entities: - type: Transform pos: -7.747349,-54.783165 parent: 12 +- proto: ClothingOuterVestHazard + entities: + - uid: 28761 + components: + - type: Transform + pos: 53.333237,-3.3827062 + parent: 12 + - uid: 28762 + components: + - type: Transform + pos: 53.708237,-3.6222892 + parent: 12 - proto: ClothingOuterWinterChef entities: - uid: 24081 @@ -79466,12 +79614,19 @@ entities: - type: Transform pos: -2.539668,30.440784 parent: 12 +- proto: ClothingUnderSocksCoder + entities: + - uid: 4527 + components: + - type: Transform + pos: -0.50228786,-20.693401 + parent: 12 - proto: ClothingUniformColorRainbow entities: - uid: 29984 components: - type: Transform - pos: 47.602154,-2.6595716 + pos: 47.687027,-3.4254918 parent: 12 - proto: ClothingUniformJumpskirtBlueElegantDress entities: @@ -79576,18 +79731,18 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-38.5 parent: 12 + - uid: 9862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 12 - uid: 12321 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,6.5 parent: 12 - - uid: 12322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 12 - uid: 12327 components: - type: Transform @@ -79988,6 +80143,19 @@ entities: - type: Transform pos: -51.5,30.5 parent: 12 +- proto: CommandmentCircuitBoard + entities: + - uid: 28530 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.5673757,-15.712456 + parent: 12 + - uid: 28856 + components: + - type: Transform + pos: -0.5296287,-15.396446 + parent: 12 - proto: CommsComputerCircuitboard entities: - uid: 31351 @@ -79997,12 +80165,6 @@ entities: parent: 12 - proto: ComputerAlert entities: - - uid: 3470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 - parent: 12 - uid: 3911 components: - type: Transform @@ -80020,6 +80182,12 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 12 + - uid: 29966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 12 - proto: ComputerAnalysisConsole entities: - uid: 4892 @@ -80145,12 +80313,6 @@ entities: - type: Transform pos: -12.5,-37.5 parent: 12 - - uid: 8740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 12 - uid: 17580 components: - type: Transform @@ -80296,17 +80458,17 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,27.5 parent: 12 + - uid: 4387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-6.5 + parent: 12 - uid: 4732 components: - type: Transform pos: 18.5,-15.5 parent: 12 - - uid: 4911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 12 - uid: 5474 components: - type: Transform @@ -80449,6 +80611,12 @@ entities: - type: Transform pos: 34.5,67.5 parent: 12 + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 12 - uid: 18157 components: - type: Transform @@ -80500,12 +80668,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,36.5 parent: 12 - - uid: 8885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 12 - uid: 11470 components: - type: Transform @@ -80631,29 +80793,43 @@ entities: parent: 12 - proto: ContainmentFieldGenerator entities: - - uid: 4741 + - uid: 4631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + pos: 68.5,8.5 parent: 12 - - uid: 4960 + - uid: 4633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: 76.5,8.5 parent: 12 - - uid: 4961 + - uid: 4716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + pos: 76.5,0.5 parent: 12 - - uid: 4962 + - uid: 11469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 68.5,0.5 + parent: 12 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 9978 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.353416,-0.30162263 + parent: 12 + - uid: 10284 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.62883,-0.55167043 parent: 12 - proto: ConveyorBelt entities: @@ -81194,6 +81370,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: CorporateCircuitBoard + entities: + - uid: 28851 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.5230923,-11.528757 + parent: 12 - proto: CrateAirlockKit entities: - uid: 1042 @@ -81416,29 +81600,17 @@ entities: ent: null - proto: CrateEngineeringAMEJar entities: - - uid: 3205 + - uid: 29395 components: - type: Transform - pos: 35.5,-2.5 + pos: 33.5,4.5 parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 28391 + - uid: 29355 components: - type: Transform - pos: 34.5,-2.5 - parent: 12 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5028 - components: - - type: Transform - pos: 27.5,2.5 - parent: 12 - - uid: 25201 - components: - - type: Transform - pos: 26.5,-15.5 + pos: 33.5,0.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -81735,10 +81907,10 @@ entities: parent: 12 - proto: CrateRadiation entities: - - uid: 9338 + - uid: 11553 components: - type: Transform - pos: 26.5,2.5 + pos: 57.5,12.5 parent: 12 - proto: CrateSecure entities: @@ -81907,7 +82079,7 @@ entities: - uid: 29985 components: - type: Transform - pos: 47.341232,-2.7166476 + pos: 47.436977,-3.6918468 parent: 12 - proto: Crematorium entities: @@ -81918,10 +82090,10 @@ entities: parent: 12 - proto: CrewMonitoringServer entities: - - uid: 7281 + - uid: 26979 components: - type: Transform - pos: -0.5,-11.5 + pos: -41.5,-20.5 parent: 12 - type: SingletonDeviceNetServer active: False @@ -82230,10 +82402,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 5110 + - uid: 5966 components: - type: Transform - pos: 35.5,-0.5 + pos: 36.5,2.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -82265,10 +82437,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 26883 + - uid: 7235 components: - type: Transform - pos: 64.5,-1.5 + pos: 15.5,-4.5 parent: 12 - proto: DefaultStationBeaconBar entities: @@ -82606,10 +82778,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 21607 + - uid: 26754 components: - type: Transform - pos: 20.5,5.5 + pos: 59.5,4.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82833,12 +83005,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 - - uid: 2252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 12 - uid: 3620 components: - type: Transform @@ -82956,6 +83122,11 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 12 + - uid: 4661 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 - uid: 4674 components: - type: Transform @@ -82990,6 +83161,17 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 12 + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 12 + - uid: 5892 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 - uid: 6161 components: - type: Transform @@ -83048,11 +83230,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 12 - - uid: 8420 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 12 - uid: 8421 components: - type: Transform @@ -83086,61 +83263,22 @@ entities: - type: Transform pos: 49.5,-17.5 parent: 12 - - uid: 8979 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 9000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - uid: 9001 components: - type: Transform pos: 30.5,17.5 parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 12 - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 12 - - uid: 9069 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - uid: 9071 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 12 - - uid: 9300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 12 - - uid: 9426 + - uid: 9084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 12 - - uid: 9427 - components: - - type: Transform - pos: 20.5,-12.5 + pos: 40.5,-0.5 parent: 12 - uid: 9798 components: @@ -83170,11 +83308,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-16.5 parent: 12 - - uid: 9840 + - uid: 10201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 12 - uid: 10320 components: @@ -83205,35 +83343,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 12 - - uid: 10867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 - parent: 12 - - uid: 10916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 12 - uid: 10924 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 12 - - uid: 11031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 12 - - uid: 11035 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - uid: 11036 components: - type: Transform @@ -83246,17 +83361,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 12 - - uid: 11050 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - - uid: 11051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - uid: 11052 components: - type: Transform @@ -83268,17 +83372,16 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,11.5 parent: 12 - - uid: 11383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 12 - uid: 11384 components: - type: Transform pos: 31.5,8.5 parent: 12 + - uid: 11446 + components: + - type: Transform + pos: 20.5,10.5 + parent: 12 - uid: 11965 components: - type: Transform @@ -83526,6 +83629,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 + - uid: 18671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 12 - uid: 19249 components: - type: Transform @@ -83544,6 +83653,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-11.5 parent: 12 + - uid: 19545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 12 - uid: 20076 components: - type: Transform @@ -83681,6 +83796,24 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-0.5 parent: 12 + - uid: 21324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,51.5 + parent: 12 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 12 + - uid: 22125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,8.5 + parent: 12 - uid: 22441 components: - type: Transform @@ -83826,18 +83959,80 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 12 + - uid: 25464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 12 + - uid: 25470 + components: + - type: Transform + pos: 31.5,0.5 + parent: 12 - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-47.5 parent: 12 + - uid: 26511 + components: + - type: Transform + pos: 23.5,11.5 + parent: 12 + - uid: 26729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 12 + - uid: 26791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 26802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 12 + - uid: 26811 + components: + - type: Transform + pos: 30.5,10.5 + parent: 12 + - uid: 26815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 12 + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 12 - uid: 27317 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 + - uid: 27387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 12 + - uid: 27604 + components: + - type: Transform + pos: 54.5,8.5 + parent: 12 - uid: 27984 components: - type: Transform @@ -83904,12 +84099,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 12 - - uid: 28055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - uid: 28056 components: - type: Transform @@ -83980,6 +84169,23 @@ entities: - type: Transform pos: 60.5,45.5 parent: 12 + - uid: 28148 + components: + - type: Transform + pos: 38.5,12.5 + parent: 12 + - uid: 28149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 12 + - uid: 28150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,12.5 + parent: 12 - uid: 28214 components: - type: Transform @@ -83992,6 +84198,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-26.5 parent: 12 + - uid: 28998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 12 - uid: 29031 components: - type: Transform @@ -84146,16 +84358,16 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-27.5 parent: 12 - - uid: 5377 + - uid: 5054 components: - type: Transform pos: 23.5,-17.5 parent: 12 - - uid: 8344 + - uid: 5810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 + rot: 1.5707963267948966 rad + pos: 33.5,23.5 parent: 12 - uid: 8392 components: @@ -84169,23 +84381,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-35.5 parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - uid: 10925 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,12.5 parent: 12 - - uid: 10986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 12 - uid: 10994 components: - type: Transform @@ -84497,11 +84698,11 @@ entities: parent: 12 - proto: DisposalPipe entities: - - uid: 23 + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,8.5 + pos: 17.5,-12.5 parent: 12 - uid: 637 components: @@ -84884,11 +85085,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 12 - - uid: 2130 + - uid: 2166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 parent: 12 - uid: 2185 components: @@ -84902,6 +85103,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,45.5 parent: 12 + - uid: 2876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 12 - uid: 3115 components: - type: Transform @@ -85314,12 +85521,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-25.5 parent: 12 - - uid: 3980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - uid: 3989 components: - type: Transform @@ -85511,6 +85712,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-40.5 parent: 12 + - uid: 5072 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 - uid: 5240 components: - type: Transform @@ -85523,23 +85729,107 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 12 + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 12 - uid: 5412 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 12 + - uid: 5514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 12 - uid: 5551 components: - type: Transform pos: 7.5,-48.5 parent: 12 + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 12 + - uid: 5921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 12 + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 12 + - uid: 5923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 12 + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-17.5 + parent: 12 + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 12 + - uid: 5965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 12 + - uid: 5991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-24.5 + parent: 12 + - uid: 5995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-22.5 + parent: 12 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 12 - uid: 6206 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-51.5 parent: 12 + - uid: 6719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 12 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 12 - uid: 6843 components: - type: Transform @@ -85666,11 +85956,17 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 12 - - uid: 7086 + - uid: 7219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 parent: 12 - uid: 7305 components: @@ -86199,90 +86495,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 12 - uid: 9041 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-4.5 parent: 12 - - uid: 9047 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 9048 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 9049 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 9050 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 9051 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 9052 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 12 - - uid: 9055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-25.5 - parent: 12 - - uid: 9056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 12 - - uid: 9057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 12 - - uid: 9058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 12 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 12 - - uid: 9060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 12 - - uid: 9061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 12 - uid: 9062 components: - type: Transform @@ -86469,133 +86687,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 12 - - uid: 9399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 12 - - uid: 9400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 9401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - uid: 9402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - uid: 9404 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 9405 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 9406 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 9408 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 9409 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 9410 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 9412 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 9413 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 9414 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 9415 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 9416 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 9417 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 9418 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 9419 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 9420 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 9421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 12 - - uid: 9422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -86672,24 +86763,6 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 12 - - uid: 9785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - uid: 9786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - uid: 9787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - uid: 9789 components: - type: Transform @@ -86917,12 +86990,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 - - uid: 10701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 12 - uid: 10871 components: - type: Transform @@ -86935,12 +87002,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 12 - - uid: 10873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 12 - uid: 10874 components: - type: Transform @@ -86958,12 +87019,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 10923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - uid: 10926 components: - type: Transform @@ -87114,12 +87169,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,10.5 parent: 12 - - uid: 10996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10998 components: - type: Transform @@ -87144,81 +87193,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,5.5 parent: 12 - - uid: 11005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 11006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 11007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 11008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 11010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - - uid: 11012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 12 - - uid: 11019 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 11020 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 11021 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - uid: 11042 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-16.5 parent: 12 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - uid: 11123 components: - type: Transform @@ -87547,12 +87527,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,23.5 parent: 12 - - uid: 13009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 - parent: 12 - uid: 13188 components: - type: Transform @@ -88758,6 +88732,24 @@ entities: rot: 3.141592653589793 rad pos: -47.5,29.5 parent: 12 + - uid: 17844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 12 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 12 + - uid: 18306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-19.5 + parent: 12 - uid: 18563 components: - type: Transform @@ -88782,6 +88774,18 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-40.5 parent: 12 + - uid: 18756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 12 + - uid: 18758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 12 - uid: 18894 components: - type: Transform @@ -88794,12 +88798,54 @@ entities: rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 12 + - uid: 19177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - uid: 19189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-18.5 + parent: 12 + - uid: 19195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 12 - uid: 19238 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-42.5 parent: 12 + - uid: 19243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 12 + - uid: 19245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-21.5 + parent: 12 + - uid: 19277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-23.5 + parent: 12 + - uid: 19539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 12 - uid: 19843 components: - type: Transform @@ -89601,6 +89647,29 @@ entities: - type: Transform pos: -25.5,27.5 parent: 12 + - uid: 22107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 + - uid: 22108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 12 + - uid: 22121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - uid: 22122 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 22275 components: - type: Transform @@ -90716,6 +90785,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 12 + - uid: 25331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 12 - uid: 25371 components: - type: Transform @@ -90728,18 +90803,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-41.5 parent: 12 - - uid: 25567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 12 - - uid: 25682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - uid: 25992 components: - type: Transform @@ -90813,11 +90876,152 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 + - uid: 26801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 12 + - uid: 27305 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - uid: 27306 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 12 + - uid: 27307 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 12 - uid: 27318 components: - type: Transform pos: 6.5,-20.5 parent: 12 + - uid: 27388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 12 + - uid: 27835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 12 + - uid: 27836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 12 + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 12 + - uid: 27892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 12 + - uid: 27893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 + - uid: 27894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 12 + - uid: 27895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,8.5 + parent: 12 + - uid: 27896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,8.5 + parent: 12 + - uid: 27897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 12 + - uid: 27898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 12 + - uid: 27899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 12 + - uid: 27900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 12 + - uid: 27902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 12 + - uid: 27903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 12 + - uid: 27904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 12 + - uid: 27905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 12 + - uid: 27906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 12 + - uid: 27907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 12 - uid: 27953 components: - type: Transform @@ -91224,6 +91428,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 12 + - uid: 28055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 12 - uid: 28059 components: - type: Transform @@ -91640,11 +91850,83 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,50.5 parent: 12 + - uid: 28139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 12 - uid: 28145 components: - type: Transform pos: 69.5,49.5 parent: 12 + - uid: 28147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 12 + - uid: 28151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 12 + - uid: 28152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 12 + - uid: 28153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 12 + - uid: 28154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 12 + - uid: 28155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 12 + - uid: 28156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 12 + - uid: 28164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 12 + - uid: 28217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 12 + - uid: 28218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 12 + - uid: 28219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 12 - uid: 28443 components: - type: Transform @@ -91705,6 +91987,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-26.5 parent: 12 + - uid: 28847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,52.5 + parent: 12 - uid: 28896 components: - type: Transform @@ -91715,6 +92003,30 @@ entities: - type: Transform pos: 6.5,-18.5 parent: 12 + - uid: 28945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 12 + - uid: 28946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 12 + - uid: 28948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 12 + - uid: 28999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 - uid: 29016 components: - type: Transform @@ -92254,11 +92566,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 2255 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 3387 components: - type: Transform @@ -92513,8 +92820,7 @@ entities: - uid: 15398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,51.5 + pos: 39.5,53.5 parent: 12 - uid: 15631 components: @@ -92682,6 +92988,18 @@ entities: - type: Transform pos: 53.5,49.5 parent: 12 + - uid: 25567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 12 + - uid: 27386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 12 - uid: 27512 components: - type: Transform @@ -92784,11 +93102,6 @@ entities: - type: Transform pos: -28.5,38.5 parent: 12 - - uid: 2186 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 2938 components: - type: Transform @@ -92859,6 +93172,11 @@ entities: - type: Transform pos: 18.5,-36.5 parent: 12 + - uid: 7221 + components: + - type: Transform + pos: 55.5,6.5 + parent: 12 - uid: 7794 components: - type: Transform @@ -92894,6 +93212,11 @@ entities: - type: Transform pos: 54.5,-29.5 parent: 12 + - uid: 10017 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 12 - uid: 11239 components: - type: Transform @@ -92961,20 +93284,6 @@ entities: - type: Transform pos: 31.5,53.5 parent: 12 - - uid: 15130 - components: - - type: MetaData - name: disposal unit to security - - type: Transform - pos: 25.5,55.5 - parent: 12 - - uid: 15131 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 25.5,56.5 - parent: 12 - uid: 16709 components: - type: Transform @@ -93065,13 +93374,6 @@ entities: - type: Transform pos: 13.5,59.5 parent: 12 - - uid: 23589 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 67.5,50.5 - parent: 12 - uid: 23686 components: - type: Transform @@ -93104,13 +93406,6 @@ entities: - type: Transform pos: -38.5,50.5 parent: 12 - - uid: 28139 - components: - - type: MetaData - name: disposal unit to chemistry - - type: Transform - pos: 66.5,50.5 - parent: 12 - uid: 29391 components: - type: Transform @@ -93161,6 +93456,12 @@ entities: - type: Transform pos: 35.5,54.5 parent: 12 + - uid: 18312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,10.5 + parent: 12 - uid: 22801 components: - type: Transform @@ -93172,6 +93473,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 12 + - uid: 24006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 12 - proto: DogBed entities: - uid: 18310 @@ -93313,11 +93620,6 @@ entities: parent: 12 - proto: DrinkBeerBottleFull entities: - - uid: 16520 - components: - - type: Transform - pos: 8.0309305,6.6569676 - parent: 12 - uid: 21456 components: - type: Transform @@ -93330,6 +93632,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28683 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.62303,6.1613517 + parent: 12 + - uid: 28684 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.37303,6.5919075 + parent: 12 - proto: DrinkBeerCan entities: - uid: 13717 @@ -93817,6 +94131,14 @@ entities: - type: Transform pos: 77.61463,48.901142 parent: 12 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 28852 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.3420668,-15.542583 + parent: 12 - proto: ElectricGuitarInstrument entities: - uid: 13481 @@ -93847,10 +94169,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-47.5 parent: 12 - - uid: 899 + - uid: 1363 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 parent: 12 - uid: 3900 components: @@ -93864,17 +94187,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-7.5 parent: 12 - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 12 - - uid: 6711 + - uid: 5982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,0.5 + pos: 33.5,2.5 parent: 12 - uid: 8887 components: @@ -93918,18 +94235,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-47.5 parent: 12 - - uid: 10518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 12 - - uid: 10519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 12 - uid: 10520 components: - type: Transform @@ -94070,11 +94375,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 12 - - uid: 10549 - components: - - type: Transform - pos: 20.5,6.5 - parent: 12 - uid: 10552 components: - type: Transform @@ -94155,6 +94455,12 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 12 + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 12 - uid: 13527 components: - type: Transform @@ -94249,12 +94555,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 12 - uid: 17797 components: - type: Transform @@ -94634,6 +94934,75 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,50.5 parent: 12 + - uid: 29975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 12 + - uid: 29976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 29977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29992 + components: + - type: Transform + pos: 18.5,5.5 + parent: 12 + - uid: 30434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 12 + - uid: 30436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 30454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 12 + - uid: 30457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-6.5 + parent: 12 + - uid: 30468 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 + - uid: 30483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,4.5 + parent: 12 + - uid: 30489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,10.5 + parent: 12 + - uid: 30491 + components: + - type: Transform + pos: 72.5,12.5 + parent: 12 - uid: 30988 components: - type: Transform @@ -94658,12 +95027,41 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 + - uid: 31511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,4.5 + parent: 12 + - uid: 31512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 12 + - uid: 31513 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 + - uid: 31514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-16.5 + parent: 12 - uid: 31568 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 + - uid: 31890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 12 - proto: EmergencyNitrogenTankFilled entities: - uid: 31675 @@ -94685,27 +95083,65 @@ entities: parent: 12 - proto: Emitter entities: - - uid: 361 + - uid: 3019 components: - type: Transform - pos: 17.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,8.5 parent: 12 - - uid: 23983 + - uid: 8420 components: - type: Transform - pos: 25.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,0.5 parent: 12 - - uid: 26896 + - uid: 8435 + components: + - type: Transform + pos: 68.5,12.5 + parent: 12 + - uid: 8972 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-13.5 + pos: 68.5,-3.5 parent: 12 - - uid: 27051 + - uid: 9169 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-13.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 9222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 +- proto: EmitterFlatpack + entities: + - uid: 9994 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.784466,-0.28712702 + parent: 12 + - uid: 9995 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.991028,-0.5770376 parent: 12 - proto: EncryptionKeyCommon entities: @@ -94807,6 +95243,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 + - uid: 7229 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 - uid: 9238 components: - type: Transform @@ -94829,10 +95270,10 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 12 - - uid: 25959 + - uid: 21932 components: - type: Transform - pos: 12.5,-12.5 + pos: 39.5,12.5 parent: 12 - uid: 26003 components: @@ -94939,16 +95380,6 @@ entities: - type: Transform pos: -36.5,0.5 parent: 12 - - uid: 26026 - components: - - type: Transform - pos: 6.5,0.5 - parent: 12 - - uid: 26027 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - uid: 26028 components: - type: Transform @@ -95039,16 +95470,16 @@ entities: - type: Transform pos: 58.5,44.5 parent: 12 + - uid: 29963 + components: + - type: Transform + pos: 32.5,6.5 + parent: 12 - uid: 30467 components: - type: Transform pos: 41.5,-4.5 parent: 12 - - uid: 30468 - components: - - type: Transform - pos: 37.5,13.5 - parent: 12 - proto: FaxMachineBase entities: - uid: 3793 @@ -95516,17 +95947,17 @@ entities: parent: 12 - proto: FireAxeCabinetFilled entities: + - uid: 5710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 12 - uid: 25973 components: - type: Transform pos: -54.5,35.5 parent: 12 - - uid: 26920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-1.5 - parent: 12 - proto: FireExtinguisher entities: - uid: 9762 @@ -95635,15 +96066,6 @@ entities: - type: Transform pos: -63.5,-27.5 parent: 12 - - uid: 31757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - proto: FirelockEdge entities: - uid: 2114 @@ -95828,51 +96250,6 @@ entities: deviceLists: - 28373 - 8504 - - uid: 26931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - uid: 27065 components: - type: Transform @@ -95939,6 +96316,15 @@ entities: - type: DeviceNetwork deviceLists: - 10018 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 610 components: - type: Transform @@ -95962,6 +96348,34 @@ entities: deviceLists: - 6833 - 8504 + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - 27314 + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - uid: 2034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 2073 components: - type: Transform @@ -96095,6 +96509,16 @@ entities: - type: DeviceNetwork deviceLists: - 7342 + - uid: 2359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - 27313 - uid: 2613 components: - type: Transform @@ -96113,15 +96537,16 @@ entities: deviceLists: - 7342 - 31755 - - uid: 2779 + - uid: 2679 components: - type: Transform - pos: 17.5,5.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - - 28377 + - 4906 + - 31755 - uid: 2824 components: - type: Transform @@ -96150,6 +96575,9 @@ entities: - type: Transform pos: 6.5,12.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 3986 components: - type: Transform @@ -96359,35 +96787,6 @@ entities: deviceLists: - 2614 - 28360 - - uid: 4738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - - uid: 4786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 447 - - uid: 5128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - uid: 5232 components: - type: Transform @@ -96812,15 +97211,6 @@ entities: - type: Transform pos: 48.5,-42.5 parent: 12 - - uid: 9294 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - 447 - uid: 9302 components: - type: Transform @@ -96838,6 +97228,7 @@ entities: - type: DeviceNetwork deviceLists: - 448 + - 4906 - uid: 9304 components: - type: Transform @@ -96925,15 +97316,6 @@ entities: - type: DeviceNetwork deviceLists: - 10019 - - uid: 9319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - uid: 9320 components: - type: Transform @@ -97046,26 +97428,6 @@ entities: - type: DeviceNetwork deviceLists: - 449 - - uid: 9666 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - 28377 - - uid: 9994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - uid: 10287 components: - type: Transform @@ -97106,6 +97468,16 @@ entities: - type: DeviceNetwork deviceLists: - 9702 + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 448 + - 4906 - uid: 11460 components: - type: Transform @@ -98729,8 +99101,8 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - 448 + - 11505 - uid: 23906 components: - type: Transform @@ -99041,32 +99413,16 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 26457 + - uid: 26593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 38.5,3.5 parent: 12 - type: DeviceNetwork deviceLists: - - 8910 - - uid: 26637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 26639 - components: - - type: Transform - pos: 75.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 + - 4906 + - 2682 - uid: 26923 components: - type: Transform @@ -99075,16 +99431,17 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 - - uid: 26924 + - 27311 + - 27312 + - uid: 27005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + rot: 3.141592653589793 rad + pos: 54.5,7.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - uid: 27108 components: - type: Transform @@ -99103,6 +99460,24 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 27309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - uid: 27310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 27449 components: - type: Transform @@ -99142,6 +99517,16 @@ entities: deviceLists: - 10019 - 4887 + - uid: 28904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 + - 31755 - uid: 29100 components: - type: Transform @@ -99213,11 +99598,17 @@ entities: - type: Transform pos: 7.5,20.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29872 components: - type: Transform pos: 15.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29981 components: - type: Transform @@ -99274,6 +99665,24 @@ entities: deviceLists: - 30450 - 30452 + - uid: 31515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - uid: 31516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31553 components: - type: Transform @@ -99882,18 +100291,6 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 -- proto: FoodBagel - entities: - - uid: 12226 - components: - - type: Transform - pos: 9.246578,6.7106547 - parent: 12 - - uid: 12646 - components: - - type: Transform - pos: 9.502062,6.357326 - parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -99998,8 +100395,8 @@ entities: - uid: 24446 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.66475,5.299775 + rot: -12.566370614359172 rad + pos: 55.57415,5.497829 parent: 12 - proto: FoodBoxDonkpocketStonk entities: @@ -100051,10 +100448,10 @@ entities: parent: 12 - proto: FoodBurgerMcguffin entities: - - uid: 9813 + - uid: 28686 components: - type: Transform - pos: 7.485814,6.5965023 + pos: 52.626194,5.4898076 parent: 12 - proto: FoodBurgerMime entities: @@ -100341,6 +100738,11 @@ entities: - type: Transform pos: 20.5,50.5 parent: 12 + - uid: 28687 + components: + - type: Transform + pos: 52.619247,5.510641 + parent: 12 - uid: 31122 components: - type: Transform @@ -100348,11 +100750,6 @@ entities: parent: 12 - proto: FoodPlateSmallPlastic entities: - - uid: 384 - components: - - type: Transform - pos: 7.4795074,6.619267 - parent: 12 - uid: 21382 components: - type: Transform @@ -100434,13 +100831,6 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 -- proto: FoodSoupElectron - entities: - - uid: 922 - components: - - type: Transform - pos: 13.508775,-8.440525 - parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -100526,13 +100916,14 @@ entities: - type: Transform pos: 37.254433,53.9859 parent: 12 -- proto: ForkPlastic - entities: - - uid: 401 + - uid: 28685 components: - type: Transform - pos: 8.336695,6.534662 + rot: -6.283185307179586 rad + pos: 52.27581,5.7932963 parent: 12 +- proto: ForkPlastic + entities: - uid: 21385 components: - type: Transform @@ -100580,19 +100971,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' -- proto: GasMinerNitrogenStationLarge +- proto: GasMinerCarbonDioxide entities: - - uid: 26957 + - uid: 5478 components: - type: Transform - pos: 59.5,7.5 + pos: 25.5,-4.5 + parent: 12 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 7198 + components: + - type: Transform + pos: 25.5,-8.5 parent: 12 - proto: GasMinerOxygenStationLarge entities: - - uid: 26942 + - uid: 4876 components: - type: Transform - pos: 61.5,7.5 + pos: 25.5,-10.5 + parent: 12 +- proto: GasMinerWaterVapor + entities: + - uid: 4625 + components: + - type: Transform + pos: 25.5,-2.5 parent: 12 - proto: GasMixer entities: @@ -100602,6 +101007,12 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-31.5 parent: 12 + - uid: 9826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 12 - uid: 19563 components: - type: Transform @@ -100618,15 +101029,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 12 - - uid: 26685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - proto: GasMixerFlipped entities: - uid: 7150 @@ -100677,6 +101079,54 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-62.5 parent: 12 + - uid: 4576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 12 + - uid: 4636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 12 + - uid: 4640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 12 + - uid: 4896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 12 + - uid: 4961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 12 + - uid: 5362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 12 + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 12 + - uid: 7227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 12 - uid: 12686 components: - type: Transform @@ -100690,55 +101140,70 @@ entities: - type: Transform pos: -24.5,54.5 parent: 12 - - uid: 26744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,8.5 - parent: 12 - - uid: 26745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,8.5 - parent: 12 - - uid: 26746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,8.5 - parent: 12 - - uid: 26747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,8.5 - parent: 12 - - uid: 26748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,8.5 - parent: 12 - - uid: 26781 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - proto: GasPassiveVent entities: + - uid: 2257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 12 + - uid: 2258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 12 + - uid: 4637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 12 + - uid: 4641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 12 - uid: 4763 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,54.5 parent: 12 + - uid: 4962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 12 + - uid: 5869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 12 + - uid: 6214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6732 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 12 + - uid: 7255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 12 - uid: 15414 components: - type: Transform @@ -100768,36 +101233,6 @@ entities: - type: Transform pos: -25.5,56.5 parent: 12 - - uid: 26749 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - - uid: 26750 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 26751 - components: - - type: Transform - pos: 63.5,6.5 - parent: 12 - - uid: 26752 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 26753 - components: - - type: Transform - pos: 67.5,6.5 - parent: 12 - - uid: 27024 - components: - - type: Transform - pos: 75.5,6.5 - parent: 12 - uid: 30331 components: - type: Transform @@ -100993,11 +101428,18 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1349 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2086 + components: + - type: Transform + pos: 29.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -101007,21 +101449,11 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 12 - - uid: 2183 + - uid: 2168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 + pos: 25.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2251 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2341 components: - type: Transform @@ -101052,6 +101484,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2807 components: - type: Transform @@ -101247,6 +101687,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3720 components: - type: Transform @@ -101358,6 +101814,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4589 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 12 - uid: 4694 components: - type: Transform @@ -101395,27 +101864,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4930 + - uid: 4850 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,2.5 + pos: 13.5,-12.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4951 components: - type: Transform pos: 0.5,-46.5 parent: 12 - - uid: 4974 + - uid: 4984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 25.5,-7.5 + parent: 12 + - uid: 4986 + components: + - type: Transform + pos: 25.5,-1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5149 components: - type: Transform @@ -101437,14 +101908,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5295 components: - type: Transform @@ -101453,13 +101916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5301 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5346 components: - type: Transform @@ -101522,6 +101978,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5487 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5504 components: - type: Transform @@ -101536,6 +101999,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5549 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5592 components: - type: Transform @@ -101544,53 +102014,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5860 + - uid: 5630 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 12 + - uid: 5804 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6220 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: 40.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5965 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6900 components: - type: Transform @@ -101677,6 +102127,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 12 + - uid: 7205 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 12 - uid: 7303 components: - type: Transform @@ -101710,6 +102165,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8531 components: - type: Transform @@ -101850,6 +102313,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9073 + components: + - type: Transform + pos: 25.5,2.5 + parent: 12 - uid: 9128 components: - type: Transform @@ -101866,13 +102334,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9492 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9509 components: - type: Transform @@ -101889,14 +102350,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9529 components: - type: Transform @@ -101976,6 +102429,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9860 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 12 - uid: 9863 components: - type: Transform @@ -101984,14 +102442,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10081 components: - type: Transform @@ -102031,13 +102481,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10809 + - uid: 10873 components: - type: Transform - pos: 40.5,4.5 + pos: 22.5,-14.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 10890 components: - type: Transform @@ -102046,13 +102496,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 10932 + - uid: 10900 components: - type: Transform - pos: 16.5,10.5 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 10906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11119 components: - type: Transform @@ -102091,6 +102566,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11611 components: - type: Transform @@ -102536,13 +103019,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,43.5 parent: 12 - - uid: 18671 - components: - - type: Transform - pos: 28.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18723 components: - type: Transform @@ -102669,13 +103145,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19245 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19250 components: - type: Transform @@ -102684,6 +103153,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19560 components: - type: Transform @@ -102841,6 +103318,53 @@ entities: - type: Transform pos: -22.5,53.5 parent: 12 + - uid: 22072 + components: + - type: Transform + pos: 53.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22243 components: - type: Transform @@ -102849,6 +103373,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22289 + components: + - type: Transform + pos: 1.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22316 components: - type: Transform @@ -102905,11 +103444,10 @@ entities: - uid: 22877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: -5.5,16.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 22886 components: - type: Transform @@ -103097,29 +103635,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23141 + - uid: 23125 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,4.5 + pos: 57.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23142 + color: '#990000FF' + - uid: 23133 components: - type: Transform - pos: 31.5,8.5 + pos: 61.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23143 + color: '#990000FF' + - uid: 23135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23170 components: - type: Transform @@ -103458,63 +103996,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26435 + - uid: 26436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26654 + - uid: 26438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26715 + - uid: 26442 components: - type: Transform - pos: 60.5,8.5 - parent: 12 - - uid: 26716 - components: - - type: Transform - pos: 68.5,8.5 - parent: 12 - - uid: 26717 - components: - - type: Transform - pos: 66.5,8.5 - parent: 12 - - uid: 26718 - components: - - type: Transform - pos: 64.5,8.5 - parent: 12 - - uid: 26719 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,2.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26757 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,1.5 + pos: 62.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 26810 components: - type: Transform @@ -103531,14 +104044,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26985 components: - type: Transform @@ -103569,32 +104074,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,2.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,4.5 - parent: 12 - - uid: 27022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,4.5 - parent: 12 - - uid: 27163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27219 components: - type: Transform @@ -103653,22 +104132,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28292 components: - type: Transform @@ -103689,21 +104152,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 28884 + - uid: 28828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 + pos: 57.5,-6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28885 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 29052 components: - type: Transform @@ -104115,13 +104570,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26981 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27778 components: - type: Transform @@ -104147,11 +104595,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 286 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,4.5 + pos: 2.5,8.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -104228,14 +104676,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 901 + - uid: 897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 909 components: - type: Transform @@ -104251,6 +104697,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 990 components: - type: Transform @@ -104261,13 +104723,6 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 12 - - uid: 1091 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 1093 components: - type: Transform @@ -105420,29 +105875,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1549 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1554 components: - type: Transform @@ -105459,21 +105891,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 1966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1997 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2072 components: - type: Transform @@ -105482,6 +105899,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2110 components: - type: Transform @@ -105498,78 +105923,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2166 + - uid: 2149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-12.5 + pos: 11.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2167 + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2168 + - uid: 2164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2254 components: - type: Transform @@ -105577,29 +105950,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2257 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2311 components: - type: Transform @@ -105637,21 +105987,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 2528 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2610 components: - type: Transform @@ -105675,14 +106010,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2806 components: - type: Transform @@ -105720,13 +106047,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2869 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2885 components: - type: Transform @@ -106483,14 +106803,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3637 components: - type: Transform @@ -106956,6 +107268,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3714 components: - type: Transform @@ -107337,6 +107657,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3955 components: - type: Transform @@ -107345,6 +107673,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4074 components: - type: Transform @@ -107409,6 +107745,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 4390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4402 components: - type: Transform @@ -107432,14 +107784,18 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4528 + - uid: 4479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 4537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4539 components: - type: Transform @@ -107448,6 +107804,203 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 12 + - uid: 4548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 4563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 + - uid: 4580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 12 + - uid: 4591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 4604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 12 + - uid: 4610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4628 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 12 + - uid: 4635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 + - uid: 4638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 4639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 12 + - uid: 4642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 12 + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 12 + - uid: 4678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4719 components: - type: Transform @@ -107456,42 +108009,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4727 + - uid: 4744 components: - type: Transform - pos: 44.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 4737 - components: - - type: Transform - pos: 11.5,-1.5 + rot: -1.5707963267948966 rad + pos: 26.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4740 - components: - - type: Transform - pos: 11.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4743 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4746 components: - type: Transform @@ -107580,97 +108105,17 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4784 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4785 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4791 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + pos: 37.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108004,44 +108449,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4852 + - uid: 4889 components: - type: Transform - pos: 11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4853 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4856 + - uid: 4894 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,5.5 + pos: 29.5,3.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4939 components: - type: Transform @@ -108056,11 +108483,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4948 + - uid: 4941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,4.5 + pos: 28.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108072,21 +108499,147 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5082 + - uid: 4975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 12 + - uid: 4978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 + - uid: 4990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5111 + - uid: 4991 components: - type: Transform - pos: 44.5,-1.5 + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 5004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 12 + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 5012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 12 + - uid: 5016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 + - uid: 5017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 12 + - uid: 5018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 5020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' + - uid: 5031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5043 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 12 + - uid: 5053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 12 + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5136 components: - type: Transform @@ -108096,45 +108649,21 @@ entities: - type: AtmosPipeColor color: '#990000FF' - uid: 5213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 + pos: 15.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5222 + - uid: 5221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5229 components: - type: Transform @@ -108146,11 +108675,15 @@ entities: - uid: 5239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5252 components: - type: Transform @@ -108207,14 +108740,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5271 components: - type: Transform @@ -108223,30 +108748,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5275 components: - type: Transform @@ -108351,6 +108852,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5296 components: - type: Transform @@ -108397,14 +108906,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5319 + - uid: 5310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 5329 components: - type: Transform @@ -108600,83 +109109,21 @@ entities: - uid: 5361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,2.5 + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5375 components: - type: Transform @@ -108731,14 +109178,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5402 components: - type: Transform @@ -108747,30 +109186,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5408 components: - type: Transform @@ -108904,29 +109319,102 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5598 + - uid: 5634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: 21.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5856 + color: '#990000FF' + - uid: 5670 components: - type: Transform - pos: 13.5,4.5 + pos: 8.5,-8.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5859 + - uid: 5674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 12 + - uid: 5679 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,2.5 + pos: 27.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5937 components: - type: Transform @@ -109007,10 +109495,9 @@ entities: - uid: 5952 components: - type: Transform - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5954 components: - type: Transform @@ -109033,13 +109520,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5959 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 5960 components: - type: Transform @@ -109047,6 +109527,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 12 - uid: 5962 components: - type: Transform @@ -109063,6 +109549,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 12 - uid: 6015 components: - type: Transform @@ -109125,16 +109617,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6279 + - uid: 6260 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6705 components: - type: Transform - pos: 67.5,5.5 + rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6715 components: - type: Transform @@ -109151,6 +109657,32 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6772 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 12 + - uid: 6780 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 12 - uid: 6799 components: - type: Transform @@ -109159,6 +109691,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6842 components: - type: Transform @@ -109175,6 +109715,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 12 - uid: 6897 components: - type: Transform @@ -109183,14 +109729,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6901 components: - type: Transform @@ -109207,6 +109745,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6985 components: - type: Transform @@ -110151,6 +110697,40 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 12 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 12 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 12 - uid: 7239 components: - type: Transform @@ -110159,11 +110739,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7308 + - uid: 7242 components: - type: Transform - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 12 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 12 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -110289,13 +110906,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7563 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7566 components: - type: Transform @@ -110343,6 +110953,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 12 - uid: 8241 components: - type: Transform @@ -110351,14 +110967,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 8492 components: - type: Transform @@ -111514,28 +112122,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8974 - components: - - type: Transform - pos: 40.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8976 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 8981 components: - type: Transform @@ -111544,6 +112130,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9088 components: - type: Transform @@ -111551,6 +112145,63 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 9417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9419 + components: + - type: Transform + pos: -5.5,14.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9420 + components: + - type: Transform + pos: -5.5,13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9421 + components: + - type: Transform + pos: -5.5,15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9454 components: - type: Transform @@ -111559,22 +112210,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 9459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9463 components: - type: Transform @@ -111704,14 +112339,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9496 components: - type: Transform @@ -111726,14 +112353,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9501 components: - type: Transform @@ -111825,27 +112444,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 9679 - components: - - type: Transform - pos: 16.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9680 - components: - - type: Transform - pos: 16.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9681 - components: - - type: Transform - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9685 components: - type: Transform @@ -111990,14 +112588,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9831 components: - type: Transform @@ -112012,6 +112602,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9857 components: - type: Transform @@ -112120,22 +112718,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10028 components: - type: Transform @@ -112491,6 +113073,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10314 components: - type: Transform @@ -112608,6 +113198,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10984 components: - type: Transform @@ -112616,6 +113222,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11008 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11009 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11022 components: - type: Transform @@ -112624,6 +113244,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11040 components: - type: Transform @@ -113114,6 +113742,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11372 components: - type: Transform @@ -113121,6 +113757,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11426 components: - type: Transform @@ -113145,6 +113805,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11592 components: - type: Transform @@ -113217,22 +113885,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11934 components: - type: Transform @@ -113336,6 +113988,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12276 components: - type: Transform @@ -114248,38 +114916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12935 components: - type: Transform @@ -115102,6 +115738,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 15007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15407 components: - type: Transform @@ -115758,14 +116402,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 16586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16587 components: - type: Transform @@ -116042,6 +116678,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16675 components: - type: Transform @@ -116976,14 +117628,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17844 + - uid: 17772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,9.5 + pos: -1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' + - uid: 17948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18256 components: - type: Transform @@ -117010,6 +117670,14 @@ entities: - type: Transform pos: -46.5,45.5 parent: 12 + - uid: 18313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -117834,6 +118502,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19196 components: - type: Transform @@ -117849,14 +118533,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19292 + - uid: 19311 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,9.5 + pos: 60.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 19380 components: - type: Transform @@ -118077,19 +118761,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19462 + - uid: 19436 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,4.5 + pos: 59.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19538 + color: '#0055CCFF' + - uid: 19459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 + rot: 3.141592653589793 rad + pos: 58.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -118101,14 +118793,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19562 components: - type: Transform @@ -118117,6 +118801,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19823 components: - type: Transform @@ -120834,6 +121526,114 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21911 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22066 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22093 + components: + - type: Transform + pos: 29.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22101 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22234 components: - type: Transform @@ -120912,6 +121712,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 22555 components: - type: Transform @@ -122594,123 +123402,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23127 - components: - - type: Transform - pos: 31.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23128 - components: - - type: Transform - pos: 31.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23129 - components: - - type: Transform - pos: 31.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 23131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 + rot: 1.5707963267948966 rad + pos: 55.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,4.5 + rot: 1.5707963267948966 rad + pos: 29.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' + - uid: 23141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23146 components: - type: Transform @@ -122760,6 +123491,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23162 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23168 components: - type: Transform @@ -122776,6 +123522,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 23178 components: - type: Transform @@ -123394,6 +124148,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23589 + components: + - type: Transform + pos: 22.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23662 components: - type: Transform @@ -123621,14 +124382,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23991 components: - type: Transform @@ -123761,6 +124514,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#5D782EFF' + - uid: 24566 + components: + - type: Transform + pos: -5.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24567 + components: + - type: Transform + pos: -5.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24634 components: - type: Transform @@ -123808,6 +124575,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25195 components: - type: Transform @@ -123816,6 +124591,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25437 components: - type: Transform @@ -123832,14 +124615,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25540 + - uid: 25532 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,5.5 + pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FFA500FF' + - uid: 25534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 25569 components: - type: Transform @@ -123855,6 +124646,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25575 components: - type: Transform @@ -123863,6 +124662,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25659 components: - type: Transform @@ -123919,6 +124726,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26052 components: - type: Transform @@ -123927,6 +124750,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26121 + components: + - type: Transform + pos: 21.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26126 components: - type: Transform @@ -124165,36 +124995,53 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26431 + - uid: 26453 components: - type: Transform - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 parent: 12 - - uid: 26433 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26474 components: - type: Transform - pos: 73.5,3.5 + pos: -5.5,11.5 parent: 12 - - uid: 26437 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26477 components: - type: Transform - pos: 73.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,9.5 parent: 12 - - uid: 26439 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26517 components: - type: Transform - pos: 71.5,5.5 + rot: 3.141592653589793 rad + pos: 58.5,0.5 parent: 12 - - uid: 26444 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26518 components: - type: Transform - pos: 73.5,5.5 + rot: 1.5707963267948966 rad + pos: 59.5,2.5 parent: 12 - - uid: 26445 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26519 components: - type: Transform - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 61.5,2.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26539 components: - type: Transform @@ -124216,75 +125063,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26606 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 26607 - components: - - type: Transform - pos: 63.5,4.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26611 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26612 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 26613 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 26618 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26619 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26620 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - uid: 26629 components: - type: Transform @@ -124299,11 +125077,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26653 + - uid: 26642 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-5.5 + pos: 12.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 26647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 26650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -124311,101 +125105,56 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-5.5 + pos: 4.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26671 - components: - - type: Transform - pos: 63.5,5.5 - parent: 12 - - uid: 26672 - components: - - type: Transform - pos: 61.5,5.5 - parent: 12 + color: '#990000FF' - uid: 26673 components: - type: Transform - pos: 59.5,5.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 12 - - uid: 26691 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26679 components: - type: Transform - pos: 71.5,4.5 + rot: 1.5707963267948966 rad + pos: -13.5,16.5 parent: 12 - - uid: 26692 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - - uid: 26697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26710 + color: '#990000FF' + - uid: 26699 components: - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26711 - components: - - type: Transform - pos: 60.5,4.5 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26712 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 26713 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 26714 - components: - - type: Transform - pos: 60.5,7.5 - parent: 12 - - uid: 26720 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 26721 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - - uid: 26722 components: - type: Transform pos: 62.5,5.5 parent: 12 - - uid: 26723 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 26724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26713 components: - type: Transform pos: 62.5,3.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26726 components: - type: Transform @@ -124414,150 +125163,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26727 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26728 - components: - - type: Transform - pos: 64.5,4.5 - parent: 12 - - uid: 26729 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 26730 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 26731 - components: - - type: Transform - pos: 64.5,7.5 - parent: 12 - - uid: 26732 - components: - - type: Transform - pos: 66.5,7.5 - parent: 12 - - uid: 26733 - components: - - type: Transform - pos: 66.5,6.5 - parent: 12 - - uid: 26734 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 26735 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 26736 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - uid: 26739 components: - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26740 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 26741 - components: - - type: Transform - pos: 68.5,5.5 - parent: 12 - - uid: 26742 - components: - - type: Transform - pos: 68.5,6.5 - parent: 12 - - uid: 26743 - components: - - type: Transform - pos: 68.5,7.5 - parent: 12 - - uid: 26754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-1.5 + pos: 62.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26756 + - uid: 26763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,2.5 + pos: 62.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26777 + color: '#0055CCFF' + - uid: 26781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 + pos: 62.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26778 + color: '#0055CCFF' + - uid: 26794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 + pos: 62.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26779 + color: '#0055CCFF' + - uid: 26795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: 62.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26799 + color: '#0055CCFF' + - uid: 26849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-6.5 + pos: -8.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -124569,22 +125214,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26929 components: - type: Transform @@ -124601,14 +125230,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26946 components: - type: Transform @@ -124624,22 +125245,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26955 components: - type: Transform @@ -124648,14 +125253,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26966 components: - type: Transform @@ -124680,22 +125277,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26984 components: - type: Transform @@ -124787,14 +125368,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27008 components: - type: Transform @@ -124841,20 +125414,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 12 - uid: 27034 components: - type: Transform @@ -124924,6 +125483,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 27256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27265 components: - type: Transform @@ -125042,70 +125609,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 27917 components: - type: Transform @@ -125114,126 +125617,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28234 components: - type: Transform @@ -125392,16 +125775,32 @@ entities: - uid: 28829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - uid: 28831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -125608,38 +126007,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29159 components: - type: Transform @@ -126265,6 +126632,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 29959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30008 components: - type: Transform @@ -127158,14 +127533,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2288 components: - type: Transform @@ -127530,29 +127897,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4788 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4811 components: - type: Transform @@ -127568,14 +127912,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4871 components: - type: Transform @@ -127584,22 +127920,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4904 components: - type: Transform @@ -127632,6 +127952,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5003 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5035 components: - type: Transform @@ -127639,6 +127966,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5144 components: - type: Transform @@ -127694,6 +128029,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5312 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5315 components: - type: Transform @@ -127762,11 +128104,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5403 + - uid: 5401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -127777,14 +128119,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5869 + - uid: 5711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 5940 components: - type: Transform @@ -127808,6 +128150,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6261 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6751 components: - type: Transform @@ -127816,6 +128173,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6794 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6837 components: - type: Transform @@ -127830,21 +128194,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6893 - components: - - type: Transform - pos: 15.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6894 components: - type: Transform @@ -127853,14 +128202,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6903 components: - type: Transform @@ -127967,6 +128308,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7277 components: - type: Transform @@ -128253,6 +128602,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9462 components: - type: Transform @@ -128386,11 +128751,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10876 + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: 36.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -128409,6 +128790,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11013 components: - type: Transform @@ -128582,13 +128979,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12698 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12699 components: - type: Transform @@ -128847,6 +129237,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15252 components: - type: Transform @@ -129372,6 +129770,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19822 components: - type: Transform @@ -129794,6 +130200,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22078 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22233 components: - type: Transform @@ -129825,6 +130246,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22910 components: - type: Transform @@ -129841,6 +130270,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23185 components: - type: Transform @@ -129939,6 +130376,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26944 components: - type: Transform @@ -129947,27 +130392,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26951 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26958 - components: - - type: Transform - pos: 55.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26965 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27292 components: - type: Transform @@ -129975,6 +130399,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 27303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27985 components: - type: Transform @@ -129998,13 +130430,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28830 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 28930 components: - type: Transform @@ -130201,6 +130626,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-62.5 parent: 12 + - uid: 4630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 12 - uid: 4938 components: - type: Transform @@ -130263,11 +130694,34 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,18.5 parent: 12 + - uid: 9059 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 9617 components: - type: Transform pos: 13.5,21.5 parent: 12 + - uid: 9813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 12 + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 12 + - uid: 9858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 12 - uid: 10980 components: - type: Transform @@ -130276,6 +130730,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 11018 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 12 - uid: 11280 components: - type: Transform @@ -130370,12 +130829,36 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 12 - - uid: 26648 + - uid: 25469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-5.5 + rot: -1.5707963267948966 rad + pos: 20.5,7.5 parent: 12 + - uid: 25666 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26471 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 12 + - uid: 26591 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 12 + - uid: 28755 + components: + - type: Transform + pos: 22.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30340 components: - type: Transform @@ -130431,6 +130914,12 @@ entities: - type: Transform pos: -41.5,-42.5 parent: 12 + - uid: 2186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 12 - uid: 2786 components: - type: Transform @@ -130447,30 +130936,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 4092 components: + - type: MetaData + name: distro pump - type: Transform - pos: 63.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 parent: 12 - - uid: 3130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4577 components: - type: Transform - pos: 61.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 parent: 12 - - uid: 3945 + - uid: 4650 components: - type: Transform - pos: 67.5,2.5 - parent: 12 - - uid: 3948 - components: - - type: Transform - pos: 65.5,2.5 - parent: 12 - - uid: 4064 - components: - - type: Transform - pos: 59.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 12 - uid: 4696 components: @@ -130478,6 +130964,36 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 12 + - uid: 4743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 12 + - uid: 4948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 12 + - uid: 5090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 12 + - uid: 5717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 12 + - uid: 6235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 12 - uid: 7147 components: - type: MetaData @@ -130521,6 +131037,26 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 12 + - uid: 7212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 12 + - uid: 9060 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9061 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10978 components: - type: Transform @@ -130558,48 +131094,29 @@ entities: - type: Transform pos: -47.5,46.5 parent: 12 - - uid: 26693 + - uid: 23126 components: + - type: MetaData + name: waste pump - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,2.5 + pos: 20.5,4.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26776 + - uid: 23130 components: - type: MetaData - name: gas pump to TEG + name: TEG pump - type: Transform - pos: 61.5,-4.5 + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26808 + - uid: 26418 components: - type: Transform - pos: 73.5,2.5 - parent: 12 - - uid: 26809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 - parent: 12 - - uid: 26978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27146 - components: - - type: MetaData - name: gas pump to waste - - type: Transform - pos: 62.5,-4.5 + pos: 26.5,-15.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -130645,24 +131162,16 @@ entities: - type: Transform pos: -46.5,47.5 parent: 12 - - uid: 26645 + - uid: 23982 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 67.5,-5.5 + pos: 9.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26647 + - uid: 23983 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 68.5,-5.5 + pos: 10.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasThermoMachineFreezerEnabled entities: - uid: 15405 @@ -130675,6 +131184,16 @@ entities: targetTemperature: 243.15 - proto: GasThermoMachineHeater entities: + - uid: 3979 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 + - uid: 4575 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 12 - uid: 9732 components: - type: Transform @@ -130696,24 +131215,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26643 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26644 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasValve entities: - uid: 4780 @@ -130749,11 +131250,16 @@ entities: - type: Transform pos: -46.5,44.5 parent: 12 - - uid: 27023 + - uid: 28754 components: - type: Transform - pos: 75.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 parent: 12 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 31768 components: - type: Transform @@ -130781,6 +131287,13 @@ entities: - 28343 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1058 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -130962,14 +131475,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3519 components: - type: Transform @@ -131010,18 +131515,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4855 components: - type: Transform @@ -131032,18 +131525,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5305 components: - type: Transform @@ -131065,18 +131546,6 @@ entities: - 28376 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5328 components: - type: Transform @@ -131099,17 +131568,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5409 - components: - - type: Transform - pos: 29.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5585 components: - type: Transform @@ -131147,15 +131605,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6766 + - uid: 6709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: 35.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 4906 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6973 @@ -131303,6 +131761,19 @@ entities: - type: Transform pos: 6.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9717 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10005 @@ -131384,6 +131855,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11462 components: - type: Transform @@ -131403,6 +131882,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12232 + components: + - type: Transform + pos: 29.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12735 components: - type: Transform @@ -131572,6 +132061,17 @@ entities: - 23643 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15806 components: - type: Transform @@ -131797,6 +132297,16 @@ entities: - 23804 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19188 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19393 components: - type: Transform @@ -131966,7 +132476,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20983 @@ -132085,6 +132595,14 @@ entities: - 9702 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22245 components: - type: Transform @@ -132490,34 +133008,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26928 + - uid: 26415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 + pos: 35.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 + - 2682 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26994 @@ -132852,6 +133350,16 @@ entities: - 30453 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2682 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2755 components: - type: Transform @@ -132932,17 +133440,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4685 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4723 components: - type: Transform @@ -132954,18 +133451,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5254 components: - type: Transform @@ -133007,7 +133492,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - type: AtmosPipeColor color: '#990000FF' @@ -133019,7 +133503,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 + - 4906 - 448 - type: AtmosPipeColor color: '#990000FF' @@ -133038,6 +133522,17 @@ entities: - 28366 - type: AtmosPipeColor color: '#990000FF' + - uid: 5887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6083 components: - type: Transform @@ -133054,6 +133549,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 6979 components: - type: Transform @@ -133107,16 +133611,6 @@ entities: - 8971 - type: AtmosPipeColor color: '#990000FF' - - uid: 7787 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8536 components: - type: Transform @@ -133225,6 +133719,9 @@ entities: - type: Transform pos: 15.5,14.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - type: AtmosPipeColor color: '#990000FF' - uid: 10006 @@ -133297,6 +133794,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 12231 + components: + - type: Transform + pos: 30.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12730 components: - type: Transform @@ -133609,6 +134116,26 @@ entities: - 18887 - type: AtmosPipeColor color: '#990000FF' + - uid: 19173 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19292 + components: + - type: Transform + pos: 57.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19392 components: - type: Transform @@ -133657,6 +134184,17 @@ entities: - 23791 - type: AtmosPipeColor color: '#990000FF' + - uid: 19555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 31755 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20008 components: - type: Transform @@ -134096,16 +134634,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26311 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26328 components: - type: Transform @@ -134164,25 +134692,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26441 + - uid: 26689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - type: AtmosPipeColor color: '#990000FF' - - uid: 26780 - components: - - type: Transform - pos: 73.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - uid: 26949 components: - type: Transform @@ -134190,7 +134707,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27311 - type: AtmosPipeColor color: '#990000FF' - uid: 27249 @@ -134282,17 +134799,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 31756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasVentScrubberVox entities: - uid: 9429 @@ -134348,11 +134854,6 @@ entities: - type: Transform pos: 44.5,-5.5 parent: 12 - - uid: 11391 - components: - - type: Transform - pos: 28.5,13.5 - parent: 12 - uid: 11535 components: - type: Transform @@ -134381,12 +134882,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 12 - - uid: 16356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 12 - uid: 21532 components: - type: Transform @@ -134403,6 +134898,12 @@ entities: - type: Transform pos: 38.5,45.5 parent: 12 + - uid: 26705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 12 - uid: 27148 components: - type: Transform @@ -134421,6 +134922,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-17.5 parent: 12 + - uid: 28923 + components: + - type: Transform + pos: 48.5,9.5 + parent: 12 - uid: 30737 components: - type: Transform @@ -134732,6 +135238,12 @@ entities: - type: Transform pos: -60.5,31.5 parent: 12 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 12 - uid: 255 components: - type: Transform @@ -134890,11 +135402,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 12 - - uid: 403 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - uid: 409 components: - type: Transform @@ -135067,6 +135574,12 @@ entities: - type: Transform pos: -38.5,-28.5 parent: 12 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-2.5 + parent: 12 - uid: 652 components: - type: Transform @@ -135400,15 +135913,17 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1356 + - uid: 1352 components: - type: Transform - pos: 7.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-10.5 parent: 12 - - uid: 1363 + - uid: 1354 components: - type: Transform - pos: 8.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-6.5 parent: 12 - uid: 1453 components: @@ -135421,6 +135936,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,75.5 parent: 12 + - uid: 1550 + components: + - type: Transform + pos: 11.5,3.5 + parent: 12 - uid: 1611 components: - type: Transform @@ -135450,15 +135970,10 @@ entities: - type: Transform pos: 35.5,8.5 parent: 12 - - uid: 2090 + - uid: 2066 components: - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 2091 - components: - - type: Transform - pos: 28.5,-0.5 + pos: 11.5,1.5 parent: 12 - uid: 2172 components: @@ -135466,12 +135981,33 @@ entities: rot: 3.141592653589793 rad pos: 71.5,14.5 parent: 12 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 12 + - uid: 2175 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-40.5 parent: 12 + - uid: 2252 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 2253 + components: + - type: Transform + pos: 11.5,2.5 + parent: 12 - uid: 2331 components: - type: Transform @@ -136020,6 +136556,11 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 12 + - uid: 3198 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 - uid: 3468 components: - type: Transform @@ -136046,10 +136587,10 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-53.5 parent: 12 - - uid: 3613 + - uid: 3630 components: - type: Transform - pos: 50.5,-1.5 + pos: 11.5,-1.5 parent: 12 - uid: 4104 components: @@ -136205,26 +136746,31 @@ entities: - type: Transform pos: 7.5,-16.5 parent: 12 - - uid: 4677 + - uid: 4598 components: - type: Transform - pos: 20.5,0.5 + pos: 13.5,-0.5 parent: 12 - - uid: 4678 + - uid: 4600 components: - type: Transform - pos: 21.5,0.5 + pos: 57.5,7.5 parent: 12 - - uid: 4679 + - uid: 4666 components: - type: Transform - pos: 22.5,0.5 + pos: 36.5,-0.5 parent: 12 - - uid: 4766 + - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 21.5,3.5 + parent: 12 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 parent: 12 - uid: 4772 components: @@ -136232,72 +136778,73 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 + - uid: 4784 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 - uid: 4794 components: - type: Transform pos: 47.5,0.5 parent: 12 + - uid: 4796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 4798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 12 - uid: 4870 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 12 - - uid: 4894 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 12 - - uid: 4895 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 12 - - uid: 4896 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 12 - uid: 4912 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 12 - - uid: 4928 + - uid: 4920 components: - type: Transform - pos: 18.5,8.5 + rot: 3.141592653589793 rad + pos: 21.5,-7.5 parent: 12 - - uid: 4929 + - uid: 4972 components: - type: Transform - pos: 19.5,8.5 + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 parent: 12 - - uid: 4954 + - uid: 4987 components: - type: Transform - pos: 21.5,7.5 + rot: 1.5707963267948966 rad + pos: 82.5,3.5 parent: 12 - - uid: 4955 + - uid: 4989 components: - type: Transform - pos: 22.5,7.5 + rot: 1.5707963267948966 rad + pos: 82.5,4.5 parent: 12 - - uid: 5079 + - uid: 5028 components: - type: Transform - pos: 28.5,-8.5 + pos: 12.5,-1.5 parent: 12 - - uid: 5080 + - uid: 5050 components: - type: Transform - pos: 28.5,-7.5 - parent: 12 - - uid: 5081 - components: - - type: Transform - pos: 28.5,-6.5 + pos: 37.5,-0.5 parent: 12 - uid: 5085 components: @@ -136309,10 +136856,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5097 + - uid: 5197 components: - type: Transform - pos: 32.5,-0.5 + rot: 1.5707963267948966 rad + pos: 82.5,9.5 parent: 12 - uid: 5269 components: @@ -136409,18 +136957,118 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,2.5 parent: 12 + - uid: 5538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-1.5 + parent: 12 + - uid: 5550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,0.5 + parent: 12 + - uid: 5552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-0.5 + parent: 12 + - uid: 5595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,2.5 + parent: 12 + - uid: 5618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,5.5 + parent: 12 + - uid: 5620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,7.5 + parent: 12 + - uid: 5715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5718 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 5806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5811 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,12.5 + parent: 12 + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 - uid: 5829 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,64.5 parent: 12 + - uid: 5832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 12 - uid: 5834 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,65.5 parent: 12 + - uid: 5845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,8.5 + parent: 12 - uid: 5878 components: - type: Transform @@ -136433,15 +137081,10 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-21.5 parent: 12 - - uid: 5883 + - uid: 5967 components: - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 5887 - components: - - type: Transform - pos: 58.5,-2.5 + pos: 10.5,-1.5 parent: 12 - uid: 5974 components: @@ -136466,10 +137109,28 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,52.5 parent: 12 + - uid: 6009 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 - uid: 6016 components: - type: Transform - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 6017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 6022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,14.5 parent: 12 - uid: 6055 components: @@ -136808,11 +137469,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 - - uid: 6270 - components: - - type: Transform - pos: 13.5,6.5 - parent: 12 - uid: 6284 components: - type: Transform @@ -136935,7 +137591,17 @@ entities: - uid: 6737 components: - type: Transform - pos: 28.5,-2.5 + pos: 28.5,-9.5 + parent: 12 + - uid: 6748 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 6764 + components: + - type: Transform + pos: 28.5,-8.5 parent: 12 - uid: 6798 components: @@ -136957,16 +137623,65 @@ entities: - type: Transform pos: 34.5,-24.5 parent: 12 + - uid: 6898 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 - uid: 6941 components: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 7199 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 7238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 7241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 12 + - uid: 7245 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7247 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 7262 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 - uid: 7300 components: - type: Transform pos: 29.5,-54.5 parent: 12 + - uid: 7322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 12 - uid: 7379 components: - type: Transform @@ -137129,6 +137844,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-6.5 parent: 12 + - uid: 7548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,14.5 + parent: 12 - uid: 7551 components: - type: Transform @@ -137333,6 +138054,17 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 + - uid: 7826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 12 + - uid: 7832 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 8028 components: - type: Transform @@ -137413,15 +138145,37 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 12 + - uid: 9053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,10.5 + parent: 12 + - uid: 9054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,14.5 + parent: 12 - uid: 9068 components: - type: Transform pos: -58.5,36.5 parent: 12 - - uid: 9308 + - uid: 9402 components: - type: Transform - pos: 78.5,13.5 + pos: 10.5,0.5 + parent: 12 + - uid: 9403 + components: + - type: Transform + pos: 22.5,8.5 + parent: 12 + - uid: 9404 + components: + - type: Transform + pos: 21.5,8.5 parent: 12 - uid: 9428 components: @@ -137439,6 +138193,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,1.5 parent: 12 + - uid: 9483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,16.5 + parent: 12 + - uid: 9491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,11.5 + parent: 12 - uid: 9504 components: - type: Transform @@ -137457,11 +138223,52 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-32.5 parent: 12 + - uid: 9609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,1.5 + parent: 12 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-5.5 + parent: 12 + - uid: 9618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,16.5 + parent: 12 - uid: 9619 components: - type: Transform pos: -0.5,-40.5 parent: 12 + - uid: 9621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 12 + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,16.5 + parent: 12 + - uid: 9669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-5.5 + parent: 12 + - uid: 9709 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 - uid: 9719 components: - type: Transform @@ -137893,7 +138700,12 @@ entities: - uid: 10347 components: - type: Transform - pos: 24.5,1.5 + pos: 57.5,1.5 + parent: 12 + - uid: 10368 + components: + - type: Transform + pos: 63.5,5.5 parent: 12 - uid: 10569 components: @@ -137967,6 +138779,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,22.5 parent: 12 + - uid: 10657 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 - uid: 10675 components: - type: Transform @@ -138039,6 +138856,66 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,16.5 + parent: 12 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-4.5 + parent: 12 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-5.5 + parent: 12 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 12 + - uid: 10887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 12 + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-5.5 + parent: 12 + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 12 + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-5.5 + parent: 12 + - uid: 10923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-5.5 + parent: 12 + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 12 - uid: 10934 components: - type: Transform @@ -138205,37 +139082,33 @@ entities: - type: Transform pos: -5.5,-62.5 parent: 12 - - uid: 11446 - components: - - type: Transform - pos: 9.5,7.5 - parent: 12 - - uid: 11455 + - uid: 11448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,11.5 + pos: 24.5,11.5 parent: 12 - uid: 11459 components: - type: Transform pos: 51.5,11.5 parent: 12 - - uid: 11472 + - uid: 11465 components: - type: Transform - pos: 45.5,9.5 - parent: 12 - - uid: 11473 - components: - - type: Transform - pos: 44.5,9.5 + pos: 48.5,10.5 parent: 12 - uid: 11481 components: - type: Transform pos: -4.5,-62.5 parent: 12 + - uid: 11486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 12 - uid: 11501 components: - type: Transform @@ -138639,23 +139512,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-45.5 parent: 12 - - uid: 12231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 12 - - uid: 12232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,12.5 - parent: 12 - - uid: 12310 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12311 components: - type: Transform @@ -140176,6 +141032,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,79.5 parent: 12 + - uid: 16662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 12 - uid: 16801 components: - type: Transform @@ -140414,7 +141276,8 @@ entities: - uid: 17599 components: - type: Transform - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - uid: 17832 components: @@ -140760,6 +141623,12 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,46.5 parent: 12 + - uid: 19455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 - uid: 19458 components: - type: Transform @@ -140918,6 +141787,12 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 21065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,14.5 + parent: 12 - uid: 21074 components: - type: Transform @@ -140928,7 +141803,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-14.5 + pos: 82.5,13.5 parent: 12 - uid: 21530 components: @@ -140945,6 +141820,12 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 + - uid: 21703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-5.5 + parent: 12 - uid: 21706 components: - type: Transform @@ -140970,11 +141851,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 12 - - uid: 21911 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21968 components: - type: Transform @@ -141073,65 +141949,16 @@ entities: - type: Transform pos: 67.5,14.5 parent: 12 - - uid: 22102 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - - uid: 22110 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - - uid: 22112 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 22113 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - - uid: 22114 - components: - - type: Transform - pos: 80.5,9.5 - parent: 12 - - uid: 22115 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22116 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 22117 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 22120 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 22121 - components: - - type: Transform - pos: 79.5,13.5 - parent: 12 - uid: 22133 components: - type: Transform pos: 62.5,14.5 parent: 12 - - uid: 22151 + - uid: 22158 components: - type: Transform - pos: 80.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,14.5 parent: 12 - uid: 22193 components: @@ -141229,58 +142056,78 @@ entities: rot: 3.141592653589793 rad pos: -30.5,75.5 parent: 12 + - uid: 23165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 12 + - uid: 23412 + components: + - type: Transform + pos: 9.5,0.5 + parent: 12 - uid: 23759 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,61.5 parent: 12 - - uid: 23887 - components: - - type: Transform - pos: 49.5,9.5 - parent: 12 - uid: 23924 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 24452 - components: - - type: Transform - pos: 9.5,2.5 - parent: 12 - uid: 24649 components: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24654 - components: - - type: Transform - pos: 30.5,11.5 - parent: 12 - uid: 24664 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,73.5 parent: 12 + - uid: 25061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-5.5 + parent: 12 + - uid: 25089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,12.5 + parent: 12 + - uid: 25102 + components: + - type: Transform + pos: 63.5,2.5 + parent: 12 - uid: 25103 components: - type: Transform pos: 60.5,-22.5 parent: 12 - - uid: 25191 + - uid: 25192 components: - type: Transform - pos: 14.5,-9.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 12 - - uid: 25331 + - uid: 25193 components: - type: Transform - pos: 47.5,9.5 + rot: 1.5707963267948966 rad + pos: 84.5,-3.5 + parent: 12 + - uid: 25196 + components: + - type: Transform + pos: 33.5,-3.5 parent: 12 - uid: 25389 components: @@ -141346,16 +142193,6 @@ entities: - type: Transform pos: 3.5,16.5 parent: 12 - - uid: 25537 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - uid: 25538 - components: - - type: Transform - pos: 11.5,6.5 - parent: 12 - uid: 25546 components: - type: Transform @@ -141522,11 +142359,29 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 12 + - uid: 26027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 12 + - uid: 26064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 12 - uid: 26068 components: - type: Transform pos: -31.5,-60.5 parent: 12 + - uid: 26103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 - uid: 26106 components: - type: Transform @@ -141555,6 +142410,12 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141803,160 +142664,58 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,67.5 parent: 12 + - uid: 26420 + components: + - type: Transform + pos: 63.5,4.5 + parent: 12 + - uid: 26421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,6.5 + parent: 12 - uid: 26450 components: - type: Transform pos: 25.5,89.5 parent: 12 - - uid: 26471 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 26499 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26500 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26501 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26502 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26503 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26504 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26505 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26523 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26527 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26528 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26531 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26533 - components: - - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26534 - components: - - type: Transform - pos: 70.5,3.5 - parent: 12 - - uid: 26535 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - uid: 26536 components: - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26537 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26538 - components: - - type: Transform - pos: 74.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-5.5 parent: 12 - uid: 26542 components: - type: Transform pos: 26.5,89.5 parent: 12 - - uid: 26563 + - uid: 26546 components: - type: Transform - pos: 6.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 12 + - uid: 26550 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 12 + - uid: 26564 + components: + - type: Transform + pos: 34.5,-3.5 parent: 12 - uid: 26566 components: - type: Transform pos: -22.5,-8.5 parent: 12 - - uid: 26572 + - uid: 26575 components: - type: Transform - pos: 56.5,4.5 - parent: 12 - - uid: 26573 - components: - - type: Transform - pos: 56.5,5.5 - parent: 12 - - uid: 26574 - components: - - type: Transform - pos: 56.5,6.5 + pos: 35.5,-3.5 parent: 12 - uid: 26581 components: @@ -141973,21 +142732,6 @@ entities: - type: Transform pos: 27.5,89.5 parent: 12 - - uid: 26589 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - - uid: 26591 - components: - - type: Transform - pos: 77.5,13.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 26598 components: - type: Transform @@ -142010,35 +142754,68 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,70.5 parent: 12 - - uid: 26651 + - uid: 26620 components: - type: Transform - pos: 80.5,-3.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 12 - - uid: 26686 + - uid: 26621 components: - type: Transform - pos: 59.5,5.5 + rot: -1.5707963267948966 rad + pos: 22.5,4.5 parent: 12 - - uid: 26687 + - uid: 26627 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 24.5,10.5 parent: 12 - - uid: 26688 + - uid: 26632 components: - type: Transform - pos: 63.5,5.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26689 + - uid: 26633 components: - type: Transform - pos: 65.5,5.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26690 + - uid: 26653 components: - type: Transform - pos: 67.5,5.5 + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 + - uid: 26676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 26692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 + - uid: 26696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 12 + - uid: 26716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 + parent: 12 + - uid: 26747 + components: + - type: Transform + pos: 63.5,3.5 parent: 12 - uid: 26758 components: @@ -142069,16 +142846,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26816 + - uid: 26799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-2.5 - parent: 12 - - uid: 26832 - components: - - type: Transform - pos: 6.5,6.5 + pos: 77.5,-5.5 parent: 12 - uid: 26866 components: @@ -142092,26 +142864,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 12 - - uid: 26904 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: 75.5,1.5 - parent: 12 - - uid: 26911 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26967 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 12 - uid: 26973 components: - type: Transform @@ -142123,6 +142875,12 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 12 + - uid: 27018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 12 - uid: 27040 components: - type: Transform @@ -142249,12 +143007,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-22.5 parent: 12 - - uid: 27136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 27161 components: - type: Transform @@ -142282,11 +143034,21 @@ entities: - type: Transform pos: 11.5,12.5 parent: 12 + - uid: 27244 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27248 components: - type: Transform pos: 29.5,76.5 parent: 12 + - uid: 27250 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 27262 components: - type: Transform @@ -142397,12 +143159,6 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 - - uid: 27604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 27629 components: - type: Transform @@ -142435,17 +143191,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 27891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 12 - - uid: 27903 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 27910 components: - type: Transform @@ -142780,12 +143525,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 12 - - uid: 28523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - uid: 28558 components: - type: Transform @@ -142797,80 +143536,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-7.5 parent: 12 - - uid: 28790 + - uid: 29089 components: - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28791 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28792 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28793 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28794 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28795 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28796 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28797 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28798 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28799 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28800 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28801 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28802 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28803 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 29148 - components: - - type: Transform - pos: 49.5,-1.5 + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 12 - uid: 29210 components: @@ -144336,26 +145006,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31512 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31514 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31515 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31603 components: - type: Transform @@ -144433,46 +145083,31 @@ entities: - type: Transform pos: 46.5,13.5 parent: 12 - - uid: 12315 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 21531 components: - type: Transform pos: -1.5,16.5 parent: 12 - - uid: 22147 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - - uid: 26594 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - uid: 27103 components: - type: Transform pos: 56.5,14.5 parent: 12 - - uid: 30489 + - uid: 28674 components: - type: Transform - pos: 33.5,10.5 + pos: 44.5,-2.5 + parent: 12 + - uid: 28921 + components: + - type: Transform + pos: 32.5,10.5 parent: 12 - uid: 30490 components: - type: Transform pos: 44.5,-4.5 parent: 12 - - uid: 30491 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 12 - uid: 30492 components: - type: Transform @@ -145223,6 +145858,20 @@ entities: - type: Transform pos: 12.6497135,57.214436 parent: 12 +- proto: Intellicard + entities: + - uid: 28861 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.43437,-0.48939347 + parent: 12 + - uid: 28862 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -2.5072865,-0.47896957 + parent: 12 - proto: IntercomCommon entities: - uid: 8792 @@ -145280,6 +145929,12 @@ entities: parent: 12 - proto: IntercomEngineering entities: + - uid: 2894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 12 - uid: 5594 components: - type: Transform @@ -145313,11 +145968,22 @@ entities: - type: Transform pos: 43.5,46.5 parent: 12 - - uid: 26064 + - uid: 27326 + components: + - type: Transform + pos: 46.5,0.5 + parent: 12 + - uid: 27352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 12 + - uid: 28770 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 59.5,-0.5 parent: 12 - proto: IntercomMedical entities: @@ -145523,6 +146189,25 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,17.5 parent: 12 +- proto: JetpackBlueFilled + entities: + - uid: 28698 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.52248,-5.5233436 + parent: 12 + - type: GasTank + toggleActionEntity: 28700 + - type: Jetpack + toggleActionEntity: 28699 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28699 + - 28700 - proto: JetpackMiniFilled entities: - uid: 16458 @@ -145616,11 +146301,6 @@ entities: - type: Transform pos: 28.5,22.5 parent: 12 - - uid: 405 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 3808 components: - type: Transform @@ -145732,11 +146412,6 @@ entities: parent: 12 - proto: KnifePlastic entities: - - uid: 11469 - components: - - type: Transform - pos: 8.559147,6.580246 - parent: 12 - uid: 21386 components: - type: Transform @@ -145924,7 +146599,7 @@ entities: - uid: 11014 components: - type: Transform - pos: 47.496155,-2.439421 + pos: 47.426105,-3.4417992 parent: 12 - proto: LightBulbOld entities: @@ -145948,22 +146623,30 @@ entities: - type: Transform pos: -19.24069,2.5948265 parent: 12 -- proto: LockerAtmosphericsFilled +- proto: LiveLetLiveCircuitBoard entities: - - uid: 2929 + - uid: 28853 components: - type: Transform - pos: 52.5,6.5 + rot: -12.566370614359172 rad + pos: 2.6437569,-15.31712 parent: 12 - - uid: 25089 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3021 components: - type: Transform - pos: 51.5,6.5 + pos: 31.5,4.5 parent: 12 - - uid: 26553 + - uid: 7831 components: - type: Transform - pos: 53.5,6.5 + pos: 31.5,2.5 + parent: 12 + - uid: 28844 + components: + - type: Transform + pos: 31.5,3.5 parent: 12 - proto: LockerBooze entities: @@ -146705,11 +147388,6 @@ entities: - type: Transform pos: 2.5,65.5 parent: 12 - - uid: 27312 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - proto: LootSpawnerIndustrial entities: - uid: 21945 @@ -146799,11 +147477,6 @@ entities: - type: Transform pos: 31.5,0.5 parent: 12 - - uid: 28849 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 12 - proto: LootSpawnerMaterialsSupplementary entities: - uid: 5980 @@ -146988,11 +147661,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-53.5 parent: 12 - - uid: 5429 - components: - - type: Transform - pos: 18.5,1.5 - parent: 12 - uid: 15384 components: - type: Transform @@ -147043,6 +147711,68 @@ entities: - type: Transform pos: -42.535183,36.7932 parent: 12 +- proto: MailingUnit + entities: + - uid: 5831 + components: + - type: Transform + pos: 25.5,55.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 5979 + components: + - type: Transform + pos: 39.5,53.5 + parent: 12 + - type: MailingUnit + tag: Freezer + target: Freezer + - uid: 6019 + components: + - type: MetaData + name: mailing unit to chemistry + - type: Transform + pos: 66.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 6209 + components: + - type: MetaData + name: mailing unit to freezer + - type: Transform + pos: 67.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 27002 + components: + - type: Transform + pos: 25.5,56.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 28826 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 12 + - type: MailingUnit + tag: Chemistry + target: Chemistry + - uid: 28827 + components: + - type: Transform + pos: -33.5,50.5 + parent: 12 + - type: MailingUnit + tag: Security + target: Security - proto: MaintenanceFluffSpawner entities: - uid: 1079 @@ -147157,11 +147887,6 @@ entities: - type: Transform pos: -3.5,17.5 parent: 12 - - uid: 13011 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - uid: 24498 components: - type: Transform @@ -147229,11 +147954,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 12 - - uid: 2342 - components: - - type: Transform - pos: 28.5,12.5 - parent: 12 - uid: 6296 components: - type: Transform @@ -147324,6 +148044,11 @@ entities: - type: Transform pos: -7.5,21.5 parent: 12 + - uid: 26584 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 - uid: 28274 components: - type: Transform @@ -147371,47 +148096,6 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 12 -- proto: Mannequin - entities: - - uid: 6209 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2020 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6220 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2021 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6212 - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - proto: Matchbox entities: - uid: 6885 @@ -147621,6 +148305,13 @@ entities: rot: 6.283185307179586 rad pos: 2.7264805,-34.64928 parent: 12 +- proto: MedkitRadiation + entities: + - uid: 8293 + components: + - type: Transform + pos: 59.512062,9.509785 + parent: 12 - proto: MedkitRadiationFilled entities: - uid: 2915 @@ -147628,11 +148319,6 @@ entities: - type: Transform pos: 3.3725653,-32.354176 parent: 12 - - uid: 5050 - components: - - type: Transform - pos: 18.32129,3.6110866 - parent: 12 - uid: 6777 components: - type: Transform @@ -147641,7 +148327,7 @@ entities: - uid: 6778 components: - type: Transform - pos: 11.465142,-19.498817 + pos: 13.616542,-24.438873 parent: 12 - proto: MedkitToxinFilled entities: @@ -147890,10 +148576,10 @@ entities: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 2247 + - uid: 5247 components: - type: Transform - pos: -0.46108937,-15.409082 + pos: 37.682983,4.6129007 parent: 12 - uid: 5914 components: @@ -147920,6 +148606,11 @@ entities: - type: Transform pos: -51.23872,29.37216 parent: 12 + - uid: 22142 + components: + - type: Transform + pos: 60.1837,-0.4900638 + parent: 12 - uid: 23674 components: - type: Transform @@ -147986,6 +148677,11 @@ entities: - type: Transform pos: -54.5,-32.5 parent: 12 + - uid: 5639 + components: + - type: Transform + pos: 26.5,11.5 + parent: 12 - uid: 6197 components: - type: Transform @@ -148001,10 +148697,10 @@ entities: - type: Transform pos: 81.5,-31.5 parent: 12 - - uid: 12011 + - uid: 9319 components: - type: Transform - pos: 39.5,0.5 + pos: 25.5,12.5 parent: 12 - uid: 12122 components: @@ -148026,11 +148722,21 @@ entities: - type: Transform pos: -3.5,11.5 parent: 12 + - uid: 21616 + components: + - type: Transform + pos: 25.5,11.5 + parent: 12 - uid: 22708 components: - type: Transform pos: -55.5,-35.5 parent: 12 + - uid: 23132 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 12 - uid: 23699 components: - type: Transform @@ -148051,25 +148757,15 @@ entities: - type: Transform pos: -2.5,36.5 parent: 12 - - uid: 26576 + - uid: 26423 components: - type: Transform - pos: 53.5,-3.5 + pos: 3.5,-20.5 parent: 12 - - uid: 26890 + - uid: 26429 components: - type: Transform - pos: 53.5,-4.5 - parent: 12 - - uid: 27307 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - - uid: 28945 - components: - - type: Transform - pos: 5.5,-19.5 + pos: 4.5,-20.5 parent: 12 - uid: 29291 components: @@ -148111,6 +148807,34 @@ entities: - type: Transform pos: 29.894995,45.5396 parent: 12 + - uid: 25104 + components: + - type: Transform + parent: 28689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25191 + components: + - type: Transform + parent: 28690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28707 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.708927,9.40214 + parent: 12 + - type: GasTank + toggleActionEntity: 28708 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28708 - uid: 30711 components: - type: Transform @@ -148127,10 +148851,10 @@ entities: - 30712 - proto: NitrousOxideCanister entities: - - uid: 26811 + - uid: 26685 components: - type: Transform - pos: 57.5,-3.5 + pos: 24.5,8.5 parent: 12 - proto: NitrousOxideTankFilled entities: @@ -148209,6 +148933,14 @@ entities: - type: Transform pos: 57.5,46.5 parent: 12 +- proto: NTDefaultCircuitBoard + entities: + - uid: 28854 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3989635,-1.1252534 + parent: 12 - proto: NuclearBomb entities: - uid: 21066 @@ -148224,6 +148956,14 @@ entities: - type: Transform pos: -48.5,69.5 parent: 12 +- proto: NutimovCircuitBoard + entities: + - uid: 28855 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6622753,-15.619799 + parent: 12 - proto: OperatingTable entities: - uid: 1812 @@ -148282,10 +149022,10 @@ entities: - type: Transform pos: -54.5,-29.5 parent: 12 - - uid: 2859 + - uid: 3690 components: - type: Transform - pos: 39.5,1.5 + pos: 27.5,11.5 parent: 12 - uid: 6679 components: @@ -148302,6 +149042,11 @@ entities: - type: Transform pos: 35.5,-30.5 parent: 12 + - uid: 7236 + components: + - type: Transform + pos: 26.5,12.5 + parent: 12 - uid: 7334 components: - type: Transform @@ -148337,6 +149082,11 @@ entities: - type: Transform pos: -2.5,11.5 parent: 12 + - uid: 23361 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 12 - uid: 23698 components: - type: Transform @@ -148357,31 +149107,26 @@ entities: - type: Transform pos: -2.5,37.5 parent: 12 - - uid: 27057 + - uid: 26424 components: - type: Transform - pos: 54.5,-4.5 + pos: 2.5,-20.5 parent: 12 - - uid: 27140 + - uid: 26431 components: - type: Transform - pos: 54.5,-3.5 + pos: 1.5,-20.5 parent: 12 - - uid: 27306 + - uid: 26623 components: - type: Transform - pos: 61.5,6.5 + pos: 27.5,12.5 parent: 12 - uid: 27448 components: - type: Transform pos: -56.5,-35.5 parent: 12 - - uid: 28944 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 12 - uid: 29073 components: - type: Transform @@ -148427,6 +149172,20 @@ entities: actions: !type:Container ents: - 12128 + - uid: 28709 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.55129,9.456535 + parent: 12 + - type: GasTank + toggleActionEntity: 28710 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28710 - uid: 30713 components: - type: Transform @@ -148546,6 +149305,58 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 29970 + components: + - type: Transform + pos: 29.532839,4.411601 + parent: 12 + - type: Paper + content: >+ + [head=2]Standard output pressures for different tanks:[/head] + + ───────────────────────────────────────── + + [color=blue]Oxygen tank[/color] - 21.3 kPA + + [color=red]Nitrogen tank[/color] - 21.3 kPA + + Air tank - 101.3 kPA + + Nitrous oxide tank - 30.4 kPA + + [color=orange]Plasma tank[/color] - 101.3 kPA + + [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA + + + + [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] + + + + + + + + + + + + + + + + + + + + + + + + + + - uid: 31763 components: - type: Transform @@ -148581,8 +149392,7 @@ entities: - uid: 31769 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.729565,5.748849 + pos: 8.563417,-10.653862 parent: 12 - type: Paper content: >+ @@ -148628,6 +149438,7 @@ entities: + - proto: PaperBin10 @@ -148863,56 +149674,60 @@ entities: - type: Transform pos: -6.698526,77.58844 parent: 12 -- proto: ParticleAcceleratorControlBox +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 4668 + - uid: 26740 components: - type: Transform - pos: 20.5,3.5 + pos: 59.5,3.5 parent: 12 - - type: ApcPowerReceiver - needsPower: False -- proto: ParticleAcceleratorEmitterFore +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 4591 + - uid: 24689 components: - type: Transform - pos: 21.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 12 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 4589 + - uid: 26074 components: - type: Transform - pos: 22.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,5.5 parent: 12 -- proto: ParticleAcceleratorEmitterStarboard +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 4590 + - uid: 26491 components: - type: Transform - pos: 20.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 12 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8958 + - uid: 9680 components: - type: Transform - pos: 21.5,6.5 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 parent: 12 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 4671 + - uid: 9703 components: - type: Transform - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: 59.5,4.5 parent: 12 -- proto: ParticleAcceleratorPowerBox +- proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8959 + - uid: 26487 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 60.5,4.5 parent: 12 - proto: PartRodMetal entities: @@ -149337,10 +150152,11 @@ entities: parent: 12 - proto: PlaqueAtmos entities: - - uid: 26895 + - uid: 26842 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 parent: 12 - proto: PlasmaCanister entities: @@ -149354,25 +150170,25 @@ entities: - type: Transform pos: -50.5,-34.5 parent: 12 + - uid: 5636 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 12 - uid: 9741 components: - type: Transform pos: 10.5,13.5 parent: 12 - - uid: 26578 + - uid: 25479 components: - type: Transform - pos: 58.5,-6.5 + pos: 27.5,7.5 parent: 12 - - uid: 27001 + - uid: 26426 components: - type: Transform - pos: 57.5,-6.5 - parent: 12 - - uid: 27308 - components: - - type: Transform - pos: 63.5,6.5 + pos: 27.5,6.5 parent: 12 - uid: 29074 components: @@ -149478,6 +150294,12 @@ entities: - type: Transform pos: 38.555447,-30.430433 parent: 12 + - uid: 25661 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 10.447776,2.5438957 + parent: 12 - uid: 27187 components: - type: Transform @@ -149493,7 +150315,7 @@ entities: - uid: 4062 components: - type: Transform - pos: -42.541058,-20.577986 + pos: -42.47864,-19.642271 parent: 12 - uid: 22198 components: @@ -149595,6 +150417,11 @@ entities: parent: 12 - proto: PortableGeneratorJrPacman entities: + - uid: 149 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 12 - uid: 2978 components: - type: Transform @@ -149640,11 +150467,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 12 - - uid: 27835 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 27837 components: - type: Transform @@ -149658,11 +150480,6 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 28948 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 31448 components: - type: Transform @@ -149677,14 +150494,6 @@ entities: parent: 12 - proto: PortableGeneratorPacman entities: - - uid: 1555 - components: - - type: Transform - anchored: True - pos: 8.5,-11.5 - parent: 12 - - type: Physics - bodyType: Static - uid: 2116 components: - type: Transform @@ -149693,21 +150502,21 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 27309 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 1557 + - uid: 8799 components: - type: Transform anchored: True - pos: 9.5,-11.5 + pos: 40.5,4.5 parent: 12 - type: Physics bodyType: Static +- proto: PortableGeneratorSuperPacman + entities: + - uid: 10701 + components: + - type: Transform + pos: 37.5,0.5 + parent: 12 - proto: PortableScrubber entities: - uid: 1760 @@ -149725,11 +150534,21 @@ entities: - type: Transform pos: -39.5,-30.5 parent: 12 + - uid: 5274 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 12 - uid: 7161 components: - type: Transform pos: 34.5,-30.5 parent: 12 + - uid: 11929 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 - uid: 12631 components: - type: Transform @@ -149740,6 +150559,11 @@ entities: - type: Transform pos: -11.5,24.5 parent: 12 + - uid: 16586 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 18161 components: - type: Transform @@ -149760,15 +150584,20 @@ entities: - type: Transform pos: -18.5,59.5 parent: 12 - - uid: 26784 + - uid: 25480 components: - type: Transform - pos: 76.5,-0.5 + pos: 22.5,7.5 parent: 12 - - uid: 26786 + - uid: 26548 components: - type: Transform - pos: 56.5,2.5 + pos: 25.5,-14.5 + parent: 12 + - uid: 26635 + components: + - type: Transform + pos: 24.5,-14.5 parent: 12 - proto: PosterBroken entities: @@ -149807,11 +150636,10 @@ entities: parent: 12 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 26696 + - uid: 23 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + pos: 25.5,4.5 parent: 12 - proto: PosterContrabandC20r entities: @@ -149841,13 +150669,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-58.5 parent: 12 -- proto: PosterContrabandEAT - entities: - - uid: 366 - components: - - type: Transform - pos: 10.5,4.5 - parent: 12 - proto: PosterContrabandEnlistGorlex entities: - uid: 28268 @@ -149855,6 +150676,21 @@ entities: - type: Transform pos: -51.5,-14.5 parent: 12 +- proto: PosterContrabandHackingGuide + entities: + - uid: 28717 + components: + - type: Transform + pos: 59.5,0.5 + parent: 12 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 6287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 + parent: 12 - proto: PosterContrabandInterdyne entities: - uid: 6802 @@ -149956,6 +150792,13 @@ entities: - type: Transform pos: -2.5,57.5 parent: 12 +- proto: PosterLegitFruitBowl + entities: + - uid: 28712 + components: + - type: Transform + pos: 51.5,7.5 + parent: 12 - proto: PosterLegitIan entities: - uid: 30229 @@ -149998,11 +150841,22 @@ entities: parent: 12 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 2970 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 12 - uid: 11334 components: - type: Transform pos: 28.5,1.5 parent: 12 + - uid: 31910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 12 - proto: PosterLegitSafetyInternals entities: - uid: 11337 @@ -150010,12 +150864,10 @@ entities: - type: Transform pos: -20.5,-1.5 parent: 12 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 21703 + - uid: 28719 components: - type: Transform - pos: 17.5,7.5 + pos: 63.5,7.5 parent: 12 - proto: PosterLegitSafetyMothHardhat entities: @@ -150029,6 +150881,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 12 + - uid: 28718 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 12 - proto: PosterLegitSafetyMothMeth entities: - uid: 30887 @@ -150038,10 +150895,11 @@ entities: parent: 12 - proto: PosterLegitSafetyMothPiping entities: - - uid: 2604 + - uid: 26648 components: - type: Transform - pos: 53.5,0.5 + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 parent: 12 - proto: PosterLegitScience entities: @@ -150162,11 +151020,6 @@ entities: parent: 12 - proto: PottedPlantRandom entities: - - uid: 2066 - components: - - type: Transform - pos: 10.5,2.5 - parent: 12 - uid: 8484 components: - type: Transform @@ -150432,11 +151285,6 @@ entities: - type: Transform pos: 53.5,-29.5 parent: 12 - - uid: 27303 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - proto: PottedPlantRandomPlastic entities: - uid: 26226 @@ -150497,6 +151345,16 @@ entities: - type: Transform pos: 49.463097,47.95464 parent: 12 + - uid: 27238 + components: + - type: Transform + pos: 8.669416,-11.102629 + parent: 12 + - uid: 28864 + components: + - type: Transform + pos: 2.6072974,-0.46769977 + parent: 12 - proto: PowerCellRecharger entities: - uid: 358 @@ -150674,6 +151532,17 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-49.5 parent: 12 + - uid: 28833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 12 + - uid: 28863 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - proto: PowerCellSmall entities: - uid: 4196 @@ -150731,12 +151600,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 12 - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 12 - uid: 1961 components: - type: Transform @@ -150994,11 +151857,16 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-48.5 parent: 12 - - uid: 3553 + - uid: 3628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 + pos: 13.5,-2.5 + parent: 12 + - uid: 3629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 12 - uid: 3776 components: @@ -151047,6 +151915,12 @@ entities: rot: 3.141592653589793 rad pos: -36.5,26.5 parent: 12 + - uid: 5186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 12 - uid: 5216 components: - type: Transform @@ -151065,17 +151939,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,22.5 parent: 12 - - uid: 5312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 12 - - uid: 5324 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 12 - uid: 5325 components: - type: Transform @@ -151111,51 +151974,11 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-17.5 parent: 12 - - uid: 5542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 12 - - uid: 5543 + - uid: 5853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 12 - - uid: 5546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 12 - - uid: 5548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 12 - - uid: 5549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5553 - components: - - type: Transform - pos: 23.5,-0.5 + pos: 10.5,2.5 parent: 12 - uid: 5928 components: @@ -151195,12 +152018,6 @@ entities: - type: Transform pos: 28.5,-30.5 parent: 12 - - uid: 6235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 12 - uid: 6310 components: - type: Transform @@ -151437,12 +152254,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-47.5 parent: 12 - - uid: 9135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 12 - uid: 9299 components: - type: Transform @@ -151504,6 +152315,18 @@ entities: - type: Transform pos: -27.5,34.5 parent: 12 + - uid: 9398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 12 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 12 - uid: 9544 components: - type: Transform @@ -151533,11 +152356,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 12 - - uid: 9618 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 9714 components: - type: Transform @@ -151699,6 +152517,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 12 + - uid: 10908 + components: + - type: Transform + pos: 35.5,4.5 + parent: 12 - uid: 11125 components: - type: Transform @@ -151711,6 +152534,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-50.5 parent: 12 + - uid: 11360 + components: + - type: Transform + pos: 59.5,6.5 + parent: 12 - uid: 12016 components: - type: Transform @@ -151747,6 +152575,18 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,29.5 parent: 12 + - uid: 12261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 12 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 - uid: 12715 components: - type: Transform @@ -152672,12 +153512,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 12 - - uid: 19541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 12 - uid: 19549 components: - type: Transform @@ -152700,6 +153534,12 @@ entities: - type: Transform pos: 52.5,-13.5 parent: 12 + - uid: 20161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 12 - uid: 20906 components: - type: Transform @@ -152793,11 +153633,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,39.5 parent: 12 - - uid: 22526 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 24103 components: - type: Transform @@ -152842,37 +153677,85 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-35.5 parent: 12 - - uid: 26547 + - uid: 26437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 + pos: 27.5,12.5 parent: 12 - - uid: 26548 + - uid: 26577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 26579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 29.5,-11.5 parent: 12 - - uid: 26549 + - uid: 26746 components: - type: Transform - pos: 55.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 parent: 12 - - uid: 26632 + - uid: 26855 components: - type: Transform - pos: 62.5,4.5 + rot: 3.141592653589793 rad + pos: 59.5,2.5 parent: 12 - - uid: 27132 + - uid: 26857 components: - type: Transform - pos: 55.5,2.5 + pos: 58.5,12.5 parent: 12 - - uid: 27135 + - uid: 26975 components: - type: Transform - pos: 69.5,2.5 + pos: 68.5,12.5 + parent: 12 + - uid: 26976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - uid: 26978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - uid: 26980 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 26981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,8.5 + parent: 12 + - uid: 26982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,0.5 + parent: 12 + - uid: 26983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-3.5 + parent: 12 + - uid: 26999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-3.5 parent: 12 - uid: 27209 components: @@ -152880,18 +153763,40 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,21.5 parent: 12 - - uid: 27892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-5.5 - parent: 12 - uid: 28240 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,19.5 parent: 12 + - uid: 28650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 12 + - uid: 28668 + components: + - type: Transform + pos: 53.5,2.5 + parent: 12 + - uid: 28669 + components: + - type: Transform + pos: 29.5,0.5 + parent: 12 + - uid: 28670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 12 + - uid: 28671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 29077 components: - type: Transform @@ -153073,6 +153978,12 @@ entities: - type: Transform pos: -26.5,-33.5 parent: 12 + - uid: 2138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 12 - uid: 2264 components: - type: Transform @@ -153103,12 +154014,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-33.5 parent: 12 - - uid: 3626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 12 - uid: 4210 components: - type: Transform @@ -153121,11 +154026,23 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-33.5 parent: 12 - - uid: 4947 + - uid: 4645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 12 + - uid: 4677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 12 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 parent: 12 - uid: 4980 components: @@ -153133,11 +154050,11 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 12 - - uid: 5118 + - uid: 5045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 parent: 12 - uid: 5124 components: @@ -153174,11 +154091,17 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 12 - - uid: 5407 + - uid: 5183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,7.5 + pos: 25.5,-2.5 + parent: 12 + - uid: 5185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 parent: 12 - uid: 5417 components: @@ -153186,29 +154109,24 @@ entities: rot: 3.141592653589793 rad pos: 9.5,13.5 parent: 12 + - uid: 5543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 12 + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 12 - uid: 5881 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 12 - - uid: 5982 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 12 - - uid: 6199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 12 - - uid: 6354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,3.5 - parent: 12 - uid: 6758 components: - type: Transform @@ -153219,12 +154137,6 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 6764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 12 - uid: 6834 components: - type: Transform @@ -153253,6 +154165,12 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,56.5 parent: 12 + - uid: 7285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 12 - uid: 7329 components: - type: Transform @@ -153425,6 +154343,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,68.5 parent: 12 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 12 - uid: 9548 components: - type: Transform @@ -153436,11 +154360,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,11.5 parent: 12 - - uid: 9629 + - uid: 9853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,0.5 + pos: 1.5,-19.5 parent: 12 - uid: 9907 components: @@ -153453,54 +154377,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-19.5 parent: 12 - - uid: 10376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 12 - - uid: 10381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 12 - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 12 - - uid: 10656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 12 - uid: 10803 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 12 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 12 - uid: 10886 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,38.5 parent: 12 - - uid: 10887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 12 - uid: 11062 components: - type: Transform @@ -153535,6 +154429,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,9.5 parent: 12 + - uid: 12711 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 12 - uid: 12922 components: - type: Transform @@ -153606,6 +154505,12 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 12 + - uid: 16365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 12 - uid: 16554 components: - type: Transform @@ -153842,24 +154747,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 - - uid: 25413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 12 - uid: 25586 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-24.5 parent: 12 - - uid: 25666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 12 - uid: 26109 components: - type: Transform @@ -153877,22 +154770,32 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 - - uid: 26484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 12 - uid: 26560 components: - type: Transform pos: 53.5,6.5 parent: 12 - - uid: 27005 + - uid: 26851 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 12 + - uid: 26852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 12 + - uid: 26853 + components: + - type: Transform + pos: 16.5,10.5 + parent: 12 + - uid: 27030 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: 61.5,-0.5 parent: 12 - uid: 27067 components: @@ -153900,61 +154803,12 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-11.5 parent: 12 - - uid: 27138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 - parent: 12 - - uid: 27139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,0.5 - parent: 12 - - uid: 27141 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27142 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 27143 - components: - - type: Transform - pos: 63.5,8.5 - parent: 12 - - uid: 27144 - components: - - type: Transform - pos: 61.5,8.5 - parent: 12 - - uid: 27145 - components: - - type: Transform - pos: 59.5,8.5 - parent: 12 - - uid: 27151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,0.5 - parent: 12 - uid: 27156 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-7.5 parent: 12 - - uid: 27160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,3.5 - parent: 12 - uid: 27170 components: - type: Transform @@ -153967,6 +154821,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,21.5 parent: 12 + - uid: 27315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 12 - uid: 27852 components: - type: Transform @@ -153996,11 +154856,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 12 - - uid: 28530 + - uid: 28523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 42.5,-7.5 parent: 12 - uid: 28531 components: @@ -154012,11 +154872,27 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 12 - - uid: 29094 + - uid: 28682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 12 + - uid: 28745 + components: + - type: Transform + pos: 19.5,7.5 + parent: 12 + - uid: 28753 + components: + - type: Transform + pos: 16.5,5.5 + parent: 12 + - uid: 28920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 parent: 12 - uid: 29285 components: @@ -154182,12 +155058,6 @@ entities: - type: Transform pos: -35.5,-37.5 parent: 12 - - uid: 2338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - uid: 2645 components: - type: Transform @@ -154240,6 +155110,11 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 12 + - uid: 4608 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 12 - uid: 4707 components: - type: Transform @@ -154251,15 +155126,15 @@ entities: - type: Transform pos: 5.5,61.5 parent: 12 - - uid: 5054 + - uid: 5129 components: - type: Transform - pos: 18.5,3.5 + pos: 61.5,-0.5 parent: 12 - - uid: 5601 + - uid: 5270 components: - type: Transform - pos: 8.5,-8.5 + pos: 37.5,4.5 parent: 12 - uid: 5873 components: @@ -154333,11 +155208,6 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 12 - - uid: 9491 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - uid: 9599 components: - type: Transform @@ -154489,12 +155359,28 @@ entities: - type: Transform pos: -50.5,38.5 parent: 12 + - uid: 21933 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 12 + - uid: 21976 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 12 - uid: 22018 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 12 + - uid: 22102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 12 - uid: 22406 components: - type: Transform @@ -154533,6 +155419,11 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,46.5 parent: 12 + - uid: 24333 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 12 - uid: 24477 components: - type: Transform @@ -154550,21 +155441,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-34.5 parent: 12 - - uid: 25196 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - uid: 25327 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 - - uid: 25532 + - uid: 25682 components: - type: Transform - pos: 7.5,-3.5 + pos: 57.5,9.5 parent: 12 - uid: 25684 components: @@ -154737,6 +155623,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,38.5 parent: 12 + - uid: 26419 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 + - uid: 26549 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 26571 components: - type: Transform @@ -154749,10 +155645,10 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 - - uid: 27244 + - uid: 27000 components: - type: Transform - pos: 55.5,2.5 + pos: 54.5,-6.5 parent: 12 - uid: 27397 components: @@ -154777,6 +155673,21 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 + - uid: 28704 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28759 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 + - uid: 28760 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 - uid: 29596 components: - type: Transform @@ -154819,52 +155730,60 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 12 +- proto: RadiationCollectorFlatpack + entities: + - uid: 4727 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.41483,-0.5951568 + parent: 12 - proto: RadiationCollectorFullTank entities: - - uid: 3823 + - uid: 26077 components: - type: Transform - pos: 16.5,-4.5 + pos: 72.5,12.5 parent: 12 - - uid: 9450 + - uid: 26157 components: - type: Transform - pos: 26.5,-4.5 + pos: 70.5,12.5 parent: 12 - - uid: 9856 + - uid: 26158 components: - type: Transform - pos: 16.5,-8.5 + pos: 80.5,4.5 parent: 12 - - uid: 9858 + - uid: 26159 components: - type: Transform - pos: 26.5,-8.5 + pos: 74.5,12.5 parent: 12 - - uid: 27256 + - uid: 26160 components: - type: Transform - pos: 16.5,-6.5 + pos: 80.5,2.5 parent: 12 - - uid: 27352 + - uid: 26522 components: - type: Transform - pos: 26.5,-6.5 + pos: 74.5,-3.5 parent: 12 - - uid: 28999 + - uid: 26526 components: - type: Transform - pos: 19.5,-11.5 + pos: 70.5,-3.5 parent: 12 - - uid: 29000 + - uid: 26796 components: - type: Transform - pos: 23.5,-11.5 + pos: 80.5,6.5 parent: 12 - - uid: 29004 + - uid: 26797 components: - type: Transform - pos: 21.5,-11.5 + pos: 72.5,-3.5 parent: 12 - proto: RadioHandheld entities: @@ -154970,39 +155889,11 @@ entities: - type: Transform pos: -31.5,-9.5 parent: 12 - - uid: 2968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 12 - uid: 4065 components: - type: Transform pos: -14.5,-45.5 parent: 12 - - uid: 4876 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 4877 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 12 - - uid: 4885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 12 - - uid: 4902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 12 - uid: 6079 components: - type: Transform @@ -155216,6 +156107,28 @@ entities: - type: Transform pos: 63.5,56.5 parent: 12 + - uid: 28688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 12 + - uid: 28695 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28756 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 + - uid: 28765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-2.5 + parent: 12 - uid: 29605 components: - type: Transform @@ -155381,12 +156294,6 @@ entities: parent: 12 - proto: RailingCornerSmall entities: - - uid: 4854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 12 - uid: 6053 components: - type: Transform @@ -155504,11 +156411,6 @@ entities: parent: 12 - proto: RandomDrinkGlass entities: - - uid: 397 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 12 - uid: 15069 components: - type: Transform @@ -155539,11 +156441,6 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 - - uid: 29347 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 12 - uid: 29353 components: - type: Transform @@ -155551,11 +156448,6 @@ entities: parent: 12 - proto: RandomFoodMeal entities: - - uid: 2138 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 23547 components: - type: Transform @@ -155573,11 +156465,6 @@ entities: parent: 12 - proto: RandomFoodSingle entities: - - uid: 407 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 15419 components: - type: Transform @@ -155622,11 +156509,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 19860 components: - type: Transform @@ -155707,6 +156589,11 @@ entities: - type: Transform pos: 34.5,21.5 parent: 12 + - uid: 31888 + components: + - type: Transform + pos: 41.5,4.5 + parent: 12 - proto: RandomPosterContraband entities: - uid: 2344 @@ -155714,11 +156601,6 @@ entities: - type: Transform pos: 41.5,-19.5 parent: 12 - - uid: 2509 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 8334 components: - type: Transform @@ -155734,12 +156616,6 @@ entities: - type: Transform pos: 34.5,14.5 parent: 12 - - uid: 15007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 12 - uid: 15181 components: - type: Transform @@ -155816,6 +156692,17 @@ entities: - type: Transform pos: -10.5,-31.5 parent: 12 + - uid: 26824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,15.5 + parent: 12 + - uid: 26825 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 12 - uid: 29354 components: - type: Transform @@ -156121,12 +157008,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 12 - - uid: 24333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 12 - uid: 24339 components: - type: Transform @@ -156256,21 +157137,11 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 12 - - uid: 697 - components: - - type: Transform - pos: 31.5,10.5 - parent: 12 - uid: 5858 components: - type: Transform pos: 36.5,14.5 parent: 12 - - uid: 5967 - components: - - type: Transform - pos: 7.5,4.5 - parent: 12 - uid: 6153 components: - type: Transform @@ -156291,11 +157162,6 @@ entities: - type: Transform pos: 40.5,16.5 parent: 12 - - uid: 9452 - components: - - type: Transform - pos: 16.5,0.5 - parent: 12 - uid: 12045 components: - type: Transform @@ -156337,11 +157203,6 @@ entities: - type: Transform pos: -52.5,60.5 parent: 12 - - uid: 23982 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -156807,11 +157668,6 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 12 - uid: 24457 components: - type: Transform @@ -156927,11 +157783,6 @@ entities: - type: Transform pos: -38.5,30.5 parent: 12 - - uid: 26074 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 12 - uid: 31146 components: - type: Transform @@ -157034,11 +157885,6 @@ entities: - type: Transform pos: -13.5,23.5 parent: 12 - - uid: 19311 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 12 - uid: 22401 components: - type: Transform @@ -157079,11 +157925,6 @@ entities: - type: Transform pos: -6.5,43.5 parent: 12 - - uid: 27313 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - proto: RandomVendingDrinks entities: - uid: 4172 @@ -157153,11 +157994,6 @@ entities: parent: 12 - proto: RandomVendingSnacks entities: - - uid: 404 - components: - - type: Transform - pos: 9.5,4.5 - parent: 12 - uid: 4173 components: - type: Transform @@ -157317,149 +158153,237 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-21.5 parent: 12 + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 2573 + components: + - type: Transform + pos: 11.5,1.5 + parent: 12 - uid: 2872 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,16.5 parent: 12 + - uid: 4606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-4.5 + parent: 12 + - uid: 4647 + components: + - type: Transform + pos: 11.5,3.5 + parent: 12 + - uid: 4653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 12 + - uid: 4672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 12 + - uid: 4795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 12 + - uid: 7086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 7203 + components: + - type: Transform + pos: 11.5,2.5 + parent: 12 + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 7228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 12 + - uid: 7310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 + - uid: 9436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,3.5 + parent: 12 + - uid: 9588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,5.5 + parent: 12 - uid: 9721 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,14.5 parent: 12 - - uid: 23155 + - uid: 10346 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 + - uid: 10656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: 63.5,4.5 parent: 12 - - uid: 23156 + - uid: 23116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 57.5,1.5 parent: 12 - - uid: 23157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 12 - - uid: 23161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 12 - - uid: 23162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 12 - - uid: 23163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-8.5 - parent: 12 - - uid: 23164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-9.5 - parent: 12 - - uid: 23165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 12 - - uid: 23166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 12 - - uid: 23167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 12 - - uid: 23173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-1.5 - parent: 12 - - uid: 23174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 12 - - uid: 23175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 12 - - uid: 24565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 12 - - uid: 24566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 12 - - uid: 24567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-10.5 - parent: 12 - - uid: 25416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 12 - - uid: 26709 + - uid: 26553 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,5.5 + pos: 56.5,4.5 parent: 12 - - uid: 26969 + - uid: 26572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,6.5 + parent: 12 + - uid: 26573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,2.5 + parent: 12 + - uid: 26613 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,5.5 + pos: 56.5,5.5 parent: 12 - - uid: 26970 + - uid: 26639 + components: + - type: Transform + pos: 9.5,0.5 + parent: 12 + - uid: 26640 + components: + - type: Transform + pos: 10.5,0.5 + parent: 12 + - uid: 26672 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 + - uid: 26738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,5.5 + pos: 56.5,6.5 parent: 12 - - uid: 26971 + - uid: 26800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,5.5 + rot: 1.5707963267948966 rad + pos: 51.5,1.5 parent: 12 - - uid: 26976 + - uid: 26834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,5.5 + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 12 + - uid: 26841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-7.5 + parent: 12 + - uid: 26854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 12 + - uid: 26856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 12 + - uid: 26926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 12 + - uid: 26927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 12 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 12 + - uid: 26964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 12 + - uid: 26965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 12 + - uid: 29002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 12 + - uid: 29003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 12 + - uid: 29149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-0.5 parent: 12 - proto: ReinforcedWindow entities: @@ -157869,11 +158793,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-34.5 parent: 12 - - uid: 897 - components: - - type: Transform - pos: 6.5,7.5 - parent: 12 - uid: 900 components: - type: Transform @@ -158022,21 +158941,17 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 7.5,7.5 - parent: 12 - - uid: 1350 - components: - - type: Transform - pos: 8.5,7.5 - parent: 12 - uid: 1962 components: - type: Transform pos: -22.5,63.5 parent: 12 + - uid: 2242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 12 - uid: 2454 components: - type: Transform @@ -158219,6 +159134,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-27.5 parent: 12 + - uid: 2981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 12 - uid: 3068 components: - type: Transform @@ -158265,6 +159186,18 @@ entities: - type: Transform pos: -47.5,3.5 parent: 12 + - uid: 4175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 4314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 - uid: 4399 components: - type: Transform @@ -158360,37 +159293,21 @@ entities: - type: Transform pos: 15.5,-17.5 parent: 12 - - uid: 4761 + - uid: 4581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 21.5,-11.5 parent: 12 - - uid: 4765 + - uid: 4582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 12 - - uid: 4935 + - uid: 5049 components: - type: Transform - pos: 18.5,8.5 - parent: 12 - - uid: 4936 - components: - - type: Transform - pos: 19.5,8.5 - parent: 12 - - uid: 4957 - components: - - type: Transform - pos: 21.5,7.5 - parent: 12 - - uid: 4958 - components: - - type: Transform - pos: 22.5,7.5 + pos: 10.5,-1.5 parent: 12 - uid: 5084 components: @@ -158408,27 +159325,12 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - uid: 5120 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 12 - - uid: 5121 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 5126 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - uid: 5135 components: - type: Transform @@ -158441,11 +159343,43 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-38.5 parent: 12 + - uid: 5223 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 12 + - uid: 5224 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5225 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 - uid: 5321 components: - type: Transform pos: -31.5,-45.5 parent: 12 + - uid: 5324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 12 + - uid: 5406 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 12 - uid: 5439 components: - type: Transform @@ -158482,15 +159416,86 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 - - uid: 5853 + - uid: 5477 components: - type: Transform - pos: 13.5,6.5 + pos: 36.5,-3.5 parent: 12 - - uid: 5855 + - uid: 5479 components: - type: Transform - pos: 11.5,6.5 + pos: 34.5,-3.5 + parent: 12 + - uid: 5546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 5547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 5548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5713 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 5714 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 5719 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5797 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 5799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 5841 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 5851 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 5856 + components: + - type: Transform + pos: 13.5,-0.5 parent: 12 - uid: 5880 components: @@ -158503,6 +159508,16 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 5992 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 5996 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 - uid: 5998 components: - type: Transform @@ -158520,6 +159535,33 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-3.5 parent: 12 + - uid: 6010 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 6011 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 6018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 6028 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 - uid: 6052 components: - type: Transform @@ -158934,6 +159976,21 @@ entities: - type: Transform pos: -46.5,3.5 parent: 12 + - uid: 7201 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7244 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7246 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 12 - uid: 7313 components: - type: Transform @@ -159150,12 +160207,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 - - uid: 7789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - uid: 8017 components: - type: Transform @@ -159303,6 +160354,24 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-50.5 parent: 12 + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 12 + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 12 - uid: 9172 components: - type: Transform @@ -159355,6 +160424,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-59.5 parent: 12 + - uid: 9415 + components: + - type: Transform + pos: 21.5,8.5 + parent: 12 - uid: 9532 components: - type: Transform @@ -159383,12 +160457,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 9676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 9678 components: - type: Transform @@ -159401,12 +160469,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-13.5 parent: 12 - - uid: 9956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 10014 components: - type: Transform @@ -159831,11 +160893,6 @@ entities: - type: Transform pos: 29.5,-54.5 parent: 12 - - uid: 10346 - components: - - type: Transform - pos: 57.5,-2.5 - parent: 12 - uid: 10572 components: - type: Transform @@ -159926,6 +160983,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 - uid: 10896 components: - type: Transform @@ -159936,11 +160999,6 @@ entities: - type: Transform pos: 0.5,1.5 parent: 12 - - uid: 11018 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 11029 components: - type: Transform @@ -160036,11 +161094,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 12 - - uid: 11209 - components: - - type: Transform - pos: 6.5,6.5 - parent: 12 - uid: 11251 components: - type: Transform @@ -160431,11 +161484,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-44.5 parent: 12 - - uid: 12312 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12313 components: - type: Transform @@ -161630,6 +162678,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,60.5 parent: 12 + - uid: 17773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 - uid: 17839 components: - type: Transform @@ -161991,11 +163045,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-50.5 parent: 12 - - uid: 19886 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - uid: 20089 components: - type: Transform @@ -162006,6 +163055,11 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 + - uid: 20543 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 20778 components: - type: Transform @@ -162027,11 +163081,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21888 components: - type: Transform @@ -162101,6 +163150,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 12 + - uid: 22106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 - uid: 22314 components: - type: Transform @@ -162140,6 +163195,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,22.5 parent: 12 + - uid: 23164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 12 - uid: 23710 components: - type: Transform @@ -162225,10 +163286,15 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 - - uid: 24453 + - uid: 24565 components: - type: Transform - pos: 9.5,7.5 + pos: 3.5,-21.5 + parent: 12 + - uid: 24655 + components: + - type: Transform + pos: 22.5,8.5 parent: 12 - uid: 25384 components: @@ -162371,135 +163437,28 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 12 - - uid: 26415 + - uid: 26463 components: - type: Transform - pos: 74.5,6.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 12 - - uid: 26492 + - uid: 26466 components: - type: Transform - pos: 73.5,5.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - - uid: 26493 + - uid: 26484 components: - type: Transform - pos: 72.5,5.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 parent: 12 - - uid: 26494 + - uid: 26504 components: - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26496 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26497 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26498 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26507 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26508 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26509 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26510 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26511 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26512 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26513 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26514 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26515 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26516 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26517 - components: - - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26518 - components: - - type: Transform - pos: 70.5,3.5 - parent: 12 - - uid: 26519 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26521 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26522 - components: - - type: Transform - pos: 74.5,3.5 - parent: 12 - - uid: 26544 - components: - - type: Transform - pos: 56.5,4.5 - parent: 12 - - uid: 26545 - components: - - type: Transform - pos: 56.5,5.5 - parent: 12 - - uid: 26546 - components: - - type: Transform - pos: 56.5,6.5 + pos: 33.5,-3.5 parent: 12 - uid: 26556 components: @@ -162513,6 +163472,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 12 + - uid: 26619 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 12 - uid: 26641 components: - type: Transform @@ -162525,45 +163489,17 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 12 - - uid: 26790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 26791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - uid: 26792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 12 - uid: 26798 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 26909 + - uid: 26809 components: - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26936 - components: - - type: Transform - pos: 75.5,1.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 12 - uid: 27007 components: @@ -162582,6 +163518,11 @@ entities: - type: Transform pos: 4.5,20.5 parent: 12 + - uid: 27243 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27289 components: - type: Transform @@ -162777,107 +163718,6 @@ entities: - type: Transform pos: -4.5,-62.5 parent: 12 - - uid: 28785 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 28786 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - uid: 28787 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - uid: 28788 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - uid: 28813 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28814 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28815 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28816 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28817 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28818 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 28819 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28820 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28821 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28822 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 28823 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28824 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28825 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28826 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28827 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 12 - uid: 29069 components: - type: Transform @@ -162902,17 +163742,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,0.5 parent: 12 - - uid: 29092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-1.5 - parent: 12 - - uid: 29149 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 29176 components: - type: Transform @@ -163093,6 +163922,12 @@ entities: rot: 3.141592653589793 rad pos: -43.5,73.5 parent: 12 + - uid: 29722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 12 - uid: 29863 components: - type: Transform @@ -163426,26 +164261,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31516 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31517 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31518 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31519 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31628 components: - type: Transform @@ -163621,6 +164436,14 @@ entities: actions: !type:Container ents: - 19882 +- proto: RobocopCircuitBoard + entities: + - uid: 28858 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3752384,-15.493168 + parent: 12 - proto: RollerBedSpawnFolded entities: - uid: 3815 @@ -163819,6 +164642,11 @@ entities: - type: Transform pos: -20.5,-48.5 parent: 12 + - uid: 2928 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 - uid: 3223 components: - type: Transform @@ -163839,6 +164667,12 @@ entities: - type: Transform pos: -36.5,-43.5 parent: 12 + - uid: 5814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-14.5 + parent: 12 - uid: 8444 components: - type: Transform @@ -163854,11 +164688,6 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 12 - - uid: 10368 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 12 - uid: 16494 components: - type: Transform @@ -163975,11 +164804,6 @@ entities: - type: Transform pos: 52.5,60.5 parent: 12 - - uid: 24445 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 12 - uid: 25289 components: - type: Transform @@ -164032,12 +164856,6 @@ entities: parent: 12 - proto: Screwdriver entities: - - uid: 7310 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 18.692007,3.512633 - parent: 12 - uid: 9237 components: - type: Transform @@ -164134,13 +164952,6 @@ entities: - type: Transform pos: 49.417187,48.49522 parent: 12 -- proto: SheetPlasma - entities: - - uid: 5503 - components: - - type: Transform - pos: 8.360869,-8.424053 - parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164150,13 +164961,6 @@ entities: parent: 12 - type: Stack count: 5 - - uid: 27218 - components: - - type: Transform - pos: 72.55791,-5.408911 - parent: 12 - - type: Stack - count: 5 - proto: SheetPlasma10 entities: - uid: 28215 @@ -164164,6 +164968,14 @@ entities: - type: Transform pos: -35.41417,-37.542362 parent: 12 + - uid: 29092 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.49274,4.534418 + parent: 12 + - type: Stack + count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164208,6 +165020,12 @@ entities: - type: Transform pos: -31.500504,-18.592041 parent: 12 + - uid: 4475 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 29.48155,2.7698662 + parent: 12 - uid: 4725 components: - type: Transform @@ -164258,28 +165076,28 @@ entities: - uid: 24481 components: - type: Transform - pos: 71.28976,-5.302378 + rot: -18.84955592153876 rad + pos: 29.572147,2.9947028 parent: 12 - - uid: 25105 + - uid: 26547 components: - type: Transform - rot: -6.283185307179586 rad - pos: 52.553905,2.5134444 + pos: 11.470082,-2.5260608 parent: 12 - - uid: 26921 + - uid: 29969 components: - type: Transform - pos: 71.74288,-5.443003 + pos: 8.556273,-9.731031 parent: 12 - proto: SheetUranium1 entities: - - uid: 27316 + - uid: 9481 components: - type: Transform - pos: 8.673369,-8.642803 + pos: 37.50514,4.4669657 parent: 12 - type: Stack - count: 10 + count: 5 - proto: ShelfBar entities: - uid: 22816 @@ -164726,119 +165544,64 @@ entities: parent: 12 - proto: ShuttersRadiationOpen entities: - - uid: 1556 + - uid: 249 + components: + - type: Transform + pos: 57.5,1.5 + parent: 12 + - uid: 5027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + pos: 56.5,6.5 parent: 12 - - uid: 4996 + - uid: 11019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,4.5 + parent: 12 + - uid: 22100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-6.5 + pos: 56.5,5.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5043 + - uid: 23161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 + - uid: 26414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,5.5 + parent: 12 + - uid: 26461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,6.5 + parent: 12 + - uid: 26490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,3.5 + parent: 12 + - uid: 26578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,2.5 + parent: 12 + - uid: 26596 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 9865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 12 - - uid: 9866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-1.5 - parent: 12 - - uid: 9867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 12 - - uid: 9868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 12 - - uid: 10915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 12 - - uid: 22288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + pos: 57.5,7.5 parent: 12 - proto: ShuttersWindow entities: @@ -164949,6 +165712,20 @@ entities: linkedPorts: 16503: - Pressed: Toggle + - uid: 28739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 574 @@ -165006,48 +165783,6 @@ entities: - Pressed: Open 2550: - Pressed: Open - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 5043: - - Pressed: Toggle - 5044: - - Pressed: Toggle - 5045: - - Pressed: Toggle - 4996: - - Pressed: Toggle - 5046: - - Pressed: Toggle - 5047: - - Pressed: Toggle - 5089: - - Pressed: Toggle - 5090: - - Pressed: Toggle - 5091: - - Pressed: Toggle - 9868: - - Pressed: Toggle - 9865: - - Pressed: Toggle - 9866: - - Pressed: Toggle - 9867: - - Pressed: Toggle - 1556: - - Pressed: Toggle - 22288: - - Pressed: Toggle - 10915: - - Pressed: Toggle - uid: 5541 components: - type: Transform @@ -165074,6 +165809,19 @@ entities: - Pressed: Toggle 24309: - Pressed: Toggle + - uid: 5629 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - uid: 5976 components: - type: Transform @@ -165282,22 +166030,6 @@ entities: - Pressed: Toggle 18857: - Pressed: Toggle - - uid: 19185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 5528: - - Pressed: Toggle - 5226: - - Pressed: Toggle - 5225: - - Pressed: Toggle - 5238: - - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -165368,34 +166100,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 - - uid: 27212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - - uid: 27213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - uid: 27247 components: - type: Transform @@ -165435,6 +166139,48 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 28737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 26537: + - Pressed: Toggle + 26072: + - Pressed: Toggle + 26594: + - Pressed: Toggle + - uid: 28738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 249: + - Pressed: Toggle + 23161: + - Pressed: Toggle + 22100: + - Pressed: Toggle + 5027: + - Pressed: Toggle + 26596: + - Pressed: Toggle + 26461: + - Pressed: Toggle + 26414: + - Pressed: Toggle + 11019: + - Pressed: Toggle + 26490: + - Pressed: Toggle + 26578: + - Pressed: Toggle - uid: 29344 components: - type: Transform @@ -165523,11 +166269,21 @@ entities: parent: 12 - proto: SignAtmos entities: - - uid: 23412 + - uid: 16661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,0.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 12 + - uid: 26433 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 12 + - uid: 26465 + components: + - type: Transform + pos: 21.5,-15.5 parent: 12 - proto: SignBar entities: @@ -165594,12 +166350,32 @@ entities: parent: 12 - proto: SignCans entities: - - uid: 21313 + - uid: 7234 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 12 + - uid: 26631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 12 +- proto: SignCansScience + entities: + - uid: 26971 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -47.5,-30.5 parent: 12 + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 12 - proto: SignCargo entities: - uid: 21316 @@ -165650,11 +166426,6 @@ entities: - type: Transform pos: -5.5,46.5 parent: 12 - - uid: 21648 - components: - - type: Transform - pos: -7.5,52.5 - parent: 12 - proto: SignCryogenics entities: - uid: 2800 @@ -165669,11 +166440,13 @@ entities: - type: Transform pos: -49.5,-36.5 parent: 12 - - uid: 26121 +- proto: SignDirectionalAtmos + entities: + - uid: 29965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,12.5 + rot: -1.5707963267948966 rad + pos: 28.5,4.5 parent: 12 - proto: SignDirectionalBar entities: @@ -165890,33 +166663,47 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-6.5 - parent: 12 - uid: 2261 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,75.5 parent: 12 + - uid: 8977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,0.5 + parent: 12 + - uid: 9016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-5.5 + parent: 12 + - uid: 9017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 9667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,14.5 + parent: 12 + - uid: 9668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 - uid: 11451 components: - type: Transform pos: -55.5,39.5 parent: 12 - - uid: 16447 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - - uid: 19555 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - uid: 19815 components: - type: Transform @@ -165950,12 +166737,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,75.5 parent: 12 - - uid: 26802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-6.5 - parent: 12 - uid: 27097 components: - type: Transform @@ -165969,30 +166750,24 @@ entities: parent: 12 - proto: SignEngine entities: - - uid: 4715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 12 - uid: 18712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 19836 + - uid: 27242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,2.5 + pos: 32.5,-0.5 parent: 12 - proto: SignEngineering entities: - - uid: 3709 + - uid: 500 components: - type: Transform - pos: 15.5,8.5 + pos: 41.5,-2.5 parent: 12 - uid: 21084 components: @@ -166000,6 +166775,12 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 12 + - uid: 28649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 12 - proto: SignEscapePods entities: - uid: 6282 @@ -166043,18 +166824,24 @@ entities: parent: 12 - proto: SignFlammable entities: - - uid: 16521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,5.5 - parent: 12 - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 12 + - uid: 26428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 12 + - uid: 26430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 12 - proto: SignGravity entities: - uid: 20141 @@ -166147,6 +166934,32 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,55.5 parent: 12 +- proto: SignLaserMed + entities: + - uid: 28533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,13.5 + parent: 12 + - uid: 28534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,13.5 + parent: 12 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-4.5 + parent: 12 + - uid: 28648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 12 - proto: SignLawyer entities: - uid: 18903 @@ -166235,45 +167048,22 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 12 -- proto: SignRadiation - entities: - - uid: 6836 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 12 - - uid: 10201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 12 - - uid: 10249 - components: - - type: Transform - pos: 23.5,6.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 12 - proto: SignRadiationMed entities: - - uid: 6779 + - uid: 9710 components: - type: Transform - pos: 28.5,-3.5 + pos: 56.5,1.5 parent: 12 - - uid: 6780 + - uid: 11338 components: - type: Transform - pos: 28.5,-11.5 + pos: 61.5,-2.5 parent: 12 - - uid: 6781 + - uid: 28925 components: - type: Transform - pos: 14.5,-11.5 + pos: 63.5,9.5 parent: 12 - proto: SignReception entities: @@ -166306,6 +167096,20 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,60.5 parent: 12 +- proto: SignRestroom + entities: + - uid: 26554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 12 + - uid: 26651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 12 - proto: SignRND entities: - uid: 2049 @@ -166356,11 +167160,6 @@ entities: parent: 12 - proto: SignSecurearea entities: - - uid: 4716 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - uid: 13533 components: - type: Transform @@ -166486,10 +167285,10 @@ entities: parent: 12 - proto: SingularityGenerator entities: - - uid: 4722 + - uid: 5130 components: - type: Transform - pos: 7.5,-4.5 + pos: 62.5,0.5 parent: 12 - proto: Sink entities: @@ -166692,10 +167491,10 @@ entities: - type: Transform pos: 46.5,5.5 parent: 12 - - uid: 29395 + - uid: 31901 components: - type: Transform - pos: 25.5,-15.5 + pos: 59.5,12.5 parent: 12 - proto: SMESBasicEmpty entities: @@ -166704,13 +167503,6 @@ entities: - type: Transform pos: -53.5,-46.5 parent: 12 -- proto: SMESMachineCircuitboard - entities: - - uid: 26077 - components: - - type: Transform - pos: 9.36832,-8.361483 - parent: 12 - proto: SmokingPipe entities: - uid: 17417 @@ -168320,10 +169112,10 @@ entities: parent: 12 - proto: SpawnMobCrabAtmos entities: - - uid: 27029 + - uid: 25674 components: - type: Transform - pos: 70.5,-0.5 + pos: 16.5,-6.5 parent: 12 - proto: SpawnMobFoxRenault entities: @@ -168435,11 +169227,6 @@ entities: parent: 12 - proto: SpawnMobMouse entities: - - uid: 12047 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 12317 components: - type: Transform @@ -168460,6 +169247,11 @@ entities: - type: Transform pos: 6.5,-36.5 parent: 12 + - uid: 26607 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 - uid: 28557 components: - type: Transform @@ -168534,20 +169326,20 @@ entities: parent: 12 - proto: SpawnPointAtmos entities: - - uid: 9978 + - uid: 22226 components: - type: Transform - pos: 52.5,5.5 + pos: 30.5,2.5 parent: 12 - - uid: 10983 + - uid: 29819 components: - type: Transform - pos: 51.5,5.5 + pos: 30.5,3.5 parent: 12 - - uid: 12722 + - uid: 29868 components: - type: Transform - pos: 53.5,5.5 + pos: 30.5,4.5 parent: 12 - proto: SpawnPointBartender entities: @@ -169113,7 +169905,7 @@ entities: parent: 12 - proto: SpawnPointTechnicalAssistant entities: - - uid: 9073 + - uid: 4856 components: - type: Transform pos: 30.5,-22.5 @@ -169187,11 +169979,6 @@ entities: rot: -12.566370614359172 rad pos: 30.459148,25.541853 parent: 12 - - uid: 11332 - components: - - type: Transform - pos: 8.764766,6.5591226 - parent: 12 - uid: 21387 components: - type: Transform @@ -169226,7 +170013,7 @@ entities: - uid: 23562 components: - type: Transform - pos: 39.4747,53.492332 + pos: 42.576344,53.246014 parent: 12 - uid: 31143 components: @@ -169436,35 +170223,29 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-10.5 parent: 12 - - uid: 27164 + - uid: 28766 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-1.5 + pos: 52.5,-1.5 parent: 12 - - uid: 27165 + - uid: 28767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-0.5 + pos: 52.5,-0.5 parent: 12 - - uid: 27166 + - uid: 29347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 + rot: 3.141592653589793 rad + pos: 39.5,1.5 parent: 12 - - uid: 27167 + - uid: 29348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 - parent: 12 - - uid: 27168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 + rot: 3.141592653589793 rad + pos: 40.5,1.5 parent: 12 - proto: Stairs entities: @@ -169495,54 +170276,18 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-21.5 parent: 12 - - uid: 2988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 12 - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-20.5 parent: 12 - - uid: 4878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 12 - - uid: 4881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 12 - - uid: 4889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 12 - - uid: 4920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 12 - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 12 - - uid: 19461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 12 - uid: 19537 components: - type: Transform @@ -169720,6 +170465,14 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 28857 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 3.511601,-12.378527 + parent: 12 - proto: StationMap entities: - uid: 372 @@ -170318,6 +171071,11 @@ entities: parent: 12 - proto: StorageCanister entities: + - uid: 397 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 12 - uid: 690 components: - type: Transform @@ -170328,6 +171086,11 @@ entities: - type: Transform pos: -49.5,-29.5 parent: 12 + - uid: 4854 + components: + - type: Transform + pos: 24.5,1.5 + parent: 12 - uid: 7171 components: - type: Transform @@ -170343,35 +171106,30 @@ entities: bodyType: Static - type: Lock locked: True - - uid: 26652 + - uid: 20776 components: - type: Transform - pos: 65.5,6.5 + pos: 10.5,-11.5 parent: 12 - - uid: 26785 + - uid: 20782 components: - type: Transform - pos: 53.5,-6.5 + pos: 11.5,-11.5 parent: 12 - - uid: 26804 + - uid: 20876 components: - type: Transform - pos: 54.5,-6.5 + pos: 12.5,-11.5 parent: 12 - - uid: 26888 + - uid: 23167 components: - type: Transform - pos: 55.5,-6.5 + pos: 27.5,8.5 parent: 12 - - uid: 27149 + - uid: 26601 components: - type: Transform - pos: 56.5,-6.5 - parent: 12 - - uid: 27310 - components: - - type: Transform - pos: 67.5,6.5 + pos: 3.5,-18.5 parent: 12 - proto: StrangePill entities: @@ -170428,11 +171186,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 5127 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - uid: 5177 components: - type: Transform @@ -170493,16 +171246,16 @@ entities: - type: Transform pos: 58.5,60.5 parent: 12 + - uid: 19168 + components: + - type: Transform + pos: 17.5,7.5 + parent: 12 - uid: 21910 components: - type: Transform pos: 39.5,-6.5 parent: 12 - - uid: 24688 - components: - - type: Transform - pos: 24.5,2.5 - parent: 12 - uid: 24704 components: - type: Transform @@ -170518,22 +171271,10 @@ entities: - type: Transform pos: -36.5,-50.5 parent: 12 -- proto: SuitStorageAtmos - entities: - - uid: 3625 + - uid: 31896 components: - type: Transform - pos: 51.5,4.5 - parent: 12 - - uid: 3777 - components: - - type: Transform - pos: 52.5,4.5 - parent: 12 - - uid: 26456 - components: - - type: Transform - pos: 53.5,4.5 + pos: 60.5,12.5 parent: 12 - proto: SuitStorageCaptain entities: @@ -170559,6 +171300,66 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 + - uid: 28689 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 + - 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: + - 25104 + - uid: 28690 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 12 + - 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: + - 25191 - proto: SuitStorageEVA entities: - uid: 22129 @@ -170617,10 +171418,10 @@ entities: parent: 12 - proto: SuitStorageRD entities: - - uid: 609 + - uid: 498 components: - type: Transform - pos: -41.5,-20.5 + pos: -40.5,-22.5 parent: 12 - proto: SuitStorageSalv entities: @@ -170715,6 +171516,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: RD's room + - uid: 4765 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms - uid: 5146 components: - type: Transform @@ -170758,17 +171569,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: CE's room - - uid: 9848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: QM's room - uid: 16483 components: - type: Transform @@ -170888,27 +171688,27 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core - - uid: 31743 + - uid: 28804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 + rot: 3.141592653589793 rad + pos: -42.5,-19.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Telecomms - - uid: 31747 + id: Server room + - uid: 28865 components: - type: Transform - pos: 3.5,-7.5 + pos: -0.5,-15.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI core power + id: AI upload 2 - uid: 31748 components: - type: Transform @@ -170922,17 +171722,6 @@ entities: id: AI core entrance - proto: SurveillanceCameraEngineering entities: - - uid: 2258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: External AI catwalk - uid: 4167 components: - type: Transform @@ -170943,49 +171732,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Secure techvault - - uid: 4755 + - uid: 4667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,2.5 + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmospherics - - uid: 4756 + id: Atmos lockers/engi hallway + - uid: 4715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 + rot: -1.5707963267948966 rad + pos: 39.5,1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Canister storage - - uid: 4888 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering south - - uid: 5158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos east + id: Engi hallway AME - uid: 8416 components: - type: Transform @@ -171018,26 +171786,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering front - - uid: 9824 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES - - uid: 9826 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South singularity - uid: 12289 components: - type: Transform @@ -171048,28 +171796,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: TEG - - uid: 19663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering rest area - - uid: 21925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA room - uid: 24215 components: - type: Transform @@ -171081,28 +171807,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering entrance - - uid: 27314 + - uid: 27001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Singularity/Tesla storage - - uid: 27315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Generator storage + id: Atmos entrance - uid: 27916 components: - type: Transform @@ -171113,39 +171828,275 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Gravity generator - - uid: 31742 + - uid: 28784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 + rot: 1.5707963267948966 rad + pos: 80.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Containment North - - uid: 31744 + id: Containment east + - uid: 28785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment north + - uid: 28786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: PA room + - uid: 28787 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment south + - uid: 28788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment monitoring room + - uid: 28790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,6.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 28791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment internals room + - uid: 28792 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment storage + - uid: 28793 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment entrance + - uid: 28794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor + - uid: 28795 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos south + - uid: 28796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos north + - uid: 28797 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 20.5,-4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos east + - uid: 28798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Burn chamber + - uid: 28799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos west + - uid: 28800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos canister storage + - uid: 28801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG exterior + - uid: 28807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northeast solars + - uid: 28808 + components: + - type: Transform + pos: 32.5,69.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars + - uid: 28809 + components: + - type: Transform + pos: 53.5,68.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars 2 + - uid: 28810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi hallway southeast + - uid: 28822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-44.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars + - uid: 28823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars 2 + - uid: 28825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southwest solars + - uid: 31882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: AME - - uid: 31745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East Engineering hallway - proto: SurveillanceCameraGeneral entities: - uid: 3 @@ -171255,6 +172206,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway west B + - uid: 5664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical-engineering hallway - uid: 6752 components: - type: Transform @@ -171265,17 +172227,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway Northeast - - uid: 8305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Maintenance East - uid: 9632 components: - type: Transform @@ -171501,6 +172452,50 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Court + - uid: 28802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tri-department hallway + - uid: 28813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Northeast evac + - uid: 28815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cat zoo + - uid: 28821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryosleep - uid: 31500 components: - type: Transform @@ -171744,10 +172739,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 21932 + - uid: 8740 components: - type: Transform - pos: 2.5,-15.5 + pos: 0.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterEngineering entities: @@ -171758,10 +172753,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21933 + - uid: 5678 components: - type: Transform - pos: -3.5,-15.5 + pos: -1.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterMedical entities: @@ -171888,6 +172883,28 @@ entities: - SurveillanceCameraScience nameSet: True id: Science entrance airlock + - uid: 28803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-23.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science entrance and robotics + - uid: 28805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science canister room - proto: SurveillanceCameraSecurity entities: - uid: 2165 @@ -172358,6 +173375,71 @@ entities: - SurveillanceCameraService nameSet: True id: Bartender's room + - uid: 28814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Parrot zoo + - uid: 28816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Zookeeper's room + - uid: 28817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Penguin zoo + - uid: 28818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Gorilla zoo + - uid: 28819 + components: + - type: Transform + pos: -10.5,19.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Monkey zoo + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Lizard zoo - uid: 30394 components: - type: Transform @@ -172457,6 +173539,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo break room + - uid: 28824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-36.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage airlock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 21981 @@ -172562,11 +173655,6 @@ entities: parent: 12 - proto: Table entities: - - uid: 406 - components: - - type: Transform - pos: 9.5,6.5 - parent: 12 - uid: 508 components: - type: Transform @@ -172693,6 +173781,11 @@ entities: - type: Transform pos: -43.5,72.5 parent: 12 + - uid: 2118 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 12 - uid: 2235 components: - type: Transform @@ -172717,6 +173810,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-11.5 parent: 12 + - uid: 2247 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 12 - uid: 2272 components: - type: Transform @@ -172764,11 +173862,6 @@ entities: - type: Transform pos: -5.5,-48.5 parent: 12 - - uid: 2927 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 2951 components: - type: Transform @@ -172902,15 +173995,10 @@ entities: - type: Transform pos: 29.5,53.5 parent: 12 - - uid: 4758 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 4789 components: - type: Transform - pos: 12.5,-0.5 + pos: 8.5,-11.5 parent: 12 - uid: 4851 components: @@ -172934,12 +174022,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 12 - - uid: 5130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 - parent: 12 - uid: 5242 components: - type: Transform @@ -172991,11 +174073,6 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 12 - - uid: 5868 - components: - - type: Transform - pos: 8.5,6.5 - parent: 12 - uid: 5897 components: - type: Transform @@ -173031,6 +174108,12 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 6279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 - uid: 6690 components: - type: Transform @@ -173051,6 +174134,12 @@ entities: - type: Transform pos: -15.5,-51.5 parent: 12 + - uid: 8468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 12 - uid: 8499 components: - type: Transform @@ -173081,6 +174170,12 @@ entities: - type: Transform pos: -13.5,-50.5 parent: 12 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 12 - uid: 9524 components: - type: Transform @@ -173091,6 +174186,11 @@ entities: - type: Transform pos: -17.5,-43.5 parent: 12 + - uid: 9786 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 - uid: 9855 components: - type: Transform @@ -173109,6 +174209,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,64.5 parent: 12 + - uid: 10306 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 - uid: 10330 components: - type: Transform @@ -173158,6 +174263,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 12 + - uid: 10905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 12 - uid: 10985 components: - type: Transform @@ -173170,11 +174281,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 11437 components: - type: Transform @@ -173192,11 +174298,6 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 12 - - uid: 12110 - components: - - type: Transform - pos: 7.5,6.5 - parent: 12 - uid: 12120 components: - type: Transform @@ -173444,11 +174545,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,47.5 parent: 12 - - uid: 15446 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - uid: 15447 components: - type: Transform @@ -173541,6 +174637,12 @@ entities: - type: Transform pos: -12.5,13.5 parent: 12 + - uid: 16664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,6.5 + parent: 12 - uid: 16690 components: - type: Transform @@ -173872,6 +174974,11 @@ entities: rot: 3.141592653589793 rad pos: -15.5,51.5 parent: 12 + - uid: 21977 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - uid: 22096 components: - type: Transform @@ -174151,11 +175258,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,58.5 parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - uid: 25491 components: - type: Transform @@ -174313,11 +175415,6 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 12 - - uid: 27243 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 12 - uid: 27252 components: - type: Transform @@ -174344,16 +175441,33 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 12 - - uid: 29348 + - uid: 28859 components: - type: Transform - pos: 29.5,-2.5 + pos: -3.5,-0.5 + parent: 12 + - uid: 28860 + components: + - type: Transform + pos: -2.5,-0.5 parent: 12 - uid: 29597 components: - type: Transform pos: -43.5,71.5 parent: 12 + - uid: 29967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 - uid: 30341 components: - type: Transform @@ -174426,6 +175540,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 + - uid: 31903 + components: + - type: Transform + pos: 59.5,9.5 + parent: 12 - proto: TableCarpet entities: - uid: 22653 @@ -174480,11 +175599,6 @@ entities: - type: Transform pos: -46.5,-47.5 parent: 12 - - uid: 2118 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 12 - uid: 11041 components: - type: Transform @@ -174924,12 +176038,22 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,65.5 parent: 12 + - uid: 12011 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 12 - uid: 12114 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-45.5 parent: 12 + - uid: 13009 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 12 - uid: 13789 components: - type: Transform @@ -175296,6 +176420,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-49.5 parent: 12 + - uid: 27353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 12 - uid: 28260 components: - type: Transform @@ -176077,11 +177207,6 @@ entities: - type: Transform pos: 33.433434,-6.6018057 parent: 12 - - uid: 21324 - components: - - type: Transform - pos: 2.5385756,-1.5661206 - parent: 12 - uid: 30021 components: - type: Transform @@ -176143,61 +177268,121 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 12 +- proto: TeslaCoil + entities: + - uid: 3020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-0.5 + parent: 12 + - uid: 3089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,9.5 + parent: 12 + - uid: 8439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,5.5 + parent: 12 + - uid: 8709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-0.5 + parent: 12 + - uid: 9308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 12 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,9.5 + parent: 12 - proto: TeslaCoilFlatpack entities: - - uid: 12912 + - uid: 5187 components: - type: Transform - pos: 7.6397057,-3.6464586 - parent: 12 - - uid: 25061 - components: - - type: Transform - pos: 7.7022057,-3.3409033 - parent: 12 - - uid: 25102 - components: - - type: Transform - pos: 7.2855387,-3.6117368 - parent: 12 - - uid: 25534 - components: - - type: Transform - pos: 7.3688717,-3.2992368 + rot: -6.283185307179586 rad + pos: 61.233635,-0.31611788 parent: 12 - proto: TeslaGenerator entities: - - uid: 23361 + - uid: 5158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 + pos: 60.5,0.5 parent: 12 - proto: TeslaGroundingRod entities: - - uid: 4314 + - uid: 3127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 75.5,10.5 parent: 12 - - uid: 5992 + - uid: 8846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 1.5707963267948966 rad + pos: 78.5,7.5 parent: 12 - - uid: 19539 + - uid: 8856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + rot: 1.5707963267948966 rad + pos: 69.5,10.5 parent: 12 - - uid: 19548 + - uid: 8857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 + parent: 12 + - uid: 9406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,1.5 + parent: 12 + - uid: 9456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-1.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,7.5 + parent: 12 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 21621 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 60.604073,-0.31611776 + parent: 12 + - uid: 27003 + components: + - type: Transform + pos: 60.715595,-0.57507586 parent: 12 - proto: ThermomachineFreezerMachineCircuitBoard entities: @@ -176358,6 +177543,11 @@ entities: parent: 12 - proto: ToolboxElectricalFilled entities: + - uid: 3586 + components: + - type: Transform + pos: 3.5046568,-11.922848 + parent: 12 - uid: 5910 components: - type: Transform @@ -176393,6 +177583,12 @@ entities: - type: Transform pos: 44.683693,53.537926 parent: 12 + - uid: 28763 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.41125,-2.412424 + parent: 12 - proto: ToolboxEmergencyFilled entities: - uid: 6826 @@ -176515,6 +177711,12 @@ entities: - type: Transform pos: -12.50413,2.5674837 parent: 12 + - uid: 28764 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.68279,-2.6386967 + parent: 12 - uid: 29211 components: - type: Transform @@ -176526,7 +177728,7 @@ entities: components: - type: Transform rot: -18.84955592153876 rad - pos: -0.5040951,-20.382685 + pos: -0.5161767,-20.22085 parent: 12 - proto: ToyAmongPequeno entities: @@ -176546,11 +177748,11 @@ entities: parent: 12 - proto: ToyFigurineAtmosTech entities: - - uid: 3894 + - uid: 20884 components: - type: Transform rot: -18.84955592153876 rad - pos: 55.368454,5.6192193 + pos: 29.576431,3.8167615 parent: 12 - proto: ToyFigurineBartender entities: @@ -176711,7 +177913,8 @@ entities: - uid: 23532 components: - type: Transform - pos: 28.465582,12.573898 + rot: -18.84955592153876 rad + pos: 30.535233,18.578392 parent: 12 - proto: ToyFigurineParamedic entities: @@ -176879,6 +178082,14 @@ entities: rot: -6.283185307179586 rad pos: -19.50675,-15.356455 parent: 12 +- proto: trayScanner + entities: + - uid: 28715 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 56.595398,-6.4191794 + parent: 12 - proto: TrumpetInstrument entities: - uid: 26216 @@ -177518,10 +178729,10 @@ entities: parent: 12 - proto: VendingMachineAtmosDrobe entities: - - uid: 27171 + - uid: 23887 components: - type: Transform - pos: 55.5,6.5 + pos: 29.5,6.5 parent: 12 - proto: VendingMachineBooze entities: @@ -177815,6 +179026,11 @@ entities: - type: Transform pos: 32.5,-23.5 parent: 12 + - uid: 28697 + components: + - type: Transform + pos: 55.5,2.5 + parent: 12 - proto: VendingMachineGames entities: - uid: 2035 @@ -178072,18 +179288,28 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 570 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 16777 components: - type: Transform pos: 10.5,-13.5 parent: 12 - - uid: 24689 + - uid: 27384 components: - type: Transform - pos: 25.5,2.5 + pos: 58.5,-4.5 parent: 12 - proto: VendingMachineTankDispenserEVA entities: + - uid: 565 + components: + - type: Transform + pos: 24.5,7.5 + parent: 12 - uid: 12059 components: - type: Transform @@ -178099,10 +179325,10 @@ entities: - type: Transform pos: -44.5,50.5 parent: 12 - - uid: 26738 + - uid: 27024 components: - type: Transform - pos: 52.5,-1.5 + pos: 8.5,-8.5 parent: 12 - proto: VendingMachineTheater entities: @@ -178186,6 +179412,11 @@ entities: - type: Transform pos: 43.5,49.5 parent: 12 + - uid: 28696 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 - proto: ViolaInstrument entities: - uid: 30418 @@ -178212,6 +179443,11 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 12 + - uid: 8885 + components: + - type: Transform + pos: 37.5,13.5 + parent: 12 - uid: 17664 components: - type: Transform @@ -178224,16 +179460,6 @@ entities: - type: Transform pos: -4.5,0.5 parent: 12 - - uid: 16 - components: - - type: Transform - pos: 30.5,9.5 - parent: 12 - - uid: 22 - components: - - type: Transform - pos: 31.5,9.5 - parent: 12 - uid: 27 components: - type: Transform @@ -178709,11 +179935,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-14.5 parent: 12 - - uid: 194 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 12 - uid: 196 components: - type: Transform @@ -178768,12 +179989,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 12 - - uid: 206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 12 - uid: 211 components: - type: Transform @@ -178822,12 +180037,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 12 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 12 - uid: 232 components: - type: Transform @@ -179069,6 +180278,22 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-11.5 parent: 12 + - uid: 401 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 12 + - uid: 403 + components: + - type: Transform + pos: 9.5,4.5 + parent: 12 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 12 - uid: 411 components: - type: Transform @@ -179349,6 +180574,12 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 12 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 12 - uid: 633 components: - type: Transform @@ -179461,6 +180692,12 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 12 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 12 - uid: 703 components: - type: Transform @@ -179656,12 +180893,28 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-40.5 parent: 12 + - uid: 901 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 12 - uid: 903 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 12 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 12 + - uid: 923 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 12 - uid: 945 components: - type: Transform @@ -179719,7 +180972,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 19.5,8.5 parent: 12 - uid: 1017 components: @@ -179781,12 +181034,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-51.5 parent: 12 - - uid: 1074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 12 - uid: 1075 components: - type: Transform @@ -179828,10 +181075,10 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-36.5 parent: 12 - - uid: 1351 + - uid: 1356 components: - type: Transform - pos: 23.5,-14.5 + pos: 25.5,-11.5 parent: 12 - uid: 1357 components: @@ -179867,22 +181114,33 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,50.5 parent: 12 + - uid: 1549 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 12 - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 12 + - uid: 1556 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 12 + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 12 - uid: 1612 components: - type: Transform pos: -38.5,61.5 parent: 12 - - uid: 1752 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 12 - uid: 1755 components: - type: Transform @@ -179900,11 +181158,22 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,73.5 parent: 12 + - uid: 1966 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 12 - uid: 1991 components: - type: Transform pos: -54.5,-42.5 parent: 12 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 12 - uid: 2031 components: - type: Transform @@ -179946,17 +181215,32 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 12 + - uid: 2169 + components: + - type: Transform + pos: 26.5,1.5 + parent: 12 - uid: 2171 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 12 - - uid: 2239 + - uid: 2173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 16.5,-14.5 + parent: 12 + - uid: 2184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 12 + - uid: 2256 + components: + - type: Transform + pos: 24.5,-11.5 parent: 12 - uid: 2260 components: @@ -179964,6 +181248,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2267 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 12 - uid: 2271 components: - type: Transform @@ -179994,11 +181283,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - uid: 2305 components: - type: Transform @@ -180029,6 +181313,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-37.5 parent: 12 + - uid: 2528 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 12 - uid: 2556 components: - type: Transform @@ -180088,11 +181377,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-40.5 parent: 12 - - uid: 2573 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 12 - uid: 2647 components: - type: Transform @@ -180138,11 +181422,21 @@ entities: - type: Transform pos: -7.5,-60.5 parent: 12 + - uid: 2781 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 12 - uid: 2797 components: - type: Transform pos: 65.5,54.5 parent: 12 + - uid: 2808 + components: + - type: Transform + pos: 26.5,0.5 + parent: 12 - uid: 2863 components: - type: Transform @@ -180169,24 +181463,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 12 - - uid: 2876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 12 - uid: 2883 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 - - uid: 2894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 2935 components: - type: Transform @@ -180255,16 +181537,10 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 12 - - uid: 3021 + - uid: 3022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 12 - - uid: 3077 - components: - - type: Transform - pos: 38.5,3.5 + pos: 18.5,-14.5 parent: 12 - uid: 3079 components: @@ -180306,30 +181582,27 @@ entities: - type: Transform pos: -10.5,3.5 parent: 12 - - uid: 3702 + - uid: 3631 components: - type: Transform - pos: 17.5,6.5 - parent: 12 - - uid: 3710 - components: - - type: Transform - pos: 15.5,6.5 - parent: 12 - - uid: 3713 - components: - - type: Transform - pos: 15.5,8.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 12 - uid: 3778 components: - type: Transform pos: -48.5,-52.5 parent: 12 - - uid: 3895 + - uid: 3823 components: - type: Transform - pos: 26.5,-14.5 + pos: 13.5,-1.5 + parent: 12 + - uid: 3824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 parent: 12 - uid: 3941 components: @@ -180337,20 +181610,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 3979 + - uid: 3945 components: - type: Transform - pos: 27.5,11.5 - parent: 12 - - uid: 3982 - components: - - type: Transform - pos: 29.5,10.5 - parent: 12 - - uid: 3983 - components: - - type: Transform - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,5.5 parent: 12 - uid: 4013 components: @@ -180364,12 +181628,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,13.5 parent: 12 - - uid: 4092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 12 - uid: 4103 components: - type: Transform @@ -180386,25 +181644,10 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-40.5 parent: 12 - - uid: 4386 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 12 - - uid: 4387 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 4388 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 12 - uid: 4389 components: - type: Transform - pos: 4.5,-19.5 + pos: 5.5,-17.5 parent: 12 - uid: 4392 components: @@ -180434,34 +181677,16 @@ entities: rot: 3.141592653589793 rad pos: 53.5,7.5 parent: 12 - - uid: 4411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,11.5 - parent: 12 - uid: 4412 components: - type: Transform pos: -51.5,-49.5 parent: 12 - - uid: 4414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 - parent: 12 - uid: 4416 components: - type: Transform pos: -41.5,-54.5 parent: 12 - - uid: 4475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 - parent: 12 - uid: 4478 components: - type: Transform @@ -180473,11 +181698,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,48.5 parent: 12 - - uid: 4527 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - uid: 4529 components: - type: Transform @@ -180509,100 +181729,20 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 12 - - uid: 4537 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 12 - uid: 4538 components: - type: Transform pos: 15.5,-13.5 parent: 12 - - uid: 4563 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 12 - - uid: 4564 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 12 - - uid: 4565 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 12 - - uid: 4567 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 12 - - uid: 4569 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 12 - - uid: 4572 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 12 - uid: 4573 components: - type: Transform - pos: 14.5,-1.5 + pos: 21.5,4.5 parent: 12 - uid: 4574 components: - type: Transform - pos: 14.5,-0.5 - parent: 12 - - uid: 4575 - components: - - type: Transform - pos: 14.5,0.5 - parent: 12 - - uid: 4576 - components: - - type: Transform - pos: 14.5,1.5 - parent: 12 - - uid: 4577 - components: - - type: Transform - pos: 17.5,1.5 - parent: 12 - - uid: 4578 - components: - - type: Transform - pos: 17.5,2.5 - parent: 12 - - uid: 4579 - components: - - type: Transform - pos: 18.5,2.5 - parent: 12 - - uid: 4580 - components: - - type: Transform - pos: 19.5,2.5 - parent: 12 - - uid: 4581 - components: - - type: Transform - pos: 19.5,1.5 - parent: 12 - - uid: 4582 - components: - - type: Transform - pos: 23.5,2.5 - parent: 12 - - uid: 4583 - components: - - type: Transform - pos: 23.5,1.5 + pos: 21.5,-12.5 parent: 12 - uid: 4592 components: @@ -180624,27 +181764,38 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 12 - - uid: 4672 + - uid: 4601 components: - type: Transform - pos: 23.5,0.5 + rot: 3.141592653589793 rad + pos: 23.5,-3.5 parent: 12 - - uid: 4676 + - uid: 4643 components: - type: Transform - pos: 19.5,0.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - - uid: 4680 + - uid: 4649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 26.5,-2.5 parent: 12 - - uid: 4681 + - uid: 4652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 + pos: 24.5,-13.5 + parent: 12 + - uid: 4654 + components: + - type: Transform + pos: 8.5,4.5 + parent: 12 + - uid: 4664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 12 - uid: 4682 components: @@ -180652,17 +181803,10 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4684 + - uid: 4685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 12 - - uid: 4692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 10.5,4.5 parent: 12 - uid: 4693 components: @@ -180670,22 +181814,11 @@ entities: rot: 3.141592653589793 rad pos: 72.5,13.5 parent: 12 - - uid: 4706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,3.5 - parent: 12 - uid: 4714 components: - type: Transform pos: -24.5,56.5 parent: 12 - - uid: 4733 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - uid: 4768 components: - type: Transform @@ -180697,72 +181830,127 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-48.5 parent: 12 + - uid: 4783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 12 + - uid: 4797 + components: + - type: Transform + pos: 28.5,3.5 + parent: 12 - uid: 4882 components: - type: Transform pos: -27.5,6.5 parent: 12 - - uid: 4883 + - uid: 4900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 + rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 12 + - uid: 4902 + components: + - type: Transform + pos: 26.5,-7.5 parent: 12 - uid: 4905 components: - type: Transform pos: 37.5,-3.5 parent: 12 - - uid: 4906 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 12 - uid: 4909 components: - type: Transform - pos: 17.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,2.5 parent: 12 - - uid: 4910 + - uid: 4911 components: - type: Transform - pos: 34.5,-3.5 + pos: 26.5,-3.5 parent: 12 - - uid: 4915 + - uid: 4930 components: - type: Transform - pos: 35.5,-3.5 + pos: 26.5,-8.5 parent: 12 - - uid: 4921 + - uid: 4936 components: - type: Transform - pos: 36.5,-3.5 + rot: 1.5707963267948966 rad + pos: 80.5,-4.5 parent: 12 - - uid: 4941 + - uid: 4949 components: - type: Transform - pos: 29.5,5.5 + rot: 3.141592653589793 rad + pos: 25.5,-9.5 parent: 12 - uid: 4952 components: - type: Transform - pos: 20.5,7.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 12 - - uid: 4953 + - uid: 4955 components: - type: Transform - pos: 23.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,8.5 parent: 12 - - uid: 4972 + - uid: 4960 components: - type: Transform - pos: 25.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,-1.5 parent: 12 - - uid: 4978 + - uid: 4988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 + rot: 1.5707963267948966 rad + pos: 81.5,-0.5 + parent: 12 + - uid: 4992 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 12 + - uid: 5005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-9.5 + parent: 12 + - uid: 5007 + components: + - type: Transform + pos: 11.5,4.5 + parent: 12 + - uid: 5009 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 12 + - uid: 5021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 12 + - uid: 5025 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 12 + - uid: 5033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,13.5 parent: 12 - uid: 5040 components: @@ -180770,6 +181958,12 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,53.5 parent: 12 + - uid: 5044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 12 - uid: 5056 components: - type: Transform @@ -180790,11 +181984,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 12 - - uid: 5064 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 12 - uid: 5065 components: - type: Transform @@ -180815,16 +182004,6 @@ entities: - type: Transform pos: 28.5,-4.5 parent: 12 - - uid: 5070 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 5072 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - uid: 5073 components: - type: Transform @@ -180862,10 +182041,15 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5101 + - uid: 5107 components: - type: Transform - pos: 23.5,-15.5 + pos: 37.5,-4.5 + parent: 12 + - uid: 5111 + components: + - type: Transform + pos: 60.5,9.5 parent: 12 - uid: 5112 components: @@ -180883,10 +182067,11 @@ entities: - type: Transform pos: -27.5,8.5 parent: 12 - - uid: 5125 + - uid: 5126 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 82.5,6.5 parent: 12 - uid: 5139 components: @@ -180965,11 +182150,34 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-12.5 parent: 12 - - uid: 5214 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,5.5 + pos: 23.5,-5.5 + parent: 12 + - uid: 5190 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 + - uid: 5198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,11.5 + parent: 12 + - uid: 5217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-1.5 parent: 12 - uid: 5218 components: @@ -180977,6 +182185,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 12 + - uid: 5220 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 12 + - uid: 5238 + components: + - type: Transform + pos: 28.5,4.5 + parent: 12 - uid: 5246 components: - type: Transform @@ -181025,17 +182243,22 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-16.5 parent: 12 + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 12 - uid: 5313 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-50.5 parent: 12 - - uid: 5316 + - uid: 5365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,6.5 + pos: 13.5,-13.5 parent: 12 - uid: 5391 components: @@ -181043,6 +182266,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,27.5 parent: 12 + - uid: 5403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 12 - uid: 5443 components: - type: Transform @@ -181121,16 +182350,23 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 12 - - uid: 5477 - components: - - type: Transform - pos: 53.5,0.5 - parent: 12 - uid: 5527 components: - type: Transform pos: 48.5,-3.5 parent: 12 + - uid: 5528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,12.5 + parent: 12 + - uid: 5553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,10.5 + parent: 12 - uid: 5562 components: - type: Transform @@ -181166,11 +182402,66 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 - - uid: 5682 + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 12 + - uid: 5637 + components: + - type: Transform + pos: 28.5,2.5 + parent: 12 + - uid: 5641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 12 + - uid: 5668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 12 + - uid: 5680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 12 + - uid: 5802 + components: + - type: Transform + pos: 13.5,6.5 + parent: 12 + - uid: 5815 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,8.5 + pos: 80.5,14.5 + parent: 12 + - uid: 5820 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 5830 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 5839 + components: + - type: Transform + pos: 27.5,4.5 parent: 12 - uid: 5904 components: @@ -181190,12 +182481,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,64.5 parent: 12 - - uid: 5966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 12 - uid: 5971 components: - type: Transform @@ -181229,10 +182514,21 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,64.5 parent: 12 - - uid: 5991 + - uid: 6014 components: - type: Transform - pos: 52.5,0.5 + pos: 21.5,-13.5 + parent: 12 + - uid: 6023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 12 + - uid: 6031 + components: + - type: Transform + pos: 8.5,-4.5 parent: 12 - uid: 6080 components: @@ -181254,17 +182550,17 @@ entities: - type: Transform pos: 24.5,-39.5 parent: 12 + - uid: 6199 + components: + - type: Transform + pos: 26.5,2.5 + parent: 12 - uid: 6207 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 12 - - uid: 6243 - components: - - type: Transform - pos: 54.5,0.5 - parent: 12 - uid: 6263 components: - type: Transform @@ -181378,10 +182674,10 @@ entities: - type: Transform pos: 44.5,-9.5 parent: 12 - - uid: 6772 + - uid: 6766 components: - type: Transform - pos: 48.5,-1.5 + pos: 26.5,-0.5 parent: 12 - uid: 6773 components: @@ -181389,10 +182685,41 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-15.5 parent: 12 - - uid: 6942 + - uid: 6889 components: - type: Transform - pos: 71.5,10.5 + pos: 23.5,-15.5 + parent: 12 + - uid: 6893 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 12 + - uid: 7200 + components: + - type: Transform + pos: 8.5,0.5 + parent: 12 + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 12 + - uid: 7232 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 12 + - uid: 7243 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 12 + - uid: 7252 + components: + - type: Transform + pos: 26.5,-13.5 parent: 12 - uid: 7263 components: @@ -181405,20 +182732,16 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 12 - - uid: 7278 - components: - - type: Transform - pos: 70.5,10.5 - parent: 12 - uid: 7286 components: - type: Transform pos: 44.5,2.5 parent: 12 - - uid: 7309 + - uid: 7308 components: - type: Transform - pos: 67.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 12 - uid: 7316 components: @@ -182050,12 +183373,6 @@ entities: - type: Transform pos: -9.5,-8.5 parent: 12 - - uid: 8441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,14.5 - parent: 12 - uid: 8442 components: - type: Transform @@ -182082,11 +183399,6 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 12 - - uid: 8709 - components: - - type: Transform - pos: 73.5,10.5 - parent: 12 - uid: 8767 components: - type: Transform @@ -182133,26 +183445,110 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 12 - - uid: 8846 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 12 - uid: 8852 + components: + - type: Transform + pos: 25.5,4.5 + parent: 12 + - uid: 8918 + components: + - type: Transform + pos: 26.5,4.5 + parent: 12 + - uid: 8958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 12 + - uid: 8959 + components: + - type: Transform + pos: 31.5,1.5 + parent: 12 + - uid: 8974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-4.5 + parent: 12 + - uid: 8976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-4.5 + parent: 12 + - uid: 9008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-4.5 + parent: 12 + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 12 + - uid: 9010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 12 + - uid: 9011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 + parent: 12 + - uid: 9012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 12 + - uid: 9013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 12 + - uid: 9014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-4.5 + parent: 12 + - uid: 9015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 12 + - uid: 9055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,1.5 + parent: 12 + - uid: 9056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,2.5 + parent: 12 + - uid: 9057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-2.5 + parent: 12 + - uid: 9058 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 12 - - uid: 8856 - components: - - type: Transform - pos: 75.5,10.5 - parent: 12 - - uid: 8857 - components: - - type: Transform - pos: 79.5,7.5 + pos: 18.5,7.5 parent: 12 - uid: 9067 components: @@ -182176,46 +183572,24 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 12 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 12 - uid: 9138 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-43.5 parent: 12 - - uid: 9142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 12 - - uid: 9169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 12 - - uid: 9173 - components: - - type: Transform - pos: 77.5,10.5 - parent: 12 - - uid: 9174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 12 - uid: 9175 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,6.5 parent: 12 - - uid: 9222 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - uid: 9230 components: - type: Transform @@ -182227,16 +183601,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,8.5 parent: 12 - - uid: 9298 - components: - - type: Transform - pos: 76.5,-1.5 - parent: 12 - - uid: 9306 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 12 - uid: 9379 components: - type: Transform @@ -182258,6 +183622,18 @@ entities: - type: Transform pos: -12.5,23.5 parent: 12 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - uid: 9432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,9.5 + parent: 12 - uid: 9443 components: - type: Transform @@ -182299,6 +183675,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 12 + - uid: 9526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,10.5 + parent: 12 - uid: 9527 components: - type: Transform @@ -182314,8 +183696,8 @@ entities: - uid: 9540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,6.5 + rot: 1.5707963267948966 rad + pos: 63.5,11.5 parent: 12 - uid: 9542 components: @@ -182353,18 +183735,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 12 - - uid: 9614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 12 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 12 - uid: 9622 components: - type: Transform @@ -182401,16 +183771,23 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 12 + - uid: 9650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,13.5 + parent: 12 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 12 - - uid: 9658 + - uid: 9662 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: 61.5,-2.5 parent: 12 - uid: 9674 components: @@ -182422,18 +183799,30 @@ entities: - type: Transform pos: 48.5,7.5 parent: 12 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 12 + - uid: 9681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,8.5 + parent: 12 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,7.5 + parent: 12 - uid: 9701 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,13.5 parent: 12 - - uid: 9703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 12 - uid: 9704 components: - type: Transform @@ -182451,12 +183840,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 12 - - uid: 9720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 12 - uid: 9726 components: - type: Transform @@ -182714,6 +184097,12 @@ entities: - type: Transform pos: -56.5,20.5 parent: 12 + - uid: 10381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 12 - uid: 10396 components: - type: Transform @@ -183172,16 +184561,116 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 12 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,13.5 + parent: 12 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,13.5 + parent: 12 + - uid: 10793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-4.5 + parent: 12 + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,13.5 + parent: 12 + - uid: 10825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,11.5 + parent: 12 + - uid: 10826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,10.5 + parent: 12 + - uid: 10833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,6.5 + parent: 12 + - uid: 10842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 12 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 12 + - uid: 10870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 10909 + components: + - type: Transform + pos: 37.5,5.5 + parent: 12 + - uid: 10910 + components: + - type: Transform + pos: 38.5,5.5 + parent: 12 + - uid: 10911 + components: + - type: Transform + pos: 38.5,4.5 + parent: 12 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 + parent: 12 - uid: 10937 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,13.5 parent: 12 + - uid: 10938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 12 - uid: 10939 components: - type: Transform - pos: 70.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 12 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 12 - uid: 10953 components: @@ -183218,6 +184707,18 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 + - uid: 11021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 12 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-4.5 + parent: 12 - uid: 11038 components: - type: Transform @@ -183230,6 +184731,30 @@ entities: rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 12 + - uid: 11048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 12 + - uid: 11050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 + parent: 12 + - uid: 11051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 12 + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 12 - uid: 11128 components: - type: Transform @@ -183457,18 +184982,18 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,29.5 parent: 12 + - uid: 11209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 12 - uid: 11213 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 12 - - uid: 11214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 12 - uid: 11217 components: - type: Transform @@ -183605,6 +185130,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,22.5 parent: 12 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 12 - uid: 11283 components: - type: Transform @@ -183627,59 +185158,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 12 - - uid: 11331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 12 - - uid: 11364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 12 - - uid: 11371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 12 - - uid: 11373 - components: - - type: Transform - pos: 37.5,5.5 - parent: 12 - - uid: 11375 - components: - - type: Transform - pos: 35.5,5.5 - parent: 12 - - uid: 11376 - components: - - type: Transform - pos: 34.5,5.5 - parent: 12 - - uid: 11377 - components: - - type: Transform - pos: 33.5,5.5 - parent: 12 - - uid: 11379 - components: - - type: Transform - pos: 32.5,6.5 - parent: 12 - - uid: 11380 - components: - - type: Transform - pos: 32.5,7.5 - parent: 12 - - uid: 11382 - components: - - type: Transform - pos: 32.5,9.5 - parent: 12 - uid: 11389 components: - type: Transform @@ -184148,6 +185626,18 @@ entities: - type: Transform pos: 59.5,37.5 parent: 12 + - uid: 11928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 12 + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 12 - uid: 12009 components: - type: Transform @@ -184163,6 +185653,18 @@ entities: - type: Transform pos: 43.5,13.5 parent: 12 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 + parent: 12 + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 12 - uid: 12392 components: - type: Transform @@ -184253,11 +185755,10 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 12 - - uid: 12724 + - uid: 12641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,6.5 + pos: 35.5,5.5 parent: 12 - uid: 12810 components: @@ -184661,11 +186162,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,76.5 parent: 12 - - uid: 15008 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 12 - uid: 15016 components: - type: Transform @@ -185078,37 +186574,6 @@ entities: - type: Transform pos: 50.5,4.5 parent: 12 - - uid: 16365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 12 - - uid: 16420 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 16421 - components: - - type: Transform - pos: 60.5,11.5 - parent: 12 - - uid: 16435 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 76.5,10.5 - parent: 12 - - uid: 16446 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - uid: 16646 components: - type: Transform @@ -185333,12 +186798,6 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 - - uid: 17607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 - parent: 12 - uid: 17624 components: - type: Transform @@ -185640,12 +187099,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,43.5 parent: 12 - - uid: 18756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 12 - uid: 18845 components: - type: Transform @@ -185943,6 +187396,12 @@ entities: rot: 3.141592653589793 rad pos: -41.5,54.5 parent: 12 + - uid: 19176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 12 - uid: 19179 components: - type: Transform @@ -186322,12 +187781,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,50.5 parent: 12 - - uid: 19455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 12 - uid: 19507 components: - type: Transform @@ -186622,17 +188075,18 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,1.5 parent: 12 + - uid: 19886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-0.5 + parent: 12 - uid: 20097 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,75.5 parent: 12 - - uid: 20161 - components: - - type: Transform - pos: 10.5,6.5 - parent: 12 - uid: 20268 components: - type: Transform @@ -186662,17 +188116,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-8.5 parent: 12 - - uid: 21065 - components: - - type: Transform - pos: 47.5,-3.5 - parent: 12 - - uid: 21078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 12 - uid: 21527 components: - type: Transform @@ -186833,11 +188276,6 @@ entities: - type: Transform pos: 64.5,13.5 parent: 12 - - uid: 22090 - components: - - type: Transform - pos: 70.5,13.5 - parent: 12 - uid: 22091 components: - type: Transform @@ -186848,61 +188286,6 @@ entities: - type: Transform pos: 60.5,14.5 parent: 12 - - uid: 22093 - components: - - type: Transform - pos: 79.5,12.5 - parent: 12 - - uid: 22094 - components: - - type: Transform - pos: 78.5,12.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 75.5,12.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 22101 - components: - - type: Transform - pos: 77.5,12.5 - parent: 12 - - uid: 22104 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 22105 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 22106 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 22107 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 22119 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 22122 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22124 components: - type: Transform @@ -187032,11 +188415,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,55.5 parent: 12 - - uid: 22339 - components: - - type: Transform - pos: 63.5,11.5 - parent: 12 - uid: 22532 components: - type: Transform @@ -187064,18 +188442,42 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 12 + - uid: 23117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 12 - uid: 23124 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,74.5 parent: 12 + - uid: 23128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 12 + - uid: 23129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 12 - uid: 23144 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,74.5 parent: 12 + - uid: 23157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 12 - uid: 23159 components: - type: Transform @@ -187088,6 +188490,12 @@ entities: rot: 3.141592653589793 rad pos: 14.5,22.5 parent: 12 + - uid: 23166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 12 - uid: 23177 components: - type: Transform @@ -187141,6 +188549,11 @@ entities: - type: Transform pos: 48.5,66.5 parent: 12 + - uid: 23985 + components: + - type: Transform + pos: 60.5,8.5 + parent: 12 - uid: 24226 components: - type: Transform @@ -187180,7 +188593,8 @@ entities: - uid: 24280 components: - type: Transform - pos: 77.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,1.5 parent: 12 - uid: 24302 components: @@ -187203,6 +188617,12 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 12 + - uid: 24453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 12 - uid: 24460 components: - type: Transform @@ -187236,6 +188656,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 12 + - uid: 25093 + components: + - type: Transform + pos: 63.5,7.5 + parent: 12 - uid: 25094 components: - type: Transform @@ -187251,14 +188676,12 @@ entities: - uid: 25101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-5.5 + pos: 63.5,0.5 parent: 12 - uid: 25135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,5.5 + pos: 63.5,8.5 parent: 12 - uid: 25275 components: @@ -187413,46 +188836,6 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 - - uid: 25460 - components: - - type: Transform - pos: 61.5,11.5 - parent: 12 - - uid: 25461 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 25462 - components: - - type: Transform - pos: 64.5,11.5 - parent: 12 - - uid: 25463 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 25464 - components: - - type: Transform - pos: 72.5,10.5 - parent: 12 - - uid: 25465 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 25466 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 25469 - components: - - type: Transform - pos: 65.5,11.5 - parent: 12 - uid: 25527 components: - type: Transform @@ -187522,11 +188905,6 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 12 - - uid: 25598 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - uid: 25599 components: - type: Transform @@ -187543,22 +188921,11 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 - - uid: 25615 - components: - - type: Transform - pos: 32.5,5.5 - parent: 12 - uid: 25835 components: - type: Transform pos: 3.5,12.5 parent: 12 - - uid: 25888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 12 - uid: 25889 components: - type: Transform @@ -187589,12 +188956,34 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 12 + - uid: 26067 + components: + - type: Transform + pos: 63.5,1.5 + parent: 12 - uid: 26096 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 12 + - uid: 26114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 26131 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 12 - uid: 26167 components: - type: Transform @@ -187628,177 +189017,57 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 12 - - uid: 26382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,11.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 12 - - uid: 26417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 - parent: 12 - - uid: 26418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,6.5 - parent: 12 - - uid: 26419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 12 - - uid: 26420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,5.5 - parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,5.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,6.5 - parent: 12 - - uid: 26423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,7.5 - parent: 12 - - uid: 26424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 12 - - uid: 26425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,6.5 - parent: 12 - - uid: 26426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,5.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 12 - uid: 26427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,6.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 12 - - uid: 26428 + - uid: 26435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,5.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 12 - - uid: 26429 + - uid: 26439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 12 - - uid: 26430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,8.5 - parent: 12 - - uid: 26434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,8.5 - parent: 12 - - uid: 26436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,8.5 - parent: 12 - - uid: 26438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + rot: 1.5707963267948966 rad + pos: 81.5,3.5 parent: 12 - uid: 26440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,8.5 - parent: 12 - - uid: 26447 - components: - - type: Transform - pos: 75.5,-1.5 + rot: 1.5707963267948966 rad + pos: 81.5,4.5 parent: 12 - uid: 26448 components: - type: Transform - pos: 77.5,0.5 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 12 - - uid: 26451 + - uid: 26469 components: - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 26452 - components: - - type: Transform - pos: 75.5,3.5 - parent: 12 - - uid: 26466 - components: - - type: Transform - pos: 16.5,-14.5 + rot: 3.141592653589793 rad + pos: 59.5,-1.5 parent: 12 - uid: 26472 components: - type: Transform - pos: 55.5,-2.5 + pos: 3.5,-17.5 parent: 12 - uid: 26473 components: - type: Transform - pos: 54.5,-2.5 - parent: 12 - - uid: 26474 - components: - - type: Transform - pos: 53.5,-2.5 + pos: 5.5,-18.5 parent: 12 - uid: 26475 components: @@ -187810,16 +189079,6 @@ entities: - type: Transform pos: 51.5,-2.5 parent: 12 - - uid: 26477 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - - uid: 26478 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 12 - uid: 26482 components: - type: Transform @@ -187840,40 +189099,35 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26487 - components: - - type: Transform - pos: 57.5,3.5 - parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - uid: 26489 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 parent: 12 - - uid: 26490 + - uid: 26492 components: - type: Transform - pos: 74.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 12 - - uid: 26491 + - uid: 26510 components: - type: Transform - pos: 70.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - - uid: 26495 + - uid: 26538 components: - type: Transform - pos: 74.5,5.5 + rot: 3.141592653589793 rad + pos: 59.5,0.5 parent: 12 - - uid: 26554 + - uid: 26563 components: - type: Transform - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 80.5,13.5 parent: 12 - uid: 26567 components: @@ -187885,46 +189139,6 @@ entities: - type: Transform pos: -25.5,-11.5 parent: 12 - - uid: 26590 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - - uid: 26592 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26593 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 26595 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 26597 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26599 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26600 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26601 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - uid: 26603 components: - type: Transform @@ -187935,96 +189149,46 @@ entities: - type: Transform pos: 70.5,14.5 parent: 12 + - uid: 26611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 12 + - uid: 26612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,7.5 + parent: 12 - uid: 26614 components: - type: Transform pos: 40.5,-9.5 parent: 12 - - uid: 26625 + - uid: 26634 components: - type: Transform - pos: 77.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 12 - - uid: 26626 + - uid: 26637 components: - type: Transform - pos: 77.5,1.5 + rot: -1.5707963267948966 rad + pos: 59.5,7.5 parent: 12 - - uid: 26627 + - uid: 26638 components: - type: Transform - pos: 75.5,2.5 - parent: 12 - - uid: 26628 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 12 - - uid: 26649 - components: - - type: Transform - pos: 79.5,-2.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 12 - uid: 26670 components: - type: Transform pos: 66.5,13.5 parent: 12 - - uid: 26674 - components: - - type: Transform - pos: 68.5,9.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 67.5,9.5 - parent: 12 - - uid: 26676 - components: - - type: Transform - pos: 66.5,9.5 - parent: 12 - - uid: 26677 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 26678 - components: - - type: Transform - pos: 64.5,9.5 - parent: 12 - - uid: 26679 - components: - - type: Transform - pos: 63.5,9.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26681 - components: - - type: Transform - pos: 61.5,9.5 - parent: 12 - - uid: 26682 - components: - - type: Transform - pos: 59.5,9.5 - parent: 12 - - uid: 26683 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 26684 - components: - - type: Transform - pos: 60.5,9.5 - parent: 12 - uid: 26695 components: - type: Transform @@ -188035,33 +189199,44 @@ entities: - type: Transform pos: -25.5,-9.5 parent: 12 + - uid: 26786 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 12 + - uid: 26822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 12 + - uid: 26823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 12 + - uid: 26850 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 12 - uid: 26882 components: - type: Transform pos: 56.5,-9.5 parent: 12 - - uid: 26892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 12 - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 12 - - uid: 26912 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 12 - - uid: 26954 + - uid: 27021 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,1.5 + pos: 46.5,0.5 parent: 12 - uid: 27038 components: @@ -188075,64 +189250,27 @@ entities: rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 12 - - uid: 27044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 12 - uid: 27076 components: - type: Transform pos: 67.5,13.5 parent: 12 - - uid: 27082 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 27090 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - uid: 27091 components: - type: Transform pos: 68.5,13.5 parent: 12 - - uid: 27092 - components: - - type: Transform - pos: 74.5,10.5 - parent: 12 - - uid: 27105 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - uid: 27106 components: - type: Transform pos: 55.5,13.5 parent: 12 - - uid: 27107 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - uid: 27147 components: - type: Transform @@ -188157,11 +189295,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,61.5 parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 79.5,-3.5 - parent: 12 - uid: 27334 components: - type: Transform @@ -188462,62 +189595,45 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,10.5 parent: 12 - - uid: 28804 + - uid: 28834 components: - type: Transform - pos: 63.5,-6.5 + pos: 32.5,3.5 parent: 12 - - uid: 28805 + - uid: 28835 components: - type: Transform - pos: 69.5,-6.5 + pos: 32.5,4.5 parent: 12 - - uid: 28806 + - uid: 28836 components: - type: Transform - pos: 75.5,-6.5 + pos: 33.5,5.5 parent: 12 - - uid: 28807 + - uid: 28837 components: - type: Transform - pos: 75.5,-5.5 + pos: 32.5,7.5 parent: 12 - - uid: 28808 + - uid: 28838 components: - type: Transform - pos: 76.5,-5.5 + pos: 30.5,7.5 parent: 12 - - uid: 28809 + - uid: 28843 components: - type: Transform - pos: 77.5,-5.5 + pos: 34.5,5.5 parent: 12 - - uid: 28810 + - uid: 28849 components: - type: Transform - pos: 77.5,-4.5 + pos: 32.5,2.5 parent: 12 - - uid: 28811 + - uid: 28943 components: - type: Transform - pos: 77.5,-3.5 - parent: 12 - - uid: 28812 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 28852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 - parent: 12 - - uid: 28856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 19.5,-13.5 parent: 12 - uid: 29163 components: @@ -188554,12 +189670,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 - - uid: 29355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 12 - uid: 29657 components: - type: Transform @@ -188784,11 +189894,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-63.5 parent: 12 - - uid: 31511 - components: - - type: Transform - pos: 32.5,3.5 - parent: 12 - uid: 31604 components: - type: Transform @@ -188819,37 +189924,34 @@ entities: - type: Transform pos: -64.5,-30.5 parent: 12 -- proto: WallReinforcedDiagonal - entities: - - uid: 21621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 12 - - uid: 22066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 12 - - uid: 22072 + - uid: 31891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,4.5 + pos: 17.5,22.5 parent: 12 - - uid: 22073 + - uid: 31892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 16.5,22.5 parent: 12 - - uid: 22075 + - uid: 31895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,3.5 + pos: 17.5,18.5 + parent: 12 + - uid: 31902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,7.5 + parent: 12 + - uid: 31906 + components: + - type: Transform + pos: 60.5,10.5 parent: 12 - proto: WallReinforcedRust entities: @@ -188870,12 +189972,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 - - uid: 2679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 12 - uid: 3624 components: - type: Transform @@ -188903,17 +189999,17 @@ entities: - type: Transform pos: -37.5,73.5 parent: 12 + - uid: 5110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 + parent: 12 - uid: 5794 components: - type: Transform pos: 41.5,-3.5 parent: 12 - - uid: 6765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 12 - uid: 7802 components: - type: Transform @@ -188925,12 +190021,6 @@ entities: - type: Transform pos: 44.5,-39.5 parent: 12 - - uid: 9437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 - parent: 12 - uid: 9531 components: - type: Transform @@ -188985,12 +190075,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 - - uid: 9908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 12 - uid: 10166 components: - type: Transform @@ -189245,11 +190329,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,69.5 parent: 12 - - uid: 12217 - components: - - type: Transform - pos: 36.5,5.5 - parent: 12 - uid: 12308 components: - type: Transform @@ -189302,12 +190381,6 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 - - uid: 17584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 12 - uid: 18709 components: - type: Transform @@ -189458,11 +190531,47 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 - - uid: 26834 + - uid: 26595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + rot: 3.141592653589793 rad + pos: 81.5,0.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-3.5 + parent: 12 + - uid: 26680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,11.5 + parent: 12 + - uid: 26691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,14.5 + parent: 12 + - uid: 26697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-5.5 + parent: 12 + - uid: 26714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-5.5 + parent: 12 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,13.5 parent: 12 - uid: 27035 components: @@ -189470,6 +190579,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 12 + - uid: 27044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 12 - uid: 27054 components: - type: Transform @@ -189520,6 +190635,26 @@ entities: - type: Transform pos: 42.5,65.5 parent: 12 + - uid: 28811 + components: + - type: Transform + pos: 36.5,5.5 + parent: 12 + - uid: 28812 + components: + - type: Transform + pos: 32.5,5.5 + parent: 12 + - uid: 28845 + components: + - type: Transform + pos: 29.5,7.5 + parent: 12 + - uid: 28919 + components: + - type: Transform + pos: 32.5,6.5 + parent: 12 - uid: 29123 components: - type: Transform @@ -190738,11 +191873,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-36.5 parent: 12 - - uid: 2808 - components: - - type: Transform - pos: 10.5,4.5 - parent: 12 - uid: 2823 components: - type: Transform @@ -191081,12 +192211,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 4175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 12 - uid: 4177 components: - type: Transform @@ -191239,11 +192363,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 12 - - uid: 4917 - components: - - type: Transform - pos: 10.5,5.5 - parent: 12 - uid: 4959 components: - type: Transform @@ -191260,12 +192379,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 12 - - uid: 5107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 12 - uid: 5178 components: - type: Transform @@ -191312,12 +192425,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 12 - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 12 - uid: 5498 components: - type: Transform @@ -191354,6 +192461,12 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 12 + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 12 - uid: 5827 components: - type: Transform @@ -191576,12 +192689,6 @@ entities: - type: Transform pos: 6.5,76.5 parent: 12 - - uid: 6719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 12 - uid: 6742 components: - type: Transform @@ -191999,12 +193106,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-32.5 parent: 12 - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 12 - uid: 7603 components: - type: Transform @@ -192131,12 +193232,6 @@ entities: - type: Transform pos: 46.5,9.5 parent: 12 - - uid: 9458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 12 - uid: 9594 components: - type: Transform @@ -192486,12 +193581,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 12 - - uid: 11203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,32.5 - parent: 12 - uid: 11208 components: - type: Transform @@ -192525,26 +193614,11 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,20.5 parent: 12 - - uid: 11360 - components: - - type: Transform - pos: 9.5,3.5 - parent: 12 - uid: 11363 components: - type: Transform pos: 40.5,14.5 parent: 12 - - uid: 11390 - components: - - type: Transform - pos: 27.5,13.5 - parent: 12 - - uid: 11392 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 11393 components: - type: Transform @@ -192587,21 +193661,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,26.5 parent: 12 - - uid: 11448 - components: - - type: Transform - pos: 10.5,3.5 - parent: 12 - - uid: 11464 - components: - - type: Transform - pos: 50.5,13.5 - parent: 12 - - uid: 11465 - components: - - type: Transform - pos: 49.5,13.5 - parent: 12 - uid: 11466 components: - type: Transform @@ -192627,11 +193686,6 @@ entities: - type: Transform pos: 34.5,13.5 parent: 12 - - uid: 11505 - components: - - type: Transform - pos: 35.5,13.5 - parent: 12 - uid: 11506 components: - type: Transform @@ -192697,11 +193751,6 @@ entities: - type: Transform pos: 47.5,18.5 parent: 12 - - uid: 11553 - components: - - type: Transform - pos: 46.5,22.5 - parent: 12 - uid: 11554 components: - type: Transform @@ -192748,11 +193797,6 @@ entities: - type: Transform pos: 31.5,20.5 parent: 12 - - uid: 11591 - components: - - type: Transform - pos: 31.5,21.5 - parent: 12 - uid: 11595 components: - type: Transform @@ -192832,11 +193876,6 @@ entities: - type: Transform pos: 50.5,23.5 parent: 12 - - uid: 11646 - components: - - type: Transform - pos: 50.5,22.5 - parent: 12 - uid: 11647 components: - type: Transform @@ -196010,11 +197049,6 @@ entities: - type: Transform pos: 52.5,9.5 parent: 12 - - uid: 25470 - components: - - type: Transform - pos: 51.5,9.5 - parent: 12 - uid: 25492 components: - type: Transform @@ -196108,12 +197142,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-41.5 parent: 12 - - uid: 25661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 12 - uid: 25662 components: - type: Transform @@ -196224,6 +197252,18 @@ entities: - type: Transform pos: 29.5,-29.5 parent: 12 + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 12 + - uid: 26698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,9.5 + parent: 12 - uid: 26830 components: - type: Transform @@ -196234,6 +197274,12 @@ entities: - type: Transform pos: -57.5,-31.5 parent: 12 + - uid: 27025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 12 - uid: 27031 components: - type: Transform @@ -196488,6 +197534,17 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 12 + - uid: 28924 + components: + - type: Transform + pos: 44.5,9.5 + parent: 12 + - uid: 28928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 12 - uid: 29116 components: - type: Transform @@ -196626,6 +197683,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 + - uid: 31889 + components: + - type: Transform + pos: 41.5,1.5 + parent: 12 - proto: WallSolidDiagonal entities: - uid: 24234 @@ -196749,6 +197811,17 @@ entities: - type: Transform pos: -48.5,66.5 parent: 12 + - uid: 11332 + components: + - type: Transform + pos: 45.5,9.5 + parent: 12 + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 12 - uid: 11580 components: - type: Transform @@ -197018,12 +198091,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 - - uid: 20884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 12 - uid: 21608 components: - type: Transform @@ -197046,6 +198113,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,25.5 parent: 12 + - uid: 24452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 12 - uid: 24635 components: - type: Transform @@ -197154,12 +198227,30 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 12 + - uid: 26816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 12 + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 12 - uid: 27172 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,17.5 parent: 12 + - uid: 27217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 12 - uid: 27226 components: - type: Transform @@ -197176,6 +198267,24 @@ entities: - type: Transform pos: -9.5,-35.5 parent: 12 + - uid: 27304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,32.5 + parent: 12 + - uid: 27316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 12 + - uid: 27385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 12 - uid: 27413 components: - type: Transform @@ -197218,11 +198327,40 @@ entities: - type: Transform pos: -51.5,-13.5 parent: 12 - - uid: 28770 + - uid: 28239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-3.5 + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 12 + - uid: 28391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,22.5 + parent: 12 + - uid: 28701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 12 + - uid: 28702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 12 + - uid: 28703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,9.5 + parent: 12 + - uid: 28942 + components: + - type: Transform + pos: 49.5,9.5 parent: 12 - uid: 29115 components: @@ -197593,12 +198731,21 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 -- proto: WarningN2 +- proto: WarningCO2 entities: - - uid: 27182 + - uid: 26826 components: - type: Transform - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 12 +- proto: WarningN2 + entities: + - uid: 26827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - uid: 30433 components: @@ -197607,29 +198754,44 @@ entities: parent: 12 - proto: WarningO2 entities: - - uid: 27183 + - uid: 26828 components: - type: Transform - pos: 61.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 12 - proto: WarningPlasma entities: - - uid: 27202 + - uid: 26832 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 12 +- proto: WarningTritium + entities: + - uid: 26840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 parent: 12 - proto: WarningWaste entities: - - uid: 27028 + - uid: 26764 components: - type: Transform - pos: 67.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,2.5 parent: 12 - - uid: 27906 + - uid: 26765 components: + - type: MetaData + desc: WARNING! Water vapor flow tube. Ensure the flow is disengaged before working. + name: water vapor warning sign - type: Transform - pos: 65.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-1.5 parent: 12 - proto: WaterCooler entities: @@ -197790,11 +198952,6 @@ entities: - type: Transform pos: 58.5,52.5 parent: 12 - - uid: 27030 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 12 - uid: 27328 components: - type: Transform @@ -197805,6 +198962,11 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 12 + - uid: 28842 + components: + - type: Transform + pos: 29.5,12.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -197849,16 +199011,21 @@ entities: - type: Transform pos: 13.5,21.5 parent: 12 + - uid: 5034 + components: + - type: Transform + pos: 25.5,8.5 + parent: 12 + - uid: 5675 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 12 - uid: 15785 components: - type: Transform pos: 9.5,32.5 parent: 12 - - uid: 26919 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - proto: WeaponCapacitorRecharger entities: - uid: 17416 @@ -198043,8 +199210,8 @@ entities: - uid: 9394 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.34557,2.520393 + rot: -25.132741228718352 rad + pos: 17.416166,-13.405632 parent: 12 - uid: 10394 components: @@ -198085,11 +199252,6 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 12 - - uid: 8799 - components: - - type: Transform - pos: 32.5,2.5 - parent: 12 - uid: 8878 components: - type: Transform @@ -198160,31 +199322,36 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 12 - - uid: 26552 + - uid: 26892 components: - type: Transform - pos: 45.5,-2.5 + pos: 16.5,20.5 parent: 12 - - uid: 26803 + - uid: 27022 components: - type: Transform - pos: 70.5,-5.5 + pos: 45.5,-3.5 parent: 12 - uid: 27846 components: - type: Transform pos: -15.5,69.5 parent: 12 - - uid: 28239 - components: - - type: Transform - pos: 15.5,17.5 - parent: 12 - uid: 28651 components: - type: Transform pos: -4.5,-23.5 parent: 12 + - uid: 28750 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 12 + - uid: 28841 + components: + - type: Transform + pos: 29.5,11.5 + parent: 12 - uid: 30402 components: - type: Transform @@ -198283,12 +199450,6 @@ entities: - type: Transform pos: -38.5,-21.5 parent: 12 - - uid: 6794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 12 - uid: 6982 components: - type: Transform @@ -198723,6 +199884,12 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,3.5 parent: 12 + - uid: 31908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,11.5 + parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 23890 @@ -198933,11 +200100,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 12 - - uid: 356 - components: - - type: Transform - pos: 9.5,2.5 - parent: 12 - uid: 371 components: - type: Transform @@ -199102,11 +200264,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 - - uid: 7124 - components: - - type: Transform - pos: 49.5,9.5 - parent: 12 - uid: 7382 components: - type: Transform @@ -199161,11 +200318,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-17.5 parent: 12 - - uid: 9398 - components: - - type: Transform - pos: 47.5,9.5 - parent: 12 - uid: 9637 components: - type: Transform @@ -199184,16 +200336,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 12 - - uid: 11485 - components: - - type: Transform - pos: 45.5,9.5 - parent: 12 - - uid: 11486 - components: - - type: Transform - pos: 44.5,9.5 - parent: 12 - uid: 11515 components: - type: Transform @@ -199774,21 +200916,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-12.5 parent: 12 - - uid: 20542 - components: - - type: Transform - pos: 53.5,11.5 - parent: 12 - - uid: 20543 - components: - - type: Transform - pos: 53.5,12.5 - parent: 12 - - uid: 20552 - components: - - type: Transform - pos: 53.5,10.5 - parent: 12 - uid: 22292 components: - type: Transform @@ -199836,16 +200963,6 @@ entities: - type: Transform pos: -54.5,-15.5 parent: 12 - - uid: 26562 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - uid: 27276 components: - type: Transform @@ -199917,11 +201034,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,0.5 parent: 12 - - uid: 5979 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - uid: 28193 components: - type: Transform @@ -201022,6 +202134,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-10.5 parent: 12 + - uid: 27236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,12.5 + parent: 12 - uid: 27514 components: - type: Transform @@ -201106,6 +202224,12 @@ entities: rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 + - uid: 31907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,10.5 + parent: 12 - proto: Wirecutter entities: - uid: 8737 @@ -201179,11 +202303,6 @@ entities: - 31202 - proto: Wrench entities: - - uid: 5053 - components: - - type: Transform - pos: 18.33702,3.4807546 - parent: 12 - uid: 5916 components: - type: Transform @@ -201204,7 +202323,8 @@ entities: - uid: 7197 components: - type: Transform - pos: 2.478019,-1.4704378 + rot: -12.566370614359172 rad + pos: 2.2218802,-0.60405827 parent: 12 - uid: 9080 components: @@ -201233,11 +202353,6 @@ entities: - type: Transform pos: 44.512337,53.244392 parent: 12 - - uid: 27207 - components: - - type: Transform - pos: 72.52122,-5.3538737 - parent: 12 - uid: 28277 components: - type: Transform @@ -201248,6 +202363,12 @@ entities: - type: Transform pos: 5.7223816,16.863264 parent: 12 + - uid: 29302 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.46028,4.4797335 + parent: 12 - proto: Zipties entities: - uid: 13512 From 9b9853439c28e466bee4ee595fab4427938bc14b Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:45:03 +0000 Subject: [PATCH 060/176] make flare recipe roundstart instead of blueprint (#32303) * make flare recipe roundstart instead of blueprint * migrate it --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Markers/Spawners/Random/Salvage/tables_loot.yml | 1 - .../Prototypes/Entities/Objects/Tools/blueprint.yml | 10 ---------- .../Prototypes/Entities/Structures/Machines/lathe.yml | 2 +- Resources/migration.yml | 3 +++ 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml index 552b8aae0d..b74a80c39d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml @@ -217,7 +217,6 @@ id: SalvageEquipmentRare table: !type:GroupSelector children: - - id: BlueprintFlare - id: FultonBeacon - id: Fulton amount: !type:RangeNumberSelector diff --git a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml index ba26baf362..43cbdc2431 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml @@ -37,13 +37,3 @@ - type: Blueprint providedRecipes: - SeismicCharge - -- type: entity - parent: BaseBlueprint - id: BlueprintFlare - name: flare blueprint - description: A blueprint with a schematic of a flare. It can be inserted into an autolathe. - components: - - type: Blueprint - providedRecipes: - - Flare diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index a905bc73da..538da8d93e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -198,7 +198,7 @@ - ClothingHeadHatWelding - WetFloorSign - ClothingHeadHatCone - + - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot diff --git a/Resources/migration.yml b/Resources/migration.yml index 6ef05275b5..352c9a4454 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -434,3 +434,6 @@ OverlordCircuitBoard: null # 2024-09-08 HatBase: null + +# 2024-09-19 +BlueprintFlare: null From bac7093f8435faf2d7a5a5087ae42c52a2c1b470 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 13:46:12 +0000 Subject: [PATCH 061/176] 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 5f5d96f41c..4a3bcfb209 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer shoot out of crates with guns - type: Fix - id: 6901 - time: '2024-07-11T05:14:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28961 - author: Cojoke-dot changes: - message: The Spray Painter can now be used to paint glass airlocks to look like @@ -3921,3 +3914,11 @@ id: 7400 time: '2024-09-19T10:23:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31659 +- author: deltanedas + changes: + - message: Removed the flare blueprint from salvage, it's now unlocked roundstart + in autolathes. + type: Remove + id: 7401 + time: '2024-09-19T13:45:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32303 From e490b69b4e4fd49f6fecf7a1e066fab1c7a1e630 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:50:59 +0200 Subject: [PATCH 062/176] fix conjugate have in cryo locale string (#31993) --- Content.Server/Bed/Cryostorage/CryostorageSystem.cs | 1 + Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index dd89ba2f72..cd4aa4a098 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,6 +239,7 @@ public sealed class CryostorageSystem : SharedCryostorageSystem Loc.GetString( "earlyleave-cryo-announcement", ("character", name), + ("entity", ent.Owner), ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 500a530562..7d1c079443 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,5 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! +earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! earlyleave-cryo-sender = Station From fdfbd74bcb697a7574ebc5ebef08f60c82a8479d Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:55:31 +0000 Subject: [PATCH 063/176] increase thieving beacon range to 2 (#31340) * increase thieving beacon range to 2 * add obstruction check * review * Entity strikes again * webedit ops because github died or something --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Objectives/Systems/StealConditionSystem.cs | 16 ++++++++++++---- .../Entities/Objects/Tools/thief_beacon.yml | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index e2d81e011c..48814e7ba3 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Objectives.Components; using Content.Server.Objectives.Components.Targets; using Content.Shared.CartridgeLoader; +using Content.Shared.Interaction; using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; @@ -21,11 +22,14 @@ public sealed class StealConditionSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; private EntityQuery _containerQuery; + private HashSet> _nearestEnts = new(); + public override void Initialize() { base.Initialize(); @@ -103,15 +107,19 @@ public sealed class StealConditionSystem : EntitySystem //check stealAreas if (condition.CheckStealAreas) { - var areasQuery = AllEntityQuery(); - while (areasQuery.MoveNext(out var uid, out var area)) + var areasQuery = AllEntityQuery(); + while (areasQuery.MoveNext(out var uid, out var area, out var xform)) { if (!area.Owners.Contains(mind.Owner)) continue; - var nearestEnt = _lookup.GetEntitiesInRange(uid, area.Range); - foreach (var ent in nearestEnt) + _nearestEnts.Clear(); + _lookup.GetEntitiesInRange(xform.Coordinates, area.Range, _nearestEnts); + foreach (var ent in _nearestEnts) { + if (!_interaction.InRangeUnobstructed((uid, xform), (ent, ent.Comp), range: area.Range)) + continue; + CheckEntity(ent, condition, ref containerStack, ref count); } } diff --git a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml index 042b3fe517..f0f3737417 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml @@ -6,6 +6,7 @@ components: - type: ThiefBeacon - type: StealArea + range: 2 # Slightly larger than fulton beacon's random offset - type: Item size: Normal - type: Physics From 90d19367f85bd859a2bdfbb3bd324b722a243789 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 13:56:37 +0000 Subject: [PATCH 064/176] 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 4a3bcfb209..e56ada2a0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: The Spray Painter can now be used to paint glass airlocks to look like - regular glass airlocks. - type: Tweak - id: 6902 - time: '2024-07-11T05:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29869 - author: MFMessage changes: - message: Picking a ghost role as an admin will now deadmin. @@ -3922,3 +3914,10 @@ id: 7401 time: '2024-09-19T13:45:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32303 +- author: deltanedas + changes: + - message: Increased the thieving beacon's range to 2 tiles. + type: Tweak + id: 7402 + time: '2024-09-19T13:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31340 From 0093fce5b498442cdee49644c4126dd1ea2a26e1 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:01:54 +0300 Subject: [PATCH 065/176] Dialog windows now grab the keyboard focus (#31294) * Dialog windows now grab the keyboard focus * Comment --- Content.Client/UserInterface/Controls/DialogWindow.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs index f50aca581b..733dbe3265 100644 --- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs +++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs @@ -87,6 +87,9 @@ public sealed partial class DialogWindow : FancyWindow Prompts.AddChild(box); } + // Grab keyboard focus for the first dialog entry + _promptLines[0].Item2.GrabKeyboardFocus(); + OkButton.OnPressed += _ => Confirm(); CancelButton.OnPressed += _ => From 30ac40f08832ed4f96cb51102155c4b50ba5c8d2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 14:03:00 +0000 Subject: [PATCH 066/176] 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 e56ada2a0a..5d3738016a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MFMessage - changes: - - message: Picking a ghost role as an admin will now deadmin. - type: Fix - id: 6903 - time: '2024-07-11T05:53:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29790 - author: Winkarst-cpu changes: - message: Admin notes popups are now more readable. @@ -3921,3 +3914,11 @@ id: 7402 time: '2024-09-19T13:55:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31340 +- author: Winkarst-cpu + changes: + - message: The first editable line in the dialog window now grabs the keyboard focus + once it's open. + type: Fix + id: 7403 + time: '2024-09-19T14:01:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31294 From d5d6fb51aa6e8d378fb92fb4ad7bea0682f7e721 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 19 Sep 2024 07:08:33 -0700 Subject: [PATCH 067/176] Allows you to buckle transfer person from bed to bed (#32089) * unbuckle if the target is buckled * better way to do it --- Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 7f6c39eafc..8b35f677f1 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -268,7 +268,7 @@ public abstract partial class SharedBuckleSystem return false; } - if (buckleComp.Buckled) + if (buckleComp.Buckled && !TryUnbuckle(buckleUid, user, buckleComp)) { if (popup) { From b32bdbf8e9a8498651f090a4fc4dddb510acbe0c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 14:09:39 +0000 Subject: [PATCH 068/176] 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 5d3738016a..76b01c427f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Admin notes popups are now more readable. - type: Tweak - id: 6904 - time: '2024-07-11T14:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29909 - author: jonathanargo changes: - message: Muskets are now wieldable. @@ -3922,3 +3915,10 @@ id: 7403 time: '2024-09-19T14:01:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31294 +- author: Plykiya + changes: + - message: You can now transfer someone from a rollerbed to a bed directly. + type: Tweak + id: 7404 + time: '2024-09-19T14:08:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32089 From 3e1c067c41539841bbb374d8584dd32a9bf1c93f Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 20 Sep 2024 01:17:18 +0600 Subject: [PATCH 069/176] Fland change - Add glasslocks to the Contiguous Fland Hallway Volume (#32264) * Add glasslocks to the Contiguous Fland Hallway Volume * Fix up the firelocks, hopefully! --- Resources/Maps/fland.yml | 235 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 222 insertions(+), 13 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 54ef4d5510..b3d09487ad 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -524,7 +524,7 @@ entities: version: 6 5,2: ind: 5,2 - tiles: fgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB + tiles: fgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB version: 6 4,3: ind: 4,3 @@ -17208,12 +17208,9 @@ entities: parent: 13329 - type: DeviceList devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 + - 35811 + - 35810 + - 35809 - 21406 - 21405 - 21404 @@ -17349,6 +17346,9 @@ entities: - 29750 - 16742 - 29748 + - 21412 + - 21411 + - 21410 - uid: 31264 components: - type: Transform @@ -19611,6 +19611,176 @@ entities: - type: Transform pos: 57.5,32.5 parent: 13329 + - uid: 35743 + components: + - type: Transform + pos: -1.5,7.5 + parent: 13329 + - uid: 35769 + components: + - type: Transform + pos: -0.5,7.5 + parent: 13329 + - uid: 35786 + components: + - type: Transform + pos: 0.5,7.5 + parent: 13329 + - uid: 35787 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 13329 + - uid: 35788 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 13329 + - uid: 35789 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 13329 + - uid: 35790 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 13329 + - uid: 35791 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 13329 + - uid: 35792 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 13329 + - uid: 35793 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 13329 + - uid: 35794 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 13329 + - uid: 35795 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 13329 + - uid: 35796 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 13329 + - uid: 35797 + components: + - type: Transform + pos: 54.5,1.5 + parent: 13329 + - uid: 35798 + components: + - type: Transform + pos: 55.5,1.5 + parent: 13329 + - uid: 35799 + components: + - type: Transform + pos: 56.5,1.5 + parent: 13329 + - uid: 35800 + components: + - type: Transform + pos: 53.5,34.5 + parent: 13329 + - uid: 35801 + components: + - type: Transform + pos: 53.5,33.5 + parent: 13329 + - uid: 35802 + components: + - type: Transform + pos: 53.5,32.5 + parent: 13329 + - uid: 35803 + components: + - type: Transform + pos: 54.5,35.5 + parent: 13329 + - uid: 35804 + components: + - type: Transform + pos: 55.5,35.5 + parent: 13329 + - uid: 35805 + components: + - type: Transform + pos: 56.5,35.5 + parent: 13329 + - uid: 35806 + components: + - type: Transform + pos: 81.5,37.5 + parent: 13329 + - uid: 35807 + components: + - type: Transform + pos: 82.5,37.5 + parent: 13329 + - uid: 35808 + components: + - type: Transform + pos: 83.5,37.5 + parent: 13329 + - uid: 35812 + components: + - type: Transform + pos: 1.5,34.5 + parent: 13329 + - uid: 35813 + components: + - type: Transform + pos: 1.5,33.5 + parent: 13329 + - uid: 35814 + components: + - type: Transform + pos: 1.5,32.5 + parent: 13329 + - uid: 35815 + components: + - type: Transform + pos: -6.5,46.5 + parent: 13329 + - uid: 35816 + components: + - type: Transform + pos: -6.5,45.5 + parent: 13329 + - uid: 35817 + components: + - type: Transform + pos: -6.5,44.5 + parent: 13329 + - uid: 35818 + components: + - type: Transform + pos: -5.5,49.5 + parent: 13329 + - uid: 35819 + components: + - type: Transform + pos: -4.5,49.5 + parent: 13329 + - uid: 35820 + components: + - type: Transform + pos: -3.5,49.5 + parent: 13329 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 16662 @@ -112647,12 +112817,9 @@ entities: parent: 13329 - type: DeviceList devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 + - 35811 + - 35810 + - 35809 - 21406 - 21405 - 21404 @@ -112754,6 +112921,9 @@ entities: - 21407 - 21408 - 21409 + - 21412 + - 21411 + - 21410 - proto: FireAxeCabinetFilled entities: - uid: 22994 @@ -114418,16 +114588,28 @@ entities: - type: Transform pos: 84.5,38.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21411 components: - type: Transform pos: 84.5,39.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21412 components: - type: Transform pos: 84.5,40.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21413 components: - type: Transform @@ -114708,6 +114890,33 @@ entities: - type: Transform pos: 48.5,47.5 parent: 13329 + - uid: 35809 + components: + - type: Transform + pos: 81.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 + - uid: 35810 + components: + - type: Transform + pos: 82.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 + - uid: 35811 + components: + - type: Transform + pos: 83.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 - proto: Fireplace entities: - uid: 6349 From 937940bcc700b26318a6da9b4e0e74c1c5f27300 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 19:18:28 +0000 Subject: [PATCH 070/176] 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 76b01c427f..2f5e15c360 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: jonathanargo - changes: - - message: Muskets are now wieldable. - type: Tweak - id: 6905 - time: '2024-07-12T09:16:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29910 - author: themias changes: - message: Notice boards can now be built on walls @@ -3922,3 +3915,10 @@ id: 7404 time: '2024-09-19T14:08:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32089 +- author: SaphireLattice + changes: + - message: Fland now has public glass airlocks sectioning the hallway. + type: Fix + id: 7405 + time: '2024-09-19T19:17:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32264 From 24c412f16e48cbf8cf26a55b8f03fad8d994bb2b Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:15:45 -0700 Subject: [PATCH 071/176] Removes cockroach/mothroach melee damage (#32221) no more cockroach and mothroach damage --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 8e05642c0e..2ab2534121 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -389,6 +389,14 @@ - type: NonSpreaderZombie - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-organic + - type: MeleeWeapon + soundHit: + path: /Audio/Effects/bite.ogg + angle: 0 + animation: WeaponArcBite + damage: + types: + Piercing: 0 - type: entity name: glockroach From d74d44acff70139c33bc54d0fc28964712d331c7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 22:16:52 +0000 Subject: [PATCH 072/176] 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 2f5e15c360..7672a06006 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Notice boards can now be built on walls - type: Fix - id: 6906 - time: '2024-07-12T09:18:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29851 - author: slarticodefast changes: - message: Stun batons, stun prods and banana cream pies now fly like other throwing @@ -3922,3 +3915,10 @@ id: 7405 time: '2024-09-19T19:17:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32264 +- author: Plykiya + changes: + - message: Cockroaches and mothroaches can no longer damage things with their bites. + type: Tweak + id: 7406 + time: '2024-09-19T22:15:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32221 From 1a601c49a53e61a43c20dedfd25a4056796d1d0d Mon Sep 17 00:00:00 2001 From: PopGamer46 Date: Fri, 20 Sep 2024 01:27:23 +0200 Subject: [PATCH 073/176] Makes the rat king's cheeseEm order more convenient to use (#32181) more convenient cheeseem --- Resources/Prototypes/NPCs/mob.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index b0e1c8ae9b..dd3378618a 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -15,6 +15,9 @@ - tasks: - !type:HTNCompoundTask task: RatServantCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound - tasks: - !type:HTNCompoundTask task: IdleCompound From 7aae8c0099c6f0c26fab0b68d1b11df8613089bc Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 23:28:29 +0000 Subject: [PATCH 074/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7672a06006..8dabef5af4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Stun batons, stun prods and banana cream pies now fly like other throwing - weapons when thrown. - type: Fix - id: 6907 - time: '2024-07-12T09:19:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29883 - author: Plykiya changes: - message: Dropping an item while in a container now places the item in the container. @@ -3922,3 +3914,11 @@ id: 7406 time: '2024-09-19T22:15:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32221 +- author: PopGamer46 + changes: + - message: The rat king's rats now follow you instead of idling when there is no + one to attack during the CheeseEm order + type: Tweak + id: 7407 + time: '2024-09-19T23:27:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32181 From 2d42a6bf98765f0cdbe84b876115849b79d248a8 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Thu, 19 Sep 2024 20:55:48 -0700 Subject: [PATCH 075/176] Cog update (Mail) (#32315) make mailing better --- Resources/Maps/cog.yml | 4126 ++++++++++++++++++++++++---------------- 1 file changed, 2507 insertions(+), 1619 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 7915d9cef0..a7d46ed26d 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -96,7 +96,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -176,11 +176,11 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 @@ -224,7 +224,7 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 @@ -284,7 +284,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 @@ -320,7 +320,7 @@ entities: version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABCwAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -332,15 +332,15 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABfQAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAABfQAAAAADfQAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAACfQAAAAAAfQAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAABfQAAAAABfQAAAAADDAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABfQAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAAAfQAAAAAAfQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 @@ -356,7 +356,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 @@ -368,7 +368,7 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAEAAAAAAAEAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 @@ -496,7 +496,6 @@ entities: id: Arrows decals: 8241: 30,2 - 8242: 30,4 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -711,9 +710,7 @@ entities: 2047: -15,-9 2048: -13,-7 2049: -26,2 - 2089: -32,11 2090: -29,11 - 2091: -29,7 2092: -32,7 2238: -45,38 2239: -45,39 @@ -2805,8 +2802,6 @@ entities: 8105: 31,7 8106: 31,6 8107: 31,5 - 8108: 30,4 - 8109: 30,4 8111: 29,2 8112: 29,6 8113: 34,4 @@ -4722,6 +4717,7 @@ entities: 4239: 39,57 4240: 40,57 7501: 76,50 + 8368: 66,50 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -5883,6 +5879,8 @@ entities: 2933: 77,49 4723: 51,51 7570: -58,31 + 8369: 72,48 + 8370: 72,49 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -7747,17 +7745,6 @@ entities: decals: 5968: 37,19 5969: 43,14 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnCornerGreyscaleSW - decals: - 8064: 66,50 - - node: - color: '#439909FF' - id: WarnCornerNE - decals: - 8057: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -7783,16 +7770,6 @@ entities: id: WarnCornerNW decals: 542: -6,-50 - - node: - color: '#439909FF' - id: WarnCornerSE - decals: - 8059: 67,50 - - node: - color: '#DE3A3AFF' - id: WarnCornerSE - decals: - 4103: 25,55 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -7804,11 +7781,6 @@ entities: 2694: 25,72 2695: 26,77 8177: 35,1 - - node: - color: '#000000FF' - id: WarnCornerSW - decals: - 8063: 66,50 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -7872,6 +7844,16 @@ entities: 905: 9,-15 1253: 57,-25 2744: 11,77 + - node: + color: '#439909FF' + id: WarnEndE + decals: + 8366: 25,56 + - node: + color: '#439909FF' + id: WarnEndS + decals: + 8367: 67,50 - node: color: '#FFFFFFFF' id: WarnFull @@ -8187,6 +8169,7 @@ entities: 5755: -45,34 6722: -26,0 7538: -24,-54 + 8371: 11,51 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -8287,6 +8270,10 @@ entities: 6725: -25,0 7543: -23,-54 7550: -21,-55 + 8375: 12,51 + 8376: 13,51 + 8377: 14,51 + 8378: 15,51 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8353,6 +8340,9 @@ entities: 5757: -45,33 7541: -24,-56 7542: -24,-55 + 8372: 11,47 + 8373: 11,48 + 8374: 11,49 - node: zIndex: 1 color: '#FFFFFFFF' @@ -11663,6 +11653,19 @@ entities: - type: Transform pos: 16.5,6.5 parent: 12 + - type: DeviceList + devices: + - 28143 + - 31992 + - 31991 + - 31990 + - 28936 + - 27970 + - 27965 + - 27957 + - 31993 + - 31994 + - 31995 - uid: 4418 components: - type: Transform @@ -17883,6 +17886,30 @@ entities: - type: DeviceNetwork deviceLists: - 31755 + - uid: 31993 + components: + - type: Transform + pos: 17.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31994 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31995 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - proto: AirSensorVox entities: - uid: 19806 @@ -19970,6 +19997,12 @@ entities: parent: 12 - proto: BaseComputer entities: + - uid: 8950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,47.5 + parent: 12 - uid: 16516 components: - type: Transform @@ -19981,11 +20014,6 @@ entities: - type: Transform pos: 40.5,57.5 parent: 12 - - uid: 24155 - components: - - type: Transform - pos: 59.5,50.5 - parent: 12 - proto: BaseGasCondenser entities: - uid: 2316 @@ -20492,6 +20520,11 @@ entities: parent: 12 - proto: Biogenerator entities: + - uid: 107 + components: + - type: Transform + pos: 59.5,50.5 + parent: 12 - uid: 2784 components: - type: Transform @@ -21690,15 +21723,17 @@ entities: - type: Transform pos: 52.52656,46.632416 parent: 12 - - uid: 25867 + - uid: 28896 components: - type: Transform - pos: 57.365803,56.3691 + rot: -12.566370614359172 rad + pos: -24.613401,34.621143 parent: 12 - - uid: 25868 + - uid: 31997 components: - type: Transform - pos: 57.678303,56.665974 + rot: -12.566370614359172 rad + pos: -24.461199,34.523228 parent: 12 - proto: BoxFolderGreen entities: @@ -21859,6 +21894,14 @@ entities: - type: Transform pos: 28.26377,38.438717 parent: 12 +- proto: BoxShellTranquilizer + entities: + - uid: 27968 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 12.796418,-35.638966 + parent: 12 - proto: BoxSterileMask entities: - uid: 2790 @@ -21990,12 +22033,12 @@ entities: - uid: 24162 components: - type: Transform - pos: 65.90268,50.539516 + pos: 66.26953,50.546974 parent: 12 - uid: 24163 components: - type: Transform - pos: 65.43393,50.74264 + pos: 65.501015,50.681324 parent: 12 - uid: 25857 components: @@ -39640,11 +39683,6 @@ entities: - type: Transform pos: 63.5,-3.5 parent: 12 - - uid: 26865 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - uid: 26867 components: - type: Transform @@ -40740,6 +40778,16 @@ entities: - type: Transform pos: 11.5,22.5 parent: 12 + - uid: 28457 + components: + - type: Transform + pos: -41.5,30.5 + parent: 12 + - uid: 28463 + components: + - type: Transform + pos: -40.5,30.5 + parent: 12 - uid: 28475 components: - type: Transform @@ -41000,6 +41048,11 @@ entities: - type: Transform pos: 59.5,-1.5 parent: 12 + - uid: 28742 + components: + - type: Transform + pos: -40.5,27.5 + parent: 12 - uid: 28866 components: - type: Transform @@ -41185,6 +41238,11 @@ entities: - type: Transform pos: 3.5,-19.5 parent: 12 + - uid: 28938 + components: + - type: Transform + pos: -41.5,27.5 + parent: 12 - uid: 28949 components: - type: Transform @@ -42545,11 +42603,6 @@ entities: - type: Transform pos: -28.5,-53.5 parent: 12 - - uid: 30809 - components: - - type: Transform - pos: -26.5,-52.5 - parent: 12 - uid: 30810 components: - type: Transform @@ -43090,6 +43143,16 @@ entities: - type: Transform pos: 58.5,9.5 parent: 12 + - uid: 32016 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 12 + - uid: 32017 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -69330,11 +69393,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 12 - - uid: 107 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 12 - uid: 110 components: - type: Transform @@ -69395,12 +69453,30 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 12 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 12 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 12 - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 12 + - uid: 2185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 12 - uid: 2322 components: - type: Transform @@ -69479,6 +69555,18 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 12 + - uid: 3116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 12 + - uid: 3914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 12 - uid: 3917 components: - type: Transform @@ -69727,11 +69815,11 @@ entities: - type: Transform pos: -36.5,-53.5 parent: 12 - - uid: 4760 + - uid: 4767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + rot: 3.141592653589793 rad + pos: 30.5,13.5 parent: 12 - uid: 4793 components: @@ -69775,6 +69863,18 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,3.5 parent: 12 + - uid: 5041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 12 + - uid: 5055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 12 - uid: 5097 components: - type: Transform @@ -69787,11 +69887,23 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-34.5 parent: 12 - - uid: 5323 + - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 12 + - uid: 5217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 12 + - uid: 5240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 parent: 12 - uid: 5419 components: @@ -70380,12 +70492,6 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 - - uid: 6767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 12 - uid: 7215 components: - type: Transform @@ -70817,12 +70923,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-35.5 parent: 12 - - uid: 8790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 12 - uid: 8854 components: - type: Transform @@ -70841,6 +70941,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 12 - uid: 9416 components: - type: Transform @@ -70905,6 +71011,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,59.5 parent: 12 + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 12 - uid: 10595 components: - type: Transform @@ -70934,11 +71046,11 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 12 - - uid: 10839 + - uid: 10870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 + rot: 3.141592653589793 rad + pos: 5.5,8.5 parent: 12 - uid: 10921 components: @@ -70955,12 +71067,6 @@ entities: - type: Transform pos: 19.5,10.5 parent: 12 - - uid: 10931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 12 - uid: 10935 components: - type: Transform @@ -71022,12 +71128,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,15.5 parent: 12 - - uid: 11061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 12 - uid: 11063 components: - type: Transform @@ -71161,25 +71261,11 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,9.5 parent: 12 - - uid: 11398 - components: - - type: Transform - pos: 25.5,17.5 - parent: 12 - - uid: 11401 - components: - - type: Transform - pos: 22.5,17.5 - parent: 12 - - uid: 11402 - components: - - type: Transform - pos: 23.5,17.5 - parent: 12 - uid: 11403 components: - type: Transform - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 parent: 12 - uid: 11455 components: @@ -71191,11 +71277,29 @@ entities: - type: Transform pos: 47.5,9.5 parent: 12 - - uid: 11937 + - uid: 11569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 12 + - uid: 11571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 12 + - uid: 11574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 12 + - uid: 11688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 parent: 12 - uid: 11940 components: @@ -71532,6 +71636,12 @@ entities: - type: Transform pos: 51.5,76.5 parent: 12 + - uid: 15115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 12 - uid: 15676 components: - type: Transform @@ -71638,12 +71748,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,11.5 parent: 12 - - uid: 17641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 12 - uid: 17662 components: - type: Transform @@ -71925,6 +72029,12 @@ entities: - type: Transform pos: -1.5,34.5 parent: 12 + - uid: 21470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 12 - uid: 21533 components: - type: Transform @@ -72217,6 +72327,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-8.5 parent: 12 + - uid: 22022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 12 - uid: 22076 components: - type: Transform @@ -72315,6 +72431,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-52.5 parent: 12 + - uid: 24144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 12 - uid: 24228 components: - type: Transform @@ -72345,6 +72467,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,60.5 parent: 12 + - uid: 24438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 12 - uid: 24512 components: - type: Transform @@ -73167,12 +73295,6 @@ entities: - type: Transform pos: 1.5,18.5 parent: 12 - - uid: 26076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 12 - uid: 26236 components: - type: Transform @@ -73191,6 +73313,12 @@ entities: rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 12 + - uid: 27064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 12 - uid: 27240 components: - type: Transform @@ -73203,11 +73331,23 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,4.5 parent: 12 + - uid: 27317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 12 + - uid: 27318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 12 - uid: 27319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 + rot: 3.141592653589793 rad + pos: 25.5,17.5 parent: 12 - uid: 27332 components: @@ -73680,6 +73820,27 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,18.5 parent: 12 + - uid: 27953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-21.5 + parent: 12 + - uid: 27966 + components: + - type: Transform + pos: 24.5,17.5 + parent: 12 + - uid: 27967 + components: + - type: Transform + pos: 22.5,17.5 + parent: 12 + - uid: 27969 + components: + - type: Transform + pos: 23.5,17.5 + parent: 12 - uid: 28230 components: - type: Transform @@ -73788,24 +73949,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,8.5 parent: 12 - - uid: 28457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 12 - uid: 28493 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 12 - - uid: 28526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 12 - uid: 28601 components: - type: Transform @@ -73986,16 +74135,6 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 12 - - uid: 28645 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28646 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 12 - uid: 28647 components: - type: Transform @@ -74018,42 +74157,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-0.5 parent: 12 - - uid: 28932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 12 - - uid: 28933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 12 - - uid: 28934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 12 - - uid: 28935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 12 - - uid: 28936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 12 - - uid: 28938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 12 - uid: 28939 components: - type: Transform @@ -74595,31 +74698,6 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 - - uid: 30474 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 30475 - components: - - type: Transform - pos: 30.5,14.5 - parent: 12 - - uid: 30476 - components: - - type: Transform - pos: 30.5,15.5 - parent: 12 - - uid: 30477 - components: - - type: Transform - pos: 30.5,16.5 - parent: 12 - - uid: 30478 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - uid: 30479 components: - type: Transform @@ -74630,11 +74708,6 @@ entities: - type: Transform pos: 30.5,18.5 parent: 12 - - uid: 30481 - components: - - type: Transform - pos: 29.5,17.5 - parent: 12 - uid: 30901 components: - type: Transform @@ -77280,12 +77353,6 @@ entities: - type: Transform pos: 40.23914,28.830877 parent: 12 - - uid: 13012 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 38.32882,63.725273 - parent: 12 - uid: 17613 components: - type: Transform @@ -77402,6 +77469,11 @@ entities: parent: 12 - proto: CigarGold entities: + - uid: 15114 + components: + - type: Transform + pos: -29.484297,7.799851 + parent: 12 - uid: 22676 components: - type: Transform @@ -77412,7 +77484,8 @@ entities: - uid: 15843 components: - type: Transform - pos: -31.578348,7.632894 + rot: -12.566370614359172 rad + pos: -30.428051,7.541847 parent: 12 - proto: CigCartonBlue entities: @@ -78136,6 +78209,42 @@ entities: - type: Transform pos: -10.5,-58.5 parent: 12 +- proto: ClosetLegalFilled + entities: + - uid: 8948 + components: + - type: Transform + pos: -24.5,31.5 + parent: 12 + - 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: + - 8949 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetMaintenanceFilledRandom entities: - uid: 894 @@ -78497,16 +78606,38 @@ entities: - type: Transform pos: -39.5,32.5 parent: 12 - - uid: 21469 - components: - - type: Transform - pos: -24.5,32.5 - parent: 12 - - uid: 21470 - components: - - type: Transform - pos: -24.5,31.5 - parent: 12 + - 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: + - 8477 + - 8498 + - 8790 + - 8804 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetToolFilled entities: - uid: 902 @@ -78607,7 +78738,8 @@ entities: - uid: 2043 components: - type: Transform - pos: -18.489782,-21.02709 + rot: -6.283185307179586 rad + pos: -18.539837,-21.05266 parent: 12 - uid: 9108 components: @@ -78885,6 +79017,14 @@ entities: rot: -6.283185307179586 rad pos: 31.319462,23.37985 parent: 12 +- proto: ClothingHeadHatChickenhead + entities: + - uid: 25868 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 58.704426,58.721027 + parent: 12 - proto: ClothingHeadHatCone entities: - uid: 16765 @@ -78952,11 +79092,6 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 - - uid: 26218 - components: - - type: Transform - pos: -24.520052,34.79124 - parent: 12 - proto: ClothingHeadHatTophat entities: - uid: 23553 @@ -79134,6 +79269,13 @@ entities: parent: 12 - proto: ClothingMaskGas entities: + - uid: 8498 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13014 components: - type: Transform @@ -79189,13 +79331,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingNeckBling - entities: - - uid: 17459 - components: - - type: Transform - pos: -28.339855,7.670552 - parent: 12 - proto: ClothingNeckCloakAce entities: - uid: 18303 @@ -79422,6 +79557,15 @@ entities: - type: Transform pos: 37.5,37.5 parent: 12 +- proto: ClothingOuterHoodieGrey + entities: + - uid: 8477 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - uid: 2825 @@ -79450,13 +79594,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterRobesJudge - entities: - - uid: 26217 - components: - - type: Transform - pos: -24.514727,34.5396 - parent: 12 - proto: ClothingOuterStraightjacket entities: - uid: 19275 @@ -79517,7 +79654,8 @@ entities: - uid: 17387 components: - type: Transform - pos: -28.495407,7.6554866 + rot: -12.566370614359172 rad + pos: -30.809994,11.504305 parent: 12 - proto: ClothingShoesBootsCowboyBrown entities: @@ -79643,6 +79781,24 @@ entities: - type: Transform pos: -16.566727,62.579807 parent: 12 +- proto: ClothingUniformJumpskirtLawyerBlack + entities: + - uid: 8939 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerBlue + entities: + - uid: 8865 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorBrown entities: - uid: 12812 @@ -79650,6 +79806,15 @@ entities: - type: Transform pos: 55.808376,27.453695 parent: 12 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 8790 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitGladiator entities: - uid: 31205 @@ -79678,6 +79843,24 @@ entities: - type: Transform pos: 5.4296494,41.582844 parent: 12 +- proto: ClothingUniformJumpsuitLawyerBlack + entities: + - uid: 8947 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlue + entities: + - uid: 8940 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - uid: 28255 @@ -79695,6 +79878,14 @@ entities: rot: -6.283185307179586 rad pos: 13.549731,-35.194027 parent: 12 +- proto: ClothingUniformOveralls + entities: + - uid: 24116 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 58.704426,58.319515 + parent: 12 - proto: Cobweb1 entities: - uid: 4897 @@ -80404,12 +80595,6 @@ entities: containers: board: !type:Container ents: [] - - uid: 24144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,47.5 - parent: 12 - proto: ComputerId entities: - uid: 2995 @@ -81406,28 +81591,24 @@ entities: parent: 12 - type: Lock locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PhysShapeCircle - radius: 0.45 - position: 0,0 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateBaseSecure entities: - uid: 6770 @@ -83069,12 +83250,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-36.5 parent: 12 - - uid: 3914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,12.5 - parent: 12 - uid: 3924 components: - type: Transform @@ -83139,12 +83314,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-47.5 parent: 12 - - uid: 5055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,49.5 - parent: 12 - uid: 5131 components: - type: Transform @@ -83161,12 +83330,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 12 - - uid: 5682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - uid: 5892 components: - type: Transform @@ -83207,12 +83370,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,50.5 parent: 12 - - uid: 8286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 12 - uid: 8352 components: - type: Transform @@ -83247,26 +83404,17 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-40.5 parent: 12 - - uid: 8804 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 12 - uid: 8903 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-42.5 parent: 12 - - uid: 8953 + - uid: 8951 components: - type: Transform - pos: 49.5,-17.5 - parent: 12 - - uid: 9001 - components: - - type: Transform - pos: 30.5,17.5 + rot: 3.141592653589793 rad + pos: 32.5,11.5 parent: 12 - uid: 9071 components: @@ -83280,6 +83428,12 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-0.5 parent: 12 + - uid: 9674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,54.5 + parent: 12 - uid: 9798 components: - type: Transform @@ -83314,12 +83468,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-12.5 parent: 12 - - uid: 10320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 12 - uid: 10414 components: - type: Transform @@ -83377,11 +83525,46 @@ entities: - type: Transform pos: 31.5,8.5 parent: 12 + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 12 + - uid: 11434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 12 - uid: 11446 components: - type: Transform pos: 20.5,10.5 parent: 12 + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,45.5 + parent: 12 + - uid: 11790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,53.5 + parent: 12 + - uid: 11792 + components: + - type: Transform + pos: 28.5,56.5 + parent: 12 + - uid: 11937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,53.5 + parent: 12 - uid: 11965 components: - type: Transform @@ -83494,6 +83677,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,28.5 parent: 12 + - uid: 14936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,41.5 + parent: 12 - uid: 15046 components: - type: Transform @@ -83536,21 +83725,21 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,53.5 parent: 12 - - uid: 15143 + - uid: 15137 components: - type: Transform - pos: 26.5,55.5 + pos: 42.5,7.5 + parent: 12 + - uid: 15141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 parent: 12 - uid: 15144 components: - type: Transform - pos: 31.5,56.5 - parent: 12 - - uid: 15145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,54.5 + pos: 37.5,11.5 parent: 12 - uid: 15153 components: @@ -83576,6 +83765,12 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,42.5 parent: 12 + - uid: 15175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 12 - uid: 15400 components: - type: Transform @@ -83686,12 +83881,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,41.5 parent: 12 - - uid: 20259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 12 - uid: 20260 components: - type: Transform @@ -83970,12 +84159,47 @@ entities: - type: Transform pos: 31.5,0.5 parent: 12 + - uid: 25517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,45.5 + parent: 12 + - uid: 25521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 12 + - uid: 25942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 12 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 12 + - uid: 25947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 12 - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-47.5 parent: 12 + - uid: 26217 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 12 - uid: 26511 components: - type: Transform @@ -84016,12 +84240,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-4.5 parent: 12 - - uid: 27317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 12 - uid: 27387 components: - type: Transform @@ -84033,12 +84251,6 @@ entities: - type: Transform pos: 54.5,8.5 parent: 12 - - uid: 27984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 12 - uid: 28038 components: - type: Transform @@ -84075,48 +84287,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-35.5 parent: 12 - - uid: 28044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 12 - - uid: 28052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 12 - - uid: 28053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 12 - - uid: 28054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 12 - - uid: 28056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 12 - - uid: 28057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,12.5 - parent: 12 - - uid: 28058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 12 - uid: 28086 components: - type: Transform @@ -84147,28 +84317,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,45.5 parent: 12 - - uid: 28141 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - uid: 28142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,44.5 - parent: 12 - - uid: 28143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,44.5 - parent: 12 - - uid: 28144 - components: - - type: Transform - pos: 60.5,45.5 - parent: 12 - uid: 28148 components: - type: Transform @@ -84192,12 +84340,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-50.5 parent: 12 - - uid: 28463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-26.5 - parent: 12 - uid: 28998 components: - type: Transform @@ -84314,6 +84456,64 @@ entities: - type: Transform pos: -9.5,72.5 parent: 12 + - uid: 31916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 12 + - uid: 31917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 12 + - uid: 31918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 12 + - uid: 31946 + components: + - type: Transform + pos: -14.5,2.5 + parent: 12 + - uid: 31947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 12 + - uid: 32009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,47.5 + parent: 12 + - uid: 32010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,47.5 + parent: 12 + - uid: 32011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,45.5 + parent: 12 + - uid: 32012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 12 + - uid: 32013 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 - proto: DisposalJunction entities: - uid: 1900 @@ -84471,18 +84671,18 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,44.5 parent: 12 - - uid: 24041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,49.5 - parent: 12 - uid: 24045 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,47.5 parent: 12 + - uid: 27954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,41.5 + parent: 12 - proto: DisposalJunctionFlipped entities: - uid: 1882 @@ -84574,11 +84774,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-37.5 parent: 12 - - uid: 8947 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 12 - uid: 10447 components: - type: Transform @@ -84698,6 +84893,12 @@ entities: parent: 12 - proto: DisposalPipe entities: + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 12 - uid: 404 components: - type: Transform @@ -84731,8 +84932,8 @@ entities: - uid: 910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 + rot: -1.5707963267948966 rad + pos: 41.5,7.5 parent: 12 - uid: 1084 components: @@ -85091,12 +85292,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 12 - - uid: 2185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 12 - uid: 2538 components: - type: Transform @@ -85115,12 +85310,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,49.5 parent: 12 - - uid: 3116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,45.5 - parent: 12 - uid: 3121 components: - type: Transform @@ -85563,6 +85752,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-39.5 parent: 12 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 12 - uid: 4398 components: - type: Transform @@ -85617,34 +85812,47 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,53.5 parent: 12 + - uid: 4697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 12 - uid: 4710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,45.5 + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 12 + - uid: 4744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 parent: 12 - uid: 4749 components: - type: Transform - pos: 6.5,-19.5 + rot: -1.5707963267948966 rad + pos: 28.5,-26.5 parent: 12 - uid: 4751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 parent: 12 - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-16.5 + rot: -1.5707963267948966 rad + pos: 32.5,-26.5 parent: 12 - - uid: 4767 + - uid: 4760 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-12.5 + pos: 42.5,-11.5 parent: 12 - uid: 4922 components: @@ -85700,12 +85908,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-51.5 parent: 12 - - uid: 5041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,45.5 - parent: 12 - uid: 5051 components: - type: Transform @@ -85717,11 +85919,11 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 12 - - uid: 5240 + - uid: 5323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-9.5 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 parent: 12 - uid: 5398 components: @@ -85752,12 +85954,23 @@ entities: - type: Transform pos: 7.5,-48.5 parent: 12 + - uid: 5682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 12 - uid: 5800 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,1.5 parent: 12 + - uid: 5831 + components: + - type: Transform + pos: 37.5,10.5 + parent: 12 - uid: 5921 components: - type: Transform @@ -85806,6 +86019,11 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-22.5 parent: 12 + - uid: 6019 + components: + - type: Transform + pos: 37.5,8.5 + parent: 12 - uid: 6021 components: - type: Transform @@ -85830,6 +86048,12 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-1.5 parent: 12 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 12 - uid: 6843 components: - type: Transform @@ -85968,12 +86192,30 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 12 + - uid: 7256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 12 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 12 - uid: 7305 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 12 + - uid: 7321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 12 - uid: 7353 components: - type: Transform @@ -85986,15 +86228,29 @@ entities: rot: 3.141592653589793 rad pos: 32.5,17.5 parent: 12 + - uid: 7539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 12 + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 12 - uid: 8287 components: - type: Transform - pos: 30.5,15.5 + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 parent: 12 - uid: 8288 components: - type: Transform - pos: 30.5,16.5 + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 parent: 12 - uid: 8289 components: @@ -86377,16 +86633,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-0.5 parent: 12 - - uid: 8477 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 8865 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 12 - uid: 8941 components: - type: Transform @@ -86423,35 +86669,11 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-22.5 parent: 12 - - uid: 8948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-20.5 - parent: 12 - - uid: 8949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-19.5 - parent: 12 - - uid: 8950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-18.5 - parent: 12 - - uid: 8951 + - uid: 8953 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 12 - - uid: 8952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 46.5,-23.5 parent: 12 - uid: 8960 components: @@ -86495,6 +86717,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 12 + - uid: 9001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 12 + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 12 + - uid: 9014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-15.5 + parent: 12 - uid: 9041 components: - type: Transform @@ -86525,6 +86765,12 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-11.5 parent: 12 + - uid: 9258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 12 - uid: 9339 components: - type: Transform @@ -86704,6 +86950,12 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,54.5 + parent: 12 - uid: 9774 components: - type: Transform @@ -86817,6 +87069,12 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 12 + - uid: 10255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 12 - uid: 10418 components: - type: Transform @@ -86990,6 +87248,12 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 + - uid: 10825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,6.5 + parent: 12 - uid: 10871 components: - type: Transform @@ -87025,6 +87289,18 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,11.5 parent: 12 + - uid: 10931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 12 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 12 - uid: 10959 components: - type: Transform @@ -87151,12 +87427,13 @@ entities: - uid: 10990 components: - type: Transform - pos: 21.5,16.5 + pos: 42.5,-24.5 parent: 12 - uid: 10991 components: - type: Transform - pos: 21.5,17.5 + rot: -1.5707963267948966 rad + pos: 40.5,-26.5 parent: 12 - uid: 10992 components: @@ -87193,6 +87470,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,5.5 parent: 12 + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 12 - uid: 11042 components: - type: Transform @@ -87205,6 +87488,29 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-17.5 parent: 12 + - uid: 11398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 12 + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 12 + - uid: 11436 + components: + - type: Transform + pos: 37.5,9.5 + parent: 12 + - uid: 11457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 12 - uid: 11492 components: - type: Transform @@ -87225,6 +87531,96 @@ entities: - type: Transform pos: 41.5,14.5 parent: 12 + - uid: 11509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 12 + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 12 + - uid: 11581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 12 + - uid: 11614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 12 + - uid: 11615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 12 + - uid: 11659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 12 + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 12 + - uid: 11697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 12 + - uid: 11698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-14.5 + parent: 12 + - uid: 11699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 12 + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-16.5 + parent: 12 + - uid: 11782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 12 + - uid: 11783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 12 + - uid: 11784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 12 + - uid: 11890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,54.5 + parent: 12 - uid: 11961 components: - type: Transform @@ -87342,7 +87738,8 @@ entities: - uid: 12339 components: - type: Transform - pos: 30.5,14.5 + rot: 1.5707963267948966 rad + pos: 27.5,53.5 parent: 12 - uid: 12391 components: @@ -87459,6 +87856,12 @@ entities: - type: Transform pos: 42.5,39.5 parent: 12 + - uid: 12868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 12 - uid: 12984 components: - type: Transform @@ -87813,6 +88216,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,41.5 parent: 12 + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,44.5 + parent: 12 - uid: 15030 components: - type: Transform @@ -87921,16 +88330,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,52.5 parent: 12 - - uid: 15114 - components: - - type: Transform - pos: 26.5,53.5 - parent: 12 - - uid: 15115 - components: - - type: Transform - pos: 26.5,54.5 - parent: 12 - uid: 15116 components: - type: Transform @@ -87992,25 +88391,19 @@ entities: - uid: 15134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,56.5 + rot: 3.141592653589793 rad + pos: 47.5,-22.5 parent: 12 - uid: 15135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,56.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 12 - uid: 15136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,56.5 - parent: 12 - - uid: 15137 - components: - - type: Transform - pos: 31.5,55.5 + pos: 32.5,12.5 parent: 12 - uid: 15138 components: @@ -88030,6 +88423,18 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,54.5 parent: 12 + - uid: 15143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 12 + - uid: 15145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 12 - uid: 15146 components: - type: Transform @@ -88123,6 +88528,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,40.5 parent: 12 + - uid: 15174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 12 - uid: 15388 components: - type: Transform @@ -88181,11 +88592,29 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,51.5 parent: 12 + - uid: 15399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 12 - uid: 16388 components: - type: Transform pos: -25.5,26.5 parent: 12 + - uid: 16418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-4.5 + parent: 12 + - uid: 16532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-9.5 + parent: 12 - uid: 16713 components: - type: Transform @@ -88403,6 +88832,12 @@ entities: - type: Transform pos: -16.5,-3.5 parent: 12 + - uid: 17641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 12 - uid: 17666 components: - type: Transform @@ -88754,13 +89189,19 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,43.5 + pos: 42.5,-7.5 parent: 12 - uid: 18564 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,42.5 + pos: 42.5,-6.5 + parent: 12 + - uid: 18668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-5.5 parent: 12 - uid: 18672 components: @@ -88796,7 +89237,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,44.5 + pos: 42.5,-3.5 parent: 12 - uid: 19177 components: @@ -88846,11 +89287,23 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-16.5 parent: 12 + - uid: 19552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 12 - uid: 19843 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,41.5 + pos: 42.5,-1.5 + parent: 12 + - uid: 19968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-0.5 parent: 12 - uid: 20151 components: @@ -89425,14 +89878,14 @@ entities: - uid: 20254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 + rot: 3.141592653589793 rad + pos: 42.5,0.5 parent: 12 - uid: 20255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 + rot: 3.141592653589793 rad + pos: 42.5,1.5 parent: 12 - uid: 20256 components: @@ -89440,6 +89893,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 12 + - uid: 20259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,2.5 + parent: 12 - uid: 20263 components: - type: Transform @@ -89631,6 +90090,12 @@ entities: rot: 3.141592653589793 rad pos: -35.5,41.5 parent: 12 + - uid: 20885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,3.5 + parent: 12 - uid: 21326 components: - type: Transform @@ -89642,11 +90107,23 @@ entities: - type: Transform pos: -28.5,39.5 parent: 12 + - uid: 21469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,4.5 + parent: 12 - uid: 21472 components: - type: Transform pos: -25.5,27.5 parent: 12 + - uid: 22088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 12 - uid: 22107 components: - type: Transform @@ -89659,6 +90136,12 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-16.5 parent: 12 + - uid: 22113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 12 - uid: 22121 components: - type: Transform @@ -89670,6 +90153,12 @@ entities: - type: Transform pos: 30.5,9.5 parent: 12 + - uid: 22268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 12 - uid: 22275 components: - type: Transform @@ -89681,6 +90170,17 @@ entities: - type: Transform pos: 41.5,13.5 parent: 12 + - uid: 22366 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 12 + - uid: 22389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-26.5 + parent: 12 - uid: 22418 components: - type: Transform @@ -90227,6 +90727,12 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,64.5 parent: 12 + - uid: 22835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-26.5 + parent: 12 - uid: 22840 components: - type: Transform @@ -90354,6 +90860,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,55.5 parent: 12 + - uid: 23128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-26.5 + parent: 12 - uid: 23425 components: - type: Transform @@ -90444,6 +90956,18 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,44.5 parent: 12 + - uid: 23771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 12 + - uid: 23772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 12 - uid: 23847 components: - type: Transform @@ -90596,6 +91120,24 @@ entities: - type: Transform pos: -34.5,48.5 parent: 12 + - uid: 23886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 12 + - uid: 23890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 12 + - uid: 23945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,49.5 + parent: 12 - uid: 24038 components: - type: Transform @@ -90779,30 +91321,90 @@ entities: rot: 3.141592653589793 rad pos: 53.5,48.5 parent: 12 + - uid: 24155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 12 + - uid: 24509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 12 - uid: 24638 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 12 + - uid: 24699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 12 + - uid: 24700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,48.5 + parent: 12 - uid: 25331 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-1.5 parent: 12 + - uid: 25343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 12 - uid: 25371 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 12 + - uid: 25382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 12 - uid: 25487 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-41.5 parent: 12 + - uid: 25519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 12 + - uid: 25520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 12 + - uid: 25945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 12 + - uid: 25946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-24.5 + parent: 12 - uid: 25992 components: - type: Transform @@ -90840,6 +91442,18 @@ entities: - type: Transform pos: -38.5,-42.5 parent: 12 + - uid: 26076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 12 + - uid: 26114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 12 - uid: 26135 components: - type: Transform @@ -90876,6 +91490,18 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 + - uid: 26218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 12 + - uid: 26439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 12 - uid: 26801 components: - type: Transform @@ -90897,11 +91523,6 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 12 - - uid: 27318 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 12 - uid: 27388 components: - type: Transform @@ -91022,174 +91643,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,12.5 parent: 12 - - uid: 27953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 12 - - uid: 27954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 12 - - uid: 27955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 12 - - uid: 27956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 12 - - uid: 27957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 12 - - uid: 27958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 12 - - uid: 27959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 12 - - uid: 27960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 12 - - uid: 27961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 12 - - uid: 27962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 12 - - uid: 27963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,8.5 - parent: 12 - - uid: 27964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 12 - - uid: 27965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 12 - - uid: 27966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 12 - - uid: 27967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 12 - - uid: 27968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 12 - - uid: 27969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 12 - - uid: 27970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 12 - - uid: 27971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 12 - - uid: 27972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 12 - - uid: 27973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 12 - - uid: 27974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 12 - - uid: 27975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 12 - - uid: 27976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 12 - - uid: 27977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 12 - - uid: 27978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 12 - - uid: 27979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 12 - - uid: 27993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 12 - uid: 27998 components: - type: Transform @@ -91416,112 +91869,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-49.5 parent: 12 - - uid: 28048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-13.5 - parent: 12 - - uid: 28051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 12 - uid: 28055 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,12.5 parent: 12 - - uid: 28059 - components: - - type: Transform - pos: 18.5,10.5 - parent: 12 - - uid: 28060 - components: - - type: Transform - pos: 18.5,11.5 - parent: 12 - - uid: 28061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 12 - - uid: 28062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 12 - - uid: 28063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 12 - - uid: 28064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 12 - - uid: 28065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,16.5 - parent: 12 - - uid: 28066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 12 - - uid: 28067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 12 - - uid: 28068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,17.5 - parent: 12 - - uid: 28069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,17.5 - parent: 12 - - uid: 28070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 12 - - uid: 28071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 - parent: 12 - - uid: 28072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 12 - - uid: 28075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,17.5 - parent: 12 - uid: 28076 components: - type: Transform @@ -91718,149 +92071,18 @@ entities: - type: Transform pos: 43.5,44.5 parent: 12 - - uid: 28117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,45.5 - parent: 12 - - uid: 28118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,45.5 - parent: 12 - - uid: 28119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,45.5 - parent: 12 - uid: 28120 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,45.5 parent: 12 - - uid: 28121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,45.5 - parent: 12 - - uid: 28122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,45.5 - parent: 12 - - uid: 28123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,45.5 - parent: 12 - - uid: 28124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,45.5 - parent: 12 - - uid: 28125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,44.5 - parent: 12 - - uid: 28126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,44.5 - parent: 12 - - uid: 28127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,44.5 - parent: 12 - - uid: 28128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,44.5 - parent: 12 - - uid: 28129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,44.5 - parent: 12 - - uid: 28130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,44.5 - parent: 12 - - uid: 28131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,44.5 - parent: 12 - - uid: 28132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,44.5 - parent: 12 - - uid: 28133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,45.5 - parent: 12 - - uid: 28134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,46.5 - parent: 12 - - uid: 28135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,47.5 - parent: 12 - - uid: 28136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,48.5 - parent: 12 - - uid: 28137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,50.5 - parent: 12 - - uid: 28138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,50.5 - parent: 12 - uid: 28139 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,12.5 parent: 12 - - uid: 28145 - components: - - type: Transform - pos: 69.5,49.5 - parent: 12 - uid: 28147 components: - type: Transform @@ -91927,24 +92149,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,22.5 parent: 12 - - uid: 28443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 12 - - uid: 28444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 12 - - uid: 28445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 12 - uid: 28446 components: - type: Transform @@ -91993,16 +92197,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,52.5 parent: 12 - - uid: 28896 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 12 - - uid: 28931 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 12 - uid: 28945 components: - type: Transform @@ -92400,6 +92594,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,70.5 parent: 12 + - uid: 30809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,46.5 + parent: 12 - uid: 31245 components: - type: Transform @@ -92497,6 +92697,469 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,72.5 parent: 12 + - uid: 31912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 12 + - uid: 31913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 12 + - uid: 31914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 12 + - uid: 31915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 12 + - uid: 31919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 12 + - uid: 31920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 12 + - uid: 31921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 12 + - uid: 31923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 12 + - uid: 31924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 12 + - uid: 31925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 12 + - uid: 31926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 12 + - uid: 31927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 12 + - uid: 31928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 12 + - uid: 31929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-14.5 + parent: 12 + - uid: 31930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 12 + - uid: 31931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 12 + - uid: 31932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 12 + - uid: 31933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 12 + - uid: 31934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 12 + - uid: 31935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 12 + - uid: 31936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 12 + - uid: 31937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 12 + - uid: 31938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 12 + - uid: 31939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 12 + - uid: 31940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 12 + - uid: 31941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 12 + - uid: 31942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 12 + - uid: 31943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 12 + - uid: 31944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 12 + - uid: 31945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 12 + - uid: 31948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 12 + - uid: 31949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 12 + - uid: 31950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 12 + - uid: 31951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 12 + - uid: 31952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 12 + - uid: 31953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 12 + - uid: 31954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 12 + - uid: 31955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 12 + - uid: 31956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 12 + - uid: 31957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,12.5 + parent: 12 + - uid: 31958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 12 + - uid: 31959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,14.5 + parent: 12 + - uid: 31960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 12 + - uid: 31961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 12 + - uid: 31962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 12 + - uid: 31963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 12 + - uid: 31964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,19.5 + parent: 12 + - uid: 31965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,20.5 + parent: 12 + - uid: 31966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,21.5 + parent: 12 + - uid: 31967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 12 + - uid: 31968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,23.5 + parent: 12 + - uid: 31969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 12 + - uid: 31970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 12 + - uid: 31971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,26.5 + parent: 12 + - uid: 31972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,27.5 + parent: 12 + - uid: 31973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 12 + - uid: 31974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 12 + - uid: 31975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 12 + - uid: 31976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 12 + - uid: 31977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,32.5 + parent: 12 + - uid: 31978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,33.5 + parent: 12 + - uid: 31979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 12 + - uid: 31980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,35.5 + parent: 12 + - uid: 31981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 12 + - uid: 31982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 12 + - uid: 31983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 12 + - uid: 31984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,39.5 + parent: 12 + - uid: 31985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,40.5 + parent: 12 + - uid: 31987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,41.5 + parent: 12 + - uid: 31988 + components: + - type: Transform + pos: 28.5,54.5 + parent: 12 + - uid: 31989 + components: + - type: Transform + pos: 28.5,55.5 + parent: 12 + - uid: 31996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 12 + - uid: 32003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,45.5 + parent: 12 + - uid: 32004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 12 + - uid: 32005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,45.5 + parent: 12 + - uid: 32006 + components: + - type: Transform + pos: 56.5,46.5 + parent: 12 + - uid: 32007 + components: + - type: Transform + pos: 57.5,48.5 + parent: 12 + - uid: 32008 + components: + - type: Transform + pos: 57.5,49.5 + parent: 12 - proto: DisposalPipeBroken entities: - uid: 4901 @@ -92519,12 +93182,86 @@ entities: parent: 12 - proto: DisposalRouter entities: - - uid: 15029 + - uid: 21663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 12 + - type: DisposalRouter + tags: + - Engineering + - uid: 27958 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 12 + - type: DisposalRouter + tags: + - Cargo + - uid: 27959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,41.5 + pos: 35.5,54.5 parent: 12 + - type: DisposalRouter + tags: + - Freezer +- proto: DisposalRouterFlipped + entities: + - uid: 8952 + components: + - type: Transform + pos: 50.5,49.5 + parent: 12 + - type: DisposalRouter + tags: + - Botany + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 12 + - type: DisposalRouter + tags: + - Chemistry + - uid: 12126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,53.5 + parent: 12 + - type: DisposalRouter + tags: + - Kitchen + - uid: 24035 + components: + - type: Transform + pos: 50.5,46.5 + parent: 12 + - type: DisposalRouter + tags: + - Ranch + - uid: 31922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-21.5 + parent: 12 + - type: DisposalRouter + tags: + - Science + - uid: 31986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,41.5 + parent: 12 + - type: DisposalRouter + tags: + - Security - proto: DisposalTrunk entities: - uid: 1853 @@ -92693,12 +93430,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,21.5 parent: 12 - - uid: 8940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 12 - uid: 9077 components: - type: Transform @@ -92805,12 +93536,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,53.5 parent: 12 - - uid: 15141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,55.5 - parent: 12 - uid: 15142 components: - type: Transform @@ -92994,6 +93719,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 12 + - uid: 27021 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 12 - uid: 27386 components: - type: Transform @@ -93006,11 +93736,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-50.5 parent: 12 - - uid: 28140 + - uid: 27955 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,50.5 + pos: 46.5,-17.5 parent: 12 - uid: 28382 components: @@ -93035,6 +93765,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,70.5 parent: 12 + - uid: 30481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 12 - uid: 31242 components: - type: Transform @@ -93197,11 +93933,6 @@ entities: - type: Transform pos: 76.5,-32.5 parent: 12 - - uid: 8939 - components: - - type: Transform - pos: 46.5,-17.5 - parent: 12 - uid: 9110 components: - type: Transform @@ -93379,13 +94110,6 @@ entities: - type: Transform pos: 43.5,48.5 parent: 12 - - uid: 24035 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 59.5,52.5 - parent: 12 - uid: 24065 components: - type: Transform @@ -93451,11 +94175,6 @@ entities: - type: Transform pos: 34.5,41.5 parent: 12 - - uid: 15399 - components: - - type: Transform - pos: 35.5,54.5 - parent: 12 - uid: 18312 components: - type: Transform @@ -93733,6 +94452,14 @@ entities: - type: Transform pos: -49.320602,19.989155 parent: 12 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 31998 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -30.212772,11.4973545 + parent: 12 - proto: DrinkGlass entities: - uid: 7306 @@ -93808,7 +94535,8 @@ entities: - uid: 10942 components: - type: Transform - pos: -28.50796,7.818667 + rot: -12.566370614359172 rad + pos: -31.42805,11.573797 parent: 12 - proto: DrinkGreenTea entities: @@ -93957,6 +94685,12 @@ entities: - type: Transform pos: -31.864534,44.26396 parent: 12 + - uid: 24117 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 57.68418,56.94676 + parent: 12 - proto: DrinkMugBlue entities: - uid: 30236 @@ -94144,7 +94878,8 @@ entities: - uid: 13481 components: - type: Transform - pos: -31.423407,7.5807095 + rot: -12.566370614359172 rad + pos: -29.330828,7.500151 parent: 12 - proto: EmergencyFunnyOxygenTankFilled entities: @@ -99499,6 +100234,30 @@ entities: deviceLists: - 9101 - 30453 + - uid: 27957 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 27965 + components: + - type: Transform + pos: 23.5,6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 27970 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - uid: 28356 components: - type: Transform @@ -99710,6 +100469,30 @@ entities: - type: DeviceNetwork deviceLists: - 31755 + - uid: 31990 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31991 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31992 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - proto: Fireplace entities: - uid: 30393 @@ -99859,7 +100642,8 @@ entities: - uid: 17376 components: - type: Transform - pos: -31.29457,7.467202 + rot: -12.566370614359172 rad + pos: -29.955828,7.493202 parent: 12 - uid: 17610 components: @@ -100491,6 +101275,13 @@ entities: rot: -6.283185307179586 rad pos: -24.51083,53.52161 parent: 12 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 11791 + components: + - type: Transform + pos: 25.738708,55.553703 + parent: 12 - proto: FoodCondimentPacketKetchup entities: - uid: 15065 @@ -100531,6 +101322,13 @@ entities: rot: -18.84955592153876 rad pos: 39.129684,63.4756 parent: 12 +- proto: FoodContainerEgg + entities: + - uid: 11579 + components: + - type: Transform + pos: 57.538345,56.66531 + parent: 12 - proto: FoodCornTrash entities: - uid: 31149 @@ -100597,6 +101395,13 @@ entities: - type: Transform pos: -31.49684,-57.333786 parent: 12 +- proto: FoodMealEggplantParm + entities: + - uid: 31902 + components: + - type: Transform + pos: 56.52447,50.519176 + parent: 12 - proto: FoodMeat entities: - uid: 31346 @@ -101198,6 +102003,8 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 7255 components: - type: Transform @@ -103333,14 +104140,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22147 components: - type: Transform @@ -107993,14 +108792,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4719 components: - type: Transform @@ -108009,14 +108800,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4746 components: - type: Transform @@ -109138,6 +109921,8 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-60.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5383 components: - type: Transform @@ -128096,6 +128881,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-59.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5392 components: - type: Transform @@ -130407,6 +131194,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 27960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27961 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27985 components: - type: Transform @@ -133040,6 +133850,17 @@ entities: - 28354 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28504 components: - type: Transform @@ -133512,6 +134333,8 @@ entities: - type: Transform pos: -5.5,-57.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5344 components: - type: Transform @@ -134739,6 +135562,24 @@ entities: - 28354 - type: AtmosPipeColor color: '#990000FF' + - uid: 28935 + components: + - type: Transform + pos: 26.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - type: AtmosPipeColor + color: '#990000FF' - uid: 29259 components: - type: Transform @@ -145546,6 +146387,13 @@ entities: - type: Transform pos: -4.5,-40.5 parent: 12 +- proto: HydrogenChemistryBottle + entities: + - uid: 13012 + components: + - type: Transform + pos: 38.364483,63.67461 + parent: 12 - proto: hydroponicsSoil entities: - uid: 9725 @@ -145641,7 +146489,8 @@ entities: - uid: 23538 components: - type: Transform - pos: 58.011997,58.63435 + rot: -6.283185307179586 rad + pos: 57.729115,58.67161 parent: 12 - uid: 24099 components: @@ -145810,7 +146659,8 @@ entities: - uid: 17438 components: - type: Transform - pos: -31.515587,11.674736 + rot: -12.566370614359172 rad + pos: -29.448883,11.559898 parent: 12 - proto: IngotGold1 entities: @@ -145839,7 +146689,8 @@ entities: - uid: 15842 components: - type: Transform - pos: -31.452826,11.436241 + rot: -18.84955592153876 rad + pos: -28.558372,7.517247 parent: 12 - proto: IngotSilver1 entities: @@ -146119,7 +146970,8 @@ entities: - uid: 23591 components: - type: Transform - pos: 31.5,60.5 + rot: -1.5707963267948966 rad + pos: 52.5,53.5 parent: 12 - uid: 23593 components: @@ -146127,11 +146979,11 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,49.5 parent: 12 - - uid: 24139 + - uid: 24115 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,51.5 + pos: 28.5,52.5 parent: 12 - uid: 24140 components: @@ -146274,7 +147126,8 @@ entities: - uid: 25858 components: - type: Transform - pos: 58.5,58.5 + rot: -6.283185307179586 rad + pos: 58.192078,58.51409 parent: 12 - uid: 31131 components: @@ -146331,11 +147184,6 @@ entities: - type: Transform pos: 29.5,60.5 parent: 12 - - uid: 22835 - components: - - type: Transform - pos: 27.5,60.5 - parent: 12 - uid: 24272 components: - type: Transform @@ -146346,6 +147194,11 @@ entities: - type: Transform pos: 55.5,4.5 parent: 12 + - uid: 27963 + components: + - type: Transform + pos: 27.5,60.5 + parent: 12 - uid: 31129 components: - type: Transform @@ -147713,14 +148566,6 @@ entities: parent: 12 - proto: MailingUnit entities: - - uid: 5831 - components: - - type: Transform - pos: 25.5,55.5 - parent: 12 - - type: MailingUnit - tag: Kitchen - target: Kitchen - uid: 5979 components: - type: Transform @@ -147729,26 +148574,40 @@ entities: - type: MailingUnit tag: Freezer target: Freezer - - uid: 6019 - components: - - type: MetaData - name: mailing unit to chemistry - - type: Transform - pos: 66.5,50.5 - parent: 12 - - type: MailingUnit - tag: Botany - target: Botany - uid: 6209 components: - type: MetaData - name: mailing unit to freezer + name: mailing unit - type: Transform pos: 67.5,50.5 parent: 12 - type: MailingUnit tag: Botany target: Botany + - uid: 11061 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 12 + - type: MailingUnit + tag: Engineering + target: Engineering + - uid: 24041 + components: + - type: Transform + pos: 59.5,52.5 + parent: 12 + - type: MailingUnit + tag: Ranch + target: Ranch + - uid: 25944 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 12 + - type: MailingUnit + tag: Cargo + target: Cargo - uid: 27002 components: - type: Transform @@ -147757,6 +148616,14 @@ entities: - type: MailingUnit tag: Kitchen target: Kitchen + - uid: 28445 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 12 + - type: MailingUnit + tag: Science + target: Science - uid: 28826 components: - type: Transform @@ -147773,6 +148640,18 @@ entities: - type: MailingUnit tag: Security target: Security +- proto: MailingUnitElectronics + entities: + - uid: 26865 + components: + - type: Transform + pos: 11.412247,-19.576067 + parent: 12 + - uid: 26898 + components: + - type: Transform + pos: 11.510092,-19.26601 + parent: 12 - proto: MaintenanceFluffSpawner entities: - uid: 1079 @@ -149630,6 +150509,12 @@ entities: - type: Transform pos: -22.5,41.5 parent: 12 + - uid: 30477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 12 - uid: 31565 components: - type: Transform @@ -150148,7 +151033,8 @@ entities: - uid: 25869 components: - type: Transform - pos: 59.553303,58.540974 + rot: -12.566370614359172 rad + pos: 59.580013,58.541615 parent: 12 - proto: PlaqueAtmos entities: @@ -155208,6 +156094,12 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 12 + - uid: 9260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,55.5 + parent: 12 - uid: 9599 components: - type: Transform @@ -156894,12 +157786,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,42.5 parent: 12 - - uid: 24297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,53.5 - parent: 12 - uid: 24298 components: - type: Transform @@ -157123,6 +158009,11 @@ entities: rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 12 + - uid: 32018 + components: + - type: Transform + pos: 52.5,50.5 + parent: 12 - proto: RandomSoap entities: - uid: 22405 @@ -158079,6 +158970,11 @@ entities: - type: Transform pos: -31.532892,44.28764 parent: 12 + - uid: 27971 + components: + - type: Transform + pos: 25.355482,55.431313 + parent: 12 - proto: ReagentContainerRice entities: - uid: 3075 @@ -158099,6 +158995,13 @@ entities: rot: -6.283185307179586 rad pos: 28.604269,25.749634 parent: 12 +- proto: ReagentContainerSugar + entities: + - uid: 11793 + components: + - type: Transform + pos: 25.441526,55.614902 + parent: 12 - proto: Recycler entities: - uid: 4231 @@ -165105,27 +166008,20 @@ entities: - type: Transform pos: 24.5,48.5 parent: 12 -- proto: ShellTranquilizer +- proto: ShelfChemistryChemistrySecure entities: - - uid: 31528 + - uid: 32015 components: - type: Transform - pos: 12.811687,-35.620705 + rot: 3.141592653589793 rad + pos: -25.5,-45.5 parent: 12 - - uid: 31529 +- proto: ShelfKitchen + entities: + - uid: 32014 components: - type: Transform - pos: 12.558601,-35.61762 - parent: 12 - - uid: 31530 - components: - - type: Transform - pos: 12.3086,-35.610153 - parent: 12 - - uid: 31531 - components: - - type: Transform - pos: 13.0647745,-35.61762 + pos: 31.5,60.5 parent: 12 - proto: Shiv entities: @@ -166996,6 +167892,14 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,-35.5 parent: 12 +- proto: SignMail + entities: + - uid: 31528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 12 - proto: SignMaterials entities: - uid: 16551 @@ -169367,21 +170271,6 @@ entities: parent: 12 - proto: SpawnPointBotanist entities: - - uid: 24115 - components: - - type: Transform - pos: 59.5,43.5 - parent: 12 - - uid: 24116 - components: - - type: Transform - pos: 60.5,43.5 - parent: 12 - - uid: 24117 - components: - - type: Transform - pos: 61.5,43.5 - parent: 12 - uid: 24119 components: - type: Transform @@ -169407,6 +170296,21 @@ entities: - type: Transform pos: 76.5,48.5 parent: 12 + - uid: 24139 + components: + - type: Transform + pos: 59.5,43.5 + parent: 12 + - uid: 24297 + components: + - type: Transform + pos: 60.5,43.5 + parent: 12 + - uid: 25867 + components: + - type: Transform + pos: 61.5,43.5 + parent: 12 - proto: SpawnPointBoxer entities: - uid: 24260 @@ -174519,16 +175423,6 @@ entities: - type: Transform pos: 28.5,57.5 parent: 12 - - uid: 15174 - components: - - type: Transform - pos: 28.5,56.5 - parent: 12 - - uid: 15175 - components: - - type: Transform - pos: 30.5,56.5 - parent: 12 - uid: 15176 components: - type: Transform @@ -175247,6 +176141,12 @@ entities: - type: Transform pos: 2.5,65.5 parent: 12 + - uid: 24981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 12 - uid: 25005 components: - type: Transform @@ -175420,6 +176320,18 @@ entities: - type: Transform pos: -15.5,-50.5 parent: 12 + - uid: 27956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,56.5 + parent: 12 + - uid: 27964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,56.5 + parent: 12 - uid: 27994 components: - type: Transform @@ -176454,6 +177366,26 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,64.5 parent: 12 + - uid: 31999 + components: + - type: Transform + pos: -30.5,7.5 + parent: 12 + - uid: 32000 + components: + - type: Transform + pos: -29.5,7.5 + parent: 12 + - uid: 32001 + components: + - type: Transform + pos: -30.5,11.5 + parent: 12 + - uid: 32002 + components: + - type: Transform + pos: -29.5,11.5 + parent: 12 - proto: TableWood entities: - uid: 1995 @@ -177596,6 +178528,13 @@ entities: - type: Transform pos: 20.550642,-38.45991 parent: 12 + - uid: 8804 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 8874 components: - type: Transform @@ -177637,7 +178576,8 @@ entities: - uid: 15844 components: - type: Transform - pos: -28.503035,7.381849 + rot: -12.566370614359172 rad + pos: -31.455828,7.5626955 parent: 12 - proto: ToolboxMechanical entities: @@ -177972,6 +178912,15 @@ entities: - type: Transform pos: 54.946606,29.060595 parent: 12 +- proto: ToyHammer + entities: + - uid: 8949 + components: + - type: Transform + parent: 8948 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ToyIan entities: - uid: 18870 @@ -178958,7 +179907,7 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 12 - - uid: 21663 + - uid: 17459 components: - type: Transform pos: -15.5,45.5 @@ -182161,24 +183110,12 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 12 - - uid: 5198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,1.5 - parent: 12 - uid: 5214 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,11.5 parent: 12 - - uid: 5217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-1.5 - parent: 12 - uid: 5218 components: - type: Transform @@ -183440,11 +184377,6 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 12 - - uid: 8818 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 12 - uid: 8852 components: - type: Transform @@ -183496,12 +184428,6 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,-4.5 parent: 12 - - uid: 9011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 - parent: 12 - uid: 9012 components: - type: Transform @@ -183514,12 +184440,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-4.5 parent: 12 - - uid: 9014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 - parent: 12 - uid: 9015 components: - type: Transform @@ -183789,11 +184709,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-2.5 parent: 12 - - uid: 9674 - components: - - type: Transform - pos: 47.5,7.5 - parent: 12 - uid: 9675 components: - type: Transform @@ -183811,12 +184726,6 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,8.5 parent: 12 - - uid: 9684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,7.5 - parent: 12 - uid: 9701 components: - type: Transform @@ -184042,12 +184951,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,20.5 parent: 12 - - uid: 10255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 12 - uid: 10256 components: - type: Transform @@ -184591,12 +185494,6 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,13.5 parent: 12 - - uid: 10825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,11.5 - parent: 12 - uid: 10826 components: - type: Transform @@ -184621,12 +185518,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 12 - - uid: 10870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 12 - uid: 10909 components: - type: Transform @@ -184642,12 +185533,6 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 10932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-5.5 - parent: 12 - uid: 10937 components: - type: Transform @@ -184707,12 +185592,6 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 - - uid: 11021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-4.5 - parent: 12 - uid: 11035 components: - type: Transform @@ -185255,11 +186134,6 @@ entities: - type: Transform pos: 53.5,13.5 parent: 12 - - uid: 11457 - components: - - type: Transform - pos: 53.5,14.5 - parent: 12 - uid: 11458 components: - type: Transform @@ -185285,56 +186159,26 @@ entities: - type: Transform pos: 50.5,15.5 parent: 12 - - uid: 11569 - components: - - type: Transform - pos: 54.5,15.5 - parent: 12 - uid: 11570 components: - type: Transform pos: 55.5,15.5 parent: 12 - - uid: 11571 - components: - - type: Transform - pos: 55.5,16.5 - parent: 12 - uid: 11573 components: - type: Transform pos: 54.5,18.5 parent: 12 - - uid: 11574 - components: - - type: Transform - pos: 53.5,18.5 - parent: 12 - uid: 11576 components: - type: Transform pos: 53.5,21.5 parent: 12 - - uid: 11577 - components: - - type: Transform - pos: 54.5,21.5 - parent: 12 - uid: 11578 components: - type: Transform pos: 54.5,22.5 parent: 12 - - uid: 11579 - components: - - type: Transform - pos: 55.5,22.5 - parent: 12 - - uid: 11581 - components: - - type: Transform - pos: 55.5,25.5 - parent: 12 - uid: 11582 components: - type: Transform @@ -185465,41 +186309,6 @@ entities: - type: Transform pos: 20.5,38.5 parent: 12 - - uid: 11782 - components: - - type: Transform - pos: 26.5,38.5 - parent: 12 - - uid: 11783 - components: - - type: Transform - pos: 27.5,38.5 - parent: 12 - - uid: 11784 - components: - - type: Transform - pos: 27.5,39.5 - parent: 12 - - uid: 11790 - components: - - type: Transform - pos: 32.5,38.5 - parent: 12 - - uid: 11791 - components: - - type: Transform - pos: 33.5,38.5 - parent: 12 - - uid: 11792 - components: - - type: Transform - pos: 32.5,39.5 - parent: 12 - - uid: 11793 - components: - - type: Transform - pos: 32.5,40.5 - parent: 12 - uid: 11796 components: - type: Transform @@ -185601,11 +186410,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-27.5 parent: 12 - - uid: 11890 - components: - - type: Transform - pos: 36.5,39.5 - parent: 12 - uid: 11913 components: - type: Transform @@ -185770,11 +186574,6 @@ entities: - type: Transform pos: 31.5,26.5 parent: 12 - - uid: 12868 - components: - - type: Transform - pos: 44.5,5.5 - parent: 12 - uid: 12887 components: - type: Transform @@ -187879,12 +188678,6 @@ entities: - type: Transform pos: -31.5,65.5 parent: 12 - - uid: 19552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 12 - uid: 19553 components: - type: Transform @@ -188104,12 +188897,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 - - uid: 20885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 12 - uid: 21060 components: - type: Transform @@ -188266,11 +189053,6 @@ entities: - type: Transform pos: 56.5,13.5 parent: 12 - - uid: 22088 - components: - - type: Transform - pos: 57.5,13.5 - parent: 12 - uid: 22089 components: - type: Transform @@ -188454,12 +189236,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,74.5 parent: 12 - - uid: 23128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - uid: 23129 components: - type: Transform @@ -188538,12 +189314,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,63.5 parent: 12 - - uid: 23886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,7.5 - parent: 12 - uid: 23895 components: - type: Transform @@ -188973,12 +189743,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 12 - - uid: 26114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 12 - uid: 26131 components: - type: Transform @@ -189035,12 +189799,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 - - uid: 26439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,3.5 - parent: 12 - uid: 26440 components: - type: Transform @@ -189226,18 +189984,6 @@ entities: - type: Transform pos: 56.5,-9.5 parent: 12 - - uid: 26898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 12 - uid: 27038 components: - type: Transform @@ -189428,6 +190174,26 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-15.5 parent: 12 + - uid: 28127 + components: + - type: Transform + pos: 33.5,27.5 + parent: 12 + - uid: 28128 + components: + - type: Transform + pos: 33.5,28.5 + parent: 12 + - uid: 28134 + components: + - type: Transform + pos: 31.5,34.5 + parent: 12 + - uid: 28135 + components: + - type: Transform + pos: 30.5,34.5 + parent: 12 - uid: 28146 components: - type: Transform @@ -189583,12 +190349,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,8.5 parent: 12 - - uid: 28742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 - parent: 12 - uid: 28743 components: - type: Transform @@ -189942,12 +190702,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,18.5 parent: 12 - - uid: 31902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 - parent: 12 - uid: 31906 components: - type: Transform @@ -190619,6 +191373,196 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,1.5 + parent: 12 + - uid: 27973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-1.5 + parent: 12 + - uid: 27974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 12 + - uid: 27975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 12 + - uid: 27976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-4.5 + parent: 12 + - uid: 27977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 12 + - uid: 27978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,7.5 + parent: 12 + - uid: 27984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 12 + - uid: 27993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 28044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-5.5 + parent: 12 + - uid: 28048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-4.5 + parent: 12 + - uid: 28051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,14.5 + parent: 12 + - uid: 28052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,15.5 + parent: 12 + - uid: 28053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,16.5 + parent: 12 + - uid: 28054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 12 + - uid: 28056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 12 + - uid: 28057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 12 + - uid: 28058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 12 + - uid: 28067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 12 + - uid: 28068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 12 + - uid: 28069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 12 + - uid: 28070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,13.5 + parent: 12 + - uid: 28071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 12 + - uid: 28072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 12 + - uid: 28075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 28117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,3.5 + parent: 12 + - uid: 28118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-7.5 + parent: 12 + - uid: 28119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 12 + - uid: 28121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,9.5 + parent: 12 + - uid: 28122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 12 + - uid: 28132 + components: + - type: Transform + pos: 33.5,30.5 + parent: 12 + - uid: 28133 + components: + - type: Transform + pos: 33.5,33.5 + parent: 12 - uid: 28283 components: - type: Transform @@ -193649,18 +194593,6 @@ entities: - type: Transform pos: 34.5,17.5 parent: 12 - - uid: 11434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,26.5 - parent: 12 - - uid: 11436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,26.5 - parent: 12 - uid: 11466 components: - type: Transform @@ -193696,11 +194628,6 @@ entities: - type: Transform pos: 38.5,13.5 parent: 12 - - uid: 11509 - components: - - type: Transform - pos: 39.5,13.5 - parent: 12 - uid: 11540 components: - type: Transform @@ -193741,11 +194668,6 @@ entities: - type: Transform pos: 48.5,16.5 parent: 12 - - uid: 11548 - components: - - type: Transform - pos: 48.5,18.5 - parent: 12 - uid: 11549 components: - type: Transform @@ -193821,16 +194743,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,29.5 parent: 12 - - uid: 11614 - components: - - type: Transform - pos: 33.5,27.5 - parent: 12 - - uid: 11615 - components: - - type: Transform - pos: 33.5,28.5 - parent: 12 - uid: 11635 components: - type: Transform @@ -193931,11 +194843,6 @@ entities: - type: Transform pos: 46.5,27.5 parent: 12 - - uid: 11659 - components: - - type: Transform - pos: 49.5,28.5 - parent: 12 - uid: 11660 components: - type: Transform @@ -194061,16 +194968,6 @@ entities: - type: Transform pos: 36.5,27.5 parent: 12 - - uid: 11688 - components: - - type: Transform - pos: 36.5,28.5 - parent: 12 - - uid: 11689 - components: - - type: Transform - pos: 36.5,29.5 - parent: 12 - uid: 11690 components: - type: Transform @@ -194093,26 +194990,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 12 - - uid: 11697 - components: - - type: Transform - pos: 33.5,30.5 - parent: 12 - - uid: 11698 - components: - - type: Transform - pos: 33.5,33.5 - parent: 12 - - uid: 11699 - components: - - type: Transform - pos: 31.5,34.5 - parent: 12 - - uid: 11700 - components: - - type: Transform - pos: 30.5,34.5 - parent: 12 - uid: 11785 components: - type: Transform @@ -195465,11 +196342,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 12 - - uid: 14936 - components: - - type: Transform - pos: -21.5,18.5 - parent: 12 - uid: 14942 components: - type: Transform @@ -196727,11 +197599,6 @@ entities: - type: Transform pos: -9.5,18.5 parent: 12 - - uid: 22022 - components: - - type: Transform - pos: -8.5,18.5 - parent: 12 - uid: 22050 components: - type: Transform @@ -196977,16 +197844,6 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 12 - - uid: 24699 - components: - - type: Transform - pos: -0.5,17.5 - parent: 12 - - uid: 24700 - components: - - type: Transform - pos: -1.5,20.5 - parent: 12 - uid: 24701 components: - type: Transform @@ -197024,11 +197881,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,0.5 parent: 12 - - uid: 25343 - components: - - type: Transform - pos: 53.5,9.5 - parent: 12 - uid: 25350 components: - type: Transform @@ -197443,6 +198295,46 @@ entities: - type: Transform pos: -19.5,18.5 parent: 12 + - uid: 28059 + components: + - type: Transform + pos: 26.5,38.5 + parent: 12 + - uid: 28060 + components: + - type: Transform + pos: 27.5,38.5 + parent: 12 + - uid: 28061 + components: + - type: Transform + pos: 27.5,39.5 + parent: 12 + - uid: 28062 + components: + - type: Transform + pos: 32.5,38.5 + parent: 12 + - uid: 28063 + components: + - type: Transform + pos: 33.5,38.5 + parent: 12 + - uid: 28064 + components: + - type: Transform + pos: 32.5,39.5 + parent: 12 + - uid: 28065 + components: + - type: Transform + pos: 32.5,40.5 + parent: 12 + - uid: 28066 + components: + - type: Transform + pos: 36.5,39.5 + parent: 12 - uid: 28073 components: - type: Transform @@ -198311,12 +199203,77 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,9.5 parent: 12 + - uid: 27979 + components: + - type: Transform + pos: -29.5,20.5 + parent: 12 - uid: 28085 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,26.5 parent: 12 + - uid: 28123 + components: + - type: Transform + pos: 41.5,26.5 + parent: 12 + - uid: 28124 + components: + - type: Transform + pos: 46.5,26.5 + parent: 12 + - uid: 28125 + components: + - type: Transform + pos: 39.5,13.5 + parent: 12 + - uid: 28126 + components: + - type: Transform + pos: 48.5,18.5 + parent: 12 + - uid: 28129 + components: + - type: Transform + pos: 49.5,28.5 + parent: 12 + - uid: 28130 + components: + - type: Transform + pos: 36.5,28.5 + parent: 12 + - uid: 28131 + components: + - type: Transform + pos: 36.5,29.5 + parent: 12 + - uid: 28136 + components: + - type: Transform + pos: -21.5,18.5 + parent: 12 + - uid: 28137 + components: + - type: Transform + pos: -8.5,18.5 + parent: 12 + - uid: 28138 + components: + - type: Transform + pos: -0.5,17.5 + parent: 12 + - uid: 28140 + components: + - type: Transform + pos: -1.5,20.5 + parent: 12 + - uid: 28141 + components: + - type: Transform + pos: 53.5,9.5 + parent: 12 - uid: 28199 components: - type: Transform @@ -198599,6 +199556,45 @@ entities: - type: Transform pos: -25.5,-49.5 parent: 12 +- proto: WardrobeFormal + entities: + - uid: 8818 + components: + - type: Transform + pos: -24.5,32.5 + parent: 12 + - 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: + - 8947 + - 8940 + - 8939 + - 8865 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WardrobeGeneticsFilled entities: - uid: 9839 @@ -199096,8 +200092,8 @@ entities: - uid: 31467 components: - type: Transform - rot: -12.566370614359172 rad - pos: 12.675885,-35.2318 + rot: -18.84955592153876 rad + pos: 12.486576,-35.1766 parent: 12 - proto: WeaponShotgunEnforcer entities: @@ -199389,7 +200385,8 @@ entities: - uid: 23543 components: - type: Transform - pos: 57.647415,57.40518 + rot: -12.566370614359172 rad + pos: 57.642513,57.478374 parent: 12 - proto: Windoor entities: @@ -199456,11 +200453,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-52.5 parent: 12 - - uid: 8498 - components: - - type: Transform - pos: 53.5,-23.5 - parent: 12 - uid: 8833 components: - type: Transform @@ -199547,16 +200539,6 @@ entities: - type: Transform pos: 48.5,46.5 parent: 12 - - uid: 23771 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 12 - - uid: 23772 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 12 - uid: 29642 components: - type: Transform @@ -199624,35 +200606,18 @@ entities: parent: 12 - proto: WindoorSecure entities: - - uid: 1080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 12 - uid: 2029 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-28.5 parent: 12 - - uid: 4303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - uid: 8732 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-30.5 parent: 12 - - uid: 12126 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 12 - uid: 12234 components: - type: Transform @@ -199668,30 +200633,12 @@ entities: - type: Transform pos: -51.5,18.5 parent: 12 - - uid: 18668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 12 - uid: 21655 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,49.5 parent: 12 - - uid: 22366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 12 - - uid: 22389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 - parent: 12 - uid: 22645 components: - type: Transform @@ -199702,39 +200649,6 @@ entities: - type: Transform pos: 14.5,55.5 parent: 12 - - uid: 25382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-42.5 - parent: 12 - - uid: 25517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - - uid: 25944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 12 - - uid: 25945 - components: - - type: Transform - pos: -34.5,20.5 - parent: 12 - - uid: 25946 - components: - - type: Transform - pos: -33.5,20.5 - parent: 12 - - uid: 25947 - components: - - type: Transform - pos: -32.5,20.5 - parent: 12 - uid: 27233 components: - type: Transform @@ -199743,18 +200657,6 @@ entities: parent: 12 - proto: WindoorSecureArmoryLocked entities: - - uid: 7280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - uid: 16532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - uid: 20340 components: - type: Transform @@ -199779,6 +200681,18 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,65.5 parent: 12 + - uid: 31530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,52.5 + parent: 12 + - uid: 31531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,53.5 + parent: 12 - proto: WindoorSecureBrigLocked entities: - uid: 19350 @@ -199795,44 +200709,30 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 12 - - uid: 9258 + - uid: 28142 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,-23.5 parent: 12 - - uid: 9259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 12 - - uid: 9260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 12 - proto: WindoorSecureChemistryLocked entities: - - uid: 357 + - uid: 28145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-42.5 - parent: 12 - - uid: 1076 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -24.5,-43.5 parent: 12 - - uid: 22268 + - uid: 28444 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-45.5 parent: 12 + - uid: 28526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 12 - proto: WindoorSecureCommandLocked entities: - uid: 6 @@ -199892,38 +200792,16 @@ entities: parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 23890 + - uid: 28646 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,20.5 - parent: 12 - - uid: 24438 - components: - - type: Transform - pos: -34.5,24.5 - parent: 12 - - uid: 24509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,20.5 - parent: 12 - - uid: 24981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 12 - - uid: 25942 - components: - - type: Transform pos: -33.5,24.5 parent: 12 - - uid: 25943 + - uid: 28931 components: - type: Transform - pos: -32.5,24.5 + pos: -33.5,20.5 parent: 12 - proto: WindoorSecureMedicalLocked entities: @@ -199990,24 +200868,12 @@ entities: parent: 12 - proto: WindoorSecureScienceLocked entities: - - uid: 25519 + - uid: 28443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - - uid: 25520 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -18.5,-20.5 parent: 12 - - uid: 25521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 30270 @@ -200018,18 +200884,6 @@ entities: parent: 12 - proto: WindoorSecureSecurityLocked entities: - - uid: 7321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - uid: 7539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - uid: 8730 components: - type: Transform @@ -201556,12 +202410,6 @@ entities: - type: Transform pos: 28.5,-35.5 parent: 12 - - uid: 7256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 12 - uid: 7581 components: - type: Transform @@ -201730,12 +202578,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 12 - - uid: 16418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 12 - uid: 16643 components: - type: Transform @@ -201869,11 +202711,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,57.5 parent: 12 - - uid: 19968 - components: - - type: Transform - pos: -19.5,39.5 - parent: 12 - uid: 19969 components: - type: Transform @@ -202070,11 +202907,6 @@ entities: - type: Transform pos: -33.5,50.5 parent: 12 - - uid: 23945 - components: - - type: Transform - pos: 53.5,54.5 - parent: 12 - uid: 23946 components: - type: Transform @@ -202128,12 +202960,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 - - uid: 27064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 12 - uid: 27236 components: - type: Transform @@ -202146,6 +202972,34 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,4.5 parent: 12 + - uid: 28144 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 12 + - uid: 28645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 12 + - uid: 28932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,53.5 + parent: 12 + - uid: 28933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-11.5 + parent: 12 + - uid: 28934 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 12 - uid: 29220 components: - type: Transform @@ -202170,6 +203024,28 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,68.5 parent: 12 + - uid: 30474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 12 + - uid: 30475 + components: + - type: Transform + pos: -32.5,20.5 + parent: 12 + - uid: 30476 + components: + - type: Transform + pos: -34.5,20.5 + parent: 12 + - uid: 30478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,24.5 + parent: 12 - uid: 31181 components: - type: Transform @@ -202218,6 +203094,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 12 + - uid: 31529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 12 - uid: 31770 components: - type: Transform @@ -202230,6 +203112,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,10.5 parent: 12 + - uid: 31911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 12 - proto: Wirecutter entities: - uid: 8737 From fba67979c8f9ef06b8bc5ddcde1267bd2bfe457c Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Fri, 20 Sep 2024 00:07:49 -0400 Subject: [PATCH 076/176] Modifications to bring Omega up to date. (#32317) --- Resources/Maps/Shuttles/emergency_omega.yml | 292 +- Resources/Maps/omega.yml | 18903 ++++++++++++------ Resources/Prototypes/Maps/omega.yml | 1 + 3 files changed, 12886 insertions(+), 6310 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_omega.yml b/Resources/Maps/Shuttles/emergency_omega.yml index 7b038effac..e3e6f680bf 100644 --- a/Resources/Maps/Shuttles/emergency_omega.yml +++ b/Resources/Maps/Shuttles/emergency_omega.yml @@ -25,7 +25,7 @@ entities: chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAADMQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAWQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABSwAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACSwAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADHQAAAAABMQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAHQAAAAADHQAAAAABJgAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAADMQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAWQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABSwAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACSwAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADHQAAAAABMQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 @@ -52,10 +52,10 @@ entities: gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: DeviceNetwork + deviceNetId: Wireless configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer - deviceNetId: Wireless - type: DecalGrid chunkCollection: version: 2 @@ -77,12 +77,7 @@ entities: 162: -10,9 163: -10,3 164: -10,1 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 169: -10,11 + 174: -10,11 - node: color: '#FFFFFFFF' id: Bot @@ -112,6 +107,8 @@ entities: 124: -1,4 125: -2,4 172: -8,8 + 177: -8,10 + 178: -8,11 - node: color: '#FFFFFFFF' id: BotRight @@ -137,6 +134,7 @@ entities: 129: -6,7 130: -5,7 131: -4,7 + 173: -10,10 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -305,7 +303,7 @@ entities: decals: 75: -6,10 76: -6,12 - 77: -6,13 + 184: -6,11 - node: color: '#FFFFFFFF' id: Bushf1 @@ -343,7 +341,6 @@ entities: color: '#DE3A3A96' id: Delivery decals: - 103: -7,11 104: -7,9 - node: color: '#334E6DC8' @@ -529,11 +526,7 @@ entities: decals: 19: 4,8 20: -8,4 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 101: -8,11 + 179: -7,13 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -544,19 +537,12 @@ entities: id: WarnLineGreyscaleW decals: 37: -6,1 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 88: -6,11 - 102: -10,11 - node: color: '#FFFFFFFF' id: WarnLineN decals: 21: -7,5 22: 1,5 - 25: -8,12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -752,13 +738,6 @@ entities: - type: Transform pos: -6.5,1.5 parent: 603 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 532 - components: - - type: Transform - pos: -6.5,11.5 - parent: 603 - proto: AirlockSecurityLocked entities: - uid: 466 @@ -1112,11 +1091,6 @@ entities: - type: Transform pos: -4.5,8.5 parent: 603 - - uid: 26 - components: - - type: Transform - pos: -5.5,8.5 - parent: 603 - uid: 34 components: - type: Transform @@ -1247,11 +1221,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 603 - - uid: 98 - components: - - type: Transform - pos: -9.5,11.5 - parent: 603 - uid: 100 components: - type: Transform @@ -1362,6 +1331,11 @@ entities: - type: Transform pos: 0.5,12.5 parent: 603 + - uid: 273 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 284 components: - type: Transform @@ -1397,11 +1371,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 603 - - uid: 307 - components: - - type: Transform - pos: -8.5,11.5 - parent: 603 - uid: 308 components: - type: Transform @@ -1427,11 +1396,6 @@ entities: - type: Transform pos: -8.5,6.5 parent: 603 - - uid: 314 - components: - - type: Transform - pos: -7.5,12.5 - parent: 603 - uid: 315 components: - type: Transform @@ -1445,12 +1409,12 @@ entities: - uid: 355 components: - type: Transform - pos: -6.5,10.5 + pos: -8.5,11.5 parent: 603 - uid: 356 components: - type: Transform - pos: -6.5,11.5 + pos: -5.5,14.5 parent: 603 - uid: 357 components: @@ -1467,11 +1431,6 @@ entities: - type: Transform pos: -7.5,5.5 parent: 603 - - uid: 360 - components: - - type: Transform - pos: -7.5,11.5 - parent: 603 - uid: 400 components: - type: Transform @@ -1482,21 +1441,11 @@ entities: - type: Transform pos: -6.5,6.5 parent: 603 - - uid: 405 - components: - - type: Transform - pos: -5.5,11.5 - parent: 603 - uid: 428 components: - type: Transform pos: -4.5,14.5 parent: 603 - - uid: 501 - components: - - type: Transform - pos: -5.5,14.5 - parent: 603 - uid: 502 components: - type: Transform @@ -1512,6 +1461,26 @@ entities: - type: Transform pos: -3.5,15.5 parent: 603 + - uid: 506 + components: + - type: Transform + pos: -8.5,10.5 + parent: 603 + - uid: 508 + components: + - type: Transform + pos: -4.5,9.5 + parent: 603 + - uid: 584 + components: + - type: Transform + pos: -6.5,14.5 + parent: 603 + - uid: 604 + components: + - type: Transform + pos: -5.5,10.5 + parent: 603 - proto: CableHV entities: - uid: 1 @@ -1591,6 +1560,11 @@ entities: - type: Transform pos: -7.5,8.5 parent: 603 + - uid: 26 + components: + - type: Transform + pos: -7.5,9.5 + parent: 603 - uid: 51 components: - type: Transform @@ -1621,6 +1595,11 @@ entities: - type: Transform pos: 0.5,5.5 parent: 603 + - uid: 207 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 243 components: - type: Transform @@ -1736,11 +1715,6 @@ entities: - type: Transform pos: -0.5,12.5 parent: 603 - - uid: 273 - components: - - type: Transform - pos: -6.5,9.5 - parent: 603 - uid: 274 components: - type: Transform @@ -1811,6 +1785,11 @@ entities: - type: Transform pos: 0.5,4.5 parent: 603 + - uid: 405 + components: + - type: Transform + pos: -7.5,10.5 + parent: 603 - proto: CableTerminal entities: - uid: 285 @@ -1903,6 +1882,18 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 603 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 603 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 603 - uid: 436 components: - type: Transform @@ -2030,6 +2021,12 @@ entities: - type: Transform pos: -0.5,2.5 parent: 603 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 603 - uid: 522 components: - type: Transform @@ -2048,6 +2045,18 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 603 + - uid: 531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 603 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 603 - uid: 534 components: - type: Transform @@ -2060,12 +2069,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 603 - - uid: 536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 603 - uid: 537 components: - type: Transform @@ -2271,10 +2274,11 @@ entities: parent: 603 - proto: FirelockEdge entities: - - uid: 531 + - uid: 98 components: - type: Transform - pos: -7.5,12.5 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 parent: 603 - proto: FirelockGlass entities: @@ -2359,18 +2363,17 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 603 - - uid: 200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 603 - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 603 + - uid: 507 + components: + - type: Transform + pos: -8.5,10.5 + parent: 603 - proto: GasPipeFourway entities: - uid: 316 @@ -2635,6 +2638,12 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 603 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 603 - uid: 578 components: - type: Transform @@ -2721,6 +2730,12 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 603 + - uid: 509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 603 - proto: GeneratorBasic15kW entities: - uid: 214 @@ -2887,16 +2902,17 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 603 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 603 - uid: 475 components: - type: Transform pos: -6.5,2.5 parent: 603 - - uid: 509 - components: - - type: Transform - pos: -8.5,12.5 - parent: 603 - uid: 539 components: - type: Transform @@ -3005,11 +3021,6 @@ entities: - type: Transform pos: -2.5,3.5 parent: 603 - - uid: 575 - components: - - type: Transform - pos: -8.5,10.5 - parent: 603 - uid: 576 components: - type: Transform @@ -3031,6 +3042,11 @@ entities: parent: 603 - proto: Poweredlight entities: + - uid: 204 + components: + - type: Transform + pos: -8.5,11.5 + parent: 603 - uid: 423 components: - type: Transform @@ -3093,13 +3109,6 @@ entities: parent: 603 - type: ApcPowerReceiver powerLoad: 0 - - uid: 584 - components: - - type: Transform - pos: -8.5,9.5 - parent: 603 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 585 components: - type: Transform @@ -3133,14 +3142,12 @@ entities: parent: 603 - type: ApcPowerReceiver powerLoad: 0 - - uid: 577 + - uid: 514 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,11.5 + pos: -7.5,13.5 parent: 603 - - type: ApcPowerReceiver - powerLoad: 0 - proto: Rack entities: - uid: 569 @@ -3340,16 +3347,17 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 603 - - uid: 506 - components: - - type: Transform - pos: -8.5,12.5 - parent: 603 - uid: 563 components: - type: Transform pos: -6.5,2.5 parent: 603 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 603 - proto: SignalButton entities: - uid: 555 @@ -3428,19 +3436,13 @@ entities: - type: Transform pos: -6.5,3.5 parent: 603 -- proto: SignPrison +- proto: SignSecurity entities: - uid: 513 components: - type: Transform - pos: -9.5,12.5 - parent: 603 -- proto: SignSecurity - entities: - - uid: 462 - components: - - type: Transform - pos: -6.5,12.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 603 - proto: SMESBasic entities: @@ -3595,7 +3597,7 @@ entities: parent: 603 - proto: VendingMachineSec entities: - - uid: 514 + - uid: 510 components: - type: Transform pos: -5.5,12.5 @@ -3846,6 +3848,11 @@ entities: - type: Transform pos: 4.5,14.5 parent: 603 + - uid: 200 + components: + - type: Transform + pos: -6.5,11.5 + parent: 603 - uid: 201 components: - type: Transform @@ -3863,18 +3870,6 @@ entities: - type: Transform pos: 4.5,15.5 parent: 603 - - uid: 204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,10.5 - parent: 603 - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 603 - uid: 208 components: - type: Transform @@ -3981,6 +3976,11 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 603 + - uid: 307 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 362 components: - type: Transform @@ -4019,14 +4019,8 @@ entities: - uid: 388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 603 - - uid: 392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,12.5 parent: 603 - uid: 406 components: @@ -4051,15 +4045,11 @@ entities: - type: Transform pos: -6.5,12.5 parent: 603 - - uid: 507 + - uid: 577 components: - type: Transform - pos: -6.5,14.5 - parent: 603 - - uid: 508 - components: - - type: Transform - pos: -6.5,13.5 + rot: 1.5707963267948966 rad + pos: -7.5,12.5 parent: 603 - proto: WeaponCapacitorRecharger entities: @@ -4083,11 +4073,11 @@ entities: parent: 603 - proto: WindoorSecureSecurityLocked entities: - - uid: 510 + - uid: 536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,12.5 + rot: -1.5707963267948966 rad + pos: -6.5,13.5 parent: 603 - proto: WindowReinforcedDirectional entities: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 2ffa5eca03..b8cf3c6fc0 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -18,7 +18,9 @@ tilemap: 58: FloorHydro 61: FloorLaundry 62: FloorLino + 3: FloorMetalDiamond 69: FloorMono + 2: FloorRGlass 77: FloorReinforced 1: FloorRockVault 80: FloorShowroom @@ -63,7 +65,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACUAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD + tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACUAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD version: 6 0,1: ind: 0,1 @@ -95,19 +97,19 @@ entities: version: 6 0,2: ind: 0,2 - tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 @@ -123,15 +125,15 @@ entities: version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAD + tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAAgAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -139,27 +141,27 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -171,11 +173,11 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -191,11 +193,11 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -203,11 +205,11 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -223,11 +225,47 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -251,11 +289,16 @@ entities: id: Arrows decals: 1084: 27,-31 + 2100: -54,11 - node: color: '#FFFFFFFF' id: Arrows decals: 1605: -35,19 + 1864: 47,-4 + 1865: 49,-4 + 1866: 55,-4 + 1867: 57,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -263,6 +306,18 @@ entities: decals: 938: -11,-6 1085: 27,-29 + 1868: 62,-4 + 1869: 62,-2 + 2101: -54.435013,10.029322 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1870: 57,-2 + 1871: 55,-2 + 1872: 49,-2 + 2080: 47,-2 - node: color: '#FFFFFFFF' id: Bot @@ -285,8 +340,6 @@ entities: 249: 7,55 250: 11,43 251: 9,43 - 310: 28,-10 - 311: 30,-10 419: 11,-28 420: 12,-28 422: 12,-26 @@ -299,10 +352,6 @@ entities: 636: -17,9 654: -37,-9 655: -36,-9 - 687: -35,5 - 688: -34,5 - 689: -33,5 - 690: -32,5 699: -35,1 713: -31,-6 714: -31,-10 @@ -324,13 +373,37 @@ entities: 1013: 35,-29 1082: 29,-31 1083: 29,-29 - 1204: -9,-28 - 1205: -9,-27 1233: -14,-26 1234: -16,-26 1531: 2,-36 1532: -15,-14 1604: -37,20 + 1725: -37,4 + 1726: -37,5 + 1735: -32,4 + 1736: -32,5 + 1744: -35,5 + 1745: -34,4 + 1896: 32,14 + 1897: 32,16 + 1909: 26,17 + 1910: 25,17 + 1911: 25,15 + 1912: 24,14 + 2086: -49,6 + 2108: -40,-13 + 2109: -42,-13 + 2119: -42,-16 + 2120: -40,-16 + 2122: -51,0 + 2128: -58,0 + - node: + angle: 4.71238898038469 rad + color: '#DE3A3AFF' + id: BotGreyscale + decals: + 2018: -41,-18 + 2019: -40,-19 - node: color: '#FFFFFFFF' id: BotLeft @@ -343,6 +416,13 @@ entities: 1601: -34,-10 1602: -36,21 1603: -37,21 + 1742: -35,4 + 1743: -34,5 + 1913: 24,15 + 1914: 25,14 + 2123: -52,0 + 2124: -53,0 + 2126: -51,6 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -387,6 +467,11 @@ entities: 1088: -5,28 1089: -5,29 1090: -5,30 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 2023: -39,-18 - node: color: '#EFB34196' id: BrickTileSteelCornerNe @@ -399,36 +484,35 @@ entities: decals: 1559: -43,-11 1560: -43,-11 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 2024: -39,-19 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 1575: -39,-19 - 1576: -39,-19 + 2006: -39,-16 + 2007: -39,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 1573: -43,-19 - 1574: -43,-19 + 2117: -43,-16 + 2118: -43,-16 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 1583: -39,-18 - 1584: -39,-18 - 1585: -39,-17 - 1586: -39,-17 1587: -39,-15 1588: -39,-15 - 1589: -39,-16 - 1590: -39,-16 - 1591: -39,-14 - 1592: -39,-14 1593: -39,-13 1594: -39,-13 1595: -39,-12 1596: -39,-12 + 2115: -39,-14 + 2116: -39,-14 - node: color: '#D381C996' id: BrickTileSteelLineN @@ -459,12 +543,10 @@ entities: color: '#EFB34196' id: BrickTileSteelLineS decals: - 1577: -40,-19 - 1578: -40,-19 - 1579: -41,-19 - 1580: -41,-19 - 1581: -42,-19 - 1582: -42,-19 + 2111: -40,-16 + 2112: -40,-16 + 2113: -42,-16 + 2114: -42,-16 - node: color: '#EFB34196' id: BrickTileSteelLineW @@ -475,12 +557,6 @@ entities: 1564: -43,-14 1565: -43,-15 1566: -43,-15 - 1567: -43,-16 - 1568: -43,-16 - 1569: -43,-17 - 1570: -43,-17 - 1571: -43,-18 - 1572: -43,-18 - node: color: '#334E6DC8' id: BrickTileWhiteBox @@ -611,6 +687,7 @@ entities: 1245: -18,-21 1246: -19,-21 1259: -22,-23 + 2079: -10,-21 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -646,6 +723,7 @@ entities: 1253: -20,-24 1254: -21,-24 1255: -22,-24 + 1718: -10,-24 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -808,6 +886,12 @@ entities: 1501: -3,-28 1502: -3,-27 1503: -3,-26 + 1719: -11,-25 + 1720: -10,-25 + 1721: -9,-29 + 1722: -9,-28 + 1723: -9,-27 + 1724: -9,-26 - node: color: '#D381C996' id: CheckerNWSE @@ -890,8 +974,6 @@ entities: 254: 5,47 255: 6,47 256: 7,47 - 312: 29,-10 - 313: 31,-10 421: 12,-29 582: -27,13 583: -27,14 @@ -902,17 +984,11 @@ entities: 634: -17,10 648: -35,-34 649: -34,-34 - 691: -35,4 - 692: -34,4 - 693: -33,4 - 694: -32,4 700: -34,-6 715: -40,-4 716: -40,-3 717: -40,-2 1087: 22,-26 - 1202: -9,-26 - 1203: -9,-29 1367: -12,-37 1368: -11,-37 1370: -6,-15 @@ -944,12 +1020,38 @@ entities: 1396: -22,-13 1397: -22,-12 1606: 5,-4 + 1728: -36,5 + 1733: -33,4 + 1737: -36,4 + 1748: -33,5 + 1915: 46,-4 + 1916: 46,-3 + 1917: 46,-2 + 1919: 58,-3 + 1920: 58,-2 + 1995: 58,-4 + 2048: -41,-12 + 2121: -50,0 + 2125: -48,6 + 2127: -57,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: 1609: -49,-26 + - node: + angle: 4.71238898038469 rad + color: '#DE3A3AFF' + id: DeliveryGreyscale + decals: + 2020: -40,-18 + - node: + cleanable: True + color: '#DE3A3AFF' + id: Dirt + decals: + 2025: -42,-18 - node: cleanable: True color: '#FFFFFFFF' @@ -959,6 +1061,13 @@ entities: 1031: -45,-29 1032: -43,-27 1033: -44,-30 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtHeavy + decals: + 2026: -41,-18 + 2027: -40,-19 - node: cleanable: True color: '#FFFFFFFF' @@ -976,6 +1085,19 @@ entities: 1537: -47,-8 1538: -47,-7 1539: -47,-10 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtHeavyMonotile + decals: + 2029: -39,-18 + 2030: -39,-19 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtLight + decals: + 2028: -40,-18 - node: color: '#FFFFFFFF' id: DirtLight @@ -1040,33 +1162,55 @@ entities: 1550: -46,-7 1551: -45,-6 1552: -40,-6 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtMedium + decals: + 2031: -41,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: 803: 8,-33 - 827: 24,15 1540: -46,-10 1541: -46,-9 1542: -46,-12 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 1883: 53,-6 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 47: 6.065522,21.048145 + 1885: 51,0 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 48: 7.049897,20.985645 325: -8.939377,-46.636467 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1884: 52,-6 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 49: 7.518647,21.016895 324: -8.955002,-48.308342 + 1881: 51,-6 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1882: 53,0 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -1096,8 +1240,6 @@ entities: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 272: 26,-8 - 273: 30,-7 897: 16,33 898: 15,28 - node: @@ -1209,6 +1351,7 @@ entities: id: Grassd1 decals: 20: -8.810993,-9.335041 + 1877: 53,-6 - node: color: '#FFFFFFFF' id: Grassd2 @@ -1216,11 +1359,18 @@ entities: 46: 7.909272,21.016895 323: -8.91927,-49.011467 329: -13.966697,-45.902092 + 1874: 51,-6 - node: color: '#FFFFFFFF' id: Grassd3 decals: 21: -7.826618,-9.960041 + 1875: 52,0 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1876: 51,0 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1229,6 +1379,7 @@ entities: 45: 6.784272,21.079395 321: -8.936016,-46.30113 331: -13.997947,-48.558342 + 1880: 53,0 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1236,6 +1387,7 @@ entities: 22: -7.045368,-10.022541 322: -9.029766,-47.11363 330: -13.997947,-47.558342 + 1878: 52,-6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -1271,9 +1423,6 @@ entities: 165: 19,19 166: 18,19 171: 19,21 - 267: 30,-8 - 268: 29,-8 - 269: 28,-8 890: 16,35 891: 16,32 - node: @@ -1319,10 +1468,6 @@ entities: 626: -19,11 627: -20,11 681: -30,5 - 683: -32,3 - 684: -33,3 - 685: -34,3 - 686: -35,3 707: -31,-7 708: -32,-7 709: -33,-7 @@ -1380,9 +1525,6 @@ entities: 162: 18,17 163: 19,17 176: 17,13 - 264: 28,-10 - 265: 29,-10 - 266: 30,-10 889: 16,29 892: 16,34 - node: @@ -1483,7 +1625,6 @@ entities: 173: 14,26 174: 14,27 175: 14,23 - 271: 27,-9 893: 15,30 894: 15,31 - node: @@ -1577,7 +1718,6 @@ entities: 164: 20,18 168: 17,20 169: 20,20 - 270: 31,-9 895: 17,30 896: 17,31 905: 20,26 @@ -1655,16 +1795,15 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 143: 22,15 + 1899: 22,15 - node: color: '#FFFFFFFF' id: LoadingArea decals: 54: 9,21 - 695: -35,3 - 696: -34,3 - 697: -33,3 - 698: -32,3 + 1746: -35,3 + 1747: -34,3 + 1898: 26,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -1852,8 +1991,6 @@ entities: 628: -21,10 680: -29,5 682: -31,3 - 784: -46,-4 - 785: -46,-3 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -2024,10 +2161,6 @@ entities: 177: 16,13 178: 15,13 179: 14,13 - 274: 30,-6 - 275: 29,-6 - 276: 28,-6 - 277: 27,-6 278: 24,-8 279: 24,-6 280: 24,-4 @@ -2095,6 +2228,32 @@ entities: 1338: -12,-52 1339: -12,-51 1340: -12,-50 + 1941: 34,-4 + 1942: 35,-4 + 1943: 36,-4 + 1944: 37,-4 + 1945: 38,-4 + 1946: 39,-4 + 1947: 41,-4 + 1948: 40,-4 + 1949: 42,-4 + 1950: 43,-4 + 1951: 44,-4 + 1952: 45,-4 + 1953: 51,-5 + 1954: 52,-5 + 1955: 53,-5 + 1956: 59,-4 + 1957: 60,-4 + 1958: 61,-4 + 1959: 27,-5 + 1960: 27,-6 + 1961: 27,-7 + 1962: 27,-8 + 1963: 28,-8 + 1964: 29,-8 + 1965: 30,-8 + 1966: 31,-8 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -2112,6 +2271,8 @@ entities: decals: 629: -21,9 758: -38,-9 + 2001: -47,-3 + 2002: -47,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -2237,6 +2398,30 @@ entities: 1324: -11,-43 1325: -11,-44 1326: -11,-45 + 1921: 59,-2 + 1922: 60,-2 + 1923: 61,-2 + 1924: 53,-1 + 1927: 51,-1 + 1928: 52,-1 + 1929: 45,-2 + 1930: 44,-2 + 1931: 43,-2 + 1932: 42,-2 + 1933: 41,-2 + 1934: 40,-2 + 1935: 39,-2 + 1936: 38,-2 + 1937: 37,-2 + 1938: 36,-2 + 1939: 35,-2 + 1940: 34,-2 + 1967: 31,-8 + 1968: 31,-7 + 1969: 31,-6 + 1970: 31,-5 + 1971: 31,0 + 1972: 31,-1 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -2283,6 +2468,16 @@ entities: id: Rock04 decals: 1035: -44,-27 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1908: 29,8 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1907: 66,-23 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -2318,6 +2513,11 @@ entities: id: SpaceStationSign7 decals: 953: 0,-13 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 2141: 34,-5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2340,7 +2540,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 153: 14,21 - 260: 27,-8 882: 15,32 888: 15,35 - node: @@ -2368,6 +2567,7 @@ entities: decals: 618: -21,11 702: -34,-7 + 2000: -47,-2 - node: color: '#FFDB9895' id: ThreeQuarterTileOverlayGreyscale @@ -2389,7 +2589,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 150: 20,17 - 262: 31,-10 881: 17,29 887: 17,34 - node: @@ -2430,7 +2629,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 149: 14,17 - 263: 27,-10 884: 15,29 885: 15,34 - node: @@ -2478,7 +2676,6 @@ entities: 151: 20,19 152: 17,21 170: 20,21 - 261: 31,-8 883: 17,32 886: 17,35 - node: @@ -2511,14 +2708,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 449: -9,-15 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 1023: -9,-44 - 1024: -14,-44 - 1025: -14,-51 - 1026: -9,-51 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2595,6 +2784,8 @@ entities: id: WarnCornerSmallNE decals: 932: 21,5 + 1902: 26,14 + 2139: -57,5 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -2606,11 +2797,13 @@ entities: id: WarnCornerSmallSE decals: 935: 23,3 + 1901: 26,16 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 + 2132: -56,1 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2631,7 +2824,6 @@ entities: 1190: -13,-25 1191: -14,-23 1192: -14,-22 - 1193: -10,-25 1238: -17,-25 1239: -19,-28 - node: @@ -2640,6 +2832,10 @@ entities: decals: 921: 23,7 922: 23,8 + 1900: 26,15 + 2097: -60,0 + 2098: -60,1 + 2099: -60,2 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2664,7 +2860,6 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1178: -10,-21 1179: -12,-21 1257: -16,-21 1258: -20,-21 @@ -2682,7 +2877,6 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 1177: -10,-24 1240: -17,-24 - node: color: '#52B4E996' @@ -2705,12 +2899,20 @@ entities: 926: 22,7 927: 23,7 933: 24,3 + 2003: -47,-4 + 2077: -46,-4 + 2078: -45,-4 + 2129: -58,1 + 2130: -57,1 - node: color: '#FFFFFFFF' id: WarnLineS decals: 923: 21,7 924: 21,8 + 2131: -56,0 + 2133: -59,4 + 2140: -59,5 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2722,6 +2924,15 @@ entities: 930: 22,5 1236: -14,-29 1237: -13,-29 + 2088: -55,5 + 2089: -54,5 + 2090: -53,5 + 2091: -52,5 + 2092: -51,5 + 2093: -50,5 + 2094: -49,5 + 2095: -48,5 + 2138: -56,5 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2763,13 +2974,6 @@ entities: 240: 8,54 241: 8,55 252: 11,53 - 314: 31,-6 - 315: 31,-5 - 316: 31,-4 - 317: 31,-3 - 318: 31,-2 - 319: 31,-1 - 320: 31,0 401: 19,-25 404: 27,-30 414: 3,-28 @@ -2780,9 +2984,6 @@ entities: 647: -38,-34 660: -37,1 661: -37,2 - 662: -37,3 - 663: -37,4 - 664: -37,5 718: -41,-3 - node: color: '#FFFFFFFF' @@ -2790,9 +2991,6 @@ entities: decals: 31: -23,-4 32: -22,-4 - 144: 24,16 - 145: 23,16 - 146: 22,16 214: 15,46 215: 14,46 216: 13,46 @@ -2815,8 +3013,6 @@ entities: 591: -31,22 724: -43,-4 725: -44,-4 - 726: -45,-4 - 727: -46,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -3144,8 +3340,8 @@ entities: 1,7: 0: 24814 1,8: - 0: 7 - 1: 17408 + 0: 50183 + 1: 10752 2,5: 0: 10047 2,6: @@ -3154,8 +3350,8 @@ entities: 0: 1111 1: 4096 2,8: - 0: 2052 - 1: 17520 + 0: 63492 + 1: 1136 3,5: 0: 55773 3,6: @@ -3222,7 +3418,7 @@ entities: -4,-4: 0: 62347 -4,-5: - 0: 48049 + 0: 49073 -5,-4: 0: 63803 -4,-3: @@ -3242,7 +3438,7 @@ entities: -3,-2: 0: 12287 -3,-5: - 0: 65525 + 0: 65521 -2,-4: 0: 65134 -2,-3: @@ -3302,7 +3498,7 @@ entities: -8,1: 0: 28927 -9,1: - 0: 61678 + 0: 61695 -8,2: 0: 65311 -9,2: @@ -3373,15 +3569,18 @@ entities: -1,9: 1: 3968 0,9: - 1: 22468 + 1: 57284 0,10: - 1: 57309 + 1: 22357 + 0: 34952 0,11: 0: 2474 1,9: - 1: 17652 + 1: 43706 + 0: 17476 1,10: - 1: 1103 + 0: 1095 + 1: 2728 1,11: 0: 61182 2,9: @@ -3394,7 +3593,7 @@ entities: 2,12: 0: 8190 3,9: - 0: 3633 + 0: 3761 3,11: 0: 61166 3,10: @@ -3402,18 +3601,16 @@ entities: 4,8: 0: 64275 4,9: - 0: 824 - 1: 4096 + 0: 4664 4,10: - 1: 1 - 0: 32 + 0: 33 4,11: 0: 36416 5,7: 0: 14085 5,4: - 0: 4380 - 1: 17408 + 0: 4572 + 1: 16384 5,5: 0: 4113 1: 1092 @@ -3422,10 +3619,17 @@ entities: 5,3: 0: 65500 6,4: - 0: 1 - 1: 192 + 0: 119 6,3: - 0: 57297 + 0: 63351 + 7,4: + 0: 139 + 1: 1792 + 7,3: + 0: 64413 + 8,4: + 0: 17 + 1: 14 5,0: 0: 49502 5,2: @@ -3438,25 +3642,27 @@ entities: 0: 47419 6,1: 0: 11 - 1: 19968 6,2: - 0: 256 - 1: 50244 + 0: 2016 6,-1: 0: 49151 7,0: 0: 65375 7,1: - 0: 15 - 1: 32512 - 7,3: - 0: 256 + 0: 25103 + 1: 35840 + 7,2: + 0: 35063 + 1: 8 7,-1: 0: 65535 - 8,0: - 0: 1799 8,1: - 1: 13090 + 1: 4352 + 8,2: + 1: 1 + 8,3: + 0: 61713 + 1: 3584 0,12: 0: 10624 0,13: @@ -3504,46 +3710,77 @@ entities: -5,9: 1: 4353 0: 16 - 8,-4: - 1: 4096 - 8,-3: - 1: 547 - 7,-4: - 1: 49152 - 0: 19 - 7,-3: + 8,0: + 1: 14 + 9,0: 1: 15 - 0: 65280 - 8,-2: - 0: 1799 + 9,3: + 1: 8960 + 9,4: + 1: 3 + 10,0: + 1: 15 + 11,0: + 1: 3 + 0: 136 + 11,-1: + 0: 36863 + 8,-4: + 0: 79 + 1: 4352 + 7,-4: + 0: 255 + 8,-3: + 1: 272 + 7,-3: + 1: 3840 7,-2: - 0: 65375 + 0: 65535 8,-1: - 1: 546 + 0: 4095 + 8,-2: + 0: 58368 + 8,-5: + 0: 59392 + 9,-2: + 0: 45056 + 1: 241 + 9,-1: + 0: 4095 + 9,-3: + 1: 4368 + 10,-2: + 1: 3696 + 0: 4096 + 10,-1: + 0: 4095 + 11,-2: + 1: 768 + 0: 34944 + 12,-1: + 0: 45055 4,-5: 0: 57297 4,-3: 0: 14 1: 2560 5,-4: - 0: 25 - 1: 25668 + 0: 29 + 1: 25664 5,-2: 0: 10415 5,-5: - 0: 53520 + 0: 20752 5,-3: 1: 3686 6,-4: 0: 239 - 1: 61440 6,-3: - 1: 815 - 0: 34816 + 1: 3952 6,-2: - 0: 47935 + 0: 48059 7,-5: - 0: 25817 + 0: 8209 0,-8: 0: 46071 0,-9: @@ -3605,7 +3842,7 @@ entities: -3,-8: 0: 58043 -3,-7: - 0: 20222 + 0: 28414 -3,-6: 0: 65535 -3,-9: @@ -3658,12 +3895,19 @@ entities: 0: 16 0,-10: 1: 1860 + 0,-12: + 1: 34952 + 0,-13: + 1: 34952 + 1,-12: + 0: 36864 + 1: 34 1,-11: 0: 49080 1,-10: 0: 49072 - 1,-12: - 0: 37376 + 1,-13: + 1: 12834 2,-12: 0: 28672 2,-11: @@ -3693,7 +3937,11 @@ entities: 0: 13107 1: 34952 -2,-15: - 1: 1 + 1: 61681 + -1,-15: + 1: 61936 + 0,-15: + 1: 62448 5,-8: 1: 4368 0: 52416 @@ -3710,7 +3958,7 @@ entities: 6,-6: 0: 61695 6,-5: - 0: 3839 + 0: 4095 6,-9: 0: 65319 7,-8: @@ -3726,11 +3974,11 @@ entities: 8,-7: 0: 65535 8,-6: - 0: 63247 - 8,-5: - 0: 7 + 0: 26383 8,-9: 0: 48112 + 9,-5: + 0: 310 9,-9: 0: 45872 9,-8: @@ -3738,22 +3986,29 @@ entities: 9,-7: 0: 64 9,-6: - 0: 72 + 0: 19584 10,-8: 1: 244 0: 4096 10,-7: 0: 256 + 1: 57344 + 10,-6: + 0: 17 10,-9: 1: 17476 0: 43690 11,-8: 1: 244 + 11,-7: + 1: 62192 11,-9: 1: 17476 0: 43690 12,-8: 1: 244 + 12,-7: + 1: 61680 8,-11: 0: 195 7,-11: @@ -3809,13 +4064,16 @@ entities: -13,-3: 0: 61007 -12,-2: - 0: 7406 + 0: 3310 -13,-2: 0: 61678 -12,-1: - 0: 7645 + 0: 3823 + -13,-1: + 0: 34952 + 1: 768 -12,0: - 0: 65535 + 0: 56797 -11,-4: 0: 65262 -11,-3: @@ -3826,8 +4084,6 @@ entities: 0: 3003 -11,0: 0: 65535 - -11,-5: - 0: 61152 -10,-4: 0: 48059 -10,-3: @@ -3836,10 +4092,10 @@ entities: 0: 39867 -10,-1: 0: 39867 - -10,-5: - 0: 48056 -10,0: - 0: 65531 + 0: 16379 + -10,-5: + 0: 35768 -9,-5: 0: 48059 -12,-7: @@ -3863,6 +4119,8 @@ entities: 0: 55487 -11,-6: 0: 65501 + -11,-5: + 0: 2995 -10,-8: 0: 60943 -10,-6: @@ -3916,17 +4174,28 @@ entities: -10,8: 0: 2080 -12,4: - 3: 204 - -11,4: - 3: 17 - 0: 8 + 3: 546 + 4: 2184 + -13,4: + 3: 2184 + 5: 546 + -12,5: + 0: 1 + 1: 3856 + -13,5: + 1: 4032 -11,5: - 0: 2048 + 1: 784 + -11,4: + 6: 546 + 0: 8 -11,6: 0: 49152 -11,3: 0: 34823 1: 1792 + -10,5: + 0: 152 -11,7: 0: 2184 -10,7: @@ -3935,29 +4204,34 @@ entities: 0: 3296 -10,4: 0: 32904 - -10,5: - 0: 136 -10,3: 0: 35087 -9,5: 0: 119 -9,6: 0: 4400 - -12,1: + -13,0: 0: 65535 + -12,1: + 0: 52701 + -13,1: + 0: 4095 -12,2: 0: 65535 + -13,2: + 0: 65535 -12,3: 0: 15 1: 3840 -13,3: - 1: 31860 + 0: 15 + 1: 3840 -11,1: 0: 30719 -11,2: 0: 30583 -10,1: - 0: 61951 + 0: 61883 -10,2: 0: 65295 -11,-9: @@ -3970,57 +4244,68 @@ entities: 0: 4095 -9,-11: 0: 12288 + -16,0: + 1: 62227 + 3: 3276 + -17,0: + 1: 8930 + -16,1: + 1: 58999 + 0: 2184 + -17,1: + 1: 43746 + -16,2: + 1: 13090 + 3: 34944 + -17,2: + 1: 34986 + -16,-1: + 1: 57344 + -16,3: + 1: 58594 -15,0: - 1: 17484 - -15,-1: - 1: 16384 + 3: 273 + 0: 52428 -15,1: - 1: 17484 - -15,2: - 1: 17484 - -15,3: - 1: 12 - -14,1: - 0: 1 - 3: 49344 - -14,-1: + 0: 239 1: 61440 - -14,3: - 1: 49392 + -15,2: + 3: 13104 + 1: 34952 + -15,3: + 1: 16120 + -15,4: + 1: 46 -14,0: - 4: 192 - 5: 49152 + 0: 65535 + -14,1: + 0: 20223 + -14,3: + 1: 16128 + 0: 14 -14,2: - 6: 192 - 3: 49152 - -13,0: - 4: 16 - 5: 4096 - 1: 17476 - -13,1: - 3: 4112 - 1: 17476 - -13,2: - 6: 16 - 3: 4096 - 1: 17476 - -13,-1: - 1: 29696 - 0: 33 - -13,4: - 1: 116 + 0: 61166 + -14,4: + 1: 12561 + 3: 2184 + -16,-2: + 0: 1772 + -16,-3: + 0: 51200 + -15,-3: + 0: 5392 + -15,-2: + 0: 2295 -15,-4: 0: 16384 - -15,-3: - 0: 1024 - -15,-2: - 0: 2246 + -14,-2: + 0: 61424 + -14,-1: + 1: 3840 -14,-4: 0: 60928 -14,-3: 0: 61166 - -14,-2: - 0: 61664 -14,-5: 0: 27848 -16,-8: @@ -4088,8 +4373,71 @@ entities: 1: 8738 13,-8: 1: 50 - -14,4: - 1: 192 + 13,-7: + 1: 61936 + 14,-7: + 1: 62448 + 15,-7: + 1: 28976 + -14,5: + 1: 3923 + 12,-2: + 0: 43552 + 1: 128 + 12,0: + 0: 42 + 1: 128 + 13,-2: + 1: 48 + 0: 48000 + 13,-1: + 0: 49151 + 13,0: + 0: 139 + 1: 48 + 14,-1: + 0: 12287 + 14,-2: + 0: 8736 + 1: 2048 + 14,0: + 0: 34 + 1: 8 + 15,-2: + 1: 3840 + 15,-1: + 0: 3967 + 15,0: + 1: 15 + 16,-2: + 1: 273 + 16,-1: + 0: 771 + 16,-4: + 1: 22357 + 16,-5: + 1: 21877 + 16,-3: + 1: 4373 + 16,0: + 1: 1 + 16,-7: + 0: 512 + 16,-6: + 1: 20736 + 0: 200 + 17,-6: + 0: 1 + 1,-15: + 1: 8752 + 0,-14: + 1: 34952 + 1,-14: + 1: 9010 + -17,-1: + 1: 8192 + -17,3: + 1: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -4151,21 +4499,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -4196,6 +4529,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: BecomesStation id: Omega @@ -4214,6 +4562,40 @@ entities: - type: Transform pos: -10.386757,8.623476 parent: 4812 +- proto: ActionToggleInternals + entities: + - uid: 9710 + components: + - type: Transform + parent: 12116 + - type: InstantAction + container: 12116 +- proto: ActionToggleLight + entities: + - uid: 8638 + components: + - type: Transform + parent: 1481 + - type: InstantAction + container: 1481 + - uid: 9534 + components: + - type: Transform + parent: 12119 + - type: InstantAction + container: 12119 + - uid: 9825 + components: + - type: Transform + parent: 6364 + - type: InstantAction + container: 6364 + - uid: 9826 + components: + - type: Transform + parent: 12487 + - type: InstantAction + container: 12487 - proto: AirAlarm entities: - uid: 4981 @@ -4357,22 +4739,11 @@ entities: parent: 4812 - type: DeviceList devices: - - 10758 - - 10757 + - 12140 + - 4622 + - 12136 - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - uid: 12182 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12181 + - 4623 - uid: 12183 components: - type: Transform @@ -4380,15 +4751,9 @@ entities: parent: 4812 - type: DeviceList devices: + - 12141 + - 12137 - 12184 - - 12035 - - 12036 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - uid: 12186 components: - type: Transform @@ -4753,11 +5118,13 @@ entities: parent: 4812 - type: DeviceList devices: - - 12277 - 4424 - 4425 - - 4380 + - 6684 + - 4983 + - 12277 - 4381 + - 4380 - uid: 12278 components: - type: Transform @@ -4769,7 +5136,6 @@ entities: - 4425 - 4424 - 4444 - - 4443 - uid: 12282 components: - type: Transform @@ -4788,9 +5154,12 @@ entities: parent: 4812 - type: DeviceList devices: - - 4205 + - 4444 + - 4335 + - 12842 - 12284 - - 4203 + - 12841 + - 12279 - uid: 12285 components: - type: Transform @@ -5111,6 +5480,61 @@ entities: - 12363 - 9007 - 8991 + - uid: 12697 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 13228 + - 13229 + - 13230 + - 13192 + - 12692 + - 12693 + - 12694 + - 12684 + - 13233 + - 13232 + - 13231 + - 4327 + - 12767 + - 4328 + - 12688 + - 12764 + - 12766 + - uid: 13204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 4812 + - type: DeviceList + devices: + - 12977 + - 2904 + - 2963 + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 4812 + - type: DeviceList + devices: + - 9495 + - uid: 13607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 9504 + - 9421 + - 13408 - proto: AirAlarmElectronics entities: - uid: 10719 @@ -5135,15 +5559,15 @@ entities: - type: Transform pos: -34.5,-37.5 parent: 4812 - - uid: 9671 + - uid: 12248 components: - type: Transform - pos: -31.5,4.5 + pos: -36.5,5.5 parent: 4812 - - uid: 9672 + - uid: 12374 components: - type: Transform - pos: -31.5,5.5 + pos: -35.5,5.5 parent: 4812 - uid: 12398 components: @@ -5201,13 +5625,26 @@ entities: parent: 4812 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 3444 + - uid: 3321 components: - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,0.5 parent: 4812 + - uid: 11735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 4812 - proto: AirlockAtmosphericsLocked entities: + - uid: 3444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 4812 - uid: 8862 components: - type: Transform @@ -5218,11 +5655,6 @@ entities: - type: Transform pos: -39.5,-0.5 parent: 4812 - - uid: 9566 - components: - - type: Transform - pos: -35.5,2.5 - parent: 4812 - proto: AirlockBarLocked entities: - uid: 325 @@ -5293,16 +5725,6 @@ entities: - type: Transform pos: 15.5,22.5 parent: 4812 - - uid: 4427 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - - uid: 4428 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - proto: AirlockChapelLocked entities: - uid: 329 @@ -5322,12 +5744,12 @@ entities: - type: Transform pos: -21.5,-34.5 parent: 4812 -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 6617 + - uid: 9481 components: - type: Transform - pos: -9.5,-19.5 + pos: -13.5,-17.5 parent: 4812 - proto: AirlockChiefEngineerGlassLocked entities: @@ -5402,6 +5824,11 @@ entities: - type: Transform pos: -6.5,29.5 parent: 4812 + - uid: 2889 + components: + - type: Transform + pos: 6.5,18.5 + parent: 4812 - proto: AirlockCommandLocked entities: - uid: 5174 @@ -5428,6 +5855,12 @@ entities: parent: 4812 - proto: AirlockEngineeringGlassLocked entities: + - uid: 2964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 4812 - uid: 9565 components: - type: Transform @@ -5448,6 +5881,12 @@ entities: - type: Transform pos: -40.5,-9.5 parent: 4812 + - uid: 12129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 4812 - proto: AirlockEngineeringLocked entities: - uid: 901 @@ -5532,6 +5971,31 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 4812 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 9212 + components: + - type: Transform + pos: -60.5,6.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9190: + - DoorStatus: DoorBolt + - uid: 13456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-4.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13457: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 3761 @@ -5558,26 +6022,41 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-50.5 parent: 4812 - - uid: 3777 + - uid: 4057 components: - type: Transform - pos: 32.5,-5.5 + rot: 1.5707963267948966 rad + pos: 49.5,-4.5 parent: 4812 - - uid: 3778 + - uid: 4061 components: - type: Transform - pos: 32.5,-7.5 + rot: 1.5707963267948966 rad + pos: 55.5,-4.5 parent: 4812 - - uid: 3779 + - uid: 4070 components: - type: Transform - pos: 32.5,0.5 + rot: -1.5707963267948966 rad + pos: 63.5,-1.5 parent: 4812 - - uid: 3780 + - uid: 4088 components: - type: Transform - pos: 32.5,2.5 + rot: 3.141592653589793 rad + pos: 63.5,-3.5 parent: 4812 + - uid: 4157 + components: + - type: MetaData + name: security airlock + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 4812 + - type: AccessReader + access: + - - Security - uid: 8476 components: - type: Transform @@ -5606,53 +6085,49 @@ entities: - DoorStatus: Close 9656: - DoorStatus: Close -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 6362 + - uid: 13036 components: - type: Transform - pos: -47.5,-3.5 + rot: 1.5707963267948966 rad + pos: 57.5,-0.5 parent: 4812 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6363: - - DoorStatus: DoorBolt - - uid: 6363 + - uid: 13037 components: - type: Transform - pos: -50.5,-4.5 + rot: 1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 4812 + - uid: 13053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 4812 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 4812 + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 parent: 4812 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6362: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 2919 + - uid: 2894 components: - type: Transform - pos: 25.5,14.5 + rot: 3.141592653589793 rad + pos: 27.5,15.5 parent: 4812 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2920: - - DoorStatus: DoorBolt - - uid: 2920 - components: - - type: Transform - pos: 28.5,14.5 - parent: 4812 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2919: + 4550: - DoorStatus: DoorBolt - uid: 3040 components: @@ -5664,6 +6139,43 @@ entities: - type: Transform pos: 21.5,25.5 parent: 4812 + - uid: 4550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2894: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 9190 + components: + - type: Transform + pos: -59.5,4.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9212: + - DoorStatus: DoorBolt + - uid: 13457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13456: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 10406 @@ -5713,9 +6225,31 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-43.5 parent: 4812 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 13030 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 4812 + - uid: 13031 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 4812 + - uid: 13035 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 4812 + - uid: 13044 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 4812 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 3769 + - uid: 3225 components: - type: Transform rot: -1.5707963267948966 rad @@ -5732,6 +6266,11 @@ entities: - type: Transform pos: -47.5,-26.5 parent: 4812 + - uid: 13557 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 4812 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3190 @@ -5746,29 +6285,29 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,25.5 parent: 4812 - - uid: 4134 + - uid: 4062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + rot: 3.141592653589793 rad + pos: 55.5,1.5 parent: 4812 - - uid: 4135 + - uid: 4064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 + rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 4812 - - uid: 4136 + - uid: 4067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + rot: 3.141592653589793 rad + pos: 49.5,1.5 parent: 4812 - - uid: 4137 + - uid: 4071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 4812 - uid: 4736 components: @@ -5804,6 +6343,18 @@ entities: - DoorStatus: Close - type: DeviceLinkSink invokeCounter: 1 + - uid: 12991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 4812 + - uid: 13120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 4812 - proto: AirlockExternalLocked entities: - uid: 2737 @@ -5954,21 +6505,6 @@ entities: - type: Transform pos: 14.5,-2.5 parent: 4812 - - uid: 4382 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 4812 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 4812 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 4812 - uid: 4714 components: - type: Transform @@ -6044,13 +6580,44 @@ entities: - type: Transform pos: -28.5,-1.5 parent: 4812 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 723 + - uid: 12724 components: - type: Transform - pos: 6.5,18.5 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 parent: 4812 + - uid: 12725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + - uid: 12726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4812 + - uid: 12727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 4812 + - uid: 12728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 4812 + - uid: 12729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 4812 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: - uid: 2460 components: - type: Transform @@ -6120,16 +6687,17 @@ entities: parent: 4812 - proto: AirlockMaintAtmoLocked entities: + - uid: 4058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 4812 - uid: 7949 components: - type: Transform pos: -39.5,6.5 parent: 4812 - - uid: 8686 - components: - - type: Transform - pos: -36.5,0.5 - parent: 4812 - proto: AirlockMaintBarLocked entities: - uid: 324 @@ -6467,22 +7035,26 @@ entities: - type: Transform pos: -8.5,10.5 parent: 4812 -- proto: AirlockMedicalGlassLocked +- proto: AirlockMedicalGlass entities: - - uid: 1933 + - uid: 3402 components: - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 4812 - - uid: 1934 + - uid: 4615 components: - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 4812 - - uid: 7411 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 2903 components: - type: Transform - pos: -9.5,-24.5 + pos: -11.5,-26.5 parent: 4812 - uid: 7412 components: @@ -6499,13 +7071,20 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 4812 -- proto: AirlockMedicalLocked - entities: - - uid: 7410 + - uid: 13414 components: - type: Transform - pos: -11.5,-26.5 + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 parent: 4812 + - uid: 13415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 +- proto: AirlockMedicalLocked + entities: - uid: 7414 components: - type: Transform @@ -6727,6 +7306,15 @@ entities: parent: 4812 - proto: AirSensor entities: + - uid: 2904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13204 - uid: 8805 components: - type: Transform @@ -6737,6 +7325,14 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 4812 + - uid: 9504 + components: + - type: Transform + pos: -47.5,2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 - uid: 12170 components: - type: Transform @@ -6762,16 +7358,18 @@ entities: - type: Transform pos: -40.5,3.5 parent: 4812 - - uid: 12181 - components: - - type: Transform - pos: -44.5,16.5 - parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 - uid: 12184 components: - type: Transform pos: -34.5,2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12183 - uid: 12185 components: - type: Transform @@ -6922,11 +7520,17 @@ entities: - type: Transform pos: 21.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 12279 components: - type: Transform pos: 25.5,0.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - uid: 12281 components: - type: Transform @@ -6937,6 +7541,9 @@ entities: - type: Transform pos: 30.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - uid: 12287 components: - type: Transform @@ -7075,6 +7682,24 @@ entities: - type: Transform pos: -37.5,-34.5 parent: 4812 + - uid: 12684 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 13192 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 - proto: AltarSpawner entities: - uid: 4008 @@ -7094,8 +7719,94 @@ entities: - uid: 4233 components: - type: Transform - pos: -42.336273,-2.370503 + pos: -46.253944,-2.360939 parent: 4812 +- proto: AmePartFlatpack + entities: + - uid: 9429 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9430 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9431 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9432 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9434 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9435 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9436 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9437 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9439 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9440 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9441 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9442 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - uid: 6357 @@ -7392,6 +8103,18 @@ entities: - type: Transform pos: 30.5,-37.5 parent: 4812 + - uid: 12695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-4.5 + parent: 4812 + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,6.5 + parent: 4812 - proto: AppleSeeds entities: - uid: 8397 @@ -7404,6 +8127,18 @@ entities: - type: Transform pos: -31.531736,31.32598 parent: 4812 +- proto: ArrivalsShuttleTimer + entities: + - uid: 13189 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 4812 + - uid: 13190 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 4812 - proto: ArtistCircuitBoard entities: - uid: 12642 @@ -7411,6 +8146,23 @@ entities: - type: Transform pos: 9.402303,43.5883 parent: 4812 +- proto: Ashtray + entities: + - uid: 12687 + components: + - type: Transform + pos: 29.61573,-5.4393315 + parent: 4812 + - uid: 13265 + components: + - type: Transform + pos: 23.03569,17.459896 + parent: 4812 + - uid: 13656 + components: + - type: Transform + pos: -44.452446,3.5162945 + parent: 4812 - proto: AsimovCircuitBoard entities: - uid: 12644 @@ -7420,11 +8172,36 @@ entities: parent: 4812 - proto: AsteroidRock entities: + - uid: 2808 + components: + - type: Transform + pos: 25.5,8.5 + parent: 4812 - uid: 2840 components: - type: Transform pos: 13.5,34.5 parent: 4812 + - uid: 2884 + components: + - type: Transform + pos: 28.5,7.5 + parent: 4812 + - uid: 2887 + components: + - type: Transform + pos: 27.5,6.5 + parent: 4812 + - uid: 2906 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 4812 + - uid: 2968 + components: + - type: Transform + pos: 28.5,6.5 + parent: 4812 - uid: 3012 components: - type: Transform @@ -7440,6 +8217,21 @@ entities: - type: Transform pos: 19.5,38.5 parent: 4812 + - uid: 3262 + components: + - type: Transform + pos: 28.5,10.5 + parent: 4812 + - uid: 3266 + components: + - type: Transform + pos: 27.5,7.5 + parent: 4812 + - uid: 3267 + components: + - type: Transform + pos: 26.5,7.5 + parent: 4812 - uid: 3295 components: - type: Transform @@ -7530,11 +8322,6 @@ entities: - type: Transform pos: 20.5,32.5 parent: 4812 - - uid: 3459 - components: - - type: Transform - pos: 15.5,37.5 - parent: 4812 - uid: 3460 components: - type: Transform @@ -8045,6 +8832,21 @@ entities: - type: Transform pos: -36.5,27.5 parent: 4812 + - uid: 4055 + components: + - type: Transform + pos: 30.5,11.5 + parent: 4812 + - uid: 4056 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 4812 + - uid: 4059 + components: + - type: Transform + pos: 26.5,8.5 + parent: 4812 - uid: 5032 components: - type: Transform @@ -8065,11 +8867,6 @@ entities: - type: Transform pos: 30.5,-19.5 parent: 4812 - - uid: 5808 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 4812 - uid: 5809 components: - type: Transform @@ -8195,6 +8992,21 @@ entities: - type: Transform pos: 37.5,-21.5 parent: 4812 + - uid: 6777 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4812 + - uid: 7399 + components: + - type: Transform + pos: 25.5,6.5 + parent: 4812 + - uid: 7401 + components: + - type: Transform + pos: 26.5,6.5 + parent: 4812 - uid: 8460 components: - type: Transform @@ -8390,6 +9202,81 @@ entities: - type: Transform pos: -31.5,35.5 parent: 4812 + - uid: 9215 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 4812 + - uid: 9340 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 4812 + - uid: 9344 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 4812 + - uid: 9351 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 4812 + - uid: 9383 + components: + - type: Transform + pos: -40.5,22.5 + parent: 4812 + - uid: 9390 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 4812 + - uid: 9391 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 4812 + - uid: 9407 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 4812 + - uid: 9408 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 4812 + - uid: 9413 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 4812 + - uid: 9418 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 4812 + - uid: 9447 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 4812 + - uid: 9448 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 4812 + - uid: 9449 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 4812 + - uid: 9520 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 4812 - uid: 9621 components: - type: Transform @@ -8440,6 +9327,21 @@ entities: - type: Transform pos: -33.5,-40.5 parent: 4812 + - uid: 9713 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 4812 + - uid: 9931 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 4812 + - uid: 10395 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 4812 - uid: 10417 components: - type: Transform @@ -8690,11 +9592,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 4812 - - uid: 10486 - components: - - type: Transform - pos: -49.5,-2.5 - parent: 4812 - uid: 10926 components: - type: Transform @@ -8825,11 +9722,6 @@ entities: - type: Transform pos: -39.5,20.5 parent: 4812 - - uid: 10971 - components: - - type: Transform - pos: -39.5,21.5 - parent: 4812 - uid: 10972 components: - type: Transform @@ -9000,11 +9892,6 @@ entities: - type: Transform pos: -41.5,21.5 parent: 4812 - - uid: 11020 - components: - - type: Transform - pos: -41.5,22.5 - parent: 4812 - uid: 11021 components: - type: Transform @@ -9390,13 +10277,433 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 4812 + - uid: 11888 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 4812 + - uid: 11895 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 4812 + - uid: 11899 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 4812 + - uid: 12099 + components: + - type: Transform + pos: 27.5,10.5 + parent: 4812 + - uid: 12128 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 4812 + - uid: 12143 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 4812 + - uid: 12238 + components: + - type: Transform + pos: 27.5,8.5 + parent: 4812 + - uid: 12678 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 4812 + - uid: 12926 + components: + - type: Transform + pos: 65.5,-23.5 + parent: 4812 + - uid: 12983 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 4812 + - uid: 12990 + components: + - type: Transform + pos: 65.5,-24.5 + parent: 4812 + - uid: 12992 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 4812 + - uid: 12994 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 4812 + - uid: 12995 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 4812 + - uid: 12996 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 4812 + - uid: 12998 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 4812 + - uid: 12999 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 4812 + - uid: 13000 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 4812 + - uid: 13001 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 4812 + - uid: 13002 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 4812 + - uid: 13003 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 4812 + - uid: 13004 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 4812 + - uid: 13005 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 4812 + - uid: 13006 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 4812 + - uid: 13007 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 4812 + - uid: 13008 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 4812 + - uid: 13009 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 4812 + - uid: 13010 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 4812 + - uid: 13011 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 4812 + - uid: 13012 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 4812 + - uid: 13013 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 4812 + - uid: 13014 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 4812 + - uid: 13015 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 4812 + - uid: 13016 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 4812 + - uid: 13017 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 4812 + - uid: 13018 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 4812 + - uid: 13019 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 4812 + - uid: 13022 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 4812 + - uid: 13029 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 4812 + - uid: 13032 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 4812 + - uid: 13033 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 4812 + - uid: 13043 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 4812 + - uid: 13045 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 4812 + - uid: 13085 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 4812 + - uid: 13092 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 4812 + - uid: 13129 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 4812 + - uid: 13132 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 4812 + - uid: 13226 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 4812 + - uid: 13273 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 4812 + - uid: 13274 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 4812 + - uid: 13275 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 4812 + - uid: 13276 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 4812 + - uid: 13277 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 4812 + - uid: 13278 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 4812 + - uid: 13293 + components: + - type: Transform + pos: 30.5,10.5 + parent: 4812 + - uid: 13294 + components: + - type: Transform + pos: 29.5,10.5 + parent: 4812 - proto: AsteroidRockMining entities: - - uid: 12146 + - uid: 3224 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 4812 + - uid: 3744 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 4812 + - uid: 3778 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 4812 + - uid: 4580 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 4812 + - uid: 9387 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 4812 + - uid: 9409 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 4812 + - uid: 9532 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 4812 + - uid: 9533 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 4812 + - uid: 10755 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 4812 + - uid: 10906 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 4812 + - uid: 11892 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 4812 + - uid: 12035 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 4812 + - uid: 12138 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 4812 + - uid: 12592 components: - type: Transform pos: -52.5,-3.5 parent: 4812 + - uid: 12698 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 4812 + - uid: 12779 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 4812 + - uid: 13071 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 4812 + - uid: 13075 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 4812 + - uid: 13087 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 4812 + - uid: 13094 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 4812 + - uid: 13220 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 4812 + - uid: 13222 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 4812 + - uid: 13417 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 4812 + - uid: 13418 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 4812 + - uid: 13419 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 4812 + - uid: 13422 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 4812 + - uid: 13475 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 4812 + - uid: 13522 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 4812 + - uid: 13523 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 4812 - proto: AtmosDeviceFanDirectional entities: - uid: 2781 @@ -9405,6 +10712,62 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 4812 + - uid: 4060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 4812 + - uid: 4063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,1.5 + parent: 4812 + - uid: 4066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 4812 + - uid: 4068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,1.5 + parent: 4812 + - uid: 4076 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 4812 + - uid: 4087 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 4812 + - uid: 4090 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 4812 + - uid: 4093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 4812 + - uid: 4118 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 4812 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 4812 - uid: 8478 components: - type: Transform @@ -9417,30 +10780,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,25.5 parent: 4812 - - uid: 8480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 4812 - - uid: 8481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 4812 - - uid: 8483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 4812 - - uid: 8485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 4812 - uid: 8486 components: - type: Transform @@ -9488,82 +10827,147 @@ entities: - type: Transform pos: -47.5,-26.5 parent: 4812 + - uid: 13427 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 4812 - proto: AtmosFixBlockerMarker entities: + - uid: 2916 + components: + - type: Transform + pos: -60.5,9.5 + parent: 4812 + - uid: 8772 + components: + - type: Transform + pos: -61.5,2.5 + parent: 4812 + - uid: 9392 + components: + - type: Transform + pos: -59.5,10.5 + parent: 4812 + - uid: 9419 + components: + - type: Transform + pos: -59.5,2.5 + parent: 4812 + - uid: 9457 + components: + - type: Transform + pos: -60.5,2.5 + parent: 4812 + - uid: 9472 + components: + - type: Transform + pos: -59.5,1.5 + parent: 4812 + - uid: 9485 + components: + - type: Transform + pos: -60.5,1.5 + parent: 4812 + - uid: 9706 + components: + - type: Transform + pos: -46.5,17.5 + parent: 4812 + - uid: 9708 + components: + - type: Transform + pos: -46.5,18.5 + parent: 4812 + - uid: 9717 + components: + - type: Transform + pos: -46.5,16.5 + parent: 4812 + - uid: 9820 + components: + - type: Transform + pos: -52.5,17.5 + parent: 4812 - uid: 11893 components: - type: Transform - pos: -51.5,5.5 - parent: 4812 - - uid: 11894 - components: - - type: Transform - pos: -52.5,5.5 - parent: 4812 - - uid: 11895 - components: - - type: Transform - pos: -53.5,5.5 - parent: 4812 - - uid: 11896 - components: - - type: Transform - pos: -53.5,7.5 + pos: -48.5,16.5 parent: 4812 - uid: 11897 components: - type: Transform - pos: -52.5,7.5 + pos: -52.5,16.5 parent: 4812 - - uid: 11898 + - uid: 12132 components: - type: Transform - pos: -51.5,7.5 + pos: -48.5,17.5 parent: 4812 - - uid: 11899 + - uid: 12133 components: - type: Transform - pos: -51.5,11.5 + pos: -48.5,18.5 parent: 4812 - - uid: 11900 + - uid: 12135 components: - type: Transform - pos: -52.5,11.5 + pos: -52.5,18.5 parent: 4812 - - uid: 11901 + - uid: 13371 components: - type: Transform - pos: -53.5,11.5 + pos: -58.5,11.5 parent: 4812 - - uid: 11902 + - uid: 13372 components: - type: Transform - pos: -45.5,16.5 + pos: -59.5,11.5 parent: 4812 - - uid: 11903 + - uid: 13482 components: - type: Transform - pos: -45.5,17.5 + pos: -60.5,11.5 parent: 4812 - - uid: 11904 + - uid: 13512 components: - type: Transform - pos: -44.5,17.5 + pos: -60.5,10.5 parent: 4812 - - uid: 11905 + - uid: 13520 components: - type: Transform - pos: -44.5,16.5 + pos: -59.5,9.5 parent: 4812 - - uid: 11906 + - uid: 13524 components: - type: Transform - pos: -43.5,16.5 + pos: -61.5,0.5 parent: 4812 - - uid: 11907 + - uid: 13542 components: - type: Transform - pos: -43.5,17.5 + pos: -61.5,1.5 + parent: 4812 + - uid: 13550 + components: + - type: Transform + pos: -60.5,0.5 + parent: 4812 + - uid: 13553 + components: + - type: Transform + pos: -58.5,9.5 + parent: 4812 + - uid: 13555 + components: + - type: Transform + pos: -59.5,0.5 + parent: 4812 + - uid: 13559 + components: + - type: Transform + pos: -58.5,10.5 parent: 4812 - proto: AtmosFixFreezerMarker entities: @@ -9644,54 +11048,54 @@ entities: parent: 4812 - proto: AtmosFixNitrogenMarker entities: - - uid: 11887 + - uid: 9192 components: - type: Transform - pos: -51.5,1.5 + pos: -42.5,16.5 parent: 4812 - - uid: 11888 + - uid: 9467 components: - type: Transform - pos: -52.5,1.5 + pos: -42.5,18.5 parent: 4812 - - uid: 11889 + - uid: 12661 components: - type: Transform - pos: -53.5,1.5 + pos: -42.5,17.5 parent: 4812 - proto: AtmosFixOxygenMarker entities: - - uid: 11890 + - uid: 11907 components: - type: Transform - pos: -51.5,3.5 + pos: -44.5,17.5 parent: 4812 - - uid: 11891 + - uid: 12121 components: - type: Transform - pos: -52.5,3.5 + pos: -44.5,16.5 parent: 4812 - - uid: 11892 + - uid: 12123 components: - type: Transform - pos: -53.5,3.5 + pos: -44.5,18.5 parent: 4812 - proto: AtmosFixPlasmaMarker entities: - - uid: 11908 + - uid: 11891 components: - type: Transform - pos: -51.5,9.5 + pos: -50.5,16.5 parent: 4812 - - uid: 11909 + - uid: 11902 components: - type: Transform - pos: -52.5,9.5 + pos: -50.5,17.5 parent: 4812 - - uid: 11910 + - uid: 11903 components: - type: Transform - pos: -53.5,9.5 + pos: -50.5,18.5 parent: 4812 - proto: Autolathe entities: @@ -9745,6 +11149,13 @@ entities: - type: Transform pos: -57.5,-12.5 parent: 4812 +- proto: BannerSyndicate + entities: + - uid: 9444 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 4812 - proto: Barricade entities: - uid: 8860 @@ -9779,14 +11190,21 @@ entities: parent: 4812 - type: BarSign current: TheAleNath -- proto: BaseGasCondenser +- proto: BaseComputer entities: - - uid: 3405 + - uid: 13498 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,1.5 parent: 4812 +- proto: BaseGasCondenser + entities: + - uid: 9503 + components: + - type: Transform + pos: -45.5,7.5 + parent: 4812 - proto: Beaker entities: - uid: 9030 @@ -10082,20 +11500,38 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 4812 - - uid: 9496 + - uid: 9455 components: - type: Transform - pos: -44.5,18.5 + rot: -1.5707963267948966 rad + pos: -61.5,10.5 + parent: 4812 + - uid: 9828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,1.5 + parent: 4812 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 4812 + - uid: 13287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 parent: 4812 - proto: BlockGameArcade entities: - - uid: 4549 + - uid: 2912 components: - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,-0.5 parent: 4812 - - type: SpamEmitSound - enabled: False - uid: 5026 components: - type: Transform @@ -10125,13 +11561,6 @@ entities: - type: Transform pos: -22.624014,-17.30092 parent: 4812 -- proto: BookAtmosDistro - entities: - - uid: 10450 - components: - - type: Transform - pos: -22.389639,-17.51967 - parent: 4812 - proto: BookAtmosVentsMore entities: - uid: 12467 @@ -10355,6 +11784,13 @@ entities: - type: Transform pos: -18.4054,-14.319918 parent: 4812 +- proto: BoxFlare + entities: + - uid: 9501 + components: + - type: Transform + pos: 22.50444,17.647528 + parent: 4812 - proto: BoxFlashbang entities: - uid: 8369 @@ -10407,16 +11843,16 @@ entities: - type: Transform pos: 8.33344,26.616299 parent: 4812 + - uid: 3443 + components: + - type: Transform + pos: -21.5,22.5 + parent: 4812 - uid: 4575 components: - type: Transform pos: 28.5,1.5 parent: 4812 - - uid: 8267 - components: - - type: Transform - pos: -21.5,23.5 - parent: 4812 - uid: 8295 components: - type: Transform @@ -10441,11 +11877,6 @@ entities: - type: Transform pos: 15.550373,35.549133 parent: 4812 - - uid: 4576 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - proto: BoxHandcuff entities: - uid: 2727 @@ -10617,6 +12048,20 @@ entities: - type: Transform pos: -10.295721,17.222569 parent: 4812 +- proto: ButtonFrameCaution + entities: + - uid: 13615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 4812 + - uid: 13616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 - proto: CableApcExtension entities: - uid: 258 @@ -13249,26 +14694,6 @@ entities: - type: Transform pos: 23.5,14.5 parent: 4812 - - uid: 3178 - components: - - type: Transform - pos: 24.5,14.5 - parent: 4812 - - uid: 3179 - components: - - type: Transform - pos: 25.5,14.5 - parent: 4812 - - uid: 3180 - components: - - type: Transform - pos: 26.5,14.5 - parent: 4812 - - uid: 3181 - components: - - type: Transform - pos: 27.5,14.5 - parent: 4812 - uid: 3182 components: - type: Transform @@ -13594,6 +15019,66 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 4812 + - uid: 4079 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 4812 + - uid: 4089 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 4812 + - uid: 4091 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 4812 + - uid: 4092 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 4812 + - uid: 4137 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 4812 + - uid: 4156 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 4812 + - uid: 4158 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 4812 + - uid: 4172 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 4812 + - uid: 4204 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 4812 + - uid: 4207 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 4812 + - uid: 4212 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 4812 + - uid: 4213 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 4812 - uid: 4257 components: - type: Transform @@ -13884,121 +15369,6 @@ entities: - type: Transform pos: 30.5,4.5 parent: 4812 - - uid: 4315 - components: - - type: Transform - pos: 31.5,2.5 - parent: 4812 - - uid: 4316 - components: - - type: Transform - pos: 32.5,2.5 - parent: 4812 - - uid: 4317 - components: - - type: Transform - pos: 33.5,2.5 - parent: 4812 - - uid: 4318 - components: - - type: Transform - pos: 31.5,0.5 - parent: 4812 - - uid: 4319 - components: - - type: Transform - pos: 32.5,0.5 - parent: 4812 - - uid: 4320 - components: - - type: Transform - pos: 33.5,0.5 - parent: 4812 - - uid: 4321 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 4812 - - uid: 4322 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 4812 - - uid: 4323 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 4812 - - uid: 4324 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - - uid: 4325 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 4812 - - uid: 4326 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 4812 - - uid: 4327 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - uid: 4328 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 4812 - - uid: 4329 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 4812 - - uid: 4330 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 4812 - - uid: 4331 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 4812 - - uid: 4332 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 4812 - - uid: 4333 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 4812 - - uid: 4334 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 4812 - - uid: 4335 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 4812 - - uid: 4336 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 4812 - - uid: 4337 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - uid: 4338 components: - type: Transform @@ -16899,6 +18269,16 @@ entities: - type: Transform pos: -48.5,-16.5 parent: 4812 + - uid: 8485 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 4812 + - uid: 8723 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 - uid: 8908 components: - type: Transform @@ -17109,21 +18489,56 @@ entities: - type: Transform pos: 13.5,-22.5 parent: 4812 - - uid: 9050 - components: - - type: Transform - pos: -50.5,0.5 - parent: 4812 - uid: 9090 components: - type: Transform pos: 32.5,-29.5 parent: 4812 + - uid: 9126 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 4812 + - uid: 9127 + components: + - type: Transform + pos: -41.5,11.5 + parent: 4812 + - uid: 9257 + components: + - type: Transform + pos: -54.5,11.5 + parent: 4812 + - uid: 9264 + components: + - type: Transform + pos: -44.5,8.5 + parent: 4812 + - uid: 9279 + components: + - type: Transform + pos: -41.5,14.5 + parent: 4812 - uid: 9288 components: - type: Transform pos: -38.5,6.5 parent: 4812 + - uid: 9304 + components: + - type: Transform + pos: -41.5,10.5 + parent: 4812 + - uid: 9307 + components: + - type: Transform + pos: -41.5,6.5 + parent: 4812 + - uid: 9312 + components: + - type: Transform + pos: -41.5,13.5 + parent: 4812 - uid: 9321 components: - type: Transform @@ -17159,330 +18574,20 @@ entities: - type: Transform pos: -39.5,0.5 parent: 4812 - - uid: 9328 - components: - - type: Transform - pos: -40.5,0.5 - parent: 4812 - - uid: 9329 - components: - - type: Transform - pos: -41.5,0.5 - parent: 4812 - - uid: 9330 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - uid: 9331 - components: - - type: Transform - pos: -43.5,0.5 - parent: 4812 - uid: 9332 components: - type: Transform - pos: -44.5,0.5 - parent: 4812 - - uid: 9333 - components: - - type: Transform - pos: -45.5,0.5 - parent: 4812 - - uid: 9334 - components: - - type: Transform - pos: -46.5,0.5 - parent: 4812 - - uid: 9335 - components: - - type: Transform - pos: -47.5,0.5 - parent: 4812 - - uid: 9336 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9337 - components: - - type: Transform - pos: -49.5,0.5 - parent: 4812 - - uid: 9338 - components: - - type: Transform - pos: -51.5,0.5 - parent: 4812 - - uid: 9339 - components: - - type: Transform - pos: -52.5,0.5 - parent: 4812 - - uid: 9340 - components: - - type: Transform - pos: -53.5,0.5 - parent: 4812 - - uid: 9341 - components: - - type: Transform - pos: -54.5,0.5 - parent: 4812 - - uid: 9342 - components: - - type: Transform - pos: -54.5,1.5 - parent: 4812 - - uid: 9343 - components: - - type: Transform - pos: -54.5,2.5 - parent: 4812 - - uid: 9344 - components: - - type: Transform - pos: -54.5,3.5 - parent: 4812 - - uid: 9345 - components: - - type: Transform - pos: -54.5,4.5 - parent: 4812 - - uid: 9346 - components: - - type: Transform - pos: -54.5,5.5 - parent: 4812 - - uid: 9347 - components: - - type: Transform - pos: -54.5,6.5 - parent: 4812 - - uid: 9348 - components: - - type: Transform - pos: -54.5,7.5 - parent: 4812 - - uid: 9349 - components: - - type: Transform - pos: -54.5,8.5 - parent: 4812 - - uid: 9350 - components: - - type: Transform - pos: -54.5,9.5 - parent: 4812 - - uid: 9351 - components: - - type: Transform - pos: -54.5,10.5 - parent: 4812 - - uid: 9352 - components: - - type: Transform - pos: -54.5,11.5 - parent: 4812 - - uid: 9353 - components: - - type: Transform - pos: -54.5,12.5 - parent: 4812 - - uid: 9354 - components: - - type: Transform - pos: -53.5,12.5 - parent: 4812 - - uid: 9355 - components: - - type: Transform - pos: -52.5,12.5 - parent: 4812 - - uid: 9356 - components: - - type: Transform - pos: -51.5,12.5 - parent: 4812 - - uid: 9357 - components: - - type: Transform - pos: -50.5,12.5 - parent: 4812 - - uid: 9358 - components: - - type: Transform - pos: -49.5,12.5 - parent: 4812 - - uid: 9359 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9360 - components: - - type: Transform - pos: -48.5,12.5 + pos: -41.5,12.5 parent: 4812 - uid: 9361 components: - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9362 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9363 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9364 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9365 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9366 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9367 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9368 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9369 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9370 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9371 - components: - - type: Transform - pos: -48.5,1.5 + pos: -41.5,8.5 parent: 4812 - uid: 9372 components: - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9373 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9374 - components: - - type: Transform - pos: -48.5,-2.5 - parent: 4812 - - uid: 9375 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9376 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9377 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9378 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9379 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9380 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - uid: 9381 - components: - - type: Transform - pos: -41.5,13.5 - parent: 4812 - - uid: 9382 - components: - - type: Transform - pos: -44.5,1.5 - parent: 4812 - - uid: 9383 - components: - - type: Transform - pos: -44.5,2.5 - parent: 4812 - - uid: 9384 - components: - - type: Transform - pos: -44.5,3.5 - parent: 4812 - - uid: 9385 - components: - - type: Transform - pos: -44.5,4.5 - parent: 4812 - - uid: 9386 - components: - - type: Transform - pos: -44.5,5.5 - parent: 4812 - - uid: 9387 - components: - - type: Transform - pos: -44.5,6.5 - parent: 4812 - - uid: 9388 - components: - - type: Transform - pos: -44.5,7.5 - parent: 4812 - - uid: 9389 - components: - - type: Transform - pos: -44.5,8.5 - parent: 4812 - - uid: 9390 - components: - - type: Transform - pos: -44.5,10.5 - parent: 4812 - - uid: 9391 - components: - - type: Transform - pos: -44.5,9.5 - parent: 4812 - - uid: 9392 - components: - - type: Transform - pos: -44.5,11.5 + pos: -41.5,9.5 parent: 4812 - uid: 9393 components: @@ -17554,30 +18659,10 @@ entities: - type: Transform pos: -39.5,5.5 parent: 4812 - - uid: 9407 + - uid: 9451 components: - type: Transform - pos: -40.5,5.5 - parent: 4812 - - uid: 9408 - components: - - type: Transform - pos: -41.5,5.5 - parent: 4812 - - uid: 9409 - components: - - type: Transform - pos: -42.5,5.5 - parent: 4812 - - uid: 9410 - components: - - type: Transform - pos: -43.5,11.5 - parent: 4812 - - uid: 9411 - components: - - type: Transform - pos: -42.5,11.5 + pos: -42.5,0.5 parent: 4812 - uid: 9456 components: @@ -17587,88 +18672,43 @@ entities: - uid: 9458 components: - type: Transform - pos: -50.5,11.5 + pos: 23.5,15.5 parent: 4812 - - uid: 9459 + - uid: 9488 components: - type: Transform - pos: -50.5,10.5 + pos: -41.5,0.5 parent: 4812 - - uid: 9460 + - uid: 9490 components: - type: Transform - pos: -50.5,9.5 + pos: -40.5,0.5 parent: 4812 - - uid: 9461 + - uid: 9499 components: - type: Transform - pos: -50.5,8.5 + pos: 25.5,16.5 parent: 4812 - - uid: 9462 + - uid: 9500 components: - type: Transform - pos: -50.5,7.5 - parent: 4812 - - uid: 9463 - components: - - type: Transform - pos: -50.5,6.5 - parent: 4812 - - uid: 9464 - components: - - type: Transform - pos: -50.5,5.5 - parent: 4812 - - uid: 9465 - components: - - type: Transform - pos: -50.5,4.5 - parent: 4812 - - uid: 9466 - components: - - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9467 - components: - - type: Transform - pos: -50.5,2.5 - parent: 4812 - - uid: 9468 - components: - - type: Transform - pos: -50.5,1.5 + pos: 23.5,16.5 parent: 4812 - uid: 9512 components: - type: Transform pos: -36.5,-1.5 parent: 4812 + - uid: 9513 + components: + - type: Transform + pos: -41.5,7.5 + parent: 4812 - uid: 9523 components: - type: Transform pos: 17.5,-16.5 parent: 4812 - - uid: 9525 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 4812 - - uid: 9526 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 4812 - - uid: 9527 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 4812 - - uid: 9528 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 4812 - uid: 9529 components: - type: Transform @@ -17724,6 +18764,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 9666 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 4812 - uid: 9694 components: - type: Transform @@ -17744,60 +18789,35 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 4812 - - uid: 9708 - components: - - type: Transform - pos: -42.5,14.5 - parent: 4812 - - uid: 9709 - components: - - type: Transform - pos: -42.5,15.5 - parent: 4812 - - uid: 9710 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9711 - components: - - type: Transform - pos: -42.5,17.5 - parent: 4812 - - uid: 9712 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9713 - components: - - type: Transform - pos: -44.5,15.5 - parent: 4812 - - uid: 9714 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - uid: 9715 components: - type: Transform - pos: -46.5,15.5 + pos: 24.5,15.5 parent: 4812 - - uid: 9716 + - uid: 9757 components: - type: Transform - pos: -46.5,16.5 + pos: 47.5,-4.5 parent: 4812 - - uid: 9717 + - uid: 9758 components: - type: Transform - pos: -46.5,17.5 + pos: 47.5,0.5 parent: 4812 - - uid: 9718 + - uid: 9759 components: - type: Transform - pos: -46.5,18.5 + pos: 47.5,-5.5 + parent: 4812 + - uid: 9842 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 + - uid: 9844 + components: + - type: Transform + pos: -43.5,8.5 parent: 4812 - uid: 10041 components: @@ -18039,16 +19059,6 @@ entities: - type: Transform pos: -40.5,-15.5 parent: 4812 - - uid: 10090 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 10091 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - uid: 10092 components: - type: Transform @@ -19164,6 +20174,16 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 4812 + - uid: 11737 + components: + - type: Transform + pos: -43.5,4.5 + parent: 4812 + - uid: 11738 + components: + - type: Transform + pos: -43.5,2.5 + parent: 4812 - uid: 11919 components: - type: Transform @@ -19189,10 +20209,800 @@ entities: - type: Transform pos: -28.5,-23.5 parent: 4812 - - uid: 12629 + - uid: 12540 components: - type: Transform - pos: 26.5,13.5 + pos: 49.5,-3.5 + parent: 4812 + - uid: 12669 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 4812 + - uid: 12691 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 4812 + - uid: 12730 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 4812 + - uid: 12731 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 4812 + - uid: 12732 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 4812 + - uid: 12733 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 4812 + - uid: 12734 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 4812 + - uid: 12735 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 4812 + - uid: 12736 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 4812 + - uid: 12737 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 4812 + - uid: 12738 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 4812 + - uid: 12739 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 4812 + - uid: 12740 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 4812 + - uid: 12741 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 4812 + - uid: 12742 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 4812 + - uid: 12743 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 4812 + - uid: 12744 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 4812 + - uid: 12749 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 4812 + - uid: 12754 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 4812 + - uid: 12904 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 4812 + - uid: 12905 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 4812 + - uid: 12906 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 4812 + - uid: 12907 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 4812 + - uid: 12908 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 4812 + - uid: 12909 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 4812 + - uid: 12910 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 4812 + - uid: 12911 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 4812 + - uid: 12913 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 4812 + - uid: 12914 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 4812 + - uid: 12915 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 4812 + - uid: 12918 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 4812 + - uid: 12919 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 4812 + - uid: 12921 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 4812 + - uid: 12922 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 4812 + - uid: 12923 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 4812 + - uid: 12924 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 4812 + - uid: 12925 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 4812 + - uid: 12982 + components: + - type: Transform + pos: 25.5,14.5 + parent: 4812 + - uid: 12984 + components: + - type: Transform + pos: 25.5,15.5 + parent: 4812 + - uid: 12985 + components: + - type: Transform + pos: 26.5,15.5 + parent: 4812 + - uid: 12986 + components: + - type: Transform + pos: 27.5,15.5 + parent: 4812 + - uid: 12987 + components: + - type: Transform + pos: 28.5,15.5 + parent: 4812 + - uid: 12988 + components: + - type: Transform + pos: 29.5,15.5 + parent: 4812 + - uid: 13038 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 4812 + - uid: 13039 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 4812 + - uid: 13040 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 4812 + - uid: 13041 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 4812 + - uid: 13042 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 4812 + - uid: 13046 + components: + - type: Transform + pos: 55.5,0.5 + parent: 4812 + - uid: 13047 + components: + - type: Transform + pos: 57.5,0.5 + parent: 4812 + - uid: 13049 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 4812 + - uid: 13051 + components: + - type: Transform + pos: 49.5,0.5 + parent: 4812 + - uid: 13184 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 4812 + - uid: 13187 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 4812 + - uid: 13188 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 4812 + - uid: 13197 + components: + - type: Transform + pos: 30.5,15.5 + parent: 4812 + - uid: 13198 + components: + - type: Transform + pos: 31.5,15.5 + parent: 4812 + - uid: 13199 + components: + - type: Transform + pos: 32.5,15.5 + parent: 4812 + - uid: 13201 + components: + - type: Transform + pos: 33.5,15.5 + parent: 4812 + - uid: 13202 + components: + - type: Transform + pos: 34.5,15.5 + parent: 4812 + - uid: 13203 + components: + - type: Transform + pos: 35.5,15.5 + parent: 4812 + - uid: 13250 + components: + - type: Transform + pos: -41.5,15.5 + parent: 4812 + - uid: 13251 + components: + - type: Transform + pos: -42.5,15.5 + parent: 4812 + - uid: 13254 + components: + - type: Transform + pos: -43.5,15.5 + parent: 4812 + - uid: 13263 + components: + - type: Transform + pos: -44.5,15.5 + parent: 4812 + - uid: 13267 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 13291 + components: + - type: Transform + pos: -46.5,15.5 + parent: 4812 + - uid: 13292 + components: + - type: Transform + pos: -47.5,15.5 + parent: 4812 + - uid: 13295 + components: + - type: Transform + pos: -48.5,15.5 + parent: 4812 + - uid: 13296 + components: + - type: Transform + pos: -49.5,15.5 + parent: 4812 + - uid: 13297 + components: + - type: Transform + pos: -50.5,15.5 + parent: 4812 + - uid: 13298 + components: + - type: Transform + pos: -51.5,15.5 + parent: 4812 + - uid: 13299 + components: + - type: Transform + pos: -52.5,15.5 + parent: 4812 + - uid: 13300 + components: + - type: Transform + pos: -53.5,15.5 + parent: 4812 + - uid: 13301 + components: + - type: Transform + pos: -41.5,16.5 + parent: 4812 + - uid: 13302 + components: + - type: Transform + pos: -41.5,17.5 + parent: 4812 + - uid: 13303 + components: + - type: Transform + pos: -41.5,18.5 + parent: 4812 + - uid: 13304 + components: + - type: Transform + pos: -41.5,19.5 + parent: 4812 + - uid: 13305 + components: + - type: Transform + pos: -42.5,19.5 + parent: 4812 + - uid: 13306 + components: + - type: Transform + pos: -43.5,19.5 + parent: 4812 + - uid: 13307 + components: + - type: Transform + pos: -44.5,19.5 + parent: 4812 + - uid: 13308 + components: + - type: Transform + pos: -45.5,19.5 + parent: 4812 + - uid: 13309 + components: + - type: Transform + pos: -46.5,19.5 + parent: 4812 + - uid: 13310 + components: + - type: Transform + pos: -47.5,19.5 + parent: 4812 + - uid: 13311 + components: + - type: Transform + pos: -48.5,19.5 + parent: 4812 + - uid: 13312 + components: + - type: Transform + pos: -49.5,19.5 + parent: 4812 + - uid: 13313 + components: + - type: Transform + pos: -50.5,19.5 + parent: 4812 + - uid: 13314 + components: + - type: Transform + pos: -51.5,19.5 + parent: 4812 + - uid: 13315 + components: + - type: Transform + pos: -52.5,19.5 + parent: 4812 + - uid: 13316 + components: + - type: Transform + pos: -53.5,19.5 + parent: 4812 + - uid: 13321 + components: + - type: Transform + pos: 23.5,13.5 + parent: 4812 + - uid: 13357 + components: + - type: Transform + pos: -45.5,6.5 + parent: 4812 + - uid: 13359 + components: + - type: Transform + pos: -45.5,7.5 + parent: 4812 + - uid: 13360 + components: + - type: Transform + pos: -42.5,8.5 + parent: 4812 + - uid: 13367 + components: + - type: Transform + pos: -45.5,3.5 + parent: 4812 + - uid: 13368 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 + - uid: 13382 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 4812 + - uid: 13406 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 4812 + - uid: 13430 + components: + - type: Transform + pos: -54.5,12.5 + parent: 4812 + - uid: 13446 + components: + - type: Transform + pos: -54.5,8.5 + parent: 4812 + - uid: 13463 + components: + - type: Transform + pos: -54.5,9.5 + parent: 4812 + - uid: 13464 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 4812 + - uid: 13465 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 4812 + - uid: 13466 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 4812 + - uid: 13467 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 4812 + - uid: 13468 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 4812 + - uid: 13469 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 4812 + - uid: 13470 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 4812 + - uid: 13471 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 4812 + - uid: 13472 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 4812 + - uid: 13499 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 4812 + - uid: 13510 + components: + - type: Transform + pos: -43.5,3.5 + parent: 4812 + - uid: 13529 + components: + - type: Transform + pos: -43.5,1.5 + parent: 4812 + - uid: 13562 + components: + - type: Transform + pos: -45.5,8.5 + parent: 4812 + - uid: 13563 + components: + - type: Transform + pos: -46.5,8.5 + parent: 4812 + - uid: 13564 + components: + - type: Transform + pos: -47.5,8.5 + parent: 4812 + - uid: 13565 + components: + - type: Transform + pos: -49.5,8.5 + parent: 4812 + - uid: 13566 + components: + - type: Transform + pos: -48.5,8.5 + parent: 4812 + - uid: 13567 + components: + - type: Transform + pos: -50.5,8.5 + parent: 4812 + - uid: 13568 + components: + - type: Transform + pos: -51.5,8.5 + parent: 4812 + - uid: 13569 + components: + - type: Transform + pos: -52.5,8.5 + parent: 4812 + - uid: 13570 + components: + - type: Transform + pos: -53.5,8.5 + parent: 4812 + - uid: 13571 + components: + - type: Transform + pos: -54.5,10.5 + parent: 4812 + - uid: 13572 + components: + - type: Transform + pos: -53.5,6.5 + parent: 4812 + - uid: 13573 + components: + - type: Transform + pos: -54.5,6.5 + parent: 4812 + - uid: 13574 + components: + - type: Transform + pos: -52.5,6.5 + parent: 4812 + - uid: 13575 + components: + - type: Transform + pos: -51.5,6.5 + parent: 4812 + - uid: 13576 + components: + - type: Transform + pos: -50.5,6.5 + parent: 4812 + - uid: 13577 + components: + - type: Transform + pos: -49.5,6.5 + parent: 4812 + - uid: 13578 + components: + - type: Transform + pos: -48.5,6.5 + parent: 4812 + - uid: 13579 + components: + - type: Transform + pos: -47.5,6.5 + parent: 4812 + - uid: 13580 + components: + - type: Transform + pos: -47.5,5.5 + parent: 4812 + - uid: 13581 + components: + - type: Transform + pos: -47.5,4.5 + parent: 4812 + - uid: 13582 + components: + - type: Transform + pos: -47.5,3.5 + parent: 4812 + - uid: 13583 + components: + - type: Transform + pos: -47.5,2.5 + parent: 4812 + - uid: 13584 + components: + - type: Transform + pos: -47.5,1.5 + parent: 4812 + - uid: 13585 + components: + - type: Transform + pos: -47.5,0.5 + parent: 4812 + - uid: 13586 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 13587 + components: + - type: Transform + pos: -49.5,0.5 + parent: 4812 + - uid: 13588 + components: + - type: Transform + pos: -50.5,0.5 + parent: 4812 + - uid: 13589 + components: + - type: Transform + pos: -51.5,0.5 + parent: 4812 + - uid: 13590 + components: + - type: Transform + pos: -52.5,0.5 + parent: 4812 + - uid: 13591 + components: + - type: Transform + pos: -53.5,0.5 + parent: 4812 + - uid: 13592 + components: + - type: Transform + pos: -54.5,0.5 + parent: 4812 + - uid: 13593 + components: + - type: Transform + pos: -55.5,0.5 + parent: 4812 + - uid: 13594 + components: + - type: Transform + pos: -56.5,0.5 + parent: 4812 + - uid: 13595 + components: + - type: Transform + pos: -57.5,0.5 + parent: 4812 + - uid: 13597 + components: + - type: Transform + pos: -55.5,5.5 + parent: 4812 + - uid: 13598 + components: + - type: Transform + pos: -56.5,5.5 + parent: 4812 + - uid: 13599 + components: + - type: Transform + pos: -57.5,5.5 + parent: 4812 + - uid: 13600 + components: + - type: Transform + pos: -58.5,5.5 + parent: 4812 + - uid: 13601 + components: + - type: Transform + pos: -58.5,4.5 + parent: 4812 + - uid: 13602 + components: + - type: Transform + pos: -59.5,4.5 + parent: 4812 + - uid: 13603 + components: + - type: Transform + pos: -60.5,4.5 + parent: 4812 + - uid: 13604 + components: + - type: Transform + pos: -60.5,5.5 + parent: 4812 + - uid: 13660 + components: + - type: Transform + pos: -43.5,5.5 + parent: 4812 + - uid: 13661 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 + - uid: 13673 + components: + - type: Transform + pos: -55.5,6.5 parent: 4812 - proto: CableApcStack entities: @@ -19223,6 +21033,11 @@ entities: parent: 4812 - proto: CableHV entities: + - uid: 741 + components: + - type: Transform + pos: -39.5,3.5 + parent: 4812 - uid: 902 components: - type: Transform @@ -19688,6 +21503,11 @@ entities: - type: Transform pos: 13.5,32.5 parent: 4812 + - uid: 2969 + components: + - type: Transform + pos: -39.5,4.5 + parent: 4812 - uid: 3047 components: - type: Transform @@ -19958,6 +21778,16 @@ entities: - type: Transform pos: 11.5,18.5 parent: 4812 + - uid: 3259 + components: + - type: Transform + pos: -38.5,2.5 + parent: 4812 + - uid: 3270 + components: + - type: Transform + pos: -37.5,2.5 + parent: 4812 - uid: 3789 components: - type: Transform @@ -20468,6 +22298,16 @@ entities: - type: Transform pos: -25.5,-30.5 parent: 4812 + - uid: 6587 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 6638 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 - uid: 6918 components: - type: Transform @@ -20938,10 +22778,20 @@ entities: - type: Transform pos: -15.5,10.5 parent: 4812 - - uid: 8725 + - uid: 8551 components: - type: Transform - pos: -45.5,-2.5 + pos: -52.5,3.5 + parent: 4812 + - uid: 8639 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 8726 + components: + - type: Transform + pos: -48.5,2.5 parent: 4812 - uid: 8738 components: @@ -20953,11 +22803,6 @@ entities: - type: Transform pos: -44.5,-3.5 parent: 4812 - - uid: 8740 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 4812 - uid: 8741 components: - type: Transform @@ -21008,10 +22853,30 @@ entities: - type: Transform pos: -42.5,-5.5 parent: 4812 - - uid: 8755 + - uid: 9222 components: - type: Transform - pos: -43.5,-2.5 + pos: -51.5,3.5 + parent: 4812 + - uid: 9450 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 4812 + - uid: 9487 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 4812 + - uid: 9507 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 4812 + - uid: 9522 + components: + - type: Transform + pos: -48.5,1.5 parent: 4812 - uid: 9732 components: @@ -21123,36 +22988,11 @@ entities: - type: Transform pos: -39.5,5.5 parent: 4812 - - uid: 9754 - components: - - type: Transform - pos: -38.5,5.5 - parent: 4812 - uid: 9755 components: - type: Transform pos: -39.5,6.5 parent: 4812 - - uid: 9756 - components: - - type: Transform - pos: -37.5,5.5 - parent: 4812 - - uid: 9757 - components: - - type: Transform - pos: -36.5,5.5 - parent: 4812 - - uid: 9758 - components: - - type: Transform - pos: -36.5,4.5 - parent: 4812 - - uid: 9759 - components: - - type: Transform - pos: -36.5,3.5 - parent: 4812 - uid: 9760 components: - type: Transform @@ -21493,11 +23333,6 @@ entities: - type: Transform pos: -40.5,-12.5 parent: 4812 - - uid: 9924 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 4812 - uid: 9925 components: - type: Transform @@ -21518,21 +23353,6 @@ entities: - type: Transform pos: -40.5,-15.5 parent: 4812 - - uid: 9929 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 9930 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - - uid: 9931 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 4812 - uid: 9960 components: - type: Transform @@ -22673,6 +24493,46 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 4812 + - uid: 12036 + components: + - type: Transform + pos: -49.5,3.5 + parent: 4812 + - uid: 12112 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 4812 + - uid: 12114 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 4812 + - uid: 12125 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 12127 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 4812 + - uid: 13069 + components: + - type: Transform + pos: -53.5,3.5 + parent: 4812 + - uid: 13376 + components: + - type: Transform + pos: -38.5,3.5 + parent: 4812 + - uid: 13551 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 4812 - proto: CableHVStack entities: - uid: 8587 @@ -25132,6 +26992,11 @@ entities: - type: Transform pos: -38.5,6.5 parent: 4812 + - uid: 9347 + components: + - type: Transform + pos: -38.5,4.5 + parent: 4812 - uid: 9524 components: - type: Transform @@ -25382,6 +27247,11 @@ entities: - type: Transform pos: -51.5,-21.5 parent: 4812 + - uid: 10415 + components: + - type: Transform + pos: -38.5,2.5 + parent: 4812 - uid: 10652 components: - type: Transform @@ -25402,6 +27272,16 @@ entities: - type: Transform pos: -55.5,-12.5 parent: 4812 + - uid: 10684 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 + - uid: 10692 + components: + - type: Transform + pos: -45.5,3.5 + parent: 4812 - uid: 11151 components: - type: Transform @@ -25502,6 +27382,266 @@ entities: - type: Transform pos: 30.5,-37.5 parent: 4812 + - uid: 12131 + components: + - type: Transform + pos: -38.5,0.5 + parent: 4812 + - uid: 12134 + components: + - type: Transform + pos: -38.5,1.5 + parent: 4812 + - uid: 12381 + components: + - type: Transform + pos: -39.5,0.5 + parent: 4812 + - uid: 12655 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 + - uid: 12699 + components: + - type: Transform + pos: 22.5,0.5 + parent: 4812 + - uid: 12700 + components: + - type: Transform + pos: 23.5,0.5 + parent: 4812 + - uid: 12701 + components: + - type: Transform + pos: 24.5,0.5 + parent: 4812 + - uid: 12702 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4812 + - uid: 12703 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4812 + - uid: 12704 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 4812 + - uid: 12705 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 4812 + - uid: 12706 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 4812 + - uid: 12707 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 4812 + - uid: 12708 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4812 + - uid: 12709 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 4812 + - uid: 12710 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 4812 + - uid: 12711 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 4812 + - uid: 12712 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 4812 + - uid: 12713 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 4812 + - uid: 12714 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 4812 + - uid: 12715 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 4812 + - uid: 12716 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 4812 + - uid: 12717 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 4812 + - uid: 12718 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 4812 + - uid: 12720 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 4812 + - uid: 12721 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 4812 + - uid: 12783 + components: + - type: Transform + pos: -53.5,8.5 + parent: 4812 + - uid: 12944 + components: + - type: Transform + pos: -41.5,0.5 + parent: 4812 + - uid: 13072 + components: + - type: Transform + pos: -47.5,8.5 + parent: 4812 + - uid: 13078 + components: + - type: Transform + pos: -45.5,7.5 + parent: 4812 + - uid: 13086 + components: + - type: Transform + pos: -45.5,6.5 + parent: 4812 + - uid: 13148 + components: + - type: Transform + pos: -38.5,5.5 + parent: 4812 + - uid: 13211 + components: + - type: Transform + pos: -46.5,8.5 + parent: 4812 + - uid: 13212 + components: + - type: Transform + pos: -45.5,8.5 + parent: 4812 + - uid: 13216 + components: + - type: Transform + pos: -48.5,8.5 + parent: 4812 + - uid: 13358 + components: + - type: Transform + pos: -43.5,5.5 + parent: 4812 + - uid: 13361 + components: + - type: Transform + pos: -43.5,4.5 + parent: 4812 + - uid: 13366 + components: + - type: Transform + pos: -43.5,3.5 + parent: 4812 + - uid: 13436 + components: + - type: Transform + pos: -52.5,8.5 + parent: 4812 + - uid: 13447 + components: + - type: Transform + pos: -49.5,8.5 + parent: 4812 + - uid: 13448 + components: + - type: Transform + pos: -42.5,0.5 + parent: 4812 + - uid: 13453 + components: + - type: Transform + pos: -50.5,8.5 + parent: 4812 + - uid: 13454 + components: + - type: Transform + pos: -51.5,8.5 + parent: 4812 + - uid: 13455 + components: + - type: Transform + pos: -53.5,6.5 + parent: 4812 + - uid: 13459 + components: + - type: Transform + pos: -40.5,0.5 + parent: 4812 + - uid: 13506 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 + - uid: 13511 + components: + - type: Transform + pos: -43.5,2.5 + parent: 4812 + - uid: 13518 + components: + - type: Transform + pos: -43.5,1.5 + parent: 4812 + - uid: 13543 + components: + - type: Transform + pos: -38.5,3.5 + parent: 4812 + - uid: 13596 + components: + - type: Transform + pos: -53.5,7.5 + parent: 4812 + - uid: 13671 + components: + - type: Transform + pos: -54.5,6.5 + parent: 4812 + - uid: 13672 + components: + - type: Transform + pos: -55.5,6.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -25527,18 +27667,18 @@ entities: rot: 3.141592653589793 rad pos: 14.5,46.5 parent: 4812 - - uid: 8736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-3.5 - parent: 4812 - - uid: 8737 + - uid: 5546 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-3.5 parent: 4812 + - uid: 6363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-3.5 + parent: 4812 - uid: 10167 components: - type: Transform @@ -25588,10 +27728,15 @@ entities: parent: 4812 - proto: CarbonDioxideCanister entities: - - uid: 9453 + - uid: 9133 components: - type: Transform - pos: -53.5,5.5 + pos: -46.5,18.5 + parent: 4812 + - uid: 13612 + components: + - type: Transform + pos: -51.5,0.5 parent: 4812 - proto: Carpet entities: @@ -26195,6 +28340,17 @@ entities: - type: Transform pos: 1.5,14.5 parent: 4812 + - uid: 1934 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 4812 + - uid: 2905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 4812 - uid: 3101 components: - type: Transform @@ -26290,6 +28446,12 @@ entities: - type: Transform pos: 12.5,30.5 parent: 4812 + - uid: 3459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,40.5 + parent: 4812 - uid: 3471 components: - type: Transform @@ -26350,6 +28512,35 @@ entities: - type: Transform pos: 6.5,34.5 parent: 4812 + - uid: 4078 + components: + - type: Transform + pos: -41.5,6.5 + parent: 4812 + - uid: 4197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 4812 + - uid: 4202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 4812 + - uid: 4316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 4812 + - uid: 4317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-1.5 + parent: 4812 - uid: 4487 components: - type: Transform @@ -26360,6 +28551,24 @@ entities: - type: Transform pos: 16.5,4.5 parent: 4812 + - uid: 4549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 4812 + - uid: 4552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 4812 + - uid: 4553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 4812 - uid: 4591 components: - type: Transform @@ -26487,6 +28696,18 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-30.5 parent: 4812 + - uid: 7398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,7.5 + parent: 4812 + - uid: 8552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 4812 - uid: 8610 components: - type: Transform @@ -26542,101 +28763,182 @@ entities: - type: Transform pos: 9.5,2.5 parent: 4812 - - uid: 9429 + - uid: 8637 components: - type: Transform - pos: -49.5,0.5 + rot: -1.5707963267948966 rad + pos: 55.5,-5.5 parent: 4812 - - uid: 9430 + - uid: 8730 components: - type: Transform - pos: -49.5,1.5 + rot: -1.5707963267948966 rad + pos: -56.5,7.5 parent: 4812 - - uid: 9431 + - uid: 8786 components: - type: Transform - pos: -49.5,2.5 + rot: -1.5707963267948966 rad + pos: -58.5,7.5 parent: 4812 - - uid: 9432 + - uid: 8810 components: - type: Transform - pos: -49.5,3.5 + rot: -1.5707963267948966 rad + pos: -57.5,7.5 parent: 4812 - - uid: 9433 + - uid: 8832 components: - type: Transform - pos: -49.5,4.5 + rot: -1.5707963267948966 rad + pos: -56.5,8.5 parent: 4812 - - uid: 9434 + - uid: 9050 components: - type: Transform - pos: -49.5,5.5 + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 parent: 4812 - - uid: 9435 + - uid: 9131 components: - type: Transform - pos: -49.5,6.5 + rot: -1.5707963267948966 rad + pos: -56.5,9.5 parent: 4812 - - uid: 9436 + - uid: 9150 components: - type: Transform - pos: -49.5,7.5 + rot: -1.5707963267948966 rad + pos: -60.5,7.5 parent: 4812 - - uid: 9437 + - uid: 9221 components: - type: Transform - pos: -49.5,8.5 + pos: -37.5,2.5 parent: 4812 - - uid: 9438 + - uid: 9302 components: - type: Transform - pos: -49.5,9.5 + pos: -41.5,9.5 parent: 4812 - - uid: 9439 + - uid: 9303 components: - type: Transform - pos: -49.5,10.5 + pos: -41.5,14.5 parent: 4812 - - uid: 9440 - components: - - type: Transform - pos: -49.5,11.5 - parent: 4812 - - uid: 9441 - components: - - type: Transform - pos: -49.5,12.5 - parent: 4812 - - uid: 9532 - components: - - type: Transform - pos: -49.5,-4.5 - parent: 4812 - - uid: 9533 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - uid: 9534 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 4812 - - uid: 9556 - components: - - type: Transform - pos: -45.5,14.5 - parent: 4812 - - uid: 9557 + - uid: 9306 components: - type: Transform pos: -44.5,14.5 parent: 4812 - - uid: 9558 + - uid: 9309 + components: + - type: Transform + pos: -52.5,14.5 + parent: 4812 + - uid: 9310 + components: + - type: Transform + pos: -47.5,14.5 + parent: 4812 + - uid: 9313 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 9315 + components: + - type: Transform + pos: -46.5,14.5 + parent: 4812 + - uid: 9316 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 9318 + components: + - type: Transform + pos: -49.5,14.5 + parent: 4812 + - uid: 9319 + components: + - type: Transform + pos: -51.5,14.5 + parent: 4812 + - uid: 9330 components: - type: Transform pos: -43.5,14.5 parent: 4812 + - uid: 9331 + components: + - type: Transform + pos: -42.5,14.5 + parent: 4812 + - uid: 9333 + components: + - type: Transform + pos: -41.5,8.5 + parent: 4812 + - uid: 9339 + components: + - type: Transform + pos: -48.5,1.5 + parent: 4812 + - uid: 9346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 4812 + - uid: 9348 + components: + - type: Transform + pos: -41.5,10.5 + parent: 4812 + - uid: 9373 + components: + - type: Transform + pos: -37.5,1.5 + parent: 4812 + - uid: 9374 + components: + - type: Transform + pos: -50.5,14.5 + parent: 4812 + - uid: 9375 + components: + - type: Transform + pos: -53.5,14.5 + parent: 4812 + - uid: 9376 + components: + - type: Transform + pos: -39.5,3.5 + parent: 4812 + - uid: 9417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,12.5 + parent: 4812 + - uid: 9476 + components: + - type: Transform + pos: -39.5,4.5 + parent: 4812 + - uid: 9477 + components: + - type: Transform + pos: -39.5,5.5 + parent: 4812 + - uid: 9682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 4812 - uid: 9700 components: - type: Transform @@ -26667,21 +28969,6 @@ entities: - type: Transform pos: -36.5,-0.5 parent: 4812 - - uid: 9932 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - - uid: 9933 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 9934 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 4812 - uid: 9935 components: - type: Transform @@ -27102,6 +29389,12 @@ entities: - type: Transform pos: -44.5,-20.5 parent: 4812 + - uid: 10752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 4812 - uid: 10870 components: - type: Transform @@ -27532,6 +29825,210 @@ entities: - type: Transform pos: -11.5,13.5 parent: 4812 + - uid: 12068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 4812 + - uid: 12473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-15.5 + parent: 4812 + - uid: 12593 + components: + - type: Transform + pos: -48.5,14.5 + parent: 4812 + - uid: 12613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 4812 + - uid: 12671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 4812 + - uid: 12782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 4812 + - uid: 12997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 4812 + - uid: 13048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 4812 + - uid: 13054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 4812 + - uid: 13076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 4812 + - uid: 13134 + components: + - type: Transform + pos: 16.5,40.5 + parent: 4812 + - uid: 13136 + components: + - type: Transform + pos: 16.5,39.5 + parent: 4812 + - uid: 13140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 4812 + - uid: 13142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 4812 + - uid: 13143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 4812 + - uid: 13144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 4812 + - uid: 13145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,35.5 + parent: 4812 + - uid: 13168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-43.5 + parent: 4812 + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 4812 + - uid: 13171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 4812 + - uid: 13172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 + parent: 4812 + - uid: 13173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-57.5 + parent: 4812 + - uid: 13438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 4812 + - uid: 13513 + components: + - type: Transform + pos: -49.5,3.5 + parent: 4812 + - uid: 13515 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 13526 + components: + - type: Transform + pos: -52.5,3.5 + parent: 4812 + - uid: 13541 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 13548 + components: + - type: Transform + pos: -48.5,2.5 + parent: 4812 + - uid: 13554 + components: + - type: Transform + pos: -51.5,3.5 + parent: 4812 + - uid: 13645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,2.5 + parent: 4812 + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,1.5 + parent: 4812 + - uid: 13647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,4.5 + parent: 4812 + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,3.5 + parent: 4812 + - uid: 13657 + components: + - type: Transform + pos: -43.5,5.5 + parent: 4812 + - uid: 13658 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 + - uid: 13659 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 - proto: Chair entities: - uid: 3239 @@ -27564,65 +30061,64 @@ entities: rot: 3.141592653589793 rad pos: 20.5,13.5 parent: 4812 - - uid: 4551 + - uid: 4119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 4812 + - uid: 4135 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-4.5 parent: 4812 - - uid: 4552 + - uid: 4384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 + rot: 3.141592653589793 rad + pos: 52.5,-4.5 parent: 4812 - - uid: 4553 + - uid: 4392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 + pos: 53.5,-0.5 parent: 4812 - - uid: 4554 + - uid: 4418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 4812 + - uid: 4420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 4812 + - uid: 4421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 4812 + - uid: 4422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 parent: 4812 - uid: 4555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 + rot: 3.141592653589793 rad + pos: 51.5,-4.5 parent: 4812 - uid: 4556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 4812 - - uid: 4557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 4812 - - uid: 4558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - - uid: 4559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 4812 - - uid: 4560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: 3.141592653589793 rad + pos: 53.5,-4.5 parent: 4812 - uid: 4565 components: @@ -27748,10 +30244,17 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,18.5 parent: 4812 - - uid: 8851 + - uid: 9225 components: - type: Transform - pos: 23.5,13.5 + rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 4812 + - uid: 9566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 parent: 4812 - uid: 10732 components: @@ -27786,6 +30289,11 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-8.5 parent: 4812 + - uid: 10739 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 4812 - uid: 10909 components: - type: Transform @@ -27849,6 +30357,55 @@ entities: - type: Transform pos: 5.5,12.5 parent: 4812 + - uid: 12393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - uid: 13126 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 4812 + - uid: 13177 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 4812 + - uid: 13325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 4812 + - uid: 13410 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 4812 + - uid: 13641 + components: + - type: Transform + pos: -45.5,4.5 + parent: 4812 + - uid: 13642 + components: + - type: Transform + pos: -44.5,4.5 + parent: 4812 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 4812 + - uid: 13644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 4812 - proto: ChairOfficeDark entities: - uid: 310 @@ -28031,11 +30588,11 @@ entities: rot: 3.141592653589793 rad pos: -11.5,11.5 parent: 4812 - - uid: 12112 + - uid: 13423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 + rot: 3.141592653589793 rad + pos: -42.5,-2.5 parent: 4812 - proto: ChairOfficeLight entities: @@ -28096,6 +30653,12 @@ entities: - type: Transform pos: 9.5,-43.5 parent: 4812 + - uid: 12667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-25.5 + parent: 4812 - proto: ChairWood entities: - uid: 1052 @@ -28358,18 +30921,26 @@ entities: - type: Transform pos: -17.5785,-25.512428 parent: 4812 -- proto: ChemDispenser +- proto: CheckerBoard entities: - - uid: 6604 + - uid: 12685 components: - type: Transform - pos: -12.5,-18.5 + rot: 3.141592653589793 rad + pos: 29.5,-4.5 parent: 4812 +- proto: ChemDispenser + entities: - uid: 6605 components: - type: Transform pos: -8.5,-14.5 parent: 4812 + - uid: 6652 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 4812 - proto: ChemistryEmptyBottle01 entities: - uid: 7581 @@ -28384,22 +30955,22 @@ entities: parent: 4812 - proto: ChemistryHotplate entities: - - uid: 12473 + - uid: 6607 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 4812 +- proto: ChemMaster + entities: + - uid: 12045 components: - type: Transform pos: -10.5,-18.5 parent: 4812 -- proto: ChemMaster - entities: - - uid: 6606 + - uid: 13332 components: - type: Transform - pos: -8.5,-15.5 - parent: 4812 - - uid: 6607 - components: - - type: Transform - pos: -12.5,-17.5 + pos: -10.5,-14.5 parent: 4812 - proto: ChessBoard entities: @@ -28643,6 +31214,11 @@ entities: - 0 - 0 - 0 + - uid: 4322 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 4812 - uid: 4484 components: - type: Transform @@ -28883,6 +31459,11 @@ entities: - 0 - 0 - 0 + - uid: 12920 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 4812 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 9631 @@ -28938,6 +31519,11 @@ entities: - 0 - 0 - 0 + - uid: 3180 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 4812 - uid: 3674 components: - type: Transform @@ -29081,6 +31667,11 @@ entities: - 0 - 0 - 0 + - uid: 13185 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 4812 - proto: ClosetJanitorFilled entities: - uid: 1486 @@ -29492,61 +32083,21 @@ entities: - 0 - proto: ClosetWallAtmospherics entities: - - uid: 9099 + - uid: 9554 components: - type: Transform - pos: -55.5,5.5 + rot: -1.5707963267948966 rad + pos: -46.5,20.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 12381 + - 9555 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 12374 - components: - - type: Transform - pos: 22.5,17.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.3546504 - - 5.096066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12375 components: - type: Transform @@ -29804,12 +32355,12 @@ entities: - uid: 7586 components: - type: Transform - pos: -10.686977,-25.567636 + pos: -14.516666,-20.606585 parent: 4812 - uid: 7587 components: - type: Transform - pos: -10.671352,-25.395761 + pos: -14.766666,-20.481499 parent: 4812 - proto: ClothingEyesHudSecurity entities: @@ -29837,7 +32388,7 @@ entities: - uid: 8601 components: - type: Transform - pos: -18.453629,9.613115 + pos: -18.439812,9.940453 parent: 4812 - uid: 10706 components: @@ -29946,8 +32497,22 @@ entities: - uid: 12119 components: - type: Transform - pos: -42.44835,-1.0036435 + pos: -46.503944,-1.1517658 parent: 4812 + - type: HandheldLight + toggleActionEntity: 9534 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9534 + - type: ActionsContainer - proto: ClothingHeadHatHardhatYellow entities: - uid: 12120 @@ -29955,6 +32520,15 @@ entities: - type: Transform pos: -41.401306,-7.235723 parent: 4812 +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 9510 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHatPaper entities: - uid: 11856 @@ -30128,6 +32702,13 @@ entities: - type: Transform pos: -5.415262,24.019829 parent: 4812 +- proto: ClothingNeckCloakMiner + entities: + - uid: 12989 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 4812 - proto: ClothingNeckCloakTrans entities: - uid: 4827 @@ -30154,13 +32735,6 @@ entities: - type: Transform pos: 19.693497,8.613337 parent: 4812 -- proto: ClothingNeckMantleHOS - entities: - - uid: 9197 - components: - - type: Transform - pos: -21.425161,22.675072 - parent: 4812 - proto: ClothingNeckNonBinaryPin entities: - uid: 12513 @@ -30199,6 +32773,15 @@ entities: - type: Transform pos: -68.52162,-28.692625 parent: 4812 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 9557 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingNeckStethoscope entities: - uid: 7580 @@ -30375,12 +32958,12 @@ entities: - uid: 12117 components: - type: Transform - pos: -42.4796,-1.4880185 + pos: -46.33728,-1.485331 parent: 4812 - uid: 12118 components: - type: Transform - pos: -42.370224,-1.6130185 + pos: -46.660194,-1.4749074 parent: 4812 - proto: ClothingShoesBootsJack entities: @@ -30651,12 +33234,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 4812 - - uid: 6289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 4812 - uid: 6351 components: - type: Transform @@ -30801,6 +33378,12 @@ entities: - type: Transform pos: -14.5,0.5 parent: 4812 + - uid: 13139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 4812 - proto: CommandmentCircuitBoard entities: - uid: 12653 @@ -30822,6 +33405,12 @@ entities: - type: Transform pos: -2.5,24.5 parent: 4812 + - uid: 2911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 4812 - proto: ComputerAnalysisConsole entities: - uid: 6313 @@ -30933,17 +33522,18 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-26.5 parent: 4812 - - uid: 7571 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 4812 - uid: 8264 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,24.5 parent: 4812 + - uid: 9156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 4812 - proto: ComputerCriminalRecords entities: - uid: 2659 @@ -30981,12 +33571,6 @@ entities: parent: 4812 - proto: ComputerFrame entities: - - uid: 6653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 4812 - uid: 11147 components: - type: Transform @@ -31038,23 +33622,29 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-31.5 parent: 4812 - - uid: 8756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 4812 - uid: 10697 components: - type: Transform pos: -29.5,-5.5 parent: 4812 -- proto: ComputerRadar - entities: - - uid: 3225 + - uid: 12971 components: - type: Transform - pos: 27.5,15.5 + pos: -42.5,-1.5 + parent: 4812 +- proto: ComputerRadar + entities: + - uid: 12672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 4812 + - uid: 12975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 parent: 4812 - proto: ComputerResearchAndDevelopment entities: @@ -31075,10 +33665,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-25.5 parent: 4812 - - uid: 6287 + - uid: 9665 components: - type: Transform - pos: 26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 parent: 4812 - proto: ComputerRoboticsControl entities: @@ -31089,11 +33680,11 @@ entities: parent: 4812 - proto: ComputerSalvageExpedition entities: - - uid: 7830 + - uid: 12656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 + rot: 1.5707963267948966 rad + pos: 22.5,16.5 parent: 4812 - proto: ComputerShuttleCargo entities: @@ -31194,6 +33785,18 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,28.5 parent: 4812 + - uid: 2890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 4812 + - uid: 2896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 4812 - uid: 3013 components: - type: Transform @@ -31236,12 +33839,53 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,28.5 parent: 4812 + - uid: 3434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 4812 + - uid: 3769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 4812 - uid: 11235 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-38.5 parent: 4812 + - uid: 13135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 4812 + - uid: 13282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 4812 + - uid: 13283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 4812 + - uid: 13289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 4812 + - uid: 13290 + components: + - type: Transform + pos: 32.5,13.5 + parent: 4812 - proto: CornSeeds entities: - uid: 9618 @@ -31332,54 +33976,6 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10777 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10779 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableBulk entities: - uid: 4489 @@ -31476,6 +34072,56 @@ entities: - 0 - 0 - 0 +- proto: CrateEngineeringSecure + entities: + - uid: 9425 + components: + - type: MetaData + desc: 12 parts for the main body of an antimatter reactor, or for expanding an existing one. + name: packaged antimatter reactor crate + - type: Transform + pos: -38.5,-11.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7243209 + - 6.4867315 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9442 + - 9441 + - 9440 + - 9439 + - 9437 + - 9436 + - 9435 + - 9434 + - 9432 + - 9431 + - 9430 + - 9429 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateFilledSpawner entities: - uid: 3713 @@ -31521,29 +34167,11 @@ entities: parent: 4812 - proto: CrateSalvageEquipment entities: - - uid: 3262 + - uid: 13247 components: - type: Transform - pos: 27.5,13.5 + pos: 28.5,14.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateScience entities: - uid: 12463 @@ -31690,11 +34318,14 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 6290 + - uid: 12115 components: - type: Transform pos: 12.5,-18.5 parent: 4812 + - type: SingletonDeviceNetServer + active: False + available: False - proto: Crowbar entities: - uid: 3469 @@ -31852,10 +34483,10 @@ entities: - type: Transform pos: -31.5,2.5 parent: 4812 - - uid: 12582 + - uid: 13412 components: - type: Transform - pos: -41.5,4.5 + pos: -40.5,4.5 parent: 4812 - proto: DefaultStationBeaconBar entities: @@ -32086,10 +34717,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconPowerBank entities: - - uid: 12339 + - uid: 9549 components: - type: Transform - pos: -43.5,-2.5 + pos: -43.5,-3.5 parent: 4812 - proto: DefaultStationBeaconQMRoom entities: @@ -32131,10 +34762,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconSalvage entities: - - uid: 12099 + - uid: 12979 components: - type: Transform - pos: 24.5,14.5 + pos: 24.5,15.5 parent: 4812 - proto: DefaultStationBeaconSecurity entities: @@ -32186,6 +34817,13 @@ entities: - type: Transform pos: 23.5,4.5 parent: 4812 +- proto: DefaultStationBeaconTEG + entities: + - uid: 13631 + components: + - type: Transform + pos: -54.5,3.5 + parent: 4812 - proto: DefaultStationBeaconTheater entities: - uid: 12481 @@ -32294,11 +34932,6 @@ entities: bodyType: Static - proto: DiceBag entities: - - uid: 4561 - components: - - type: Transform - pos: 27.529026,-5.5177865 - parent: 4812 - uid: 7137 components: - type: Transform @@ -32389,6 +35022,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-8.5 parent: 4812 + - uid: 4180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 4812 - uid: 4505 components: - type: Transform @@ -32521,6 +35160,12 @@ entities: - type: Transform pos: -25.5,-2.5 parent: 4812 + - uid: 12818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 4812 - proto: DisposalJunctionFlipped entities: - uid: 1585 @@ -32556,6 +35201,12 @@ entities: - type: Transform pos: 11.5,-1.5 parent: 4812 + - uid: 4179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4812 - uid: 5848 components: - type: Transform @@ -33169,11 +35820,6 @@ entities: - type: Transform pos: 11.5,-0.5 parent: 4812 - - uid: 3321 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 4812 - uid: 3322 components: - type: Transform @@ -33342,11 +35988,11 @@ entities: - type: Transform pos: -33.5,-7.5 parent: 4812 - - uid: 4502 + - uid: 4211 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-1.5 + pos: 61.5,-2.5 parent: 4812 - uid: 4504 components: @@ -33915,6 +36561,18 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-37.5 parent: 4812 + - uid: 9132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-2.5 + parent: 4812 + - uid: 9541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 4812 - uid: 10782 components: - type: Transform @@ -34335,6 +36993,292 @@ entities: rot: 3.141592653589793 rad pos: 6.5,43.5 parent: 4812 + - uid: 12746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 4812 + - uid: 12747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 4812 + - uid: 12748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 4812 + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 + parent: 4812 + - uid: 12751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 4812 + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 + parent: 4812 + - uid: 12753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 4812 + - uid: 12755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 + parent: 4812 + - uid: 12756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-2.5 + parent: 4812 + - uid: 12757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 4812 + - uid: 12758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 4812 + - uid: 12760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 4812 + - uid: 12763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 4812 + - uid: 12789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 4812 + - uid: 12807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 4812 + - uid: 12808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-2.5 + parent: 4812 + - uid: 12809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 4812 + - uid: 12810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 4812 + - uid: 12811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 4812 + - uid: 12812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 4812 + - uid: 12814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 4812 + - uid: 12815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 4812 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 4812 + - uid: 12817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 4812 + - uid: 12819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 4812 + - uid: 12820 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 4812 + - uid: 12821 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 4812 + - uid: 12822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 4812 + - uid: 12823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + - uid: 12824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 4812 + - uid: 12825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + - uid: 12826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 4812 + - uid: 12827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 4812 + - uid: 12828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 4812 + - uid: 12829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 4812 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 4812 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 4812 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 4812 + - uid: 12833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 4812 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 4812 + - uid: 12835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4812 + - uid: 12836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 4812 + - uid: 12837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 4812 + - uid: 12838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4812 + - uid: 12839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 4812 + - uid: 12840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 4812 + - uid: 13050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 4812 + - uid: 13055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-2.5 + parent: 4812 - proto: DisposalTrunk entities: - uid: 1104 @@ -34399,6 +37343,12 @@ entities: - type: Transform pos: -38.5,-6.5 parent: 4812 + - uid: 4054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 4812 - uid: 4501 components: - type: Transform @@ -34550,6 +37500,11 @@ entities: rot: 3.141592653589793 rad pos: 6.5,32.5 parent: 4812 + - uid: 12662 + components: + - type: Transform + pos: 31.5,0.5 + parent: 4812 - proto: DisposalUnit entities: - uid: 921 @@ -34610,6 +37565,16 @@ entities: - type: Transform pos: -38.5,-6.5 parent: 4812 + - uid: 4077 + components: + - type: Transform + pos: 31.5,0.5 + parent: 4812 + - uid: 4210 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 4812 - uid: 4500 components: - type: Transform @@ -34779,12 +37744,32 @@ entities: - type: Transform pos: -35.344994,-7.7000136 parent: 4812 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 13154 + components: + - type: Transform + pos: -9.542398,-28.358063 + parent: 4812 - proto: DoubleEmergencyOxygenTankFilled entities: - uid: 12116 components: - type: Transform - pos: -42.432724,-2.3473935 + pos: -46.597694,-2.4130588 + parent: 4812 + - type: GasTank + toggleActionEntity: 9710 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9710 + - uid: 13153 + components: + - type: Transform + pos: -9.167398,-28.37891 parent: 4812 - proto: Dresser entities: @@ -34929,7 +37914,7 @@ entities: - uid: 6308 components: - type: Transform - pos: 25.471973,-18.414967 + pos: 26.56999,-19.333094 parent: 4812 - proto: DrinkIcedTeaCan entities: @@ -34971,6 +37956,11 @@ entities: - type: Transform pos: -2.4722648,3.4643836 parent: 4812 + - uid: 12686 + components: + - type: Transform + pos: 29.386562,-5.1370378 + parent: 4812 - proto: DrinkMugHeart entities: - uid: 10763 @@ -34980,11 +37970,6 @@ entities: parent: 4812 - proto: DrinkMugMetal entities: - - uid: 3278 - components: - - type: Transform - pos: 22.59246,12.58923 - parent: 4812 - uid: 8435 components: - type: Transform @@ -34995,6 +37980,11 @@ entities: - type: Transform pos: -42.56598,-7.518787 parent: 4812 + - uid: 13654 + components: + - type: Transform + pos: -44.827446,3.7351964 + parent: 4812 - proto: DrinkMugOne entities: - uid: 10762 @@ -35065,12 +38055,59 @@ entities: parent: 4812 - proto: EmergencyLight entities: + - uid: 7197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 4812 - uid: 8416 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-23.5 parent: 4812 + - uid: 9423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 4812 + - uid: 9445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 4812 + - uid: 9446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 4812 + - uid: 9492 + components: + - type: Transform + pos: -11.5,20.5 + parent: 4812 + - uid: 9493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,33.5 + parent: 4812 + - uid: 9516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 4812 + - uid: 9525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 - uid: 12093 components: - type: Transform @@ -35159,6 +38196,57 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight + - uid: 13387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 4812 + - uid: 13388 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 4812 + - uid: 13389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 4812 + - uid: 13390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 4812 + - uid: 13391 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 4812 + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 4812 + - uid: 13393 + components: + - type: Transform + pos: 22.5,17.5 + parent: 4812 + - uid: 13394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 4812 + - uid: 13395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 4812 - proto: EncryptionKeyCargo entities: - uid: 4992 @@ -35229,6 +38317,11 @@ entities: - type: Transform pos: -33.5,6.5 parent: 4812 + - uid: 13521 + components: + - type: Transform + pos: -57.5,8.5 + parent: 4812 - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 11839 @@ -35243,11 +38336,6 @@ entities: - type: Transform pos: -6.5,-2.5 parent: 4812 - - uid: 3270 - components: - - type: Transform - pos: 24.5,17.5 - parent: 4812 - uid: 4499 components: - type: Transform @@ -35273,6 +38361,11 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 4812 + - uid: 6653 + components: + - type: Transform + pos: 21.5,12.5 + parent: 4812 - uid: 7032 components: - type: Transform @@ -35472,6 +38565,24 @@ entities: - 4920 - 8838 - 8836 + - uid: 9224 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 13228 + - 13229 + - 13230 + - 13192 + - 12692 + - 13231 + - 12684 + - 13233 + - 13232 + - 12693 + - 12694 - uid: 10750 components: - type: Transform @@ -35481,11 +38592,6 @@ entities: devices: - 12184 - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - uid: 12180 components: - type: Transform @@ -35495,11 +38601,8 @@ entities: - type: DeviceList devices: - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 + - 4622 + - 4623 - uid: 12187 components: - type: Transform @@ -35671,17 +38774,6 @@ entities: - 2472 - 2231 - 1928 - - uid: 12238 - components: - - type: Transform - pos: 7.5,23.5 - parent: 4812 - - type: DeviceList - devices: - - 1927 - - 2476 - - 963 - - 12239 - uid: 12241 components: - type: Transform @@ -35986,10 +39078,11 @@ entities: - 12355 - proto: FireAxeCabinetFilled entities: - - uid: 6784 + - uid: 13381 components: - type: Transform - pos: -40.5,6.5 + rot: -1.5707963267948966 rad + pos: -40.5,9.5 parent: 4812 - proto: FireExtinguisher entities: @@ -36010,6 +39103,11 @@ entities: - type: Transform pos: 4.5,6.5 parent: 4812 + - uid: 12930 + components: + - type: Transform + pos: 21.5,14.5 + parent: 4812 - proto: FirelockEdge entities: - uid: 328 @@ -36070,6 +39168,26 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 4812 + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 + - uid: 4623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 - uid: 4980 components: - type: Transform @@ -36082,6 +39200,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 4999 components: - type: Transform @@ -36126,6 +39247,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 7191 components: - type: Transform @@ -36200,6 +39324,48 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-34.5 parent: 4812 + - uid: 12692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 12693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 12694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 13151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 4812 + - uid: 13152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 4812 - proto: FirelockElectronics entities: - uid: 10718 @@ -36409,11 +39575,17 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 4425 components: - type: Transform pos: 23.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 4426 components: - type: Transform @@ -36424,11 +39596,6 @@ entities: - type: Transform pos: 28.5,1.5 parent: 4812 - - uid: 4436 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - uid: 4525 components: - type: Transform @@ -36695,31 +39862,6 @@ entities: - type: Transform pos: -41.5,-22.5 parent: 4812 - - uid: 10752 - components: - - type: Transform - pos: -37.5,1.5 - parent: 4812 - - uid: 10753 - components: - - type: Transform - pos: -37.5,2.5 - parent: 4812 - - uid: 10754 - components: - - type: Transform - pos: -37.5,3.5 - parent: 4812 - - uid: 10755 - components: - - type: Transform - pos: -37.5,4.5 - parent: 4812 - - uid: 10756 - components: - - type: Transform - pos: -37.5,5.5 - parent: 4812 - uid: 10901 components: - type: Transform @@ -36785,6 +39927,60 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 + - uid: 13228 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13229 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13230 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13231 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13232 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13233 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 - proto: Fireplace entities: - uid: 2581 @@ -36819,8 +40015,22 @@ entities: - uid: 6364 components: - type: Transform - pos: -42.568504,-1.8948193 + pos: -46.410194,-1.9127116 parent: 4812 + - type: HandheldLight + toggleActionEntity: 9825 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9825 + - type: ActionsContainer - uid: 8597 components: - type: Transform @@ -36869,8 +40079,22 @@ entities: - uid: 12487 components: - type: Transform - pos: -42.55288,-2.0198193 + pos: -46.722694,-1.9439831 parent: 4812 + - type: HandheldLight + toggleActionEntity: 9826 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9826 + - type: ActionsContainer - uid: 12488 components: - type: Transform @@ -37523,106 +40747,114 @@ entities: pos: -13.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasFilterFlipped - entities: - - uid: 9169 + color: '#990000FF' + - uid: 9230 components: - type: Transform - pos: -47.5,1.5 + rot: -1.5707963267948966 rad + pos: -52.5,12.5 parent: 4812 + - type: GasFilter + filteredGas: Tritium + - uid: 9239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 4812 + - type: GasFilter + filteredGas: Oxygen + - uid: 9242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,12.5 + parent: 4812 + - type: GasFilter + filteredGas: WaterVapor + - uid: 9256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 4812 + - type: GasFilter + filteredGas: CarbonDioxide + - uid: 9277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,12.5 + parent: 4812 + - type: GasFilter + filteredGas: Plasma + - uid: 9514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,12.5 + parent: 4812 + - type: GasFilter + filteredGas: Nitrogen - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9170 + color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 9469 components: - type: Transform - pos: -47.5,3.5 + rot: 3.141592653589793 rad + pos: -46.5,17.5 parent: 4812 - - uid: 9171 +- proto: GasMinerNitrogenStation + entities: + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,17.5 + parent: 4812 +- proto: GasMinerOxygenStation + entities: + - uid: 9473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,17.5 + parent: 4812 +- proto: GasMinerWaterVapor + entities: + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,17.5 + parent: 4812 +- proto: GasMixer + entities: + - uid: 13517 components: - type: Transform pos: -47.5,5.5 parent: 4812 - - uid: 9172 - components: - - type: Transform - pos: -47.5,7.5 - parent: 4812 - - uid: 9173 - components: - - type: Transform - pos: -47.5,9.5 - parent: 4812 - - uid: 9174 - components: - - type: Transform - pos: -47.5,11.5 - parent: 4812 -- proto: GasMinerCarbonDioxide - entities: - - uid: 9452 - components: - - type: Transform - pos: -52.5,5.5 - parent: 4812 -- proto: GasMinerNitrogen - entities: - - uid: 9449 - components: - - type: Transform - pos: -52.5,1.5 - parent: 4812 -- proto: GasMinerOxygen - entities: - - uid: 9451 - components: - - type: Transform - pos: -52.5,3.5 - parent: 4812 -- proto: GasMinerWaterVapor - entities: - - uid: 9454 - components: - - type: Transform - pos: -52.5,7.5 - parent: 4812 - proto: GasMixerFlipped entities: - - uid: 8550 - components: - - type: Transform - pos: -45.5,5.5 - parent: 4812 - - uid: 8552 + - uid: 9515 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,2.5 + pos: -43.5,10.5 parent: 4812 - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9236 + color: '#0055CCFF' + - uid: 11908 components: - type: Transform - pos: -45.5,8.5 - parent: 4812 - - uid: 9237 - components: - - type: Transform - pos: -45.5,10.5 - parent: 4812 - - uid: 9247 - components: - - type: Transform - pos: -45.5,6.5 - parent: 4812 - - uid: 9261 - components: - - type: Transform - pos: -45.5,12.5 + rot: 1.5707963267948966 rad + pos: -57.5,1.5 parent: 4812 - proto: GasOutletInjector entities: @@ -37632,41 +40864,49 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-30.5 parent: 4812 - - uid: 4445 + - uid: 9141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,1.5 + pos: -52.5,16.5 parent: 4812 - - uid: 4446 + - uid: 9142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,3.5 + pos: -50.5,16.5 parent: 4812 - - uid: 4478 + - uid: 9143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,5.5 + pos: -48.5,16.5 parent: 4812 - - uid: 4479 + - uid: 9144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,7.5 + pos: -46.5,16.5 parent: 4812 - - uid: 4497 + - uid: 9158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: -44.5,16.5 parent: 4812 - - uid: 4826 + - uid: 9160 + components: + - type: Transform + pos: -42.5,16.5 + parent: 4812 + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: -58.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,1.5 parent: 4812 - proto: GasPassiveGate entities: @@ -37677,7 +40917,7 @@ entities: pos: 12.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8979 components: - type: Transform @@ -37685,7 +40925,7 @@ entities: pos: -31.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 862 @@ -37718,63 +40958,62 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-37.5 parent: 4812 - - uid: 9168 + - uid: 9098 components: - type: Transform - pos: -49.5,-0.5 + rot: -1.5707963267948966 rad + pos: -44.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9199 + - uid: 9099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,1.5 + rot: -1.5707963267948966 rad + pos: -46.5,18.5 parent: 4812 - - uid: 9200 + - uid: 9100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,3.5 + rot: -1.5707963267948966 rad + pos: -48.5,18.5 parent: 4812 - - uid: 9201 + - uid: 9101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,5.5 + rot: -1.5707963267948966 rad + pos: -50.5,18.5 parent: 4812 - - uid: 9202 + - uid: 9102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,7.5 + rot: -1.5707963267948966 rad + pos: -52.5,18.5 parent: 4812 - - uid: 9203 + - uid: 9173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,9.5 + rot: -1.5707963267948966 rad + pos: -42.5,18.5 parent: 4812 - - uid: 9204 + - uid: 9329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,11.5 + pos: -57.5,7.5 parent: 4812 - - uid: 9264 + - uid: 9901 components: - type: Transform - pos: -47.5,14.5 + pos: -54.5,15.5 parent: 4812 - - uid: 9494 + - uid: 12339 components: - type: Transform - pos: -45.5,16.5 + rot: 1.5707963267948966 rad + pos: -59.5,2.5 parent: 4812 - - uid: 9495 + - uid: 12775 components: - type: Transform - pos: -43.5,16.5 + pos: -58.5,9.5 parent: 4812 - proto: GasPipeBend entities: @@ -37785,7 +41024,7 @@ entities: pos: -25.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 561 components: - type: Transform @@ -37793,14 +41032,14 @@ entities: pos: -22.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 563 components: - type: Transform pos: 11.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 705 components: - type: Transform @@ -37808,7 +41047,7 @@ entities: pos: -26.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 708 components: - type: Transform @@ -37816,14 +41055,14 @@ entities: pos: 12.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 709 components: - type: Transform pos: 12.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 831 components: - type: Transform @@ -37831,7 +41070,7 @@ entities: pos: 3.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 833 components: - type: Transform @@ -37839,7 +41078,7 @@ entities: pos: 4.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 834 components: - type: Transform @@ -37847,7 +41086,7 @@ entities: pos: 5.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 850 components: - type: Transform @@ -37855,14 +41094,14 @@ entities: pos: -16.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 856 components: - type: Transform pos: -16.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 861 components: - type: Transform @@ -37875,14 +41114,14 @@ entities: pos: -8.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1508 components: - type: Transform pos: -21.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1683 components: - type: Transform @@ -37890,14 +41129,14 @@ entities: pos: -21.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1684 components: - type: Transform pos: -21.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1787 components: - type: Transform @@ -37905,7 +41144,7 @@ entities: pos: 20.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2008 components: - type: Transform @@ -37913,14 +41152,14 @@ entities: pos: -8.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2009 components: - type: Transform pos: 3.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2054 components: - type: Transform @@ -37928,14 +41167,14 @@ entities: pos: -7.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2055 components: - type: Transform pos: 2.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2849 components: - type: Transform @@ -37943,7 +41182,7 @@ entities: pos: 20.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2850 components: - type: Transform @@ -37951,7 +41190,7 @@ entities: pos: 20.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2861 components: - type: Transform @@ -37959,14 +41198,7 @@ entities: pos: 20.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2967 - components: - - type: Transform - pos: 24.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3018 components: - type: Transform @@ -37974,7 +41206,7 @@ entities: pos: 14.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3706 components: - type: Transform @@ -37982,22 +41214,7 @@ entities: pos: -33.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3746 - components: - - type: Transform - pos: -32.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 3803 components: - type: Transform @@ -38045,35 +41262,21 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4204 + - uid: 4188 components: - type: Transform - pos: 28.5,-3.5 + rot: -1.5707963267948966 rad + pos: 61.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4213 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4227 components: - type: Transform pos: 25.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4892 components: - type: Transform @@ -38081,7 +41284,7 @@ entities: pos: -20.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4893 components: - type: Transform @@ -38089,7 +41292,7 @@ entities: pos: -20.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4940 components: - type: Transform @@ -38097,7 +41300,7 @@ entities: pos: -19.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5129 components: - type: Transform @@ -38105,7 +41308,7 @@ entities: pos: 1.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5178 components: - type: Transform @@ -38113,14 +41316,14 @@ entities: pos: 0.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5725 components: - type: Transform pos: 21.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5732 components: - type: Transform @@ -38128,7 +41331,7 @@ entities: pos: 27.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5736 components: - type: Transform @@ -38136,7 +41339,7 @@ entities: pos: 22.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5737 components: - type: Transform @@ -38144,14 +41347,14 @@ entities: pos: 21.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5804 components: - type: Transform pos: 14.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6624 components: - type: Transform @@ -38159,7 +41362,7 @@ entities: pos: -26.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6628 components: - type: Transform @@ -38167,7 +41370,7 @@ entities: pos: -24.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6651 components: - type: Transform @@ -38181,7 +41384,7 @@ entities: pos: -13.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6829 components: - type: Transform @@ -38189,7 +41392,7 @@ entities: pos: -18.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7272 components: - type: Transform @@ -38197,7 +41400,7 @@ entities: pos: -17.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7285 components: - type: Transform @@ -38205,7 +41408,7 @@ entities: pos: -30.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7847 components: - type: Transform @@ -38213,7 +41416,7 @@ entities: pos: -29.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8557 components: - type: Transform @@ -38221,21 +41424,21 @@ entities: pos: -18.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8561 components: - type: Transform pos: -18.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8953 components: - type: Transform pos: -10.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8970 components: - type: Transform @@ -38243,7 +41446,7 @@ entities: pos: -30.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8987 components: - type: Transform @@ -38261,88 +41464,126 @@ entities: - type: Transform pos: -33.5,-36.5 parent: 4812 - - uid: 9117 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,6.5 + pos: -45.5,18.5 parent: 4812 - - uid: 9120 + - uid: 9107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,8.5 + pos: -47.5,18.5 parent: 4812 - - uid: 9121 + - uid: 9108 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,12.5 + pos: -49.5,18.5 parent: 4812 - - uid: 9125 + - uid: 9109 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,10.5 + pos: -51.5,18.5 parent: 4812 - - uid: 9128 + - uid: 9110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,2.5 + pos: -53.5,18.5 parent: 4812 - - uid: 9133 + - uid: 9169 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,4.5 + pos: -43.5,18.5 parent: 4812 - - uid: 9155 + - uid: 9186 + components: + - type: Transform + pos: -41.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9218 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,0.5 + pos: -50.5,-1.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9156 + - uid: 9220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 + pos: -42.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9166 + color: '#0055CCFF' + - uid: 9300 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-1.5 + pos: -55.5,-1.5 + parent: 4812 + - uid: 9354 + components: + - type: Transform + pos: 24.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9254 + color: '#0055CCFF' + - uid: 9453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,5.5 + pos: -48.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9535 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,8.5 + pos: -58.5,4.5 + parent: 4812 + - uid: 9718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 9907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11617 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,5.5 + parent: 4812 - uid: 11972 components: - type: Transform @@ -38350,7 +41591,7 @@ entities: pos: -36.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11983 components: - type: Transform @@ -38358,7 +41599,75 @@ entities: pos: -45.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 12630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 4812 + - uid: 12856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13083 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,10.5 + parent: 4812 + - uid: 13443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,2.5 + parent: 4812 + - uid: 13462 + components: + - type: Transform + pos: -56.5,1.5 + parent: 4812 + - uid: 13483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,5.5 + parent: 4812 + - uid: 13507 + components: + - type: Transform + pos: -54.5,1.5 + parent: 4812 + - uid: 13508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,2.5 + parent: 4812 + - uid: 13539 + components: + - type: Transform + pos: -51.5,5.5 + parent: 4812 - proto: GasPipeFourway entities: - uid: 402 @@ -38367,70 +41676,70 @@ entities: pos: -3.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 428 components: - type: Transform pos: -3.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 431 components: - type: Transform pos: -3.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 445 components: - type: Transform pos: -5.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 566 components: - type: Transform pos: -1.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 583 components: - type: Transform pos: -1.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 664 components: - type: Transform pos: -25.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2945 components: - type: Transform pos: 19.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2960 components: - type: Transform pos: 15.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2978 components: - type: Transform pos: 15.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3804 components: - type: Transform @@ -38438,69 +41747,69 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4156 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5086 components: - type: Transform pos: 0.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5111 components: - type: Transform pos: -6.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5189 components: - type: Transform pos: -10.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5565 components: - type: Transform pos: 9.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7276 components: - type: Transform pos: -16.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8764 components: - type: Transform pos: -30.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 9572 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12010 components: - type: Transform pos: -49.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12011 components: - type: Transform pos: -48.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 251 @@ -38510,7 +41819,7 @@ entities: pos: -25.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 252 components: - type: Transform @@ -38518,7 +41827,7 @@ entities: pos: -22.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 253 components: - type: Transform @@ -38526,7 +41835,7 @@ entities: pos: -23.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 254 components: - type: Transform @@ -38534,350 +41843,350 @@ entities: pos: -24.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 368 components: - type: Transform pos: -3.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 369 components: - type: Transform pos: -3.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 370 components: - type: Transform pos: -3.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 371 components: - type: Transform pos: -3.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 372 components: - type: Transform pos: -3.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 374 components: - type: Transform pos: -3.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 375 components: - type: Transform pos: -3.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 377 components: - type: Transform pos: -3.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 378 components: - type: Transform pos: -3.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 379 components: - type: Transform pos: -3.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 380 components: - type: Transform pos: -3.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 381 components: - type: Transform pos: -3.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 382 components: - type: Transform pos: -3.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 383 components: - type: Transform pos: -3.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 385 components: - type: Transform pos: -3.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 386 components: - type: Transform pos: -3.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 388 components: - type: Transform pos: -3.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 389 components: - type: Transform pos: -3.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 390 components: - type: Transform pos: -3.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 391 components: - type: Transform pos: -3.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 392 components: - type: Transform pos: -3.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 393 components: - type: Transform pos: -3.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 395 components: - type: Transform pos: -3.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 396 components: - type: Transform pos: -3.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 397 components: - type: Transform pos: -3.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 398 components: - type: Transform pos: -1.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 399 components: - type: Transform pos: -1.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 400 components: - type: Transform pos: -1.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 401 components: - type: Transform pos: -1.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 403 components: - type: Transform pos: -1.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 404 components: - type: Transform pos: -1.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 405 components: - type: Transform pos: -1.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 406 components: - type: Transform pos: -1.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 408 components: - type: Transform pos: -1.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 409 components: - type: Transform pos: -1.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 410 components: - type: Transform pos: -1.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 411 components: - type: Transform pos: -1.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform pos: -1.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 414 components: - type: Transform pos: -1.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 415 components: - type: Transform pos: -1.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 416 components: - type: Transform pos: -1.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 419 components: - type: Transform pos: -1.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 420 components: - type: Transform pos: -1.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform pos: -1.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform pos: -1.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 424 components: - type: Transform pos: -1.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform pos: -1.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 426 components: - type: Transform pos: -1.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform pos: -1.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 430 components: - type: Transform @@ -38885,7 +42194,7 @@ entities: pos: -0.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 432 components: - type: Transform @@ -38893,7 +42202,7 @@ entities: pos: 1.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 433 components: - type: Transform @@ -38901,7 +42210,7 @@ entities: pos: 2.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 434 components: - type: Transform @@ -38909,7 +42218,7 @@ entities: pos: 3.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 435 components: - type: Transform @@ -38917,7 +42226,7 @@ entities: pos: 4.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 436 components: - type: Transform @@ -38925,7 +42234,7 @@ entities: pos: 5.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 437 components: - type: Transform @@ -38933,7 +42242,7 @@ entities: pos: 6.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 438 components: - type: Transform @@ -38941,7 +42250,7 @@ entities: pos: 7.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 439 components: - type: Transform @@ -38949,7 +42258,7 @@ entities: pos: 8.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform @@ -38957,7 +42266,7 @@ entities: pos: 9.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 442 components: - type: Transform @@ -38965,7 +42274,7 @@ entities: pos: -2.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 443 components: - type: Transform @@ -38973,7 +42282,7 @@ entities: pos: -3.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 444 components: - type: Transform @@ -38981,7 +42290,7 @@ entities: pos: -4.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 446 components: - type: Transform @@ -38989,7 +42298,7 @@ entities: pos: -6.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 447 components: - type: Transform @@ -38997,7 +42306,7 @@ entities: pos: -7.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 448 components: - type: Transform @@ -39005,7 +42314,7 @@ entities: pos: -8.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 449 components: - type: Transform @@ -39013,7 +42322,7 @@ entities: pos: -9.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 450 components: - type: Transform @@ -39021,7 +42330,7 @@ entities: pos: -17.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 451 components: - type: Transform @@ -39029,7 +42338,7 @@ entities: pos: -11.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 452 components: - type: Transform @@ -39037,7 +42346,7 @@ entities: pos: -12.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 453 components: - type: Transform @@ -39045,7 +42354,7 @@ entities: pos: -13.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 455 components: - type: Transform @@ -39053,7 +42362,7 @@ entities: pos: -15.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 456 components: - type: Transform @@ -39061,7 +42370,7 @@ entities: pos: -16.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 457 components: - type: Transform @@ -39069,7 +42378,7 @@ entities: pos: -17.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 458 components: - type: Transform @@ -39077,7 +42386,7 @@ entities: pos: -18.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 459 components: - type: Transform @@ -39085,7 +42394,7 @@ entities: pos: -19.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 460 components: - type: Transform @@ -39093,7 +42402,7 @@ entities: pos: -20.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 461 components: - type: Transform @@ -39101,7 +42410,7 @@ entities: pos: -21.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 462 components: - type: Transform @@ -39109,7 +42418,7 @@ entities: pos: -22.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 463 components: - type: Transform @@ -39117,112 +42426,112 @@ entities: pos: -23.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 465 components: - type: Transform pos: -25.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 466 components: - type: Transform pos: -25.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 467 components: - type: Transform pos: -25.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 468 components: - type: Transform pos: -25.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 469 components: - type: Transform pos: -25.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 470 components: - type: Transform pos: -25.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 472 components: - type: Transform pos: -25.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 474 components: - type: Transform pos: -25.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 475 components: - type: Transform pos: -25.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 476 components: - type: Transform pos: -25.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 478 components: - type: Transform pos: -25.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 479 components: - type: Transform pos: -25.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 480 components: - type: Transform pos: -25.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 481 components: - type: Transform pos: -25.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 482 components: - type: Transform pos: -25.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 484 components: - type: Transform @@ -39230,7 +42539,7 @@ entities: pos: -23.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 485 components: - type: Transform @@ -39238,7 +42547,7 @@ entities: pos: -22.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 487 components: - type: Transform @@ -39246,7 +42555,7 @@ entities: pos: -22.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 488 components: - type: Transform @@ -39254,7 +42563,7 @@ entities: pos: -22.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 489 components: - type: Transform @@ -39262,7 +42571,7 @@ entities: pos: -22.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 491 components: - type: Transform @@ -39270,7 +42579,7 @@ entities: pos: -22.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 492 components: - type: Transform @@ -39278,7 +42587,7 @@ entities: pos: -22.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 493 components: - type: Transform @@ -39286,7 +42595,7 @@ entities: pos: -22.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 494 components: - type: Transform @@ -39294,7 +42603,7 @@ entities: pos: -22.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform @@ -39302,7 +42611,7 @@ entities: pos: -22.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 497 components: - type: Transform @@ -39310,7 +42619,7 @@ entities: pos: -20.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 498 components: - type: Transform @@ -39318,7 +42627,7 @@ entities: pos: -19.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 499 components: - type: Transform @@ -39326,7 +42635,7 @@ entities: pos: -18.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 500 components: - type: Transform @@ -39334,7 +42643,7 @@ entities: pos: -17.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 501 components: - type: Transform @@ -39342,7 +42651,7 @@ entities: pos: -16.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 502 components: - type: Transform @@ -39350,7 +42659,7 @@ entities: pos: -15.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 503 components: - type: Transform @@ -39358,7 +42667,7 @@ entities: pos: -14.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 504 components: - type: Transform @@ -39366,7 +42675,7 @@ entities: pos: -13.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform @@ -39374,7 +42683,7 @@ entities: pos: -12.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 507 components: - type: Transform @@ -39382,7 +42691,7 @@ entities: pos: -10.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 508 components: - type: Transform @@ -39390,7 +42699,7 @@ entities: pos: -9.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform @@ -39398,7 +42707,7 @@ entities: pos: -8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 511 components: - type: Transform @@ -39406,7 +42715,7 @@ entities: pos: -6.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 512 components: - type: Transform @@ -39414,7 +42723,7 @@ entities: pos: -5.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 514 components: - type: Transform @@ -39422,7 +42731,7 @@ entities: pos: -3.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 515 components: - type: Transform @@ -39430,7 +42739,7 @@ entities: pos: -2.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform @@ -39438,7 +42747,7 @@ entities: pos: -0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 517 components: - type: Transform @@ -39446,7 +42755,7 @@ entities: pos: 0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 518 components: - type: Transform @@ -39454,7 +42763,7 @@ entities: pos: 1.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 520 components: - type: Transform @@ -39462,7 +42771,7 @@ entities: pos: 3.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 521 components: - type: Transform @@ -39470,7 +42779,7 @@ entities: pos: 4.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 522 components: - type: Transform @@ -39478,7 +42787,7 @@ entities: pos: 5.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 524 components: - type: Transform @@ -39486,7 +42795,7 @@ entities: pos: 7.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 525 components: - type: Transform @@ -39494,7 +42803,7 @@ entities: pos: 8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 526 components: - type: Transform @@ -39502,182 +42811,182 @@ entities: pos: 9.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 528 components: - type: Transform pos: 11.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 529 components: - type: Transform pos: 11.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 530 components: - type: Transform pos: 11.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 531 components: - type: Transform pos: 11.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 533 components: - type: Transform pos: 11.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 534 components: - type: Transform pos: 11.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 535 components: - type: Transform pos: 11.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 536 components: - type: Transform pos: 11.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 537 components: - type: Transform pos: 11.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 538 components: - type: Transform pos: 11.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 541 components: - type: Transform pos: 11.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 542 components: - type: Transform pos: 11.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 543 components: - type: Transform pos: 11.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 544 components: - type: Transform pos: 11.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 545 components: - type: Transform pos: 11.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 546 components: - type: Transform pos: 11.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 547 components: - type: Transform pos: 11.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 549 components: - type: Transform pos: 11.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 551 components: - type: Transform pos: 11.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 552 components: - type: Transform pos: 11.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 553 components: - type: Transform pos: 11.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 554 components: - type: Transform pos: 11.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 555 components: - type: Transform pos: 11.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 556 components: - type: Transform pos: 11.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 557 components: - type: Transform pos: 11.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 564 components: - type: Transform @@ -39685,14 +42994,14 @@ entities: pos: -3.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 567 components: - type: Transform pos: -3.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 568 components: - type: Transform @@ -39700,7 +43009,7 @@ entities: pos: -2.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 569 components: - type: Transform @@ -39708,7 +43017,7 @@ entities: pos: -1.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 571 components: - type: Transform @@ -39716,7 +43025,7 @@ entities: pos: 0.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 572 components: - type: Transform @@ -39724,7 +43033,7 @@ entities: pos: 1.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 573 components: - type: Transform @@ -39732,7 +43041,7 @@ entities: pos: 2.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 575 components: - type: Transform @@ -39740,7 +43049,7 @@ entities: pos: 4.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 576 components: - type: Transform @@ -39748,7 +43057,7 @@ entities: pos: 5.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 577 components: - type: Transform @@ -39756,7 +43065,7 @@ entities: pos: 6.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 578 components: - type: Transform @@ -39764,7 +43073,7 @@ entities: pos: 7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 580 components: - type: Transform @@ -39772,7 +43081,7 @@ entities: pos: 9.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 581 components: - type: Transform @@ -39780,7 +43089,7 @@ entities: pos: 10.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 582 components: - type: Transform @@ -39788,7 +43097,7 @@ entities: pos: 11.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 584 components: - type: Transform @@ -39796,7 +43105,7 @@ entities: pos: 12.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 585 components: - type: Transform @@ -39804,7 +43113,7 @@ entities: pos: 12.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 586 components: - type: Transform @@ -39812,7 +43121,7 @@ entities: pos: 12.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 588 components: - type: Transform @@ -39820,7 +43129,7 @@ entities: pos: 12.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 589 components: - type: Transform @@ -39828,7 +43137,7 @@ entities: pos: 12.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 590 components: - type: Transform @@ -39836,7 +43145,7 @@ entities: pos: 12.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 591 components: - type: Transform @@ -39844,7 +43153,7 @@ entities: pos: 12.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 592 components: - type: Transform @@ -39852,7 +43161,7 @@ entities: pos: 12.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 593 components: - type: Transform @@ -39860,7 +43169,7 @@ entities: pos: 12.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 595 components: - type: Transform @@ -39868,7 +43177,7 @@ entities: pos: 12.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 596 components: - type: Transform @@ -39876,7 +43185,7 @@ entities: pos: 12.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 597 components: - type: Transform @@ -39884,7 +43193,7 @@ entities: pos: 12.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 598 components: - type: Transform @@ -39892,7 +43201,7 @@ entities: pos: 12.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 599 components: - type: Transform @@ -39900,7 +43209,7 @@ entities: pos: 12.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 601 components: - type: Transform @@ -39908,7 +43217,7 @@ entities: pos: 12.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 602 components: - type: Transform @@ -39916,7 +43225,7 @@ entities: pos: 12.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 603 components: - type: Transform @@ -39924,7 +43233,7 @@ entities: pos: 12.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 604 components: - type: Transform @@ -39932,7 +43241,7 @@ entities: pos: 12.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 606 components: - type: Transform @@ -39940,7 +43249,7 @@ entities: pos: 12.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 607 components: - type: Transform @@ -39948,7 +43257,7 @@ entities: pos: 12.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 608 components: - type: Transform @@ -39956,7 +43265,7 @@ entities: pos: 12.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 609 components: - type: Transform @@ -39964,7 +43273,7 @@ entities: pos: 12.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 610 components: - type: Transform @@ -39972,7 +43281,7 @@ entities: pos: 12.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 612 components: - type: Transform @@ -39980,7 +43289,7 @@ entities: pos: 12.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 613 components: - type: Transform @@ -39988,7 +43297,7 @@ entities: pos: 12.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 614 components: - type: Transform @@ -39996,7 +43305,7 @@ entities: pos: 12.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 615 components: - type: Transform @@ -40004,7 +43313,7 @@ entities: pos: 11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 616 components: - type: Transform @@ -40012,7 +43321,7 @@ entities: pos: 10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 619 components: - type: Transform @@ -40020,7 +43329,7 @@ entities: pos: 7.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 620 components: - type: Transform @@ -40028,7 +43337,7 @@ entities: pos: 6.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 621 components: - type: Transform @@ -40036,7 +43345,7 @@ entities: pos: 5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 622 components: - type: Transform @@ -40044,7 +43353,7 @@ entities: pos: 4.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 623 components: - type: Transform @@ -40052,7 +43361,7 @@ entities: pos: 3.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 624 components: - type: Transform @@ -40060,7 +43369,7 @@ entities: pos: 2.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 626 components: - type: Transform @@ -40068,7 +43377,7 @@ entities: pos: 0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 627 components: - type: Transform @@ -40076,7 +43385,7 @@ entities: pos: -0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 628 components: - type: Transform @@ -40084,7 +43393,7 @@ entities: pos: -1.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 629 components: - type: Transform @@ -40092,7 +43401,7 @@ entities: pos: -2.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 630 components: - type: Transform @@ -40100,7 +43409,7 @@ entities: pos: -4.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 631 components: - type: Transform @@ -40108,7 +43417,7 @@ entities: pos: -5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 633 components: - type: Transform @@ -40116,7 +43425,7 @@ entities: pos: -7.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 634 components: - type: Transform @@ -40124,7 +43433,7 @@ entities: pos: -8.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 635 components: - type: Transform @@ -40132,7 +43441,7 @@ entities: pos: -9.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 636 components: - type: Transform @@ -40140,7 +43449,7 @@ entities: pos: -10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 637 components: - type: Transform @@ -40148,7 +43457,7 @@ entities: pos: -11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 638 components: - type: Transform @@ -40156,7 +43465,7 @@ entities: pos: -12.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 639 components: - type: Transform @@ -40164,7 +43473,7 @@ entities: pos: -13.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 640 components: - type: Transform @@ -40172,7 +43481,7 @@ entities: pos: -14.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 641 components: - type: Transform @@ -40180,7 +43489,7 @@ entities: pos: -15.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 644 components: - type: Transform @@ -40188,7 +43497,7 @@ entities: pos: -18.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 646 components: - type: Transform @@ -40196,7 +43505,7 @@ entities: pos: -20.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 647 components: - type: Transform @@ -40204,7 +43513,7 @@ entities: pos: -21.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 648 components: - type: Transform @@ -40212,7 +43521,7 @@ entities: pos: -22.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 649 components: - type: Transform @@ -40220,7 +43529,7 @@ entities: pos: -23.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 650 components: - type: Transform @@ -40228,126 +43537,126 @@ entities: pos: -24.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 652 components: - type: Transform pos: -26.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 653 components: - type: Transform pos: -26.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 654 components: - type: Transform pos: -26.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 655 components: - type: Transform pos: -26.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 656 components: - type: Transform pos: -26.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 657 components: - type: Transform pos: -26.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 658 components: - type: Transform pos: -26.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 659 components: - type: Transform pos: -26.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 660 components: - type: Transform pos: -26.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 661 components: - type: Transform pos: -26.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 663 components: - type: Transform pos: -26.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 665 components: - type: Transform pos: -26.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 667 components: - type: Transform pos: -26.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 668 components: - type: Transform pos: -26.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 669 components: - type: Transform pos: -26.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 670 components: - type: Transform pos: -26.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 671 components: - type: Transform pos: -26.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 672 components: - type: Transform @@ -40355,7 +43664,7 @@ entities: pos: -25.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 673 components: - type: Transform @@ -40363,7 +43672,7 @@ entities: pos: -24.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 674 components: - type: Transform @@ -40371,7 +43680,7 @@ entities: pos: -23.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 676 components: - type: Transform @@ -40379,7 +43688,7 @@ entities: pos: -23.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 677 components: - type: Transform @@ -40387,7 +43696,7 @@ entities: pos: -23.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 678 components: - type: Transform @@ -40395,7 +43704,7 @@ entities: pos: -23.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 680 components: - type: Transform @@ -40403,7 +43712,7 @@ entities: pos: -23.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 683 components: - type: Transform @@ -40411,7 +43720,7 @@ entities: pos: -23.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 684 components: - type: Transform @@ -40419,7 +43728,7 @@ entities: pos: -23.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 685 components: - type: Transform @@ -40427,7 +43736,7 @@ entities: pos: -22.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 686 components: - type: Transform @@ -40435,7 +43744,7 @@ entities: pos: -21.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 687 components: - type: Transform @@ -40443,7 +43752,7 @@ entities: pos: -20.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 688 components: - type: Transform @@ -40451,7 +43760,7 @@ entities: pos: -19.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 689 components: - type: Transform @@ -40459,7 +43768,7 @@ entities: pos: -18.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 690 components: - type: Transform @@ -40467,7 +43776,7 @@ entities: pos: -17.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 691 components: - type: Transform @@ -40475,7 +43784,7 @@ entities: pos: -16.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 692 components: - type: Transform @@ -40483,7 +43792,7 @@ entities: pos: -15.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 693 components: - type: Transform @@ -40491,7 +43800,7 @@ entities: pos: -14.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 695 components: - type: Transform @@ -40499,7 +43808,7 @@ entities: pos: -12.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 696 components: - type: Transform @@ -40507,7 +43816,7 @@ entities: pos: -11.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 697 components: - type: Transform @@ -40515,7 +43824,7 @@ entities: pos: -10.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 698 components: - type: Transform @@ -40523,7 +43832,7 @@ entities: pos: -9.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 700 components: - type: Transform @@ -40531,7 +43840,7 @@ entities: pos: -7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 701 components: - type: Transform @@ -40539,7 +43848,7 @@ entities: pos: -6.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 702 components: - type: Transform @@ -40547,7 +43856,7 @@ entities: pos: -5.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 703 components: - type: Transform @@ -40555,7 +43864,7 @@ entities: pos: -4.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 789 components: - type: Transform @@ -40563,7 +43872,7 @@ entities: pos: -17.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 790 components: - type: Transform @@ -40571,7 +43880,7 @@ entities: pos: -17.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 791 components: - type: Transform @@ -40579,7 +43888,7 @@ entities: pos: -4.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 792 components: - type: Transform @@ -40587,7 +43896,7 @@ entities: pos: -5.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 793 components: - type: Transform @@ -40595,7 +43904,7 @@ entities: pos: -6.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 794 components: - type: Transform @@ -40603,7 +43912,7 @@ entities: pos: -7.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 795 components: - type: Transform @@ -40611,7 +43920,7 @@ entities: pos: -8.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 796 components: - type: Transform @@ -40619,7 +43928,7 @@ entities: pos: -9.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 798 components: - type: Transform @@ -40627,7 +43936,7 @@ entities: pos: -11.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 799 components: - type: Transform @@ -40635,7 +43944,7 @@ entities: pos: -12.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 800 components: - type: Transform @@ -40643,7 +43952,7 @@ entities: pos: -13.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 801 components: - type: Transform @@ -40651,7 +43960,7 @@ entities: pos: -14.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 802 components: - type: Transform @@ -40659,7 +43968,7 @@ entities: pos: -15.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 803 components: - type: Transform @@ -40667,14 +43976,14 @@ entities: pos: -16.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 804 components: - type: Transform pos: -17.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 807 components: - type: Transform @@ -40682,7 +43991,7 @@ entities: pos: -10.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 809 components: - type: Transform @@ -40690,7 +43999,7 @@ entities: pos: -0.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 810 components: - type: Transform @@ -40698,7 +44007,7 @@ entities: pos: 0.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 811 components: - type: Transform @@ -40706,7 +44015,7 @@ entities: pos: 1.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 812 components: - type: Transform @@ -40714,7 +44023,7 @@ entities: pos: 2.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 813 components: - type: Transform @@ -40722,7 +44031,7 @@ entities: pos: 3.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 821 components: - type: Transform @@ -40730,7 +44039,7 @@ entities: pos: -1.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 822 components: - type: Transform @@ -40738,7 +44047,7 @@ entities: pos: -0.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 823 components: - type: Transform @@ -40746,7 +44055,7 @@ entities: pos: 0.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 824 components: - type: Transform @@ -40754,7 +44063,7 @@ entities: pos: 1.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 825 components: - type: Transform @@ -40762,7 +44071,7 @@ entities: pos: 2.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 826 components: - type: Transform @@ -40770,7 +44079,7 @@ entities: pos: 3.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 827 components: - type: Transform @@ -40778,7 +44087,7 @@ entities: pos: 3.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 828 components: - type: Transform @@ -40786,7 +44095,7 @@ entities: pos: 3.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 829 components: - type: Transform @@ -40794,7 +44103,7 @@ entities: pos: 3.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 830 components: - type: Transform @@ -40802,21 +44111,21 @@ entities: pos: 3.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 836 components: - type: Transform pos: 4.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 837 components: - type: Transform pos: 4.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 839 components: - type: Transform @@ -40824,7 +44133,7 @@ entities: pos: 3.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 840 components: - type: Transform @@ -40832,7 +44141,7 @@ entities: pos: 3.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 841 components: - type: Transform @@ -40840,7 +44149,7 @@ entities: pos: 3.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 842 components: - type: Transform @@ -40848,7 +44157,7 @@ entities: pos: 3.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 844 components: - type: Transform @@ -40856,7 +44165,7 @@ entities: pos: 4.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 845 components: - type: Transform @@ -40864,7 +44173,7 @@ entities: pos: 5.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 851 components: - type: Transform @@ -40872,7 +44181,7 @@ entities: pos: -15.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 852 components: - type: Transform @@ -40880,7 +44189,7 @@ entities: pos: -14.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 853 components: - type: Transform @@ -40888,7 +44197,7 @@ entities: pos: -13.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 854 components: - type: Transform @@ -40896,7 +44205,7 @@ entities: pos: -12.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 855 components: - type: Transform @@ -40904,7 +44213,7 @@ entities: pos: -11.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 866 components: - type: Transform @@ -40912,7 +44221,7 @@ entities: pos: -4.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 867 components: - type: Transform @@ -40920,7 +44229,7 @@ entities: pos: -5.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 868 components: - type: Transform @@ -40928,7 +44237,7 @@ entities: pos: -6.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 869 components: - type: Transform @@ -40936,7 +44245,7 @@ entities: pos: -7.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 872 components: - type: Transform @@ -40944,7 +44253,7 @@ entities: pos: -8.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 873 components: - type: Transform @@ -40952,7 +44261,7 @@ entities: pos: -8.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 874 components: - type: Transform @@ -40960,7 +44269,7 @@ entities: pos: -8.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 875 components: - type: Transform @@ -40968,7 +44277,7 @@ entities: pos: -8.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 878 components: - type: Transform @@ -40976,7 +44285,7 @@ entities: pos: -2.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 879 components: - type: Transform @@ -40984,7 +44293,7 @@ entities: pos: -3.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 880 components: - type: Transform @@ -40992,7 +44301,7 @@ entities: pos: -4.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 881 components: - type: Transform @@ -41000,7 +44309,7 @@ entities: pos: -5.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 882 components: - type: Transform @@ -41008,7 +44317,7 @@ entities: pos: -6.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 883 components: - type: Transform @@ -41016,7 +44325,7 @@ entities: pos: -7.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 884 components: - type: Transform @@ -41024,7 +44333,7 @@ entities: pos: -8.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1502 components: - type: Transform @@ -41032,7 +44341,7 @@ entities: pos: -22.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1503 components: - type: Transform @@ -41040,7 +44349,7 @@ entities: pos: -22.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1505 components: - type: Transform @@ -41048,7 +44357,7 @@ entities: pos: -24.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1506 components: - type: Transform @@ -41056,7 +44365,7 @@ entities: pos: -23.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1507 components: - type: Transform @@ -41064,21 +44373,21 @@ entities: pos: -22.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1509 components: - type: Transform pos: -21.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1510 components: - type: Transform pos: -21.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1680 components: - type: Transform @@ -41086,7 +44395,7 @@ entities: pos: -23.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1681 components: - type: Transform @@ -41094,7 +44403,7 @@ entities: pos: -22.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1682 components: - type: Transform @@ -41102,7 +44411,7 @@ entities: pos: -24.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1785 components: - type: Transform @@ -41110,7 +44419,7 @@ entities: pos: 21.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1786 components: - type: Transform @@ -41118,49 +44427,49 @@ entities: pos: 21.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1808 components: - type: Transform pos: 6.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1809 components: - type: Transform pos: 6.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1810 components: - type: Transform pos: 8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1811 components: - type: Transform pos: 8.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1812 components: - type: Transform pos: 8.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1815 components: - type: Transform pos: -0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1835 components: - type: Transform @@ -41168,42 +44477,42 @@ entities: pos: 3.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1847 components: - type: Transform pos: -1.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1848 components: - type: Transform pos: -1.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1849 components: - type: Transform pos: -1.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1850 components: - type: Transform pos: -3.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1851 components: - type: Transform pos: -3.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1984 components: - type: Transform @@ -41211,7 +44520,7 @@ entities: pos: -8.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1987 components: - type: Transform @@ -41219,7 +44528,7 @@ entities: pos: -8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1988 components: - type: Transform @@ -41227,7 +44536,7 @@ entities: pos: -8.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1989 components: - type: Transform @@ -41235,7 +44544,7 @@ entities: pos: -8.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1990 components: - type: Transform @@ -41243,7 +44552,7 @@ entities: pos: -8.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1991 components: - type: Transform @@ -41251,7 +44560,7 @@ entities: pos: -8.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1993 components: - type: Transform @@ -41259,7 +44568,7 @@ entities: pos: -8.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1994 components: - type: Transform @@ -41267,7 +44576,7 @@ entities: pos: -8.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1995 components: - type: Transform @@ -41275,7 +44584,7 @@ entities: pos: -8.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1996 components: - type: Transform @@ -41283,7 +44592,7 @@ entities: pos: 3.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1998 components: - type: Transform @@ -41291,7 +44600,7 @@ entities: pos: 3.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1999 components: - type: Transform @@ -41299,7 +44608,7 @@ entities: pos: 3.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2001 components: - type: Transform @@ -41307,7 +44616,7 @@ entities: pos: 3.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2002 components: - type: Transform @@ -41315,7 +44624,7 @@ entities: pos: 3.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2003 components: - type: Transform @@ -41323,7 +44632,7 @@ entities: pos: 3.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2005 components: - type: Transform @@ -41331,7 +44640,7 @@ entities: pos: 3.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2006 components: - type: Transform @@ -41339,7 +44648,7 @@ entities: pos: 3.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2007 components: - type: Transform @@ -41347,7 +44656,7 @@ entities: pos: 3.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2010 components: - type: Transform @@ -41355,7 +44664,7 @@ entities: pos: -7.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2011 components: - type: Transform @@ -41363,7 +44672,7 @@ entities: pos: -6.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2013 components: - type: Transform @@ -41371,7 +44680,7 @@ entities: pos: -4.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2014 components: - type: Transform @@ -41379,7 +44688,7 @@ entities: pos: -3.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2015 components: - type: Transform @@ -41387,7 +44696,7 @@ entities: pos: -2.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2016 components: - type: Transform @@ -41395,7 +44704,7 @@ entities: pos: -1.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2017 components: - type: Transform @@ -41403,7 +44712,7 @@ entities: pos: -0.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2019 components: - type: Transform @@ -41411,7 +44720,7 @@ entities: pos: 1.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2020 components: - type: Transform @@ -41419,7 +44728,7 @@ entities: pos: 2.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2021 components: - type: Transform @@ -41427,7 +44736,7 @@ entities: pos: 1.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2023 components: - type: Transform @@ -41435,7 +44744,7 @@ entities: pos: -0.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2024 components: - type: Transform @@ -41443,7 +44752,7 @@ entities: pos: -1.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2025 components: - type: Transform @@ -41451,7 +44760,7 @@ entities: pos: -2.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2026 components: - type: Transform @@ -41459,7 +44768,7 @@ entities: pos: -3.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2027 components: - type: Transform @@ -41467,7 +44776,7 @@ entities: pos: -4.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2029 components: - type: Transform @@ -41475,7 +44784,7 @@ entities: pos: -6.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2030 components: - type: Transform @@ -41483,7 +44792,7 @@ entities: pos: -7.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2031 components: - type: Transform @@ -41491,7 +44800,7 @@ entities: pos: -7.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2032 components: - type: Transform @@ -41499,7 +44808,7 @@ entities: pos: -7.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2033 components: - type: Transform @@ -41507,7 +44816,7 @@ entities: pos: -7.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2034 components: - type: Transform @@ -41515,7 +44824,7 @@ entities: pos: -7.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2036 components: - type: Transform @@ -41523,7 +44832,7 @@ entities: pos: -7.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2038 components: - type: Transform @@ -41531,7 +44840,7 @@ entities: pos: -7.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2039 components: - type: Transform @@ -41539,7 +44848,7 @@ entities: pos: -7.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2040 components: - type: Transform @@ -41547,7 +44856,7 @@ entities: pos: -7.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2041 components: - type: Transform @@ -41555,7 +44864,7 @@ entities: pos: -7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2042 components: - type: Transform @@ -41563,7 +44872,7 @@ entities: pos: 2.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2043 components: - type: Transform @@ -41571,7 +44880,7 @@ entities: pos: 2.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2044 components: - type: Transform @@ -41579,7 +44888,7 @@ entities: pos: 2.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2045 components: - type: Transform @@ -41587,7 +44896,7 @@ entities: pos: 2.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2047 components: - type: Transform @@ -41595,7 +44904,7 @@ entities: pos: 2.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2049 components: - type: Transform @@ -41603,7 +44912,7 @@ entities: pos: 2.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2050 components: - type: Transform @@ -41611,7 +44920,7 @@ entities: pos: 2.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2051 components: - type: Transform @@ -41619,7 +44928,7 @@ entities: pos: 2.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2052 components: - type: Transform @@ -41627,7 +44936,7 @@ entities: pos: 2.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2053 components: - type: Transform @@ -41635,7 +44944,7 @@ entities: pos: 2.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2057 components: - type: Transform @@ -41643,7 +44952,7 @@ entities: pos: 4.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2058 components: - type: Transform @@ -41651,7 +44960,7 @@ entities: pos: 5.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2059 components: - type: Transform @@ -41659,7 +44968,7 @@ entities: pos: 6.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2060 components: - type: Transform @@ -41667,7 +44976,7 @@ entities: pos: 7.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2061 components: - type: Transform @@ -41675,7 +44984,7 @@ entities: pos: 8.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2062 components: - type: Transform @@ -41683,7 +44992,7 @@ entities: pos: 8.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2063 components: - type: Transform @@ -41691,7 +45000,7 @@ entities: pos: 8.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2064 components: - type: Transform @@ -41699,7 +45008,7 @@ entities: pos: 4.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2066 components: - type: Transform @@ -41707,7 +45016,7 @@ entities: pos: 5.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2067 components: - type: Transform @@ -41715,7 +45024,7 @@ entities: pos: 6.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2068 components: - type: Transform @@ -41723,7 +45032,7 @@ entities: pos: 6.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2069 components: - type: Transform @@ -41731,7 +45040,7 @@ entities: pos: 6.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2070 components: - type: Transform @@ -41739,7 +45048,7 @@ entities: pos: 6.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2420 components: - type: Transform @@ -41747,7 +45056,7 @@ entities: pos: -9.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2421 components: - type: Transform @@ -41755,7 +45064,7 @@ entities: pos: -10.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2422 components: - type: Transform @@ -41763,7 +45072,7 @@ entities: pos: -11.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2423 components: - type: Transform @@ -41771,7 +45080,7 @@ entities: pos: -12.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2425 components: - type: Transform @@ -41779,7 +45088,7 @@ entities: pos: -13.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2426 components: - type: Transform @@ -41787,7 +45096,7 @@ entities: pos: -13.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2427 components: - type: Transform @@ -41795,7 +45104,7 @@ entities: pos: -13.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2428 components: - type: Transform @@ -41803,7 +45112,7 @@ entities: pos: -13.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2431 components: - type: Transform @@ -41811,7 +45120,7 @@ entities: pos: -8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2432 components: - type: Transform @@ -41819,7 +45128,7 @@ entities: pos: -9.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2433 components: - type: Transform @@ -41827,7 +45136,7 @@ entities: pos: -10.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2434 components: - type: Transform @@ -41835,28 +45144,52 @@ entities: pos: -11.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2436 components: - type: Transform pos: -12.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2437 components: - type: Transform pos: -12.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2438 components: - type: Transform pos: -12.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 2915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2943 components: - type: Transform @@ -41864,7 +45197,7 @@ entities: pos: 13.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2944 components: - type: Transform @@ -41872,7 +45205,7 @@ entities: pos: 14.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2946 components: - type: Transform @@ -41880,7 +45213,7 @@ entities: pos: 16.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2947 components: - type: Transform @@ -41888,7 +45221,7 @@ entities: pos: 17.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2948 components: - type: Transform @@ -41896,7 +45229,7 @@ entities: pos: 18.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2949 components: - type: Transform @@ -41904,7 +45237,7 @@ entities: pos: 19.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2950 components: - type: Transform @@ -41912,7 +45245,7 @@ entities: pos: 20.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2951 components: - type: Transform @@ -41920,7 +45253,7 @@ entities: pos: 21.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2952 components: - type: Transform @@ -41928,7 +45261,7 @@ entities: pos: 22.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2953 components: - type: Transform @@ -41936,7 +45269,7 @@ entities: pos: 12.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2954 components: - type: Transform @@ -41944,7 +45277,7 @@ entities: pos: 13.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2955 components: - type: Transform @@ -41952,7 +45285,7 @@ entities: pos: 14.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2956 components: - type: Transform @@ -41960,7 +45293,7 @@ entities: pos: 15.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2957 components: - type: Transform @@ -41968,7 +45301,7 @@ entities: pos: 16.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2958 components: - type: Transform @@ -41976,7 +45309,7 @@ entities: pos: 17.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2959 components: - type: Transform @@ -41984,7 +45317,7 @@ entities: pos: 18.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2961 components: - type: Transform @@ -41992,7 +45325,7 @@ entities: pos: 20.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2962 components: - type: Transform @@ -42000,23 +45333,7 @@ entities: pos: 21.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 2970 components: - type: Transform @@ -42024,7 +45341,7 @@ entities: pos: 15.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2971 components: - type: Transform @@ -42032,7 +45349,7 @@ entities: pos: 15.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2973 components: - type: Transform @@ -42040,7 +45357,7 @@ entities: pos: 15.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2975 components: - type: Transform @@ -42048,7 +45365,7 @@ entities: pos: 15.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2976 components: - type: Transform @@ -42056,7 +45373,7 @@ entities: pos: 15.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2977 components: - type: Transform @@ -42064,7 +45381,7 @@ entities: pos: 15.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2979 components: - type: Transform @@ -42072,7 +45389,7 @@ entities: pos: 15.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2981 components: - type: Transform @@ -42080,7 +45397,7 @@ entities: pos: 15.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2982 components: - type: Transform @@ -42088,7 +45405,7 @@ entities: pos: 15.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2984 components: - type: Transform @@ -42096,7 +45413,7 @@ entities: pos: 19.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2985 components: - type: Transform @@ -42104,7 +45421,7 @@ entities: pos: 19.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2986 components: - type: Transform @@ -42112,7 +45429,7 @@ entities: pos: 19.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2988 components: - type: Transform @@ -42120,7 +45437,7 @@ entities: pos: 19.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2990 components: - type: Transform @@ -42128,7 +45445,7 @@ entities: pos: 19.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2991 components: - type: Transform @@ -42136,7 +45453,7 @@ entities: pos: 19.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2992 components: - type: Transform @@ -42144,7 +45461,7 @@ entities: pos: 19.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2993 components: - type: Transform @@ -42152,7 +45469,7 @@ entities: pos: 19.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2996 components: - type: Transform @@ -42160,7 +45477,7 @@ entities: pos: 18.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2997 components: - type: Transform @@ -42168,28 +45485,28 @@ entities: pos: 17.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2998 components: - type: Transform pos: 16.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2999 components: - type: Transform pos: 16.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3000 components: - type: Transform pos: 16.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3002 components: - type: Transform @@ -42197,7 +45514,7 @@ entities: pos: 16.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3003 components: - type: Transform @@ -42205,7 +45522,7 @@ entities: pos: 17.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3004 components: - type: Transform @@ -42213,7 +45530,7 @@ entities: pos: 18.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3005 components: - type: Transform @@ -42221,7 +45538,7 @@ entities: pos: 19.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3008 components: - type: Transform @@ -42229,7 +45546,7 @@ entities: pos: 16.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3009 components: - type: Transform @@ -42237,7 +45554,7 @@ entities: pos: 17.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3010 components: - type: Transform @@ -42245,14 +45562,14 @@ entities: pos: 18.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3025 components: - type: Transform pos: 15.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3382 components: - type: Transform @@ -42260,7 +45577,7 @@ entities: pos: -32.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3407 components: - type: Transform @@ -42268,7 +45585,7 @@ entities: pos: -31.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3707 components: - type: Transform @@ -42276,14 +45593,14 @@ entities: pos: -33.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3743 components: - type: Transform pos: -32.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3796 components: - type: Transform @@ -42477,7 +45794,7 @@ entities: pos: -19.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4011 components: - type: Transform @@ -42485,7 +45802,23 @@ entities: pos: -19.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 4048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4144 components: - type: Transform @@ -42493,7 +45826,7 @@ entities: pos: 13.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4145 components: - type: Transform @@ -42501,7 +45834,7 @@ entities: pos: 14.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4146 components: - type: Transform @@ -42509,7 +45842,7 @@ entities: pos: 15.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4147 components: - type: Transform @@ -42517,7 +45850,7 @@ entities: pos: 16.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4148 components: - type: Transform @@ -42525,7 +45858,7 @@ entities: pos: 17.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4149 components: - type: Transform @@ -42533,7 +45866,7 @@ entities: pos: 18.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4151 components: - type: Transform @@ -42541,7 +45874,7 @@ entities: pos: 20.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4152 components: - type: Transform @@ -42549,7 +45882,7 @@ entities: pos: 21.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4153 components: - type: Transform @@ -42557,7 +45890,7 @@ entities: pos: 22.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4154 components: - type: Transform @@ -42565,7 +45898,7 @@ entities: pos: 23.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4155 components: - type: Transform @@ -42573,23 +45906,7 @@ entities: pos: 24.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4159 components: - type: Transform @@ -42597,7 +45914,7 @@ entities: pos: 12.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4160 components: - type: Transform @@ -42605,7 +45922,7 @@ entities: pos: 13.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4161 components: - type: Transform @@ -42613,7 +45930,7 @@ entities: pos: 14.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4162 components: - type: Transform @@ -42621,7 +45938,7 @@ entities: pos: 15.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4163 components: - type: Transform @@ -42629,7 +45946,7 @@ entities: pos: 16.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4165 components: - type: Transform @@ -42637,7 +45954,7 @@ entities: pos: 18.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4166 components: - type: Transform @@ -42645,7 +45962,7 @@ entities: pos: 19.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4167 components: - type: Transform @@ -42653,7 +45970,7 @@ entities: pos: 20.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4168 components: - type: Transform @@ -42661,7 +45978,7 @@ entities: pos: 21.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4169 components: - type: Transform @@ -42669,7 +45986,7 @@ entities: pos: 22.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4170 components: - type: Transform @@ -42677,192 +45994,30 @@ entities: pos: 23.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4172 + color: '#990000FF' + - uid: 4184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4173 + color: '#990000FF' + - uid: 4185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4187 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4188 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4189 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4191 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4192 components: - type: Transform pos: 30.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4207 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4208 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 4215 components: - type: Transform @@ -42870,7 +46025,7 @@ entities: pos: 24.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4216 components: - type: Transform @@ -42878,7 +46033,7 @@ entities: pos: 24.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4217 components: - type: Transform @@ -42886,7 +46041,7 @@ entities: pos: 24.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4218 components: - type: Transform @@ -42894,7 +46049,7 @@ entities: pos: 24.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4219 components: - type: Transform @@ -42902,7 +46057,7 @@ entities: pos: 24.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4220 components: - type: Transform @@ -42910,7 +46065,7 @@ entities: pos: 24.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4222 components: - type: Transform @@ -42918,7 +46073,7 @@ entities: pos: 25.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4223 components: - type: Transform @@ -42926,7 +46081,7 @@ entities: pos: 25.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4224 components: - type: Transform @@ -42934,7 +46089,7 @@ entities: pos: 25.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4225 components: - type: Transform @@ -42942,14 +46097,14 @@ entities: pos: 25.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4228 components: - type: Transform pos: 25.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4229 components: - type: Transform @@ -42957,7 +46112,7 @@ entities: pos: 24.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4230 components: - type: Transform @@ -42965,7 +46120,39 @@ entities: pos: 23.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 4320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4459 components: - type: Transform @@ -42973,7 +46160,7 @@ entities: pos: 12.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4460 components: - type: Transform @@ -42981,7 +46168,7 @@ entities: pos: 13.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4461 components: - type: Transform @@ -42989,7 +46176,7 @@ entities: pos: 14.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4462 components: - type: Transform @@ -42997,7 +46184,7 @@ entities: pos: 13.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4463 components: - type: Transform @@ -43005,21 +46192,29 @@ entities: pos: 14.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 4576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4648 components: - type: Transform pos: -5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4842 components: - type: Transform pos: -16.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4857 components: - type: Transform @@ -43027,7 +46222,7 @@ entities: pos: -21.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4858 components: - type: Transform @@ -43035,7 +46230,7 @@ entities: pos: -22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4861 components: - type: Transform @@ -43043,7 +46238,7 @@ entities: pos: -26.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4862 components: - type: Transform @@ -43051,7 +46246,7 @@ entities: pos: -25.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4871 components: - type: Transform @@ -43059,7 +46254,7 @@ entities: pos: -16.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4872 components: - type: Transform @@ -43067,7 +46262,7 @@ entities: pos: -17.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4873 components: - type: Transform @@ -43075,7 +46270,7 @@ entities: pos: -15.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4874 components: - type: Transform @@ -43083,14 +46278,14 @@ entities: pos: -15.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4877 components: - type: Transform pos: -19.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4889 components: - type: Transform @@ -43098,7 +46293,7 @@ entities: pos: -16.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4891 components: - type: Transform @@ -43106,7 +46301,7 @@ entities: pos: -19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4933 components: - type: Transform @@ -43114,7 +46309,7 @@ entities: pos: -24.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4934 components: - type: Transform @@ -43122,7 +46317,7 @@ entities: pos: -27.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4938 components: - type: Transform @@ -43130,7 +46325,7 @@ entities: pos: -21.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4939 components: - type: Transform @@ -43138,7 +46333,7 @@ entities: pos: -20.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4943 components: - type: Transform @@ -43146,7 +46341,7 @@ entities: pos: -15.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4944 components: - type: Transform @@ -43154,14 +46349,14 @@ entities: pos: -15.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4962 components: - type: Transform pos: -16.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4963 components: - type: Transform @@ -43169,21 +46364,21 @@ entities: pos: -14.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4964 components: - type: Transform pos: -16.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4966 components: - type: Transform pos: -16.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4987 components: - type: Transform @@ -43191,7 +46386,7 @@ entities: pos: -23.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4989 components: - type: Transform @@ -43199,14 +46394,14 @@ entities: pos: -15.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4993 components: - type: Transform pos: -19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5003 components: - type: Transform @@ -43214,7 +46409,7 @@ entities: pos: -22.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5005 components: - type: Transform @@ -43222,7 +46417,7 @@ entities: pos: -18.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5007 components: - type: Transform @@ -43230,7 +46425,7 @@ entities: pos: -17.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5013 components: - type: Transform @@ -43238,14 +46433,14 @@ entities: pos: -12.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5020 components: - type: Transform pos: -24.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5021 components: - type: Transform @@ -43253,294 +46448,294 @@ entities: pos: -11.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5022 components: - type: Transform pos: -24.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5023 components: - type: Transform pos: -26.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5077 components: - type: Transform pos: -6.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5078 components: - type: Transform pos: -6.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5079 components: - type: Transform pos: -6.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5080 components: - type: Transform pos: -6.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5081 components: - type: Transform pos: -6.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5082 components: - type: Transform pos: -6.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5083 components: - type: Transform pos: -6.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5084 components: - type: Transform pos: -6.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5085 components: - type: Transform pos: -6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5087 components: - type: Transform pos: -6.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5088 components: - type: Transform pos: -6.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5089 components: - type: Transform pos: -6.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5090 components: - type: Transform pos: -6.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5091 components: - type: Transform pos: -6.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5092 components: - type: Transform pos: -6.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5093 components: - type: Transform pos: -6.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5094 components: - type: Transform pos: -6.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5095 components: - type: Transform pos: -6.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5097 components: - type: Transform pos: -6.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5098 components: - type: Transform pos: -6.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5099 components: - type: Transform pos: 1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5100 components: - type: Transform pos: 1.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5102 components: - type: Transform pos: 1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5103 components: - type: Transform pos: 1.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5104 components: - type: Transform pos: 1.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5105 components: - type: Transform pos: 1.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5106 components: - type: Transform pos: 1.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5107 components: - type: Transform pos: 1.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5108 components: - type: Transform pos: 1.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5109 components: - type: Transform pos: 1.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5110 components: - type: Transform pos: 1.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5112 components: - type: Transform pos: 1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5114 components: - type: Transform pos: 1.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5115 components: - type: Transform pos: 1.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5116 components: - type: Transform pos: 1.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5117 components: - type: Transform pos: 1.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5118 components: - type: Transform pos: 1.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5119 components: - type: Transform pos: 1.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5120 components: - type: Transform pos: 1.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5122 components: - type: Transform @@ -43548,7 +46743,7 @@ entities: pos: -5.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5123 components: - type: Transform @@ -43556,7 +46751,7 @@ entities: pos: -4.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5124 components: - type: Transform @@ -43564,7 +46759,7 @@ entities: pos: -3.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5125 components: - type: Transform @@ -43572,7 +46767,7 @@ entities: pos: -2.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5127 components: - type: Transform @@ -43580,7 +46775,7 @@ entities: pos: -0.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5128 components: - type: Transform @@ -43588,273 +46783,273 @@ entities: pos: 0.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5130 components: - type: Transform pos: -5.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5131 components: - type: Transform pos: -5.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5132 components: - type: Transform pos: -5.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5133 components: - type: Transform pos: -5.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5134 components: - type: Transform pos: -5.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5135 components: - type: Transform pos: -5.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5136 components: - type: Transform pos: -5.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5137 components: - type: Transform pos: -5.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5139 components: - type: Transform pos: -5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5140 components: - type: Transform pos: -5.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5141 components: - type: Transform pos: -5.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5143 components: - type: Transform pos: -5.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5144 components: - type: Transform pos: -5.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5145 components: - type: Transform pos: -5.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5146 components: - type: Transform pos: -5.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5147 components: - type: Transform pos: -5.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5149 components: - type: Transform pos: -5.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5150 components: - type: Transform pos: -5.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5151 components: - type: Transform pos: 0.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5152 components: - type: Transform pos: 0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5154 components: - type: Transform pos: 0.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5155 components: - type: Transform pos: 0.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5156 components: - type: Transform pos: 0.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5157 components: - type: Transform pos: 0.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5158 components: - type: Transform pos: 0.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5159 components: - type: Transform pos: 0.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5160 components: - type: Transform pos: 0.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5161 components: - type: Transform pos: 0.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5162 components: - type: Transform pos: 0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5164 components: - type: Transform pos: 0.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5165 components: - type: Transform pos: 0.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5166 components: - type: Transform pos: 0.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5167 components: - type: Transform pos: 0.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5168 components: - type: Transform pos: 0.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5169 components: - type: Transform pos: 0.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5170 components: - type: Transform pos: 0.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5171 components: - type: Transform pos: 0.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5172 components: - type: Transform pos: 0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5173 components: - type: Transform @@ -43862,7 +47057,7 @@ entities: pos: -4.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5175 components: - type: Transform @@ -43870,7 +47065,7 @@ entities: pos: -2.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5176 components: - type: Transform @@ -43878,7 +47073,7 @@ entities: pos: -1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5177 components: - type: Transform @@ -43886,7 +47081,7 @@ entities: pos: -0.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5180 components: - type: Transform @@ -43894,7 +47089,7 @@ entities: pos: -7.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5181 components: - type: Transform @@ -43902,7 +47097,7 @@ entities: pos: -8.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5182 components: - type: Transform @@ -43910,7 +47105,7 @@ entities: pos: -9.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5183 components: - type: Transform @@ -43918,7 +47113,7 @@ entities: pos: -6.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5184 components: - type: Transform @@ -43926,7 +47121,7 @@ entities: pos: -7.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5185 components: - type: Transform @@ -43934,7 +47129,7 @@ entities: pos: -8.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5186 components: - type: Transform @@ -43942,7 +47137,7 @@ entities: pos: -9.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5187 components: - type: Transform @@ -43950,217 +47145,217 @@ entities: pos: -10.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5190 components: - type: Transform pos: -10.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5191 components: - type: Transform pos: -10.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5192 components: - type: Transform pos: -10.5,-38.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5193 components: - type: Transform pos: -10.5,-39.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5194 components: - type: Transform pos: -10.5,-40.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5196 components: - type: Transform pos: -10.5,-42.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5197 components: - type: Transform pos: -10.5,-43.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5198 components: - type: Transform pos: -10.5,-44.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5199 components: - type: Transform pos: -10.5,-45.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5200 components: - type: Transform pos: -10.5,-46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5201 components: - type: Transform pos: -10.5,-47.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5202 components: - type: Transform pos: -10.5,-48.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5203 components: - type: Transform pos: -10.5,-49.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5204 components: - type: Transform pos: -11.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5205 components: - type: Transform pos: -11.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5206 components: - type: Transform pos: -11.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5207 components: - type: Transform pos: -11.5,-38.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5208 components: - type: Transform pos: -11.5,-39.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5209 components: - type: Transform pos: -11.5,-40.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5210 components: - type: Transform pos: -11.5,-41.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5212 components: - type: Transform pos: -11.5,-43.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5213 components: - type: Transform pos: -11.5,-44.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5214 components: - type: Transform pos: -11.5,-45.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5215 components: - type: Transform pos: -11.5,-46.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5216 components: - type: Transform pos: -11.5,-47.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5217 components: - type: Transform pos: -11.5,-48.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5218 components: - type: Transform pos: -11.5,-49.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5219 components: - type: Transform pos: -11.5,-50.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5220 components: - type: Transform pos: -10.5,-50.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5221 components: - type: Transform pos: -10.5,-51.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5391 components: - type: Transform @@ -44168,7 +47363,7 @@ entities: pos: -16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5394 components: - type: Transform @@ -44176,7 +47371,7 @@ entities: pos: -23.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5476 components: - type: Transform @@ -44184,7 +47379,7 @@ entities: pos: 14.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5564 components: - type: Transform @@ -44192,7 +47387,7 @@ entities: pos: 29.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5566 components: - type: Transform @@ -44200,7 +47395,7 @@ entities: pos: 28.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5585 components: - type: Transform @@ -44244,7 +47439,7 @@ entities: pos: 2.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5632 components: - type: Transform @@ -44252,7 +47447,7 @@ entities: pos: 6.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5633 components: - type: Transform @@ -44260,7 +47455,7 @@ entities: pos: 7.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5634 components: - type: Transform @@ -44268,49 +47463,49 @@ entities: pos: 8.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5636 components: - type: Transform pos: 9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5637 components: - type: Transform pos: 9.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5638 components: - type: Transform pos: 9.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5639 components: - type: Transform pos: 9.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5640 components: - type: Transform pos: 9.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5641 components: - type: Transform pos: 9.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5642 components: - type: Transform @@ -44318,7 +47513,7 @@ entities: pos: 10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5643 components: - type: Transform @@ -44326,7 +47521,7 @@ entities: pos: 11.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5645 components: - type: Transform @@ -44334,7 +47529,7 @@ entities: pos: 13.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5646 components: - type: Transform @@ -44342,7 +47537,7 @@ entities: pos: 14.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5647 components: - type: Transform @@ -44350,7 +47545,7 @@ entities: pos: 15.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5648 components: - type: Transform @@ -44358,7 +47553,7 @@ entities: pos: 16.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5649 components: - type: Transform @@ -44366,7 +47561,7 @@ entities: pos: 17.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5650 components: - type: Transform @@ -44374,7 +47569,7 @@ entities: pos: 18.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5651 components: - type: Transform @@ -44382,7 +47577,7 @@ entities: pos: 19.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5652 components: - type: Transform @@ -44390,7 +47585,7 @@ entities: pos: 20.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5653 components: - type: Transform @@ -44398,7 +47593,7 @@ entities: pos: 21.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5654 components: - type: Transform @@ -44406,7 +47601,7 @@ entities: pos: 9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5655 components: - type: Transform @@ -44414,7 +47609,7 @@ entities: pos: 9.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5656 components: - type: Transform @@ -44422,7 +47617,7 @@ entities: pos: 9.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5657 components: - type: Transform @@ -44430,7 +47625,7 @@ entities: pos: 9.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5658 components: - type: Transform @@ -44438,7 +47633,7 @@ entities: pos: 1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5659 components: - type: Transform @@ -44446,7 +47641,7 @@ entities: pos: 2.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5661 components: - type: Transform @@ -44454,7 +47649,7 @@ entities: pos: 4.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5662 components: - type: Transform @@ -44462,7 +47657,7 @@ entities: pos: 5.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5663 components: - type: Transform @@ -44470,7 +47665,7 @@ entities: pos: 3.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5664 components: - type: Transform @@ -44478,7 +47673,7 @@ entities: pos: 7.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5666 components: - type: Transform @@ -44486,7 +47681,7 @@ entities: pos: 9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5667 components: - type: Transform @@ -44494,7 +47689,7 @@ entities: pos: 10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5668 components: - type: Transform @@ -44502,7 +47697,7 @@ entities: pos: 10.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5669 components: - type: Transform @@ -44510,7 +47705,7 @@ entities: pos: 10.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5670 components: - type: Transform @@ -44518,7 +47713,7 @@ entities: pos: 10.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5671 components: - type: Transform @@ -44526,7 +47721,7 @@ entities: pos: 10.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5672 components: - type: Transform @@ -44534,7 +47729,7 @@ entities: pos: 10.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5674 components: - type: Transform @@ -44542,7 +47737,7 @@ entities: pos: 10.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5675 components: - type: Transform @@ -44550,7 +47745,7 @@ entities: pos: 10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5677 components: - type: Transform @@ -44558,7 +47753,7 @@ entities: pos: 11.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5678 components: - type: Transform @@ -44566,7 +47761,7 @@ entities: pos: 12.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5679 components: - type: Transform @@ -44574,7 +47769,7 @@ entities: pos: 13.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5681 components: - type: Transform @@ -44582,7 +47777,7 @@ entities: pos: 15.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5682 components: - type: Transform @@ -44590,7 +47785,7 @@ entities: pos: 16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5683 components: - type: Transform @@ -44598,7 +47793,7 @@ entities: pos: 17.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5684 components: - type: Transform @@ -44606,7 +47801,7 @@ entities: pos: 18.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5685 components: - type: Transform @@ -44614,7 +47809,7 @@ entities: pos: 19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5686 components: - type: Transform @@ -44622,42 +47817,42 @@ entities: pos: 20.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5688 components: - type: Transform pos: 4.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5689 components: - type: Transform pos: 4.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5690 components: - type: Transform pos: 5.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5691 components: - type: Transform pos: 5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5692 components: - type: Transform pos: 5.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5693 components: - type: Transform @@ -44665,7 +47860,7 @@ entities: pos: 6.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5694 components: - type: Transform @@ -44673,7 +47868,7 @@ entities: pos: 6.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5695 components: - type: Transform @@ -44681,7 +47876,7 @@ entities: pos: 3.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5696 components: - type: Transform @@ -44689,42 +47884,42 @@ entities: pos: 3.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5701 components: - type: Transform pos: 3.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5702 components: - type: Transform pos: 8.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5703 components: - type: Transform pos: 8.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5704 components: - type: Transform pos: 8.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5705 components: - type: Transform pos: 8.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5708 components: - type: Transform @@ -44732,7 +47927,7 @@ entities: pos: 10.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5709 components: - type: Transform @@ -44740,7 +47935,7 @@ entities: pos: 11.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5710 components: - type: Transform @@ -44748,7 +47943,7 @@ entities: pos: 9.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5711 components: - type: Transform @@ -44756,7 +47951,7 @@ entities: pos: 10.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5712 components: - type: Transform @@ -44764,14 +47959,14 @@ entities: pos: 11.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5713 components: - type: Transform pos: 9.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5720 components: - type: Transform @@ -44779,7 +47974,7 @@ entities: pos: 23.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5721 components: - type: Transform @@ -44787,7 +47982,7 @@ entities: pos: 24.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5722 components: - type: Transform @@ -44795,7 +47990,7 @@ entities: pos: 22.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5723 components: - type: Transform @@ -44803,7 +47998,7 @@ entities: pos: 22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5724 components: - type: Transform @@ -44811,7 +48006,7 @@ entities: pos: 22.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5727 components: - type: Transform @@ -44819,7 +48014,7 @@ entities: pos: 22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5728 components: - type: Transform @@ -44827,7 +48022,7 @@ entities: pos: 23.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5729 components: - type: Transform @@ -44835,7 +48030,7 @@ entities: pos: 24.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5730 components: - type: Transform @@ -44843,7 +48038,7 @@ entities: pos: 25.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5731 components: - type: Transform @@ -44851,7 +48046,7 @@ entities: pos: 26.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5733 components: - type: Transform @@ -44859,7 +48054,7 @@ entities: pos: 27.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5739 components: - type: Transform @@ -44867,7 +48062,7 @@ entities: pos: 22.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5740 components: - type: Transform @@ -44875,7 +48070,7 @@ entities: pos: 23.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5741 components: - type: Transform @@ -44883,7 +48078,7 @@ entities: pos: 24.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5742 components: - type: Transform @@ -44891,7 +48086,7 @@ entities: pos: 25.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5743 components: - type: Transform @@ -44899,7 +48094,7 @@ entities: pos: 26.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5744 components: - type: Transform @@ -44907,7 +48102,7 @@ entities: pos: 28.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5745 components: - type: Transform @@ -44915,7 +48110,7 @@ entities: pos: 29.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5746 components: - type: Transform @@ -44923,7 +48118,7 @@ entities: pos: 30.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5747 components: - type: Transform @@ -44931,7 +48126,7 @@ entities: pos: 31.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5748 components: - type: Transform @@ -44939,28 +48134,28 @@ entities: pos: 32.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5749 components: - type: Transform pos: 21.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5750 components: - type: Transform pos: 21.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5751 components: - type: Transform pos: 21.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5752 components: - type: Transform @@ -44968,7 +48163,7 @@ entities: pos: 22.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5753 components: - type: Transform @@ -44976,7 +48171,7 @@ entities: pos: 23.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5754 components: - type: Transform @@ -44984,7 +48179,7 @@ entities: pos: 24.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5755 components: - type: Transform @@ -44992,7 +48187,7 @@ entities: pos: 25.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5756 components: - type: Transform @@ -45000,7 +48195,7 @@ entities: pos: 26.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5758 components: - type: Transform @@ -45008,7 +48203,7 @@ entities: pos: 30.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5759 components: - type: Transform @@ -45016,7 +48211,7 @@ entities: pos: 31.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5760 components: - type: Transform @@ -45024,7 +48219,7 @@ entities: pos: 32.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5799 components: - type: Transform @@ -45032,7 +48227,7 @@ entities: pos: 14.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5800 components: - type: Transform @@ -45040,7 +48235,7 @@ entities: pos: 14.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6293 components: - type: Transform @@ -45048,7 +48243,7 @@ entities: pos: -25.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6336 components: - type: Transform @@ -45056,7 +48251,7 @@ entities: pos: -24.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6384 components: - type: Transform @@ -45064,7 +48259,7 @@ entities: pos: -29.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6418 components: - type: Transform @@ -45072,7 +48267,7 @@ entities: pos: -1.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6442 components: - type: Transform @@ -45080,7 +48275,7 @@ entities: pos: -0.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6443 components: - type: Transform @@ -45088,7 +48283,7 @@ entities: pos: -1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6444 components: - type: Transform @@ -45096,7 +48291,7 @@ entities: pos: -2.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6445 components: - type: Transform @@ -45104,7 +48299,7 @@ entities: pos: -3.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6446 components: - type: Transform @@ -45112,7 +48307,7 @@ entities: pos: -4.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6447 components: - type: Transform @@ -45120,7 +48315,7 @@ entities: pos: -5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6448 components: - type: Transform @@ -45128,7 +48323,7 @@ entities: pos: -4.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6449 components: - type: Transform @@ -45136,7 +48331,7 @@ entities: pos: -3.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6450 components: - type: Transform @@ -45144,7 +48339,7 @@ entities: pos: -2.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6451 components: - type: Transform @@ -45152,7 +48347,7 @@ entities: pos: -1.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6452 components: - type: Transform @@ -45160,7 +48355,7 @@ entities: pos: -0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6453 components: - type: Transform @@ -45168,7 +48363,7 @@ entities: pos: 0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6454 components: - type: Transform @@ -45176,7 +48371,7 @@ entities: pos: -4.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6456 components: - type: Transform @@ -45184,7 +48379,7 @@ entities: pos: -2.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6457 components: - type: Transform @@ -45192,7 +48387,7 @@ entities: pos: -1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6458 components: - type: Transform @@ -45200,7 +48395,7 @@ entities: pos: -0.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6459 components: - type: Transform @@ -45208,7 +48403,7 @@ entities: pos: 0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6460 components: - type: Transform @@ -45216,7 +48411,7 @@ entities: pos: -0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6463 components: - type: Transform @@ -45224,7 +48419,7 @@ entities: pos: -3.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6464 components: - type: Transform @@ -45232,7 +48427,7 @@ entities: pos: -4.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6465 components: - type: Transform @@ -45240,7 +48435,7 @@ entities: pos: -5.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6466 components: - type: Transform @@ -45248,7 +48443,7 @@ entities: pos: -4.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6467 components: - type: Transform @@ -45256,28 +48451,28 @@ entities: pos: -3.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6468 components: - type: Transform pos: -2.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6469 components: - type: Transform pos: -2.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6470 components: - type: Transform pos: -2.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6484 components: - type: Transform @@ -45285,56 +48480,56 @@ entities: pos: -28.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6548 components: - type: Transform pos: -26.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6550 components: - type: Transform pos: -26.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6558 components: - type: Transform pos: -17.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6571 components: - type: Transform pos: -29.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6623 components: - type: Transform pos: -17.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6631 components: - type: Transform pos: -24.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6632 components: - type: Transform pos: -30.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6656 components: - type: Transform @@ -45342,7 +48537,7 @@ entities: pos: -19.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6657 components: - type: Transform @@ -45350,7 +48545,7 @@ entities: pos: -17.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6665 components: - type: Transform @@ -45358,7 +48553,7 @@ entities: pos: -12.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6677 components: - type: Transform @@ -45366,14 +48561,14 @@ entities: pos: -17.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6691 components: - type: Transform pos: -19.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6786 components: - type: Transform @@ -45381,7 +48576,7 @@ entities: pos: -17.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6794 components: - type: Transform @@ -45389,7 +48584,7 @@ entities: pos: -18.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6806 components: - type: Transform @@ -45397,7 +48592,7 @@ entities: pos: -11.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6807 components: - type: Transform @@ -45405,7 +48600,7 @@ entities: pos: -12.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6808 components: - type: Transform @@ -45413,7 +48608,7 @@ entities: pos: -13.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6809 components: - type: Transform @@ -45421,7 +48616,7 @@ entities: pos: -14.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6810 components: - type: Transform @@ -45429,7 +48624,7 @@ entities: pos: -15.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6811 components: - type: Transform @@ -45437,7 +48632,7 @@ entities: pos: -16.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6812 components: - type: Transform @@ -45445,7 +48640,7 @@ entities: pos: -17.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6813 components: - type: Transform @@ -45453,7 +48648,7 @@ entities: pos: -18.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6815 components: - type: Transform @@ -45461,7 +48656,7 @@ entities: pos: -20.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6816 components: - type: Transform @@ -45469,7 +48664,7 @@ entities: pos: -21.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6817 components: - type: Transform @@ -45477,7 +48672,7 @@ entities: pos: -22.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6819 components: - type: Transform @@ -45485,7 +48680,7 @@ entities: pos: -24.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6820 components: - type: Transform @@ -45493,7 +48688,7 @@ entities: pos: -25.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6822 components: - type: Transform @@ -45501,7 +48696,7 @@ entities: pos: -12.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6823 components: - type: Transform @@ -45509,7 +48704,7 @@ entities: pos: -13.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6824 components: - type: Transform @@ -45517,7 +48712,7 @@ entities: pos: -14.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6825 components: - type: Transform @@ -45525,7 +48720,7 @@ entities: pos: -15.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6826 components: - type: Transform @@ -45533,7 +48728,7 @@ entities: pos: -16.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6827 components: - type: Transform @@ -45541,7 +48736,7 @@ entities: pos: -17.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6830 components: - type: Transform @@ -45549,7 +48744,7 @@ entities: pos: -18.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6831 components: - type: Transform @@ -45557,7 +48752,7 @@ entities: pos: -19.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6832 components: - type: Transform @@ -45565,7 +48760,7 @@ entities: pos: -20.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6833 components: - type: Transform @@ -45573,7 +48768,7 @@ entities: pos: -21.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6835 components: - type: Transform @@ -45581,7 +48776,7 @@ entities: pos: -23.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6836 components: - type: Transform @@ -45589,7 +48784,7 @@ entities: pos: -24.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6837 components: - type: Transform @@ -45597,105 +48792,105 @@ entities: pos: -25.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6843 components: - type: Transform pos: -8.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6896 components: - type: Transform pos: -10.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6897 components: - type: Transform pos: -10.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7059 components: - type: Transform pos: -19.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7078 components: - type: Transform pos: -24.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7079 components: - type: Transform pos: -24.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7080 components: - type: Transform pos: -24.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7081 components: - type: Transform pos: -24.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7082 components: - type: Transform pos: -24.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7083 components: - type: Transform pos: -25.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7084 components: - type: Transform pos: -25.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7085 components: - type: Transform pos: -25.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7086 components: - type: Transform pos: -25.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7190 components: - type: Transform pos: -19.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7200 components: - type: Transform @@ -45703,7 +48898,7 @@ entities: pos: -18.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7201 components: - type: Transform @@ -45711,7 +48906,7 @@ entities: pos: -14.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7225 components: - type: Transform @@ -45719,7 +48914,7 @@ entities: pos: -20.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7226 components: - type: Transform @@ -45727,14 +48922,14 @@ entities: pos: -19.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7233 components: - type: Transform pos: -19.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7240 components: - type: Transform @@ -45742,7 +48937,7 @@ entities: pos: -18.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7252 components: - type: Transform @@ -45750,7 +48945,7 @@ entities: pos: -12.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7253 components: - type: Transform @@ -45758,7 +48953,7 @@ entities: pos: -13.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7256 components: - type: Transform @@ -45766,14 +48961,14 @@ entities: pos: -13.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7262 components: - type: Transform pos: -17.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7278 components: - type: Transform @@ -45781,7 +48976,7 @@ entities: pos: -14.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7279 components: - type: Transform @@ -45789,7 +48984,7 @@ entities: pos: -16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7303 components: - type: Transform @@ -45797,7 +48992,7 @@ entities: pos: -6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7304 components: - type: Transform @@ -45805,7 +49000,7 @@ entities: pos: -7.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7306 components: - type: Transform @@ -45813,7 +49008,7 @@ entities: pos: -9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7307 components: - type: Transform @@ -45821,7 +49016,7 @@ entities: pos: -10.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7309 components: - type: Transform @@ -45829,7 +49024,7 @@ entities: pos: -7.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7310 components: - type: Transform @@ -45837,35 +49032,35 @@ entities: pos: -8.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7324 components: - type: Transform pos: -10.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7326 components: - type: Transform pos: -8.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7327 components: - type: Transform pos: -8.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7329 components: - type: Transform pos: -8.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7374 components: - type: Transform @@ -45873,7 +49068,7 @@ entities: pos: -9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7375 components: - type: Transform @@ -45881,7 +49076,7 @@ entities: pos: -9.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7376 components: - type: Transform @@ -45889,7 +49084,7 @@ entities: pos: -9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7377 components: - type: Transform @@ -45897,7 +49092,7 @@ entities: pos: -11.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7378 components: - type: Transform @@ -45905,7 +49100,7 @@ entities: pos: -11.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7464 components: - type: Transform @@ -45913,7 +49108,7 @@ entities: pos: -15.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7797 components: - type: Transform @@ -45921,7 +49116,7 @@ entities: pos: -16.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7807 components: - type: Transform @@ -45929,7 +49124,7 @@ entities: pos: -23.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7808 components: - type: Transform @@ -45937,7 +49132,7 @@ entities: pos: -24.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7809 components: - type: Transform @@ -45945,7 +49140,7 @@ entities: pos: -25.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7810 components: - type: Transform @@ -45953,7 +49148,7 @@ entities: pos: -26.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7811 components: - type: Transform @@ -45961,7 +49156,7 @@ entities: pos: -27.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7812 components: - type: Transform @@ -45969,7 +49164,7 @@ entities: pos: -28.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7813 components: - type: Transform @@ -45977,7 +49172,7 @@ entities: pos: -24.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7814 components: - type: Transform @@ -45985,7 +49180,7 @@ entities: pos: -25.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7815 components: - type: Transform @@ -45993,7 +49188,7 @@ entities: pos: -26.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7816 components: - type: Transform @@ -46001,7 +49196,7 @@ entities: pos: -27.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7817 components: - type: Transform @@ -46009,7 +49204,7 @@ entities: pos: -28.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7820 components: - type: Transform @@ -46017,7 +49212,7 @@ entities: pos: -29.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7821 components: - type: Transform @@ -46025,7 +49220,7 @@ entities: pos: -29.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7822 components: - type: Transform @@ -46033,7 +49228,7 @@ entities: pos: -30.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7824 components: - type: Transform @@ -46041,7 +49236,7 @@ entities: pos: -29.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7827 components: - type: Transform @@ -46049,7 +49244,7 @@ entities: pos: -29.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7829 components: - type: Transform @@ -46057,7 +49252,7 @@ entities: pos: -29.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7831 components: - type: Transform @@ -46065,7 +49260,7 @@ entities: pos: -29.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7834 components: - type: Transform @@ -46073,7 +49268,7 @@ entities: pos: -30.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7837 components: - type: Transform @@ -46081,7 +49276,7 @@ entities: pos: -30.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7838 components: - type: Transform @@ -46089,7 +49284,7 @@ entities: pos: -30.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7840 components: - type: Transform @@ -46097,7 +49292,7 @@ entities: pos: -30.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7841 components: - type: Transform @@ -46105,7 +49300,7 @@ entities: pos: -30.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7842 components: - type: Transform @@ -46113,7 +49308,7 @@ entities: pos: -30.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7843 components: - type: Transform @@ -46121,7 +49316,7 @@ entities: pos: -30.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7844 components: - type: Transform @@ -46129,7 +49324,7 @@ entities: pos: -30.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7845 components: - type: Transform @@ -46137,7 +49332,7 @@ entities: pos: -30.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7846 components: - type: Transform @@ -46145,7 +49340,7 @@ entities: pos: -30.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7848 components: - type: Transform @@ -46153,7 +49348,7 @@ entities: pos: -28.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7849 components: - type: Transform @@ -46161,7 +49356,7 @@ entities: pos: -27.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7851 components: - type: Transform @@ -46169,7 +49364,7 @@ entities: pos: -26.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7852 components: - type: Transform @@ -46177,7 +49372,7 @@ entities: pos: -26.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7853 components: - type: Transform @@ -46185,7 +49380,7 @@ entities: pos: -26.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7854 components: - type: Transform @@ -46193,7 +49388,7 @@ entities: pos: -26.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7855 components: - type: Transform @@ -46201,7 +49396,7 @@ entities: pos: -26.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7861 components: - type: Transform @@ -46209,7 +49404,7 @@ entities: pos: -28.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7862 components: - type: Transform @@ -46217,7 +49412,7 @@ entities: pos: -27.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7863 components: - type: Transform @@ -46225,7 +49420,7 @@ entities: pos: -29.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7864 components: - type: Transform @@ -46233,7 +49428,7 @@ entities: pos: -28.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7865 components: - type: Transform @@ -46241,7 +49436,7 @@ entities: pos: -27.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7866 components: - type: Transform @@ -46249,7 +49444,7 @@ entities: pos: -29.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7867 components: - type: Transform @@ -46257,7 +49452,7 @@ entities: pos: -28.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7868 components: - type: Transform @@ -46265,7 +49460,7 @@ entities: pos: -27.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7869 components: - type: Transform @@ -46273,7 +49468,7 @@ entities: pos: -28.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7870 components: - type: Transform @@ -46281,7 +49476,7 @@ entities: pos: -27.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7877 components: - type: Transform @@ -46289,7 +49484,7 @@ entities: pos: -29.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7880 components: - type: Transform @@ -46297,7 +49492,7 @@ entities: pos: -30.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7881 components: - type: Transform @@ -46305,7 +49500,7 @@ entities: pos: -29.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7882 components: - type: Transform @@ -46313,7 +49508,7 @@ entities: pos: -28.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7883 components: - type: Transform @@ -46321,7 +49516,7 @@ entities: pos: -27.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7884 components: - type: Transform @@ -46329,7 +49524,7 @@ entities: pos: -28.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7885 components: - type: Transform @@ -46337,7 +49532,7 @@ entities: pos: -27.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7888 components: - type: Transform @@ -46345,7 +49540,7 @@ entities: pos: -31.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7889 components: - type: Transform @@ -46353,7 +49548,7 @@ entities: pos: -32.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7890 components: - type: Transform @@ -46361,7 +49556,7 @@ entities: pos: -33.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7891 components: - type: Transform @@ -46369,7 +49564,7 @@ entities: pos: -34.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7892 components: - type: Transform @@ -46377,7 +49572,7 @@ entities: pos: -31.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7893 components: - type: Transform @@ -46385,7 +49580,7 @@ entities: pos: -32.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7894 components: - type: Transform @@ -46393,7 +49588,7 @@ entities: pos: -33.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7897 components: - type: Transform @@ -46401,133 +49596,133 @@ entities: pos: -35.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7898 components: - type: Transform pos: -35.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7899 components: - type: Transform pos: -34.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7900 components: - type: Transform pos: -35.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7901 components: - type: Transform pos: -35.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7902 components: - type: Transform pos: -35.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7903 components: - type: Transform pos: -34.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7904 components: - type: Transform pos: -34.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8225 components: - type: Transform pos: -22.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8226 components: - type: Transform pos: -22.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8228 components: - type: Transform pos: -22.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8229 components: - type: Transform pos: -22.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8230 components: - type: Transform pos: -22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8231 components: - type: Transform pos: -22.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8232 components: - type: Transform pos: -23.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8233 components: - type: Transform pos: -23.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8234 components: - type: Transform pos: -23.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8235 components: - type: Transform pos: -23.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8237 components: - type: Transform pos: -23.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8297 components: - type: Transform @@ -46535,7 +49730,7 @@ entities: pos: -22.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8298 components: - type: Transform @@ -46543,7 +49738,7 @@ entities: pos: -21.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8299 components: - type: Transform @@ -46551,47 +49746,42 @@ entities: pos: -20.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8312 components: - type: Transform pos: -13.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8313 components: - type: Transform pos: -13.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8314 components: - type: Transform pos: -13.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8315 components: - type: Transform pos: -11.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8316 components: - type: Transform pos: -11.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8551 - components: - - type: Transform - pos: -45.5,11.5 - parent: 4812 + color: '#990000FF' - uid: 8553 components: - type: Transform @@ -46599,7 +49789,7 @@ entities: pos: -22.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8554 components: - type: Transform @@ -46607,7 +49797,7 @@ entities: pos: -21.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8555 components: - type: Transform @@ -46615,7 +49805,7 @@ entities: pos: -20.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8556 components: - type: Transform @@ -46623,7 +49813,7 @@ entities: pos: -19.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8558 components: - type: Transform @@ -46631,7 +49821,7 @@ entities: pos: -21.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8559 components: - type: Transform @@ -46639,7 +49829,7 @@ entities: pos: -20.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8560 components: - type: Transform @@ -46647,7 +49837,45 @@ entities: pos: -19.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 8725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,12.5 + parent: 4812 + - uid: 8727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 4812 + - uid: 8728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 8751 + components: + - type: Transform + pos: -52.5,15.5 + parent: 4812 + - uid: 8755 + components: + - type: Transform + pos: -52.5,14.5 + parent: 4812 + - uid: 8756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8759 components: - type: Transform @@ -46655,7 +49883,7 @@ entities: pos: -27.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8760 components: - type: Transform @@ -46663,7 +49891,7 @@ entities: pos: -28.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8761 components: - type: Transform @@ -46671,7 +49899,7 @@ entities: pos: -29.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8762 components: - type: Transform @@ -46679,7 +49907,7 @@ entities: pos: -30.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8763 components: - type: Transform @@ -46687,7 +49915,7 @@ entities: pos: -31.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8765 components: - type: Transform @@ -46695,7 +49923,7 @@ entities: pos: -26.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8766 components: - type: Transform @@ -46703,7 +49931,7 @@ entities: pos: -27.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8767 components: - type: Transform @@ -46711,7 +49939,7 @@ entities: pos: -28.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8768 components: - type: Transform @@ -46719,70 +49947,78 @@ entities: pos: -29.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8769 components: - type: Transform pos: -30.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8771 components: - type: Transform pos: -30.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 8773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8774 components: - type: Transform pos: -30.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8775 components: - type: Transform pos: -30.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8776 components: - type: Transform pos: -30.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8780 components: - type: Transform pos: -33.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8781 components: - type: Transform pos: -33.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8782 components: - type: Transform pos: -33.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8785 components: - type: Transform pos: -33.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 8865 components: - type: Transform @@ -46795,28 +50031,28 @@ entities: pos: -10.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8950 components: - type: Transform pos: -10.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8951 components: - type: Transform pos: -10.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8952 components: - type: Transform pos: -10.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8954 components: - type: Transform @@ -46824,7 +50060,7 @@ entities: pos: -11.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8955 components: - type: Transform @@ -46832,7 +50068,7 @@ entities: pos: -12.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8956 components: - type: Transform @@ -46840,7 +50076,7 @@ entities: pos: -13.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8957 components: - type: Transform @@ -46848,7 +50084,7 @@ entities: pos: -14.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8958 components: - type: Transform @@ -46856,7 +50092,7 @@ entities: pos: -15.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8959 components: - type: Transform @@ -46864,7 +50100,7 @@ entities: pos: -16.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8960 components: - type: Transform @@ -46872,7 +50108,7 @@ entities: pos: -17.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8961 components: - type: Transform @@ -46880,7 +50116,7 @@ entities: pos: -18.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8962 components: - type: Transform @@ -46888,7 +50124,7 @@ entities: pos: -19.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8963 components: - type: Transform @@ -46896,7 +50132,7 @@ entities: pos: -20.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8964 components: - type: Transform @@ -46904,7 +50140,7 @@ entities: pos: -21.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8965 components: - type: Transform @@ -46912,7 +50148,7 @@ entities: pos: -22.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8966 components: - type: Transform @@ -46920,7 +50156,7 @@ entities: pos: -23.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8977 components: - type: Transform @@ -46928,7 +50164,7 @@ entities: pos: -30.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8978 components: - type: Transform @@ -46936,7 +50172,7 @@ entities: pos: -30.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8980 components: - type: Transform @@ -47018,44 +50254,108 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-36.5 parent: 4812 + - uid: 9022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,12.5 + parent: 4812 + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,12.5 + parent: 4812 - uid: 9036 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,11.5 + pos: -51.5,12.5 parent: 4812 - uid: 9075 components: - type: Transform - pos: -45.5,13.5 + pos: -50.5,14.5 + parent: 4812 + - uid: 9091 + components: + - type: Transform + pos: -50.5,13.5 + parent: 4812 + - uid: 9092 + components: + - type: Transform + pos: -48.5,15.5 + parent: 4812 + - uid: 9093 + components: + - type: Transform + pos: -48.5,14.5 + parent: 4812 + - uid: 9094 + components: + - type: Transform + pos: -46.5,13.5 + parent: 4812 + - uid: 9095 + components: + - type: Transform + pos: -44.5,15.5 + parent: 4812 + - uid: 9096 + components: + - type: Transform + pos: -44.5,14.5 + parent: 4812 + - uid: 9097 + components: + - type: Transform + pos: -44.5,13.5 + parent: 4812 + - uid: 9111 + components: + - type: Transform + pos: -53.5,17.5 + parent: 4812 + - uid: 9112 + components: + - type: Transform + pos: -53.5,16.5 + parent: 4812 + - uid: 9113 + components: + - type: Transform + pos: -53.5,15.5 + parent: 4812 + - uid: 9114 + components: + - type: Transform + pos: -53.5,14.5 + parent: 4812 + - uid: 9115 + components: + - type: Transform + pos: -53.5,13.5 parent: 4812 - uid: 9116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,12.5 + pos: -51.5,13.5 parent: 4812 - - uid: 9118 + - uid: 9117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,2.5 + pos: -51.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9119 + - uid: 9120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,2.5 + pos: -51.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9122 + - uid: 9121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,12.5 + pos: -51.5,16.5 parent: 4812 - uid: 9123 components: @@ -47064,72 +50364,24 @@ entities: pos: -37.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9124 + color: '#990000FF' + - uid: 9128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,2.5 + rot: 3.141592653589793 rad + pos: -41.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - - uid: 9127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 4812 - - uid: 9129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 4812 - - uid: 9135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 4812 - - uid: 9136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 4812 - - uid: 9137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 4812 + color: '#990000FF' - uid: 9138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,10.5 + pos: -52.5,13.5 + parent: 4812 + - uid: 9139 + components: + - type: Transform + pos: -50.5,15.5 parent: 4812 - uid: 9146 components: @@ -47138,7 +50390,7 @@ entities: pos: -37.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9147 components: - type: Transform @@ -47146,7 +50398,7 @@ entities: pos: -35.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9148 components: - type: Transform @@ -47154,7 +50406,7 @@ entities: pos: -34.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9149 components: - type: Transform @@ -47162,15 +50414,7 @@ entities: pos: -33.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9151 components: - type: Transform @@ -47178,7 +50422,7 @@ entities: pos: -31.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9153 components: - type: Transform @@ -47186,7 +50430,7 @@ entities: pos: -34.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 9154 components: - type: Transform @@ -47194,454 +50438,376 @@ entities: pos: -35.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9157 + color: '#990000FF' + - uid: 9170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,0.5 + pos: -42.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9159 + - uid: 9171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,0.5 + pos: -42.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9160 + - uid: 9172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,0.5 + pos: -42.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9161 + - uid: 9174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,0.5 + pos: -46.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,1.5 + pos: -48.5,13.5 parent: 4812 - - uid: 9177 + - uid: 9176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,1.5 - parent: 4812 - - uid: 9178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 4812 - - uid: 9179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,1.5 - parent: 4812 - - uid: 9180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 4812 - - uid: 9181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 + pos: -46.5,14.5 parent: 4812 - uid: 9182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,3.5 + rot: 3.141592653589793 rad + pos: -41.5,9.5 parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,5.5 + rot: 3.141592653589793 rad + pos: -41.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,7.5 + rot: 3.141592653589793 rad + pos: -41.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 4812 - - uid: 9186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 4812 - - uid: 9187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 4812 - - uid: 9188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 4812 - - uid: 9189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 4812 - - uid: 9190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,11.5 + rot: 3.141592653589793 rad + pos: -41.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,9.5 - parent: 4812 - - uid: 9192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 4812 - - uid: 9205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,10.5 - parent: 4812 - - uid: 9207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 4812 - - uid: 9208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,8.5 - parent: 4812 - - uid: 9209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,8.5 - parent: 4812 - - uid: 9210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - - uid: 9211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 4812 - - uid: 9213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 4812 - - uid: 9214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 4812 - - uid: 9215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 4812 - - uid: 9216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 4812 - - uid: 9217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,6.5 + pos: -42.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9219 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 4812 - - uid: 9220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 4812 - - uid: 9221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 4812 - - uid: 9222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - - uid: 9223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 4812 - - uid: 9225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,2.5 + pos: -53.5,5.5 parent: 4812 - uid: 9226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,2.5 + pos: -47.5,15.5 parent: 4812 - uid: 9227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,2.5 + pos: -45.5,13.5 parent: 4812 - uid: 9228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 + pos: -43.5,14.5 parent: 4812 - uid: 9229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 4812 - - uid: 9231 - components: - - type: Transform - pos: -47.5,2.5 + pos: -43.5,16.5 parent: 4812 - uid: 9232 components: - type: Transform - pos: -47.5,4.5 + rot: -1.5707963267948966 rad + pos: -43.5,12.5 parent: 4812 - - uid: 9233 + - uid: 9237 components: - type: Transform - pos: -47.5,6.5 - parent: 4812 - - uid: 9234 - components: - - type: Transform - pos: -47.5,8.5 - parent: 4812 - - uid: 9235 - components: - - type: Transform - pos: -47.5,10.5 + pos: -47.5,17.5 parent: 4812 - uid: 9238 components: - type: Transform - pos: -45.5,7.5 + pos: -43.5,13.5 parent: 4812 + - uid: 9240 + components: + - type: Transform + pos: -42.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 + pos: -43.5,17.5 parent: 4812 - - uid: 9246 + - uid: 9244 components: - type: Transform - pos: -45.5,9.5 + rot: 3.141592653589793 rad + pos: -41.5,11.5 parent: 4812 - - uid: 9249 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: -42.5,9.5 parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9250 components: - type: Transform - pos: -46.5,3.5 + pos: -47.5,13.5 + parent: 4812 + - uid: 9251 + components: + - type: Transform + pos: -47.5,14.5 parent: 4812 - uid: 9252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,3.5 + pos: -51.5,17.5 parent: 4812 - uid: 9253 components: - type: Transform - pos: -46.5,4.5 + pos: -49.5,17.5 + parent: 4812 + - uid: 9254 + components: + - type: Transform + pos: -49.5,15.5 parent: 4812 - uid: 9255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,4.5 + pos: -49.5,13.5 parent: 4812 - - uid: 9257 + - uid: 9261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,12.5 - parent: 4812 - - uid: 9259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,10.5 + pos: -49.5,16.5 parent: 4812 - uid: 9262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,12.5 + pos: -49.5,14.5 parent: 4812 - uid: 9263 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,13.5 + pos: -42.5,6.5 parent: 4812 - - uid: 9489 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9266 components: - type: Transform - pos: -45.5,14.5 + pos: -55.5,-0.5 parent: 4812 - - uid: 9490 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9491 - components: - - type: Transform - pos: -43.5,14.5 - parent: 4812 - - uid: 9492 + - uid: 9269 components: - type: Transform pos: -43.5,15.5 parent: 4812 - - uid: 9493 + - uid: 9271 components: - type: Transform - pos: -43.5,13.5 + pos: -47.5,16.5 parent: 4812 - - uid: 9514 + - uid: 9275 components: - type: Transform - pos: -43.5,11.5 + pos: -45.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9515 - components: - - type: Transform - pos: -43.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9516 - components: - - type: Transform - pos: -43.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9541 + - uid: 9276 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,2.5 + pos: -45.5,12.5 + parent: 4812 + - uid: 9282 + components: + - type: Transform + pos: -42.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9545 + color: '#0055CCFF' + - uid: 9286 + components: + - type: Transform + pos: -42.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9292 + components: + - type: Transform + pos: -42.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9294 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 9295 + components: + - type: Transform + pos: -45.5,16.5 + parent: 4812 + - uid: 9296 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 9314 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 + - uid: 9350 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,1.5 + pos: -41.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9546 + color: '#990000FF' + - uid: 9363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9420 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9452 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9454 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9573 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' + - uid: 9902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,1.5 + parent: 4812 + - uid: 10777 + components: + - type: Transform + pos: -45.5,11.5 + parent: 4812 + - uid: 10971 + components: + - type: Transform + pos: -32.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,2.5 + parent: 4812 - uid: 11963 components: - type: Transform @@ -47649,63 +50815,63 @@ entities: pos: -33.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11964 components: - type: Transform pos: -36.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11965 components: - type: Transform pos: -36.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11966 components: - type: Transform pos: -36.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11967 components: - type: Transform pos: -36.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11968 components: - type: Transform pos: -36.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11969 components: - type: Transform pos: -36.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11970 components: - type: Transform pos: -36.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11971 components: - type: Transform pos: -36.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11973 components: - type: Transform @@ -47713,7 +50879,7 @@ entities: pos: -34.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11974 components: - type: Transform @@ -47721,7 +50887,7 @@ entities: pos: -35.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11975 components: - type: Transform @@ -47729,7 +50895,7 @@ entities: pos: -36.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11976 components: - type: Transform @@ -47737,7 +50903,7 @@ entities: pos: -37.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11977 components: - type: Transform @@ -47745,7 +50911,7 @@ entities: pos: -38.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11978 components: - type: Transform @@ -47753,7 +50919,7 @@ entities: pos: -39.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11979 components: - type: Transform @@ -47761,7 +50927,7 @@ entities: pos: -37.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11980 components: - type: Transform @@ -47769,7 +50935,7 @@ entities: pos: -38.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11981 components: - type: Transform @@ -47777,7 +50943,7 @@ entities: pos: -39.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11984 components: - type: Transform @@ -47785,7 +50951,7 @@ entities: pos: -40.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11985 components: - type: Transform @@ -47793,7 +50959,7 @@ entities: pos: -41.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11986 components: - type: Transform @@ -47801,15 +50967,7 @@ entities: pos: -42.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11989 components: - type: Transform @@ -47817,7 +50975,7 @@ entities: pos: -41.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11990 components: - type: Transform @@ -47825,7 +50983,7 @@ entities: pos: -42.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11991 components: - type: Transform @@ -47833,7 +50991,7 @@ entities: pos: -43.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11992 components: - type: Transform @@ -47841,49 +50999,49 @@ entities: pos: -44.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11993 components: - type: Transform pos: -45.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11994 components: - type: Transform pos: -45.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11995 components: - type: Transform pos: -45.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11996 components: - type: Transform pos: -44.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11997 components: - type: Transform pos: -44.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11998 components: - type: Transform pos: -44.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12001 components: - type: Transform @@ -47891,7 +51049,7 @@ entities: pos: -43.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12002 components: - type: Transform @@ -47899,7 +51057,7 @@ entities: pos: -44.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12003 components: - type: Transform @@ -47907,7 +51065,7 @@ entities: pos: -43.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12004 components: - type: Transform @@ -47915,7 +51073,7 @@ entities: pos: -45.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12005 components: - type: Transform @@ -47923,7 +51081,7 @@ entities: pos: -46.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12006 components: - type: Transform @@ -47931,7 +51089,7 @@ entities: pos: -47.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12007 components: - type: Transform @@ -47939,7 +51097,7 @@ entities: pos: -46.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12008 components: - type: Transform @@ -47947,7 +51105,7 @@ entities: pos: -47.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12009 components: - type: Transform @@ -47955,7 +51113,7 @@ entities: pos: -48.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12012 components: - type: Transform @@ -47963,7 +51121,7 @@ entities: pos: -50.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12013 components: - type: Transform @@ -47971,7 +51129,7 @@ entities: pos: -51.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12014 components: - type: Transform @@ -47979,7 +51137,7 @@ entities: pos: -52.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12015 components: - type: Transform @@ -47987,7 +51145,7 @@ entities: pos: -49.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12016 components: - type: Transform @@ -47995,7 +51153,7 @@ entities: pos: -50.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12017 components: - type: Transform @@ -48003,7 +51161,7 @@ entities: pos: -51.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12018 components: - type: Transform @@ -48011,42 +51169,651 @@ entities: pos: -52.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12019 components: - type: Transform pos: -49.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12020 components: - type: Transform pos: -49.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12021 components: - type: Transform pos: -48.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12022 components: - type: Transform pos: -48.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12031 components: - type: Transform pos: -44.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 12682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 4812 + - uid: 12793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12843 + components: + - type: Transform + pos: 30.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12844 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12845 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13363 + components: + - type: Transform + pos: -43.5,11.5 + parent: 4812 + - uid: 13364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 4812 + - uid: 13374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 4812 + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,13.5 + parent: 4812 + - uid: 13440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,4.5 + parent: 4812 + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 4812 + - uid: 13444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,4.5 + parent: 4812 + - uid: 13450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 4812 + - uid: 13504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,6.5 + parent: 4812 + - uid: 13525 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 13527 + components: + - type: Transform + pos: -50.5,4.5 + parent: 4812 + - uid: 13530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,7.5 + parent: 4812 + - uid: 13531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 4812 + - uid: 13533 + components: + - type: Transform + pos: -55.5,0.5 + parent: 4812 + - uid: 13549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,5.5 + parent: 4812 - proto: GasPipeTJunction entities: - uid: 373 @@ -48056,7 +51823,7 @@ entities: pos: -3.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 376 components: - type: Transform @@ -48064,7 +51831,7 @@ entities: pos: -1.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 384 components: - type: Transform @@ -48072,7 +51839,7 @@ entities: pos: -3.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 387 components: - type: Transform @@ -48080,7 +51847,7 @@ entities: pos: -3.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 394 components: - type: Transform @@ -48088,7 +51855,7 @@ entities: pos: -1.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 407 components: - type: Transform @@ -48096,7 +51863,7 @@ entities: pos: -1.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 413 components: - type: Transform @@ -48104,7 +51871,7 @@ entities: pos: -1.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 417 components: - type: Transform @@ -48112,7 +51879,7 @@ entities: pos: -1.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 418 components: - type: Transform @@ -48120,7 +51887,7 @@ entities: pos: -3.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 423 components: - type: Transform @@ -48128,14 +51895,14 @@ entities: pos: -1.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 441 components: - type: Transform pos: -5.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 454 components: - type: Transform @@ -48143,14 +51910,14 @@ entities: pos: -16.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 464 components: - type: Transform pos: 0.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 471 components: - type: Transform @@ -48158,7 +51925,7 @@ entities: pos: -22.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 477 components: - type: Transform @@ -48166,7 +51933,7 @@ entities: pos: -25.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 483 components: - type: Transform @@ -48174,7 +51941,7 @@ entities: pos: -24.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 486 components: - type: Transform @@ -48182,14 +51949,14 @@ entities: pos: -23.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 490 components: - type: Transform pos: -25.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 496 components: - type: Transform @@ -48197,7 +51964,7 @@ entities: pos: -22.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -48205,7 +51972,7 @@ entities: pos: -21.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 510 components: - type: Transform @@ -48213,14 +51980,14 @@ entities: pos: 2.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 513 components: - type: Transform pos: -0.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 519 components: - type: Transform @@ -48228,21 +51995,21 @@ entities: pos: -7.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 523 components: - type: Transform pos: 8.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 527 components: - type: Transform pos: -13.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 532 components: - type: Transform @@ -48250,7 +52017,7 @@ entities: pos: 12.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 539 components: - type: Transform @@ -48258,7 +52025,7 @@ entities: pos: 12.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 540 components: - type: Transform @@ -48266,7 +52033,7 @@ entities: pos: 11.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 548 components: - type: Transform @@ -48274,7 +52041,7 @@ entities: pos: 12.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 550 components: - type: Transform @@ -48282,7 +52049,7 @@ entities: pos: 11.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 558 components: - type: Transform @@ -48290,7 +52057,7 @@ entities: pos: 12.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 562 components: - type: Transform @@ -48298,7 +52065,7 @@ entities: pos: 11.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 565 components: - type: Transform @@ -48306,14 +52073,14 @@ entities: pos: -22.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 570 components: - type: Transform pos: -4.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 574 components: - type: Transform @@ -48321,14 +52088,14 @@ entities: pos: -8.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 579 components: - type: Transform pos: 6.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 587 components: - type: Transform @@ -48336,7 +52103,7 @@ entities: pos: 11.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 594 components: - type: Transform @@ -48344,7 +52111,7 @@ entities: pos: 10.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 600 components: - type: Transform @@ -48352,7 +52119,7 @@ entities: pos: 11.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 605 components: - type: Transform @@ -48360,7 +52127,7 @@ entities: pos: 12.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 611 components: - type: Transform @@ -48368,7 +52135,7 @@ entities: pos: 11.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 617 components: - type: Transform @@ -48376,7 +52143,7 @@ entities: pos: 12.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 618 components: - type: Transform @@ -48384,7 +52151,7 @@ entities: pos: 1.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 625 components: - type: Transform @@ -48392,21 +52159,21 @@ entities: pos: 8.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 632 components: - type: Transform pos: -6.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 642 components: - type: Transform pos: -14.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 643 components: - type: Transform @@ -48414,21 +52181,21 @@ entities: pos: -17.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 645 components: - type: Transform pos: 1.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 651 components: - type: Transform pos: -19.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 662 components: - type: Transform @@ -48436,7 +52203,7 @@ entities: pos: -26.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 666 components: - type: Transform @@ -48444,7 +52211,7 @@ entities: pos: -26.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 675 components: - type: Transform @@ -48452,14 +52219,14 @@ entities: pos: -22.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 679 components: - type: Transform pos: -24.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 681 components: - type: Transform @@ -48467,7 +52234,7 @@ entities: pos: -23.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 682 components: - type: Transform @@ -48475,7 +52242,7 @@ entities: pos: -23.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 694 components: - type: Transform @@ -48483,7 +52250,7 @@ entities: pos: -23.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 699 components: - type: Transform @@ -48491,14 +52258,14 @@ entities: pos: 3.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 704 components: - type: Transform pos: -11.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 706 components: - type: Transform @@ -48506,7 +52273,7 @@ entities: pos: -23.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 707 components: - type: Transform @@ -48514,7 +52281,7 @@ entities: pos: -26.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 797 components: - type: Transform @@ -48522,7 +52289,7 @@ entities: pos: -17.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 805 components: - type: Transform @@ -48530,7 +52297,7 @@ entities: pos: -10.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 806 components: - type: Transform @@ -48538,7 +52305,7 @@ entities: pos: -10.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 808 components: - type: Transform @@ -48546,7 +52313,7 @@ entities: pos: -10.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 819 components: - type: Transform @@ -48554,14 +52321,14 @@ entities: pos: 3.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 820 components: - type: Transform pos: -2.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 832 components: - type: Transform @@ -48569,14 +52336,14 @@ entities: pos: 4.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 843 components: - type: Transform pos: 3.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 860 components: - type: Transform @@ -48590,7 +52357,7 @@ entities: pos: -8.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1051 components: - type: Transform @@ -48598,7 +52365,7 @@ entities: pos: -23.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1504 components: - type: Transform @@ -48606,7 +52373,7 @@ entities: pos: -26.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1985 components: - type: Transform @@ -48614,7 +52381,7 @@ entities: pos: 3.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1986 components: - type: Transform @@ -48622,7 +52389,7 @@ entities: pos: -8.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1992 components: - type: Transform @@ -48630,7 +52397,7 @@ entities: pos: -7.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1997 components: - type: Transform @@ -48638,7 +52405,7 @@ entities: pos: -8.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2000 components: - type: Transform @@ -48646,7 +52413,7 @@ entities: pos: 3.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2004 components: - type: Transform @@ -48654,21 +52421,21 @@ entities: pos: -8.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2012 components: - type: Transform pos: -5.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2018 components: - type: Transform pos: 0.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2022 components: - type: Transform @@ -48676,7 +52443,7 @@ entities: pos: -5.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2028 components: - type: Transform @@ -48684,7 +52451,7 @@ entities: pos: 0.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2035 components: - type: Transform @@ -48692,7 +52459,7 @@ entities: pos: 2.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2037 components: - type: Transform @@ -48700,7 +52467,7 @@ entities: pos: -7.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2046 components: - type: Transform @@ -48708,7 +52475,7 @@ entities: pos: 2.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2048 components: - type: Transform @@ -48716,7 +52483,7 @@ entities: pos: 3.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2056 components: - type: Transform @@ -48724,7 +52491,7 @@ entities: pos: 8.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2065 components: - type: Transform @@ -48732,7 +52499,7 @@ entities: pos: 6.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2424 components: - type: Transform @@ -48740,7 +52507,7 @@ entities: pos: -13.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2435 components: - type: Transform @@ -48748,15 +52515,7 @@ entities: pos: -12.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 2972 components: - type: Transform @@ -48764,7 +52523,7 @@ entities: pos: 19.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2974 components: - type: Transform @@ -48772,7 +52531,7 @@ entities: pos: 19.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2980 components: - type: Transform @@ -48780,7 +52539,7 @@ entities: pos: 15.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2987 components: - type: Transform @@ -48788,7 +52547,7 @@ entities: pos: 15.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2989 components: - type: Transform @@ -48796,14 +52555,14 @@ entities: pos: 15.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2994 components: - type: Transform pos: 19.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2995 components: - type: Transform @@ -48811,21 +52570,14 @@ entities: pos: 16.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3011 components: - type: Transform pos: 19.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 3739 components: - type: Transform @@ -48833,22 +52585,14 @@ entities: pos: -32.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 3741 components: - type: Transform pos: -33.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3742 components: - type: Transform @@ -48856,7 +52600,7 @@ entities: pos: -32.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3745 components: - type: Transform @@ -48864,14 +52608,14 @@ entities: pos: -32.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3783 components: - type: Transform pos: -3.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3784 components: - type: Transform @@ -48879,7 +52623,7 @@ entities: pos: -1.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3798 components: - type: Transform @@ -48924,7 +52668,7 @@ entities: pos: -3.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4004 components: - type: Transform @@ -48932,7 +52676,7 @@ entities: pos: -1.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4150 components: - type: Transform @@ -48940,14 +52684,14 @@ entities: pos: 17.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4164 components: - type: Transform pos: 19.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4171 components: - type: Transform @@ -48955,55 +52699,30 @@ entities: pos: 25.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + rot: 3.141592653589793 rad + pos: 24.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4190 + color: '#990000FF' + - uid: 4187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 + rot: 3.141592653589793 rad + pos: 53.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4193 + color: '#990000FF' + - uid: 4189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 + pos: 25.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 4206 components: - type: Transform @@ -49011,15 +52730,7 @@ entities: pos: 25.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 4833 components: - type: Transform @@ -49027,7 +52738,7 @@ entities: pos: -17.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4888 components: - type: Transform @@ -49035,7 +52746,7 @@ entities: pos: -19.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4942 components: - type: Transform @@ -49043,14 +52754,14 @@ entities: pos: -15.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4958 components: - type: Transform pos: -17.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4976 components: - type: Transform @@ -49058,35 +52769,35 @@ entities: pos: -16.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5006 components: - type: Transform pos: -18.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5012 components: - type: Transform pos: -12.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5018 components: - type: Transform pos: -8.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5019 components: - type: Transform pos: -10.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5051 components: - type: Transform @@ -49099,7 +52810,7 @@ entities: pos: -6.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5101 components: - type: Transform @@ -49107,14 +52818,14 @@ entities: pos: 1.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5113 components: - type: Transform pos: 9.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5121 components: - type: Transform @@ -49122,7 +52833,7 @@ entities: pos: -6.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5138 components: - type: Transform @@ -49130,7 +52841,7 @@ entities: pos: 1.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5142 components: - type: Transform @@ -49138,7 +52849,7 @@ entities: pos: -2.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5148 components: - type: Transform @@ -49146,7 +52857,7 @@ entities: pos: -5.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5153 components: - type: Transform @@ -49154,14 +52865,14 @@ entities: pos: 0.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5163 components: - type: Transform pos: 10.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5179 components: - type: Transform @@ -49169,14 +52880,14 @@ entities: pos: -5.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5188 components: - type: Transform pos: -11.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5195 components: - type: Transform @@ -49184,7 +52895,7 @@ entities: pos: -11.5,-42.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5211 components: - type: Transform @@ -49192,7 +52903,7 @@ entities: pos: -10.5,-41.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5621 components: - type: Transform @@ -49205,14 +52916,14 @@ entities: pos: 6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5630 components: - type: Transform pos: 5.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5631 components: - type: Transform @@ -49220,7 +52931,7 @@ entities: pos: 4.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5635 components: - type: Transform @@ -49228,7 +52939,7 @@ entities: pos: 10.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5644 components: - type: Transform @@ -49236,7 +52947,7 @@ entities: pos: 12.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5660 components: - type: Transform @@ -49244,14 +52955,14 @@ entities: pos: 3.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5665 components: - type: Transform pos: 8.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5673 components: - type: Transform @@ -49259,7 +52970,7 @@ entities: pos: 9.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5676 components: - type: Transform @@ -49267,7 +52978,7 @@ entities: pos: 10.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5680 components: - type: Transform @@ -49275,14 +52986,14 @@ entities: pos: 14.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5687 components: - type: Transform pos: 22.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5706 components: - type: Transform @@ -49290,7 +53001,7 @@ entities: pos: 8.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5707 components: - type: Transform @@ -49298,7 +53009,7 @@ entities: pos: 9.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5726 components: - type: Transform @@ -49306,7 +53017,7 @@ entities: pos: 21.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5738 components: - type: Transform @@ -49314,14 +53025,14 @@ entities: pos: 27.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5757 components: - type: Transform pos: 27.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6462 components: - type: Transform @@ -49329,7 +53040,7 @@ entities: pos: -5.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6650 components: - type: Transform @@ -49343,7 +53054,7 @@ entities: pos: -17.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6814 components: - type: Transform @@ -49351,14 +53062,14 @@ entities: pos: -19.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6818 components: - type: Transform pos: -22.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6828 components: - type: Transform @@ -49366,14 +53077,14 @@ entities: pos: -18.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6834 components: - type: Transform pos: -23.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6895 components: - type: Transform @@ -49387,7 +53098,7 @@ entities: pos: -19.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7250 components: - type: Transform @@ -49401,7 +53112,7 @@ entities: pos: -18.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7273 components: - type: Transform @@ -49415,7 +53126,7 @@ entities: pos: -11.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7311 components: - type: Transform @@ -49423,7 +53134,7 @@ entities: pos: -9.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7372 components: - type: Transform @@ -49431,7 +53142,7 @@ entities: pos: -9.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7373 components: - type: Transform @@ -49439,7 +53150,7 @@ entities: pos: -11.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7389 components: - type: Transform @@ -49447,7 +53158,7 @@ entities: pos: -15.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7818 components: - type: Transform @@ -49455,7 +53166,7 @@ entities: pos: -29.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7819 components: - type: Transform @@ -49463,7 +53174,7 @@ entities: pos: -30.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7823 components: - type: Transform @@ -49471,7 +53182,7 @@ entities: pos: -30.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7825 components: - type: Transform @@ -49479,7 +53190,7 @@ entities: pos: -30.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7826 components: - type: Transform @@ -49487,7 +53198,7 @@ entities: pos: -29.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7828 components: - type: Transform @@ -49495,7 +53206,7 @@ entities: pos: -29.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7832 components: - type: Transform @@ -49503,7 +53214,7 @@ entities: pos: -29.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7833 components: - type: Transform @@ -49511,7 +53222,7 @@ entities: pos: -29.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7835 components: - type: Transform @@ -49519,7 +53230,7 @@ entities: pos: -29.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7836 components: - type: Transform @@ -49527,7 +53238,7 @@ entities: pos: -30.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7850 components: - type: Transform @@ -49535,7 +53246,7 @@ entities: pos: -26.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7875 components: - type: Transform @@ -49543,7 +53254,7 @@ entities: pos: -30.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7876 components: - type: Transform @@ -49551,7 +53262,7 @@ entities: pos: -29.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7878 components: - type: Transform @@ -49559,7 +53270,7 @@ entities: pos: -30.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7879 components: - type: Transform @@ -49567,7 +53278,7 @@ entities: pos: -30.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7895 components: - type: Transform @@ -49575,7 +53286,7 @@ entities: pos: -35.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7896 components: - type: Transform @@ -49583,7 +53294,7 @@ entities: pos: -34.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8227 components: - type: Transform @@ -49591,7 +53302,7 @@ entities: pos: -22.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8236 components: - type: Transform @@ -49599,13 +53310,7 @@ entities: pos: -23.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 4812 + color: '#0055CCFF' - uid: 8757 components: - type: Transform @@ -49613,15 +53318,7 @@ entities: pos: -25.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8777 components: - type: Transform @@ -49629,14 +53326,7 @@ entities: pos: -33.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8786 - components: - - type: Transform - pos: -36.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 8982 components: - type: Transform @@ -49670,7 +53360,7 @@ entities: pos: -38.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9145 components: - type: Transform @@ -49678,59 +53368,60 @@ entities: pos: -38.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 9152 components: - type: Transform pos: -33.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9158 + color: '#990000FF' + - uid: 9311 + components: + - type: Transform + pos: -55.5,5.5 + parent: 4812 + - uid: 9320 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,0.5 + pos: -55.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9163 + - uid: 9528 + components: + - type: Transform + pos: -57.5,4.5 + parent: 4812 + - uid: 9869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,0.5 + pos: -48.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9251 + color: '#0055CCFF' + - uid: 9904 + components: + - type: Transform + pos: -36.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9905 + components: + - type: Transform + pos: -32.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9929 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 4812 - - uid: 9536 - components: - - type: Transform - pos: -42.5,8.5 + pos: -43.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' - uid: 11982 components: - type: Transform @@ -49738,7 +53429,7 @@ entities: pos: -44.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11988 components: - type: Transform @@ -49746,7 +53437,7 @@ entities: pos: -40.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11999 components: - type: Transform @@ -49754,7 +53445,7 @@ entities: pos: -44.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12000 components: - type: Transform @@ -49762,7 +53453,7 @@ entities: pos: -45.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12043 components: - type: Transform @@ -49770,14 +53461,86 @@ entities: pos: -25.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 3443 + color: '#990000FF' + - uid: 12770 components: - type: Transform - pos: -29.5,2.5 + rot: 3.141592653589793 rad + pos: 39.5,-3.5 parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12774 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 4812 + - uid: 12858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12874 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13070 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,4.5 + parent: 4812 + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,4.5 + parent: 4812 + - uid: 13502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,1.5 + parent: 4812 +- proto: GasPort + entities: - uid: 3467 components: - type: Transform @@ -49785,7 +53548,7 @@ entities: pos: -34.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3710 components: - type: Transform @@ -49793,7 +53556,7 @@ entities: pos: -34.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3711 components: - type: Transform @@ -49801,7 +53564,7 @@ entities: pos: -34.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3712 components: - type: Transform @@ -49809,7 +53572,7 @@ entities: pos: -34.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3839 components: - type: Transform @@ -49842,32 +53605,49 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-37.5 parent: 4812 - - uid: 9548 + - uid: 13234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,6.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9549 + - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,7.5 + pos: -47.5,6.5 parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9550 + - uid: 13441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 + pos: -48.5,6.5 + parent: 4812 + - uid: 13528 + components: + - type: Transform + pos: -50.5,6.5 + parent: 4812 + - uid: 13560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,6.5 + parent: 4812 + - uid: 13614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasPressurePump entities: + - uid: 3406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 3795 components: - type: Transform @@ -49884,7 +53664,7 @@ entities: pos: -12.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5583 components: - type: Transform @@ -49897,72 +53677,82 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-28.5 parent: 4812 - - uid: 8773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,2.5 - parent: 4812 - - uid: 9131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 4812 - - uid: 9212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 4812 - - uid: 9218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,8.5 - parent: 4812 - - uid: 9224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 4812 - - uid: 9230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 4812 - - uid: 9513 + - uid: 9103 components: - type: Transform pos: -43.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9543 + - uid: 9104 components: - type: Transform - pos: -42.5,4.5 + pos: -45.5,12.5 + parent: 4812 + - uid: 9105 + components: + - type: Transform + pos: -47.5,12.5 + parent: 4812 + - uid: 9166 + components: + - type: Transform + pos: -49.5,12.5 + parent: 4812 + - uid: 9167 + components: + - type: Transform + pos: -51.5,12.5 + parent: 4812 + - uid: 9168 + components: + - type: Transform + pos: -53.5,12.5 + parent: 4812 + - uid: 10090 + components: + - type: Transform + pos: -58.5,5.5 + parent: 4812 + - uid: 11900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' + - uid: 11906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,4.5 + parent: 4812 + - uid: 13434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,3.5 + parent: 4812 + - uid: 13516 + components: + - type: Transform + pos: -50.5,5.5 + parent: 4812 - proto: GasThermoMachineFreezer entities: - uid: 859 @@ -49981,17 +53771,37 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-28.5 parent: 4812 - - uid: 9551 + - uid: 13509 components: - type: Transform - pos: -41.5,12.5 + rot: 3.141592653589793 rad + pos: -54.5,0.5 + parent: 4812 + - uid: 13674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,8.5 + parent: 4812 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,8.5 parent: 4812 - proto: GasThermoMachineHeater entities: - - uid: 9552 + - uid: 13439 components: - type: Transform - pos: -41.5,11.5 + rot: 3.141592653589793 rad + pos: -47.5,3.5 + parent: 4812 + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,8.5 parent: 4812 - proto: GasValve entities: @@ -50015,26 +53825,20 @@ entities: parent: 4812 - type: GasValve open: False - - uid: 9164 + - uid: 9328 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-0.5 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 parent: 4812 - type: GasValve open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9544 + - uid: 9924 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,5.5 + pos: -54.5,14.5 parent: 4812 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#947507FF' - proto: GasVentPump entities: - uid: 559 @@ -50044,7 +53848,7 @@ entities: pos: -27.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 710 components: - type: Transform @@ -50052,7 +53856,7 @@ entities: pos: -2.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 817 components: - type: Transform @@ -50060,7 +53864,7 @@ entities: pos: -2.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 818 components: - type: Transform @@ -50068,14 +53872,14 @@ entities: pos: -2.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 835 components: - type: Transform pos: 5.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 838 components: - type: Transform @@ -50083,7 +53887,7 @@ entities: pos: 4.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 846 components: - type: Transform @@ -50091,7 +53895,7 @@ entities: pos: 2.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 847 components: - type: Transform @@ -50099,21 +53903,21 @@ entities: pos: 6.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 848 components: - type: Transform pos: -17.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 849 components: - type: Transform pos: -10.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 864 components: - type: Transform @@ -50121,7 +53925,7 @@ entities: pos: -2.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 871 components: - type: Transform @@ -50129,7 +53933,7 @@ entities: pos: -9.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 877 components: - type: Transform @@ -50137,21 +53941,21 @@ entities: pos: -9.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1511 components: - type: Transform pos: -22.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1685 components: - type: Transform pos: -21.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1770 components: - type: Transform @@ -50159,7 +53963,7 @@ entities: pos: 11.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1814 components: - type: Transform @@ -50167,7 +53971,7 @@ entities: pos: 8.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1817 components: - type: Transform @@ -50175,14 +53979,14 @@ entities: pos: -0.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1852 components: - type: Transform pos: -3.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2071 components: - type: Transform @@ -50190,14 +53994,14 @@ entities: pos: 8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2072 components: - type: Transform pos: 8.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2429 components: - type: Transform @@ -50205,14 +54009,14 @@ entities: pos: -14.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2430 components: - type: Transform pos: -13.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2443 components: - type: Transform @@ -50220,7 +54024,7 @@ entities: pos: 2.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2444 components: - type: Transform @@ -50228,21 +54032,21 @@ entities: pos: -7.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2445 components: - type: Transform pos: -5.5,34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2446 components: - type: Transform pos: 0.5,34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2474 components: - type: Transform @@ -50250,7 +54054,7 @@ entities: pos: -7.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2475 components: - type: Transform @@ -50258,7 +54062,7 @@ entities: pos: 2.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2842 components: - type: Transform @@ -50266,30 +54070,14 @@ entities: pos: 22.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2983 components: - type: Transform pos: 15.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3019 components: - type: Transform @@ -50297,7 +54085,7 @@ entities: pos: 14.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3020 components: - type: Transform @@ -50305,7 +54093,7 @@ entities: pos: 19.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3023 components: - type: Transform @@ -50313,7 +54101,7 @@ entities: pos: 14.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3024 components: - type: Transform @@ -50321,7 +54109,7 @@ entities: pos: 14.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3026 components: - type: Transform @@ -50329,7 +54117,7 @@ entities: pos: 15.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3206 components: - type: Transform @@ -50337,7 +54125,7 @@ entities: pos: 22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3708 components: - type: Transform @@ -50345,14 +54133,14 @@ entities: pos: -31.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3781 components: - type: Transform pos: -1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3834 components: - type: Transform @@ -50398,55 +54186,7 @@ entities: pos: 30.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4231 components: - type: Transform @@ -50454,15 +54194,40 @@ entities: pos: 22.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 4327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4380 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-3.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4440 components: - type: Transform @@ -50470,7 +54235,7 @@ entities: pos: 11.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4441 components: - type: Transform @@ -50478,15 +54243,18 @@ entities: pos: 11.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4444 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4464 components: - type: Transform @@ -50494,7 +54262,7 @@ entities: pos: 15.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4890 components: - type: Transform @@ -50502,7 +54270,7 @@ entities: pos: -18.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4941 components: - type: Transform @@ -50510,7 +54278,7 @@ entities: pos: -15.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5033 components: - type: Transform @@ -50518,7 +54286,7 @@ entities: pos: -24.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5222 components: - type: Transform @@ -50529,7 +54297,7 @@ entities: deviceLists: - 9593 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5225 components: - type: Transform @@ -50540,14 +54308,14 @@ entities: deviceLists: - 9593 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5697 components: - type: Transform pos: 4.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5698 components: - type: Transform @@ -50555,7 +54323,7 @@ entities: pos: 5.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5714 components: - type: Transform @@ -50563,7 +54331,7 @@ entities: pos: 9.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5715 components: - type: Transform @@ -50571,7 +54339,7 @@ entities: pos: 12.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5718 components: - type: Transform @@ -50579,7 +54347,7 @@ entities: pos: 10.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5734 components: - type: Transform @@ -50587,14 +54355,14 @@ entities: pos: 25.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5763 components: - type: Transform pos: 27.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5764 components: - type: Transform @@ -50602,7 +54370,7 @@ entities: pos: 33.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5802 components: - type: Transform @@ -50615,7 +54383,7 @@ entities: pos: 8.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6419 components: - type: Transform @@ -50623,28 +54391,28 @@ entities: pos: -3.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6461 components: - type: Transform pos: -1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6471 components: - type: Transform pos: -2.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6554 components: - type: Transform pos: -16.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6686 components: - type: Transform @@ -50652,7 +54420,7 @@ entities: pos: -21.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6821 components: - type: Transform @@ -50660,7 +54428,7 @@ entities: pos: -26.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6840 components: - type: Transform @@ -50668,14 +54436,14 @@ entities: pos: -23.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6842 components: - type: Transform pos: -19.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7087 components: - type: Transform @@ -50683,7 +54451,7 @@ entities: pos: -25.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7323 components: - type: Transform @@ -50691,7 +54459,7 @@ entities: pos: -10.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7379 components: - type: Transform @@ -50699,21 +54467,21 @@ entities: pos: -10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7380 components: - type: Transform pos: -9.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7856 components: - type: Transform pos: -26.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7857 components: - type: Transform @@ -50721,7 +54489,7 @@ entities: pos: -26.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7871 components: - type: Transform @@ -50729,7 +54497,7 @@ entities: pos: -26.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7872 components: - type: Transform @@ -50737,7 +54505,7 @@ entities: pos: -26.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7886 components: - type: Transform @@ -50745,7 +54513,7 @@ entities: pos: -26.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7905 components: - type: Transform @@ -50753,14 +54521,14 @@ entities: pos: -36.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7906 components: - type: Transform pos: -35.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7910 components: - type: Transform @@ -50768,7 +54536,7 @@ entities: pos: -28.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7911 components: - type: Transform @@ -50776,7 +54544,7 @@ entities: pos: -28.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7912 components: - type: Transform @@ -50784,14 +54552,14 @@ entities: pos: -28.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8238 components: - type: Transform pos: -23.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8240 components: - type: Transform @@ -50799,7 +54567,7 @@ entities: pos: -22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8300 components: - type: Transform @@ -50807,7 +54575,7 @@ entities: pos: -19.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8306 components: - type: Transform @@ -50815,7 +54583,7 @@ entities: pos: -22.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8318 components: - type: Transform @@ -50823,14 +54591,14 @@ entities: pos: -13.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8562 components: - type: Transform pos: -18.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8838 components: - type: Transform @@ -50838,7 +54606,7 @@ entities: pos: -16.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8991 components: - type: Transform @@ -50857,13 +54625,17 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-34.5 parent: 4812 - - uid: 10757 + - uid: 9421 components: - type: Transform - pos: -38.5,3.5 + rot: -1.5707963267948966 rad + pos: -47.5,0.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11962 components: - type: Transform @@ -50871,7 +54643,7 @@ entities: pos: -32.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12027 components: - type: Transform @@ -50879,7 +54651,7 @@ entities: pos: -42.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12028 components: - type: Transform @@ -50887,7 +54659,7 @@ entities: pos: -49.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12029 components: - type: Transform @@ -50895,36 +54667,28 @@ entities: pos: -53.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12030 components: - type: Transform pos: -49.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12032 components: - type: Transform pos: -44.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12037 components: - type: Transform pos: -16.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12039 components: - type: Transform @@ -50932,7 +54696,7 @@ entities: pos: -23.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12041 components: - type: Transform @@ -50940,7 +54704,78 @@ entities: pos: -25.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 12136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12141 + components: + - type: Transform + pos: -30.5,2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12183 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12842 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13204 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13407 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 711 @@ -50950,7 +54785,7 @@ entities: pos: -2.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 814 components: - type: Transform @@ -50958,7 +54793,7 @@ entities: pos: 4.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 815 components: - type: Transform @@ -50966,7 +54801,7 @@ entities: pos: -2.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 816 components: - type: Transform @@ -50974,7 +54809,7 @@ entities: pos: -2.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 857 components: - type: Transform @@ -50982,14 +54817,14 @@ entities: pos: -17.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 858 components: - type: Transform pos: -10.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 885 components: - type: Transform @@ -50997,7 +54832,7 @@ entities: pos: -9.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1512 components: - type: Transform @@ -51005,7 +54840,7 @@ entities: pos: -21.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1686 components: - type: Transform @@ -51013,7 +54848,7 @@ entities: pos: -21.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1813 components: - type: Transform @@ -51021,7 +54856,7 @@ entities: pos: 6.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1816 components: - type: Transform @@ -51029,21 +54864,21 @@ entities: pos: -4.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1853 components: - type: Transform pos: -1.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2073 components: - type: Transform pos: 6.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2074 components: - type: Transform @@ -51051,7 +54886,7 @@ entities: pos: 7.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2439 components: - type: Transform @@ -51059,14 +54894,14 @@ entities: pos: -12.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2440 components: - type: Transform pos: -12.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2441 components: - type: Transform @@ -51074,7 +54909,7 @@ entities: pos: -8.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2442 components: - type: Transform @@ -51082,7 +54917,7 @@ entities: pos: 3.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2447 components: - type: Transform @@ -51090,7 +54925,7 @@ entities: pos: -5.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2448 components: - type: Transform @@ -51098,22 +54933,25 @@ entities: pos: 0.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2963 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,14.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13204 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3001 components: - type: Transform pos: 16.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3016 components: - type: Transform @@ -51121,7 +54959,7 @@ entities: pos: 20.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3017 components: - type: Transform @@ -51129,7 +54967,7 @@ entities: pos: 15.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3021 components: - type: Transform @@ -51137,7 +54975,7 @@ entities: pos: 20.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3022 components: - type: Transform @@ -51145,7 +54983,7 @@ entities: pos: 20.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3027 components: - type: Transform @@ -51153,14 +54991,14 @@ entities: pos: 19.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3782 components: - type: Transform pos: 10.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3813 components: - type: Transform @@ -51192,36 +55030,34 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4226 components: - type: Transform pos: 24.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 4335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4381 components: - type: Transform pos: 17.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4439 components: - type: Transform @@ -51229,7 +55065,7 @@ entities: pos: 12.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4442 components: - type: Transform @@ -51237,15 +55073,7 @@ entities: pos: 12.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4465 components: - type: Transform @@ -51253,14 +55081,14 @@ entities: pos: 15.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4875 components: - type: Transform pos: -15.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4876 components: - type: Transform @@ -51268,14 +55096,14 @@ entities: pos: -19.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5025 components: - type: Transform pos: -18.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5223 components: - type: Transform @@ -51286,7 +55114,7 @@ entities: deviceLists: - 9593 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5224 components: - type: Transform @@ -51297,7 +55125,7 @@ entities: deviceLists: - 9593 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5699 components: - type: Transform @@ -51305,14 +55133,14 @@ entities: pos: 6.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5700 components: - type: Transform pos: 3.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5716 components: - type: Transform @@ -51320,7 +55148,7 @@ entities: pos: 12.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5717 components: - type: Transform @@ -51328,7 +55156,7 @@ entities: pos: 8.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5719 components: - type: Transform @@ -51336,14 +55164,14 @@ entities: pos: 9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5735 components: - type: Transform pos: 27.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5765 components: - type: Transform @@ -51351,7 +55179,7 @@ entities: pos: 27.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5766 components: - type: Transform @@ -51359,7 +55187,7 @@ entities: pos: 33.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5805 components: - type: Transform @@ -51367,7 +55195,7 @@ entities: pos: 13.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6253 components: - type: Transform @@ -51375,7 +55203,7 @@ entities: pos: -26.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6417 components: - type: Transform @@ -51383,7 +55211,7 @@ entities: pos: 11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6420 components: - type: Transform @@ -51391,7 +55219,7 @@ entities: pos: -1.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6455 components: - type: Transform @@ -51399,7 +55227,7 @@ entities: pos: -3.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6472 components: - type: Transform @@ -51407,7 +55235,7 @@ entities: pos: -2.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6687 components: - type: Transform @@ -51415,7 +55243,7 @@ entities: pos: -3.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6838 components: - type: Transform @@ -51423,14 +55251,14 @@ entities: pos: -26.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6839 components: - type: Transform pos: -18.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6841 components: - type: Transform @@ -51438,7 +55266,7 @@ entities: pos: -22.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7088 components: - type: Transform @@ -51446,7 +55274,7 @@ entities: pos: -24.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7227 components: - type: Transform @@ -51454,7 +55282,7 @@ entities: pos: -20.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7325 components: - type: Transform @@ -51462,7 +55290,7 @@ entities: pos: -8.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7381 components: - type: Transform @@ -51470,21 +55298,21 @@ entities: pos: -12.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7382 components: - type: Transform pos: -11.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7858 components: - type: Transform pos: -30.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7873 components: - type: Transform @@ -51492,7 +55320,7 @@ entities: pos: -26.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7874 components: - type: Transform @@ -51500,7 +55328,7 @@ entities: pos: -26.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7887 components: - type: Transform @@ -51508,7 +55336,7 @@ entities: pos: -26.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7907 components: - type: Transform @@ -51516,14 +55344,14 @@ entities: pos: -36.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7908 components: - type: Transform pos: -34.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7909 components: - type: Transform @@ -51531,7 +55359,7 @@ entities: pos: -31.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7913 components: - type: Transform @@ -51539,7 +55367,7 @@ entities: pos: -31.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7914 components: - type: Transform @@ -51547,14 +55375,14 @@ entities: pos: -31.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8239 components: - type: Transform pos: -22.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8241 components: - type: Transform @@ -51562,14 +55390,14 @@ entities: pos: -23.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8307 components: - type: Transform pos: -21.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8317 components: - type: Transform @@ -51577,7 +55405,7 @@ entities: pos: -11.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8563 components: - type: Transform @@ -51585,7 +55413,7 @@ entities: pos: -18.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8787 components: - type: Transform @@ -51593,7 +55421,7 @@ entities: pos: -31.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8836 components: - type: Transform @@ -51601,7 +55429,7 @@ entities: pos: -16.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8994 components: - type: Transform @@ -51620,21 +55448,24 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 4812 - - uid: 10758 + - uid: 9495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 + rot: 1.5707963267948966 rad + pos: -58.5,10.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13561 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 12023 components: - type: Transform pos: -48.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12024 components: - type: Transform @@ -51642,7 +55473,7 @@ entities: pos: -53.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12025 components: - type: Transform @@ -51650,7 +55481,7 @@ entities: pos: -48.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12026 components: - type: Transform @@ -51658,14 +55489,14 @@ entities: pos: -42.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12033 components: - type: Transform pos: -40.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12034 components: - type: Transform @@ -51673,14 +55504,7 @@ entities: pos: -30.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12036 - components: - - type: Transform - pos: -30.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12038 components: - type: Transform @@ -51688,14 +55512,14 @@ entities: pos: -14.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12040 components: - type: Transform pos: -24.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12042 components: - type: Transform @@ -51703,7 +55527,7 @@ entities: pos: -26.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12044 components: - type: Transform @@ -51711,7 +55535,28 @@ entities: pos: -26.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 12137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12183 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12140 + components: + - type: Transform + pos: -38.5,3.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12418 components: - type: Transform @@ -51719,7 +55564,80 @@ entities: pos: -2.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 12688 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12766 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12767 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,1.5 + parent: 4812 + - uid: 13225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,2.5 + parent: 4812 + - uid: 13369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,4.5 + parent: 4812 + - uid: 13452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,2.5 + parent: 4812 + - uid: 13474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,4.5 + parent: 4812 - proto: GeneratorBasic15kW entities: - uid: 1729 @@ -51729,10 +55647,10 @@ entities: parent: 4812 - proto: GeneratorRTG entities: - - uid: 10946 + - uid: 2918 components: - type: Transform - pos: -40.5,22.5 + pos: -39.5,21.5 parent: 4812 - proto: Girder entities: @@ -51817,6 +55735,11 @@ entities: parent: 4812 - proto: Grille entities: + - uid: 736 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 4812 - uid: 748 components: - type: Transform @@ -52202,6 +56125,12 @@ entities: - type: Transform pos: -13.5,26.5 parent: 4812 + - uid: 2607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 4812 - uid: 2669 components: - type: Transform @@ -52237,11 +56166,6 @@ entities: - type: Transform pos: 21.5,21.5 parent: 4812 - - uid: 2873 - components: - - type: Transform - pos: 21.5,19.5 - parent: 4812 - uid: 2874 components: - type: Transform @@ -52282,15 +56206,16 @@ entities: - type: Transform pos: 20.5,16.5 parent: 4812 - - uid: 2907 + - uid: 2888 components: - type: Transform - pos: 25.5,13.5 + pos: 58.5,-24.5 parent: 4812 - - uid: 2908 + - uid: 2892 components: - type: Transform - pos: 25.5,15.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 4812 - uid: 2909 components: @@ -52300,47 +56225,25 @@ entities: - uid: 2910 components: - type: Transform - pos: 23.5,17.5 + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 parent: 4812 - - uid: 2911 + - uid: 2919 components: - type: Transform - pos: 26.5,16.5 + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 parent: 4812 - - uid: 2912 + - uid: 2966 components: - type: Transform - pos: 27.5,16.5 + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 parent: 4812 - - uid: 2913 + - uid: 2967 components: - type: Transform - pos: 28.5,16.5 - parent: 4812 - - uid: 2914 - components: - - type: Transform - pos: 28.5,15.5 - parent: 4812 - - uid: 2915 - components: - - type: Transform - pos: 28.5,13.5 - parent: 4812 - - uid: 2916 - components: - - type: Transform - pos: 28.5,12.5 - parent: 4812 - - uid: 2917 - components: - - type: Transform - pos: 27.5,12.5 - parent: 4812 - - uid: 2918 - components: - - type: Transform - pos: 26.5,12.5 + pos: 66.5,-20.5 parent: 4812 - uid: 3031 components: @@ -52382,6 +56285,23 @@ entities: - type: Transform pos: 22.5,29.5 parent: 4812 + - uid: 3218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,17.5 + parent: 4812 + - uid: 3284 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 4812 + - uid: 3344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 4812 - uid: 3611 components: - type: Transform @@ -52393,6 +56313,18 @@ entities: - type: Transform pos: 10.5,54.5 parent: 4812 + - uid: 3740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 4812 + - uid: 3746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 4812 - uid: 3767 components: - type: Transform @@ -52404,6 +56336,142 @@ entities: rot: 3.141592653589793 rad pos: -15.5,39.5 parent: 4812 + - uid: 3780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 4812 + - uid: 4050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,2.5 + parent: 4812 + - uid: 4136 + components: + - type: Transform + pos: 32.5,2.5 + parent: 4812 + - uid: 4173 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 4812 + - uid: 4174 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 4812 + - uid: 4175 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 4812 + - uid: 4176 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 4812 + - uid: 4181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 4812 + - uid: 4182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,13.5 + parent: 4812 + - uid: 4183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 4812 + - uid: 4194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 4812 + - uid: 4203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 4812 + - uid: 4205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 4812 + - uid: 4221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 4812 + - uid: 4319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-58.5 + parent: 4812 + - uid: 4321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 4812 + - uid: 4325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 4812 + - uid: 4330 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 4812 + - uid: 4331 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 4812 + - uid: 4334 + components: + - type: Transform + pos: 47.5,-24.5 + parent: 4812 + - uid: 4336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-4.5 + parent: 4812 + - uid: 4373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 4812 + - uid: 4382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 + parent: 4812 + - uid: 4383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 4812 - uid: 4385 components: - type: Transform @@ -52439,21 +56507,6 @@ entities: - type: Transform pos: 19.5,-8.5 parent: 4812 - - uid: 4392 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 4812 - - uid: 4393 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 4812 - - uid: 4394 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 4812 - uid: 4395 components: - type: Transform @@ -52479,120 +56532,80 @@ entities: - type: Transform pos: 32.5,3.5 parent: 4812 - - uid: 4400 - components: - - type: Transform - pos: 33.5,3.5 - parent: 4812 - uid: 4401 components: - type: Transform - pos: 34.5,3.5 + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 parent: 4812 - uid: 4402 components: - type: Transform - pos: 34.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 4812 - uid: 4403 components: - type: Transform - pos: 33.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 parent: 4812 - uid: 4404 components: - type: Transform - pos: 32.5,1.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 4812 - uid: 4405 components: - type: Transform - pos: 31.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 parent: 4812 - uid: 4406 components: - type: Transform - pos: 34.5,-0.5 + rot: -1.5707963267948966 rad + pos: 48.5,1.5 parent: 4812 - uid: 4407 components: - type: Transform - pos: 33.5,-0.5 + rot: -1.5707963267948966 rad + pos: 46.5,1.5 parent: 4812 - uid: 4408 components: - type: Transform - pos: 32.5,-0.5 + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 parent: 4812 - uid: 4409 components: - type: Transform - pos: 32.5,-1.5 + pos: 35.5,-0.5 parent: 4812 - uid: 4410 components: - type: Transform - pos: 32.5,-2.5 + rot: -1.5707963267948966 rad + pos: 64.5,-2.5 parent: 4812 - uid: 4411 components: - type: Transform - pos: 32.5,-3.5 - parent: 4812 - - uid: 4412 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 4812 - - uid: 4413 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 37.5,-0.5 parent: 4812 - uid: 4414 components: - type: Transform - pos: 34.5,-4.5 + rot: -1.5707963267948966 rad + pos: 65.5,-4.5 parent: 4812 - - uid: 4415 + - uid: 4433 components: - type: Transform - pos: 34.5,-6.5 - parent: 4812 - - uid: 4416 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 4812 - - uid: 4417 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4418 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 4812 - - uid: 4419 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 4812 - - uid: 4420 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 4812 - - uid: 4421 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 4812 - - uid: 4422 - components: - - type: Transform - pos: 34.5,-8.5 + pos: 30.5,-8.5 parent: 4812 - uid: 4437 components: @@ -52604,41 +56617,61 @@ entities: - type: Transform pos: 14.5,-11.5 parent: 4812 - - uid: 4610 + - uid: 4445 components: - type: Transform - pos: 28.5,7.5 + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 4812 + - uid: 4478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 4812 + - uid: 4497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,13.5 + parent: 4812 + - uid: 4551 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 4812 + - uid: 4557 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 4812 + - uid: 4558 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 4812 + - uid: 4559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 4812 + - uid: 4560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 parent: 4812 - uid: 4611 components: - type: Transform - pos: 29.5,7.5 - parent: 4812 - - uid: 4612 - components: - - type: Transform - pos: 30.5,7.5 + pos: 32.5,8.5 parent: 4812 - uid: 4613 components: - type: Transform pos: 32.5,7.5 parent: 4812 - - uid: 4614 - components: - - type: Transform - pos: 33.5,7.5 - parent: 4812 - - uid: 4615 - components: - - type: Transform - pos: 26.5,9.5 - parent: 4812 - - uid: 4616 - components: - - type: Transform - pos: 26.5,8.5 - parent: 4812 - uid: 4617 components: - type: Transform @@ -52649,46 +56682,6 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 4812 - - uid: 4619 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 4812 - - uid: 4620 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 4812 - - uid: 4621 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 4812 - - uid: 4622 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 4812 - - uid: 4623 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 4812 - - uid: 4624 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 4812 - - uid: 4625 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 4812 - - uid: 4626 - components: - - type: Transform - pos: 32.5,-12.5 - parent: 4812 - uid: 4693 components: - type: Transform @@ -53086,11 +57079,6 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 4812 - - uid: 5546 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 4812 - uid: 5547 components: - type: Transform @@ -53314,11 +57302,6 @@ entities: - type: Transform pos: 9.5,-13.5 parent: 4812 - - uid: 6594 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 4812 - uid: 6595 components: - type: Transform @@ -53389,6 +57372,11 @@ entities: - type: Transform pos: -17.5,-16.5 parent: 4812 + - uid: 6784 + components: + - type: Transform + pos: -64.5,13.5 + parent: 4812 - uid: 6799 components: - type: Transform @@ -53499,10 +57487,11 @@ entities: - type: Transform pos: -8.5,-24.5 parent: 4812 - - uid: 7405 + - uid: 7411 components: - type: Transform - pos: -10.5,-24.5 + rot: 3.141592653589793 rad + pos: 43.5,-4.5 parent: 4812 - uid: 7432 components: @@ -53530,6 +57519,12 @@ entities: rot: 3.141592653589793 rad pos: -16.5,32.5 parent: 4812 + - uid: 7830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 4812 - uid: 7915 components: - type: Transform @@ -53689,6 +57684,12 @@ entities: rot: 3.141592653589793 rad pos: -18.5,32.5 parent: 4812 + - uid: 8373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 4812 - uid: 8467 components: - type: Transform @@ -53701,6 +57702,17 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-30.5 parent: 4812 + - uid: 8480 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 4812 + - uid: 8481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 4812 - uid: 8496 components: - type: Transform @@ -53887,15 +57899,17 @@ entities: - type: Transform pos: -35.5,1.5 parent: 4812 - - uid: 8709 - components: - - type: Transform - pos: -35.5,3.5 - parent: 4812 - uid: 8710 components: - type: Transform - pos: -35.5,5.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 + parent: 4812 + - uid: 8729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,8.5 parent: 4812 - uid: 8752 components: @@ -53947,180 +57961,258 @@ entities: - type: Transform pos: -28.5,-26.5 parent: 4812 - - uid: 9413 + - uid: 9124 components: - type: Transform - pos: -48.5,-1.5 + pos: 51.5,-26.5 parent: 4812 - - uid: 9414 + - uid: 9187 components: - type: Transform - pos: -48.5,-0.5 + rot: -1.5707963267948966 rad + pos: -57.5,9.5 parent: 4812 - - uid: 9415 + - uid: 9188 components: - type: Transform - pos: -48.5,0.5 + rot: -1.5707963267948966 rad + pos: -59.5,8.5 parent: 4812 - - uid: 9416 + - uid: 9199 components: - type: Transform - pos: -48.5,1.5 + rot: 3.141592653589793 rad + pos: -41.5,13.5 parent: 4812 - - uid: 9417 + - uid: 9200 components: - type: Transform - pos: -48.5,2.5 + rot: 3.141592653589793 rad + pos: -42.5,13.5 parent: 4812 - - uid: 9418 + - uid: 9201 components: - type: Transform - pos: -48.5,3.5 + rot: 3.141592653589793 rad + pos: -43.5,13.5 parent: 4812 - - uid: 9419 + - uid: 9202 components: - type: Transform - pos: -48.5,4.5 + rot: 3.141592653589793 rad + pos: -44.5,13.5 parent: 4812 - - uid: 9420 + - uid: 9203 components: - type: Transform - pos: -48.5,5.5 + rot: 3.141592653589793 rad + pos: -46.5,13.5 parent: 4812 - - uid: 9421 + - uid: 9204 components: - type: Transform - pos: -48.5,6.5 + rot: 3.141592653589793 rad + pos: -47.5,13.5 parent: 4812 - - uid: 9422 + - uid: 9205 components: - type: Transform - pos: -48.5,7.5 + rot: 3.141592653589793 rad + pos: -48.5,13.5 parent: 4812 - - uid: 9423 + - uid: 9206 components: - type: Transform - pos: -48.5,8.5 + rot: 3.141592653589793 rad + pos: -49.5,13.5 parent: 4812 - - uid: 9424 + - uid: 9207 components: - type: Transform - pos: -48.5,9.5 + rot: 3.141592653589793 rad + pos: -50.5,13.5 parent: 4812 - - uid: 9425 + - uid: 9208 components: - type: Transform - pos: -48.5,10.5 + rot: 3.141592653589793 rad + pos: -51.5,13.5 parent: 4812 - - uid: 9426 + - uid: 9213 components: - type: Transform - pos: -48.5,11.5 + rot: -1.5707963267948966 rad + pos: -55.5,10.5 + parent: 4812 + - uid: 9214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,11.5 + parent: 4812 + - uid: 9216 + components: + - type: Transform + pos: -56.5,6.5 + parent: 4812 + - uid: 9243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,22.5 + parent: 4812 + - uid: 9245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 4812 + - uid: 9280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,22.5 + parent: 4812 + - uid: 9283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,22.5 + parent: 4812 + - uid: 9285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 4812 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,22.5 + parent: 4812 + - uid: 9299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 4812 + - uid: 9301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,22.5 + parent: 4812 + - uid: 9317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 4812 + - uid: 9336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,17.5 + parent: 4812 + - uid: 9337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 + parent: 4812 + - uid: 9338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,20.5 + parent: 4812 + - uid: 9341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 4812 + - uid: 9342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 4812 + - uid: 9343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,22.5 + parent: 4812 + - uid: 9345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,2.5 + parent: 4812 + - uid: 9352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,6.5 + parent: 4812 + - uid: 9364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,19.5 + parent: 4812 + - uid: 9371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,21.5 parent: 4812 - uid: 9427 components: - type: Transform - pos: -48.5,12.5 + rot: 3.141592653589793 rad + pos: -52.5,15.5 parent: 4812 - - uid: 9428 + - uid: 9433 components: - type: Transform - pos: -48.5,13.5 + rot: 3.141592653589793 rad + pos: -46.5,15.5 parent: 4812 - - uid: 9442 + - uid: 9460 components: - type: Transform - pos: -50.5,11.5 + pos: 24.5,18.5 parent: 4812 - - uid: 9443 + - uid: 9466 components: - type: Transform - pos: -50.5,9.5 + rot: -1.5707963267948966 rad + pos: -59.5,12.5 parent: 4812 - - uid: 9444 + - uid: 9471 components: - type: Transform - pos: -50.5,7.5 + rot: 3.141592653589793 rad + pos: -45.5,13.5 parent: 4812 - - uid: 9445 + - uid: 9475 components: - type: Transform - pos: -50.5,5.5 + rot: 3.141592653589793 rad + pos: -53.5,13.5 parent: 4812 - - uid: 9446 + - uid: 9480 components: - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9447 - components: - - type: Transform - pos: -50.5,1.5 - parent: 4812 - - uid: 9482 - components: - - type: Transform - pos: -46.5,16.5 - parent: 4812 - - uid: 9483 - components: - - type: Transform - pos: -46.5,17.5 - parent: 4812 - - uid: 9484 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9485 - components: - - type: Transform - pos: -44.5,15.5 - parent: 4812 - - uid: 9486 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9487 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9488 - components: - - type: Transform - pos: -42.5,17.5 + pos: 23.5,18.5 parent: 4812 - uid: 9505 components: - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9506 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9507 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9508 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9509 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9510 - components: - - type: Transform - pos: -42.5,13.5 + pos: 33.5,-5.5 parent: 4812 - uid: 9609 components: @@ -54147,6 +58239,23 @@ entities: - type: Transform pos: -9.5,-57.5 parent: 4812 + - uid: 9668 + components: + - type: Transform + pos: 6.5,43.5 + parent: 4812 + - uid: 9709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,12.5 + parent: 4812 + - uid: 9756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 4812 - uid: 9832 components: - type: Transform @@ -54172,11 +58281,23 @@ entities: - type: Transform pos: -51.5,-11.5 parent: 4812 + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,11.5 + parent: 4812 - uid: 9877 components: - type: Transform pos: -51.5,-13.5 parent: 4812 + - uid: 9906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,10.5 + parent: 4812 - uid: 9909 components: - type: Transform @@ -54197,6 +58318,12 @@ entities: - type: Transform pos: -39.5,-9.5 parent: 4812 + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 4812 - uid: 10315 components: - type: Transform @@ -54352,11 +58479,6 @@ entities: - type: Transform pos: -63.5,-28.5 parent: 4812 - - uid: 10395 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 4812 - uid: 10396 components: - type: Transform @@ -54412,21 +58534,6 @@ entities: - type: Transform pos: -54.5,-7.5 parent: 4812 - - uid: 10414 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 4812 - - uid: 10415 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 4812 - - uid: 10416 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 4812 - uid: 10440 components: - type: Transform @@ -54447,6 +58554,12 @@ entities: - type: Transform pos: -48.5,-10.5 parent: 4812 + - uid: 10946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,0.5 + parent: 4812 - uid: 11216 components: - type: Transform @@ -54542,6 +58655,12 @@ entities: - type: Transform pos: 50.5,-42.5 parent: 4812 + - uid: 11716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,9.5 + parent: 4812 - uid: 11718 components: - type: Transform @@ -54617,6 +58736,12 @@ entities: - type: Transform pos: 40.5,-30.5 parent: 4812 + - uid: 11736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,6.5 + parent: 4812 - uid: 11740 components: - type: Transform @@ -54647,120 +58772,41 @@ entities: - type: Transform pos: -10.5,-56.5 parent: 4812 - - uid: 12121 - components: - - type: Transform - pos: -53.5,17.5 - parent: 4812 - - uid: 12122 - components: - - type: Transform - pos: -52.5,17.5 - parent: 4812 - - uid: 12123 - components: - - type: Transform - pos: -51.5,17.5 - parent: 4812 - uid: 12124 components: - type: Transform - pos: -50.5,17.5 - parent: 4812 - - uid: 12125 - components: - - type: Transform - pos: -49.5,17.5 + rot: -1.5707963267948966 rad + pos: -50.5,7.5 parent: 4812 - uid: 12126 components: - type: Transform - pos: -49.5,15.5 - parent: 4812 - - uid: 12127 - components: - - type: Transform - pos: -50.5,15.5 - parent: 4812 - - uid: 12128 - components: - - type: Transform - pos: -51.5,15.5 - parent: 4812 - - uid: 12129 - components: - - type: Transform - pos: -52.5,15.5 - parent: 4812 - - uid: 12130 - components: - - type: Transform - pos: -53.5,15.5 - parent: 4812 - - uid: 12131 - components: - - type: Transform - pos: -57.5,12.5 - parent: 4812 - - uid: 12132 - components: - - type: Transform - pos: -57.5,11.5 - parent: 4812 - - uid: 12133 - components: - - type: Transform - pos: -57.5,10.5 - parent: 4812 - - uid: 12134 - components: - - type: Transform - pos: -57.5,9.5 - parent: 4812 - - uid: 12135 - components: - - type: Transform - pos: -57.5,8.5 - parent: 4812 - - uid: 12136 - components: - - type: Transform - pos: -57.5,7.5 - parent: 4812 - - uid: 12137 - components: - - type: Transform - pos: -57.5,6.5 - parent: 4812 - - uid: 12138 - components: - - type: Transform - pos: -57.5,5.5 - parent: 4812 - - uid: 12139 - components: - - type: Transform - pos: -57.5,4.5 - parent: 4812 - - uid: 12140 - components: - - type: Transform - pos: -57.5,3.5 - parent: 4812 - - uid: 12141 - components: - - type: Transform - pos: -57.5,2.5 + rot: -1.5707963267948966 rad + pos: -51.5,7.5 parent: 4812 - uid: 12142 components: - type: Transform - pos: -57.5,1.5 + rot: -1.5707963267948966 rad + pos: -58.5,1.5 parent: 4812 - - uid: 12143 + - uid: 12146 components: - type: Transform - pos: -57.5,0.5 + rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 4812 + - uid: 12181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,15.5 + parent: 4812 + - uid: 12182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,15.5 parent: 4812 - uid: 12416 components: @@ -54772,6 +58818,755 @@ entities: - type: Transform pos: -7.5,-59.5 parent: 4812 + - uid: 12589 + components: + - type: Transform + pos: 25.5,18.5 + parent: 4812 + - uid: 12591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,22.5 + parent: 4812 + - uid: 12660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 + parent: 4812 + - uid: 12677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 4812 + - uid: 12679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 4812 + - uid: 12680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 4812 + - uid: 12681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 4812 + - uid: 12689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 4812 + - uid: 12745 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 4812 + - uid: 12765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 4812 + - uid: 12768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 + parent: 4812 + - uid: 12769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 4812 + - uid: 12780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 4812 + - uid: 12781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 4812 + - uid: 12786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 4812 + - uid: 12790 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 4812 + - uid: 12792 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 4812 + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 4812 + - uid: 12800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 4812 + - uid: 12801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 4812 + - uid: 12802 + components: + - type: Transform + pos: 60.5,-24.5 + parent: 4812 + - uid: 12862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 4812 + - uid: 12863 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 4812 + - uid: 12864 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 4812 + - uid: 12865 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 4812 + - uid: 12866 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 4812 + - uid: 12875 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 4812 + - uid: 12876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 4812 + - uid: 12898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 4812 + - uid: 12929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 + parent: 4812 + - uid: 12932 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 4812 + - uid: 12933 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 4812 + - uid: 12934 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 4812 + - uid: 12935 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 4812 + - uid: 12936 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 4812 + - uid: 12937 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 4812 + - uid: 12938 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 4812 + - uid: 12939 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 4812 + - uid: 12940 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 4812 + - uid: 12941 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 4812 + - uid: 12942 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 4812 + - uid: 12943 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 4812 + - uid: 12945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 4812 + - uid: 12946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 4812 + - uid: 12947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 4812 + - uid: 12948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 4812 + - uid: 12949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 + parent: 4812 + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 4812 + - uid: 12952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 4812 + - uid: 12953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 4812 + - uid: 12954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-58.5 + parent: 4812 + - uid: 12955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 4812 + - uid: 12956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 4812 + - uid: 12957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 4812 + - uid: 12958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 4812 + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 4812 + - uid: 12960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 4812 + - uid: 12961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 4812 + - uid: 12962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 4812 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-48.5 + parent: 4812 + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 4812 + - uid: 12965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-46.5 + parent: 4812 + - uid: 12969 + components: + - type: Transform + pos: -64.5,11.5 + parent: 4812 + - uid: 13024 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 4812 + - uid: 13025 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 4812 + - uid: 13026 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 4812 + - uid: 13027 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 4812 + - uid: 13028 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 4812 + - uid: 13052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 4812 + - uid: 13064 + components: + - type: Transform + pos: -66.5,3.5 + parent: 4812 + - uid: 13065 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 4812 + - uid: 13067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 4812 + - uid: 13068 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 4812 + - uid: 13073 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 4812 + - uid: 13074 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 4812 + - uid: 13079 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 4812 + - uid: 13089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 4812 + - uid: 13096 + components: + - type: Transform + pos: 48.5,-24.5 + parent: 4812 + - uid: 13101 + components: + - type: Transform + pos: 66.5,-12.5 + parent: 4812 + - uid: 13102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 4812 + - uid: 13105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 4812 + - uid: 13106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 4812 + - uid: 13107 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 4812 + - uid: 13111 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 4812 + - uid: 13117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 4812 + - uid: 13122 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 4812 + - uid: 13127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 4812 + - uid: 13146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 4812 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 4812 + - uid: 13159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 4812 + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 4812 + - uid: 13178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 4812 + - uid: 13183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-26.5 + parent: 4812 + - uid: 13191 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 4812 + - uid: 13193 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 4812 + - uid: 13200 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 4812 + - uid: 13206 + components: + - type: Transform + pos: 64.5,-10.5 + parent: 4812 + - uid: 13207 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 4812 + - uid: 13208 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 4812 + - uid: 13209 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 4812 + - uid: 13213 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 4812 + - uid: 13214 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 4812 + - uid: 13215 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 4812 + - uid: 13219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 4812 + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 + - uid: 13257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 4812 + - uid: 13268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 4812 + - uid: 13269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-26.5 + parent: 4812 + - uid: 13270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 4812 + - uid: 13271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-26.5 + parent: 4812 + - uid: 13362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 4812 + - uid: 13375 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 4812 + - uid: 13380 + components: + - type: Transform + pos: -62.5,15.5 + parent: 4812 + - uid: 13396 + components: + - type: Transform + pos: -64.5,15.5 + parent: 4812 + - uid: 13416 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 4812 + - uid: 13426 + components: + - type: Transform + pos: -66.5,4.5 + parent: 4812 + - uid: 13428 + components: + - type: Transform + pos: -58.5,17.5 + parent: 4812 + - uid: 13429 + components: + - type: Transform + pos: -58.5,16.5 + parent: 4812 + - uid: 13433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,12.5 + parent: 4812 + - uid: 13449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 4812 + - uid: 13458 + components: + - type: Transform + pos: -66.5,1.5 + parent: 4812 + - uid: 13478 + components: + - type: Transform + pos: -64.5,7.5 + parent: 4812 + - uid: 13479 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 4812 + - uid: 13480 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 4812 + - uid: 13485 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 4812 + - uid: 13487 + components: + - type: Transform + pos: -58.5,15.5 + parent: 4812 + - uid: 13488 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 4812 + - uid: 13490 + components: + - type: Transform + pos: -64.5,8.5 + parent: 4812 + - uid: 13491 + components: + - type: Transform + pos: -64.5,6.5 + parent: 4812 + - uid: 13497 + components: + - type: Transform + pos: -66.5,0.5 + parent: 4812 + - uid: 13500 + components: + - type: Transform + pos: -66.5,5.5 + parent: 4812 + - uid: 13535 + components: + - type: Transform + pos: -60.5,15.5 + parent: 4812 + - uid: 13537 + components: + - type: Transform + pos: -64.5,12.5 + parent: 4812 + - uid: 13538 + components: + - type: Transform + pos: -61.5,15.5 + parent: 4812 + - uid: 13620 + components: + - type: Transform + pos: -66.5,7.5 + parent: 4812 + - uid: 13621 + components: + - type: Transform + pos: -66.5,9.5 + parent: 4812 + - uid: 13635 + components: + - type: Transform + pos: -57.5,16.5 + parent: 4812 - proto: GrilleBroken entities: - uid: 1544 @@ -54824,55 +59619,6 @@ entities: - type: Transform pos: 11.5,-40.5 parent: 4812 - - uid: 11707 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 4812 - - uid: 11716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 4812 - - uid: 11717 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 4812 - - uid: 11722 - components: - - type: Transform - pos: 42.5,-30.5 - parent: 4812 - - uid: 11733 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 4812 - - uid: 11735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - - uid: 11736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - - uid: 11737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 4812 - - uid: 11738 - components: - - type: Transform - pos: 40.5,-42.5 - parent: 4812 - uid: 11849 components: - type: Transform @@ -54884,6 +59630,224 @@ entities: - type: Transform pos: 15.5,-15.5 parent: 4812 + - uid: 13023 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 4812 + - uid: 13224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-15.5 + parent: 4812 +- proto: GrilleSpawner + entities: + - uid: 9508 + components: + - type: Transform + pos: -42.5,22.5 + parent: 4812 + - uid: 12776 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 4812 + - uid: 13235 + components: + - type: Transform + pos: -55.5,18.5 + parent: 4812 + - uid: 13237 + components: + - type: Transform + pos: -47.5,22.5 + parent: 4812 + - uid: 13240 + components: + - type: Transform + pos: -24.5,37.5 + parent: 4812 + - uid: 13243 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 4812 + - uid: 13244 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 4812 + - uid: 13246 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 4812 + - uid: 13248 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 4812 + - uid: 13272 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 4812 + - uid: 13318 + components: + - type: Transform + pos: 53.5,-41.5 + parent: 4812 + - uid: 13319 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 4812 + - uid: 13320 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 4812 + - uid: 13322 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 4812 + - uid: 13324 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 4812 + - uid: 13326 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 4812 + - uid: 13327 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 4812 + - uid: 13328 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 4812 + - uid: 13329 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 4812 + - uid: 13330 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 4812 + - uid: 13331 + components: + - type: Transform + pos: 0.5,39.5 + parent: 4812 + - uid: 13333 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 4812 + - uid: 13335 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 4812 + - uid: 13347 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 4812 + - uid: 13348 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 4812 + - uid: 13349 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 4812 + - uid: 13350 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 4812 + - uid: 13351 + components: + - type: Transform + pos: 66.5,-16.5 + parent: 4812 + - uid: 13352 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 4812 + - uid: 13353 + components: + - type: Transform + pos: 64.5,-12.5 + parent: 4812 + - uid: 13354 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 4812 + - uid: 13489 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 4812 + - uid: 13492 + components: + - type: Transform + pos: -64.5,14.5 + parent: 4812 + - uid: 13622 + components: + - type: Transform + pos: -64.5,9.5 + parent: 4812 + - uid: 13623 + components: + - type: Transform + pos: -64.5,10.5 + parent: 4812 + - uid: 13624 + components: + - type: Transform + pos: -66.5,8.5 + parent: 4812 + - uid: 13625 + components: + - type: Transform + pos: -66.5,6.5 + parent: 4812 + - uid: 13626 + components: + - type: Transform + pos: -66.5,2.5 + parent: 4812 + - uid: 13627 + components: + - type: Transform + pos: -4.5,38.5 + parent: 4812 + - uid: 13629 + components: + - type: Transform + pos: 10.5,38.5 + parent: 4812 + - uid: 13630 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 4812 - proto: GunSafeRifleLecter entities: - uid: 4809 @@ -54922,6 +59886,11 @@ entities: - type: Transform pos: -18.546284,12.521154 parent: 4812 + - uid: 13255 + components: + - type: Transform + pos: 23.53569,17.595407 + parent: 4812 - proto: HandheldHealthAnalyzer entities: - uid: 6246 @@ -54982,6 +59951,32 @@ entities: - type: Transform pos: -29.373522,30.531204 parent: 4812 +- proto: HeatExchanger + entities: + - uid: 2965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 4812 + - uid: 4581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 4812 + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 4812 + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 4812 - proto: Hemostat entities: - uid: 6244 @@ -55350,12 +60345,6 @@ entities: - type: Transform pos: 5.5,23.5 parent: 4812 - - uid: 12393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 4812 - uid: 12396 components: - type: Transform @@ -55367,20 +60356,25 @@ entities: - type: Transform pos: -4.5,21.5 parent: 4812 + - uid: 13059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 4812 - proto: IntercomEngineering entities: + - uid: 9468 + components: + - type: Transform + pos: -36.5,3.5 + parent: 4812 - uid: 12389 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-9.5 parent: 4812 - - uid: 12390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-0.5 - parent: 4812 - proto: IntercomMedical entities: - uid: 4852 @@ -55457,6 +60451,16 @@ entities: - type: Transform pos: 17.49418,49.5522 parent: 4812 + - uid: 13163 + components: + - type: Transform + pos: 9.381038,14.835535 + parent: 4812 + - uid: 13164 + components: + - type: Transform + pos: 9.516455,14.564514 + parent: 4812 - proto: KitchenKnife entities: - uid: 1642 @@ -55525,9 +60529,24 @@ entities: - uid: 1481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.696417,-19.020947 + pos: 24.580408,-19.166311 parent: 4812 + - type: HandheldLight + toggleActionEntity: 8638 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8638 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 1520 components: - type: Transform @@ -55684,21 +60703,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 9576 - components: - - type: Transform - pos: -28.432161,1.6425915 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 10704 components: - type: Transform @@ -56365,24 +61369,17 @@ entities: - 0 - 0 - 0 -- proto: LockerMedical - entities: - - uid: 7328 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 4812 - proto: LockerMedicalFilled entities: - - uid: 7400 + - uid: 9498 components: - type: Transform - pos: -8.5,-27.5 + pos: -14.5,-18.5 parent: 4812 - - uid: 7401 + - uid: 12666 components: - type: Transform - pos: -8.5,-26.5 + pos: -14.5,-16.5 parent: 4812 - proto: LockerMedicineFilled entities: @@ -56419,6 +61416,13 @@ entities: - 0 - 0 - 0 +- proto: LockerParamedicFilled + entities: + - uid: 12668 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 4812 - proto: LockerQuarterMasterFilled entities: - uid: 3441 @@ -56482,15 +61486,15 @@ entities: - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 6777 + - uid: 12981 components: - type: Transform - pos: 22.5,16.5 + pos: 25.5,17.5 parent: 4812 - - uid: 6778 + - uid: 13080 components: - type: Transform - pos: 24.5,16.5 + pos: 26.5,17.5 parent: 4812 - proto: LockerScienceFilled entities: @@ -56611,6 +61615,43 @@ entities: - 0 - 0 - 0 +- proto: LockerSyndicatePersonal + entities: + - uid: 13323 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14594 + 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: + - 9510 + - 9557 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedicalFilled entities: - uid: 7430 @@ -56645,29 +61686,11 @@ entities: - 0 - proto: LockerWeldingSuppliesFilled entities: - - uid: 9681 + - uid: 11898 components: - type: Transform - pos: -28.5,3.5 + pos: -44.5,0.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - uid: 6341 @@ -56717,18 +61740,6 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 4812 -- proto: MachineFrame - entities: - - uid: 5048 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 4812 - - uid: 7197 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 4812 - proto: MachineFrameDestroyed entities: - uid: 11661 @@ -56736,6 +61747,18 @@ entities: - type: Transform pos: 4.5,-40.5 parent: 4812 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 2914 + components: + - type: Transform + pos: -21.302504,23.37122 + parent: 4812 + - uid: 13166 + components: + - type: Transform + pos: -21.281672,23.225285 + parent: 4812 - proto: MaintenanceFluffSpawner entities: - uid: 278 @@ -56793,6 +61816,11 @@ entities: - type: Transform pos: 4.5,12.5 parent: 4812 + - uid: 13174 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4812 - proto: MaintenancePlantSpawner entities: - uid: 10549 @@ -56827,6 +61855,11 @@ entities: - type: Transform pos: -37.5,25.5 parent: 4812 + - uid: 13411 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 4812 - proto: MaintenanceWeaponSpawner entities: - uid: 4609 @@ -56915,10 +61948,10 @@ entities: parent: 4812 - proto: MedicalTechFab entities: - - uid: 7398 + - uid: 3475 components: - type: Transform - pos: -9.5,-28.5 + pos: -16.5,-15.5 parent: 4812 - proto: MedkitAdvancedFilled entities: @@ -56932,7 +61965,7 @@ entities: - uid: 7407 components: - type: Transform - pos: -10.646522,-25.180182 + pos: -14.610416,-20.210476 parent: 4812 - proto: MedkitBurnFilled entities: @@ -56944,7 +61977,7 @@ entities: - uid: 7408 components: - type: Transform - pos: -10.521522,-25.336432 + pos: -14.464582,-20.32514 parent: 4812 - proto: MedkitCombatFilled entities: @@ -56960,12 +61993,17 @@ entities: - type: Transform pos: -8.488935,34.56198 parent: 4812 + - uid: 12788 + components: + - type: Transform + pos: 29.5,16.5 + parent: 4812 - proto: MedkitToxinFilled entities: - uid: 7409 components: - type: Transform - pos: -10.318397,-25.523932 + pos: -14.308332,-20.523193 parent: 4812 - proto: MicroManipulatorStockPart entities: @@ -56986,12 +62024,13 @@ entities: parent: 4812 - proto: MicrophoneInstrument entities: - - uid: 12381 + - uid: 9555 components: - type: Transform - parent: 9099 + parent: 9554 - type: Physics canCollide: False + - type: InsideEntityStorage - proto: MinimoogInstrument entities: - uid: 9054 @@ -57123,20 +62162,20 @@ entities: - type: Transform pos: 25.5,-22.5 parent: 4812 - - uid: 9448 + - uid: 9157 components: - type: Transform - pos: -53.5,1.5 + pos: -32.5,5.5 parent: 4812 - - uid: 9667 + - uid: 9231 components: - type: Transform - pos: -33.5,4.5 + pos: -31.5,5.5 parent: 4812 - - uid: 9668 + - uid: 9470 components: - type: Transform - pos: -33.5,5.5 + pos: -42.5,18.5 parent: 4812 - uid: 11786 components: @@ -57193,6 +62232,14 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 4812 +- proto: OreBox + entities: + - uid: 12761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 4812 - proto: OreProcessor entities: - uid: 2902 @@ -57217,6 +62264,11 @@ entities: parent: 4812 - proto: OxygenCanister entities: + - uid: 723 + components: + - type: Transform + pos: -31.5,4.5 + parent: 4812 - uid: 733 components: - type: Transform @@ -57242,21 +62294,16 @@ entities: - type: Transform pos: -13.5,-28.5 parent: 4812 - - uid: 9450 + - uid: 9474 components: - type: Transform - pos: -53.5,3.5 + pos: -44.5,18.5 parent: 4812 - uid: 9669 components: - type: Transform pos: -32.5,4.5 parent: 4812 - - uid: 9670 - components: - - type: Transform - pos: -32.5,5.5 - parent: 4812 - uid: 10740 components: - type: Transform @@ -57272,6 +62319,11 @@ entities: - type: Transform pos: 20.5,-32.5 parent: 4812 + - uid: 13611 + components: + - type: Transform + pos: -50.5,0.5 + parent: 4812 - proto: OxygenTankFilled entities: - uid: 11791 @@ -57693,11 +62745,6 @@ entities: - type: Transform pos: 17.728024,13.748642 parent: 4812 - - uid: 3277 - components: - - type: Transform - pos: 22.826836,12.68298 - parent: 4812 - uid: 3882 components: - type: Transform @@ -57784,16 +62831,6 @@ entities: parent: 4812 - proto: Pickaxe entities: - - uid: 3273 - components: - - type: Transform - pos: 22.483086,13.573605 - parent: 4812 - - uid: 3274 - components: - - type: Transform - pos: 22.576836,13.43298 - parent: 4812 - uid: 3785 components: - type: Transform @@ -57809,16 +62846,26 @@ entities: - type: Transform pos: -48.358597,-23.531572 parent: 4812 - - uid: 11617 - components: - - type: Transform - pos: 37.304466,-40.56443 - parent: 4812 - uid: 11678 components: - type: Transform pos: 28.462547,-39.447342 parent: 4812 + - uid: 13133 + components: + - type: Transform + pos: 26.604021,14.49231 + parent: 4812 + - uid: 13205 + components: + - type: Transform + pos: 26.489439,14.669516 + parent: 4812 + - uid: 13227 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 4812 - proto: PinpointerNuclear entities: - uid: 2722 @@ -57842,10 +62889,15 @@ entities: parent: 4812 - proto: PlasmaCanister entities: - - uid: 9457 + - uid: 9159 components: - type: Transform - pos: -53.5,9.5 + pos: -50.5,18.5 + parent: 4812 + - uid: 13610 + components: + - type: Transform + pos: -49.5,0.5 parent: 4812 - proto: PlasticFlapsAirtightClear entities: @@ -57879,16 +62931,21 @@ entities: - type: Transform pos: 23.5,28.5 parent: 4812 - - uid: 4432 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 4812 - uid: 8622 components: - type: Transform pos: -32.5,0.5 parent: 4812 + - uid: 13279 + components: + - type: Transform + pos: 27.5,12.5 + parent: 4812 + - uid: 13288 + components: + - type: Transform + pos: 29.5,12.5 + parent: 4812 - proto: PlayerStationAi entities: - uid: 10457 @@ -58095,6 +63152,13 @@ entities: - type: Transform pos: -13.5,-29.5 parent: 4812 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 13637 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 4812 - proto: PosterLegitCarpMount entities: - uid: 9635 @@ -58279,6 +63343,11 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 4812 + - uid: 13638 + components: + - type: Transform + pos: -46.5,6.5 + parent: 4812 - proto: PosterLegitSafetyMothHardhat entities: - uid: 10918 @@ -58288,18 +63357,11 @@ entities: parent: 4812 - proto: PosterLegitSafetyMothMeth entities: - - uid: 10739 + - uid: 13664 components: - type: Transform pos: -13.5,-18.5 parent: 4812 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 10906 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 4812 - proto: PosterLegitScience entities: - uid: 6367 @@ -58506,22 +63568,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 4550 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4577 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 4600 components: - type: Transform @@ -58530,6 +63576,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 4620 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 4812 - uid: 5062 components: - type: Transform @@ -58586,11 +63637,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 7045 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 4812 - uid: 8288 components: - type: Transform @@ -58599,14 +63645,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 9683 - components: - - type: Transform - pos: -36.5,4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 9684 components: - type: Transform @@ -58673,10 +63711,10 @@ entities: stash: !type:ContainerSlot {} - proto: PottedPlantRD entities: - - uid: 12045 + - uid: 4315 components: - type: Transform - pos: 28.5,-20.5 + pos: 26.5,-17.5 parent: 4812 - proto: PowerCellRecharger entities: @@ -58715,6 +63753,12 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 7400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 4812 - uid: 8579 components: - type: Transform @@ -58722,6 +63766,11 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 9683 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 4812 - uid: 10713 components: - type: Transform @@ -58736,6 +63785,23 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 4812 + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 4812 + - uid: 13409 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 4812 - proto: PowerDrill entities: - uid: 6309 @@ -58745,6 +63811,17 @@ entities: parent: 4812 - proto: Poweredlight entities: + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 4812 + - uid: 742 + components: + - type: Transform + pos: -42.5,18.5 + parent: 4812 - uid: 1515 components: - type: Transform @@ -59091,14 +64168,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3219 components: - type: Transform @@ -59220,14 +64289,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4473 components: - type: Transform @@ -59235,14 +64296,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4475 components: - type: Transform @@ -59259,6 +64312,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4619 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 4812 - uid: 4952 components: - type: Transform @@ -59488,6 +64546,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6778 + components: + - type: Transform + pos: -41.5,14.5 + parent: 4812 - uid: 7019 components: - type: Transform @@ -59538,14 +64601,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7621 components: - type: Transform @@ -59733,100 +64788,61 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9311 + - uid: 9223 + components: + - type: Transform + pos: 26.5,17.5 + parent: 4812 + - uid: 9281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,8.5 + parent: 4812 + - uid: 9410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 4812 + - uid: 9463 + components: + - type: Transform + pos: -52.5,18.5 + parent: 4812 + - uid: 9464 + components: + - type: Transform + pos: -50.5,18.5 + parent: 4812 + - uid: 9465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,12.5 + parent: 4812 + - uid: 9536 + components: + - type: Transform + pos: -46.5,18.5 + parent: 4812 + - uid: 9537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 4812 + - uid: 9538 + components: + - type: Transform + pos: -44.5,18.5 + parent: 4812 + - uid: 9716 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,1.5 + pos: -46.5,-2.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9706 - components: - - type: Transform - pos: -46.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9707 - components: - - type: Transform - pos: -42.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9819 components: - type: Transform @@ -59834,14 +64850,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9821 components: - type: Transform @@ -59903,14 +64911,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10686 components: - type: Transform @@ -59957,13 +64957,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10692 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10693 components: - type: Transform @@ -60018,6 +65011,16 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11896 + components: + - type: Transform + pos: -53.5,14.5 + parent: 4812 + - uid: 11910 + components: + - type: Transform + pos: -49.5,14.5 + parent: 4812 - uid: 11916 components: - type: Transform @@ -60086,6 +65089,85 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12122 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 12588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 4812 + - uid: 12784 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 4812 + - uid: 12787 + components: + - type: Transform + pos: -48.5,18.5 + parent: 4812 + - uid: 12912 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 4812 + - uid: 12916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - uid: 12917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4812 + - uid: 12973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-3.5 + parent: 4812 + - uid: 12974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 4812 + - uid: 12976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + - uid: 13063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 4812 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 4812 + - uid: 13495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,3.5 + parent: 4812 + - uid: 13670 + components: + - type: Transform + pos: -52.5,6.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -60273,13 +65355,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3224 - components: - - type: Transform - pos: 27.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3260 components: - type: Transform @@ -60379,6 +65454,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 4812 - uid: 5388 components: - type: Transform @@ -60498,6 +65579,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,9.5 + parent: 4812 - uid: 7731 components: - type: Transform @@ -60655,13 +65742,18 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9531 + - uid: 9353 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 4812 + - uid: 9496 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -48.5,-4.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9659 components: - type: Transform @@ -60837,6 +65929,53 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 4812 + - uid: 13141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 4812 + - uid: 13195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 4812 + - uid: 13264 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 4812 + - uid: 13386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 4812 + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 4812 + - uid: 13605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,4.5 + parent: 4812 + - uid: 13628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 4812 - proto: Protolathe entities: - uid: 6182 @@ -60907,11 +66046,6 @@ entities: - type: Transform pos: 0.5,25.5 parent: 4812 - - uid: 3267 - components: - - type: Transform - pos: 22.5,13.5 - parent: 4812 - uid: 3289 components: - type: Transform @@ -61092,6 +66226,18 @@ entities: - type: Transform pos: 11.5,43.5 parent: 4812 + - uid: 13091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 4812 + - uid: 13196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 4812 - proto: RadioHandheld entities: - uid: 4582 @@ -61111,6 +66257,17 @@ entities: parent: 4812 - proto: Railing entities: + - uid: 3271 + components: + - type: Transform + pos: 24.5,13.5 + parent: 4812 + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 4812 - uid: 7370 components: - type: Transform @@ -61123,6 +66280,49 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 4812 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 4812 + - uid: 12877 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 + - uid: 12972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 4812 + - uid: 13123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,17.5 + parent: 4812 + - uid: 13285 + components: + - type: Transform + pos: 31.5,12.5 + parent: 4812 + - uid: 13286 + components: + - type: Transform + pos: 30.5,12.5 + parent: 4812 + - uid: 13649 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 + - uid: 13650 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 - proto: RailingCorner entities: - uid: 7393 @@ -61131,6 +66331,48 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 4812 + - uid: 13194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 4812 + - uid: 13284 + components: + - type: Transform + pos: 32.5,12.5 + parent: 4812 +- proto: RailingCornerSmall + entities: + - uid: 4616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 4812 + - uid: 7403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 4812 + - uid: 9577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 4812 + - uid: 12928 + components: + - type: Transform + pos: -30.5,3.5 + parent: 4812 + - uid: 13651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 4812 - proto: RandomArcade entities: - uid: 10851 @@ -61324,6 +66566,18 @@ entities: - type: Transform pos: -28.5,-40.5 parent: 4812 + - uid: 9526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 4812 + - uid: 13385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-17.5 + parent: 4812 - proto: RandomPosterLegit entities: - uid: 1470 @@ -61391,6 +66645,17 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 4812 + - uid: 9509 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 4812 + - uid: 9548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-4.5 + parent: 4812 - uid: 11872 components: - type: Transform @@ -61403,6 +66668,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-1.5 parent: 4812 + - uid: 13186 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 4812 - proto: RandomSoap entities: - uid: 1754 @@ -61577,6 +66847,11 @@ entities: - type: Transform pos: -30.5,17.5 parent: 4812 + - uid: 13182 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 4812 - proto: RCD entities: - uid: 10767 @@ -61600,18 +66875,18 @@ entities: parent: 4812 - proto: Recycler entities: + - uid: 2886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 4812 - uid: 11244 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-38.5 parent: 4812 - - uid: 12628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 4812 - proto: ReinforcedPlasmaWindow entities: - uid: 4138 @@ -61634,70 +66909,92 @@ entities: - type: Transform pos: -32.5,20.5 parent: 4812 - - uid: 9035 + - uid: 9119 components: - type: Transform - pos: -50.5,11.5 + pos: -59.5,8.5 parent: 4812 - - uid: 9176 + - uid: 9122 components: - type: Transform - pos: -50.5,1.5 + pos: -58.5,8.5 parent: 4812 - - uid: 9307 + - uid: 9125 components: - type: Transform - pos: -50.5,9.5 + pos: -60.5,8.5 parent: 4812 - - uid: 9308 + - uid: 9211 components: - type: Transform - pos: -50.5,7.5 + rot: -1.5707963267948966 rad + pos: -58.5,2.5 parent: 4812 - - uid: 9309 - components: - - type: Transform - pos: -50.5,5.5 - parent: 4812 - - uid: 9310 - components: - - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9475 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9476 + - uid: 9249 components: - type: Transform + rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 4812 - - uid: 9477 + - uid: 9267 components: - type: Transform - pos: -45.5,15.5 + rot: 3.141592653589793 rad + pos: -48.5,15.5 parent: 4812 - - uid: 9478 + - uid: 9268 components: - type: Transform - pos: -46.5,16.5 + rot: 3.141592653589793 rad + pos: -46.5,15.5 parent: 4812 - - uid: 9479 + - uid: 9297 components: - type: Transform - pos: -46.5,17.5 + rot: 3.141592653589793 rad + pos: -52.5,15.5 parent: 4812 - - uid: 9480 + - uid: 9381 components: - type: Transform - pos: -42.5,16.5 + rot: 3.141592653589793 rad + pos: -50.5,15.5 parent: 4812 - - uid: 9481 + - uid: 9414 components: - type: Transform - pos: -42.5,17.5 + pos: -58.5,12.5 + parent: 4812 + - uid: 9415 + components: + - type: Transform + pos: -57.5,10.5 + parent: 4812 + - uid: 9424 + components: + - type: Transform + pos: -59.5,12.5 + parent: 4812 + - uid: 9426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 4812 + - uid: 9428 + components: + - type: Transform + pos: -57.5,11.5 + parent: 4812 + - uid: 9438 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 9486 + components: + - type: Transform + pos: -60.5,12.5 parent: 4812 - uid: 9863 components: @@ -61709,6 +67006,18 @@ entities: - type: Transform pos: -46.5,-11.5 parent: 4812 + - uid: 10779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,1.5 + parent: 4812 + - uid: 11887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,0.5 + parent: 4812 - proto: ReinforcedWindow entities: - uid: 106 @@ -61886,6 +67195,12 @@ entities: - type: Transform pos: -16.5,-10.5 parent: 4812 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 4812 - uid: 1784 components: - type: Transform @@ -62016,6 +67331,12 @@ entities: - type: Transform pos: 8.5,23.5 parent: 4812 + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 - uid: 1944 components: - type: Transform @@ -62151,11 +67472,6 @@ entities: - type: Transform pos: 21.5,21.5 parent: 4812 - - uid: 2808 - components: - - type: Transform - pos: 21.5,19.5 - parent: 4812 - uid: 2809 components: - type: Transform @@ -62181,71 +67497,58 @@ entities: - type: Transform pos: 18.5,30.5 parent: 4812 - - uid: 2884 - components: - - type: Transform - pos: 23.5,17.5 - parent: 4812 - uid: 2885 components: - type: Transform pos: 21.5,13.5 parent: 4812 - - uid: 2886 - components: - - type: Transform - pos: 25.5,15.5 - parent: 4812 - - uid: 2887 - components: - - type: Transform - pos: 25.5,13.5 - parent: 4812 - - uid: 2888 - components: - - type: Transform - pos: 26.5,16.5 - parent: 4812 - - uid: 2889 - components: - - type: Transform - pos: 27.5,16.5 - parent: 4812 - - uid: 2890 - components: - - type: Transform - pos: 28.5,16.5 - parent: 4812 - - uid: 2891 - components: - - type: Transform - pos: 28.5,15.5 - parent: 4812 - - uid: 2892 - components: - - type: Transform - pos: 28.5,13.5 - parent: 4812 - uid: 2893 components: - type: Transform - pos: 28.5,12.5 - parent: 4812 - - uid: 2894 - components: - - type: Transform - pos: 27.5,12.5 + rot: 3.141592653589793 rad + pos: 27.5,14.5 parent: 4812 - uid: 2895 components: - type: Transform - pos: 26.5,12.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 4812 + - uid: 2907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 parent: 4812 - uid: 3117 components: - type: Transform pos: 16.5,36.5 parent: 4812 + - uid: 3181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 4812 + - uid: 3274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 4812 + - uid: 3278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 4812 + - uid: 3405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 4812 - uid: 3503 components: - type: Transform @@ -62256,121 +67559,16 @@ entities: - type: Transform pos: 10.5,54.5 parent: 4812 - - uid: 4048 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 4812 - - uid: 4050 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 4812 - uid: 4051 components: - type: Transform - pos: 32.5,-8.5 - parent: 4812 - - uid: 4052 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 4812 - - uid: 4053 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4054 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 4812 - - uid: 4055 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 4812 - - uid: 4056 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 4812 - - uid: 4057 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 4812 - - uid: 4058 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 4812 - - uid: 4059 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 4812 - - uid: 4060 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - - uid: 4061 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 4812 - - uid: 4062 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 4812 - - uid: 4063 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 4812 - - uid: 4064 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 4812 - - uid: 4065 - components: - - type: Transform - pos: 34.5,1.5 - parent: 4812 - - uid: 4066 - components: - - type: Transform - pos: 33.5,1.5 - parent: 4812 - - uid: 4067 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4068 - components: - - type: Transform - pos: 31.5,1.5 + pos: 37.5,-0.5 parent: 4812 - uid: 4069 components: - type: Transform pos: 32.5,3.5 parent: 4812 - - uid: 4070 - components: - - type: Transform - pos: 33.5,3.5 - parent: 4812 - - uid: 4071 - components: - - type: Transform - pos: 34.5,3.5 - parent: 4812 - uid: 4072 components: - type: Transform @@ -62391,26 +67589,6 @@ entities: - type: Transform pos: 26.5,-0.5 parent: 4812 - - uid: 4076 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 4812 - - uid: 4077 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 4812 - - uid: 4078 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 4812 - - uid: 4079 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 4812 - uid: 4080 components: - type: Transform @@ -62456,6 +67634,151 @@ entities: - type: Transform pos: 19.5,-6.5 parent: 4812 + - uid: 4177 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 4812 + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 4812 + - uid: 4195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 4812 + - uid: 4198 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 4812 + - uid: 4199 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 4812 + - uid: 4200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 4812 + - uid: 4201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 4812 + - uid: 4208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 4812 + - uid: 4209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 4812 + - uid: 4214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 4812 + - uid: 4332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 4812 + - uid: 4412 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 4812 + - uid: 4419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 4812 + - uid: 4431 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 4812 + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 4812 + - uid: 4446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 4812 + - uid: 4474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4812 + - uid: 4479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,13.5 + parent: 4812 + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 4812 + - uid: 4547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 4812 + - uid: 4577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,13.5 + parent: 4812 + - uid: 4578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 4812 + - uid: 4579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 4812 + - uid: 4625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,2.5 + parent: 4812 + - uid: 4626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 4812 - uid: 4627 components: - type: Transform @@ -62696,6 +68019,18 @@ entities: - type: Transform pos: -45.5,-27.5 parent: 4812 + - uid: 4826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,13.5 + parent: 4812 + - uid: 4846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,13.5 + parent: 4812 - uid: 4923 components: - type: Transform @@ -62706,6 +68041,12 @@ entities: - type: Transform pos: -21.5,-24.5 parent: 4812 + - uid: 4984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 4812 - uid: 4988 components: - type: Transform @@ -62971,11 +68312,6 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 4812 - - uid: 5535 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 4812 - uid: 5536 components: - type: Transform @@ -63056,6 +68392,18 @@ entities: - type: Transform pos: 12.5,-19.5 parent: 4812 + - uid: 6287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 4812 + - uid: 6289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,13.5 + parent: 4812 - uid: 6311 components: - type: Transform @@ -63126,6 +68474,18 @@ entities: - type: Transform pos: -17.5,-37.5 parent: 4812 + - uid: 7045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,13.5 + parent: 4812 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,13.5 + parent: 4812 - uid: 7196 components: - type: Transform @@ -63201,10 +68561,11 @@ entities: - type: Transform pos: -8.5,-24.5 parent: 4812 - - uid: 7403 + - uid: 7410 components: - type: Transform - pos: -10.5,-24.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 parent: 4812 - uid: 7435 components: @@ -63306,6 +68667,12 @@ entities: - type: Transform pos: -35.5,13.5 parent: 4812 + - uid: 7942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 4812 - uid: 8169 components: - type: Transform @@ -63331,12 +68698,30 @@ entities: - type: Transform pos: -21.5,26.5 parent: 4812 + - uid: 8382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 4812 - uid: 8468 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-26.5 parent: 4812 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,13.5 + parent: 4812 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,13.5 + parent: 4812 - uid: 8627 components: - type: Transform @@ -63377,16 +68762,6 @@ entities: - type: Transform pos: -35.5,1.5 parent: 4812 - - uid: 8637 - components: - - type: Transform - pos: -35.5,3.5 - parent: 4812 - - uid: 8638 - components: - - type: Transform - pos: -35.5,5.5 - parent: 4812 - uid: 8676 components: - type: Transform @@ -63412,6 +68787,17 @@ entities: - type: Transform pos: -31.5,-4.5 parent: 4812 + - uid: 8721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 4812 + - uid: 8722 + components: + - type: Transform + pos: 23.5,18.5 + parent: 4812 - uid: 8734 components: - type: Transform @@ -63427,115 +68813,44 @@ entities: - type: Transform pos: -27.5,-41.5 parent: 4812 - - uid: 9291 + - uid: 9129 components: - type: Transform - pos: -48.5,-1.5 + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 parent: 4812 - - uid: 9292 + - uid: 9209 components: - type: Transform - pos: -48.5,-0.5 + rot: 3.141592653589793 rad + pos: -49.5,13.5 parent: 4812 - - uid: 9293 + - uid: 9210 components: - type: Transform - pos: -48.5,0.5 + rot: 3.141592653589793 rad + pos: -51.5,13.5 parent: 4812 - - uid: 9294 + - uid: 9422 components: - type: Transform - pos: -48.5,1.5 + pos: 23.5,-16.5 parent: 4812 - - uid: 9295 + - uid: 9461 components: - type: Transform - pos: -48.5,2.5 + pos: 24.5,18.5 parent: 4812 - - uid: 9296 + - uid: 9482 components: - type: Transform - pos: -48.5,3.5 + rot: 1.5707963267948966 rad + pos: -46.5,4.5 parent: 4812 - - uid: 9297 + - uid: 9511 components: - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9298 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9299 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9300 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9301 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9302 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9303 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9304 - components: - - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9305 - components: - - type: Transform - pos: -48.5,12.5 - parent: 4812 - - uid: 9306 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9498 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9499 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9500 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9501 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9502 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9503 - components: - - type: Transform - pos: -42.5,13.5 + pos: 33.5,-5.5 parent: 4812 - uid: 9588 components: @@ -63597,6 +68912,11 @@ entities: - type: Transform pos: -9.5,-58.5 parent: 4812 + - uid: 9711 + components: + - type: Transform + pos: 25.5,18.5 + parent: 4812 - uid: 9838 components: - type: Transform @@ -63612,21 +68932,6 @@ entities: - type: Transform pos: -54.5,-7.5 parent: 4812 - - uid: 9869 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 4812 - - uid: 9870 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 4812 - - uid: 9872 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 4812 - uid: 9874 components: - type: Transform @@ -63677,6 +68982,12 @@ entities: - type: Transform pos: -47.5,-6.5 parent: 4812 + - uid: 10753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 4812 - uid: 11047 components: - type: Transform @@ -63772,6 +69083,327 @@ entities: - type: Transform pos: 32.5,-37.5 parent: 4812 + - uid: 12139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 4812 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 4812 + - uid: 12658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 4812 + - uid: 12670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 4812 + - uid: 12674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 4812 + - uid: 12675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 4812 + - uid: 12676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 4812 + - uid: 12762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 4812 + - uid: 12771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 4812 + - uid: 12794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 4812 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 4812 + - uid: 12804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 4812 + - uid: 12805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 + parent: 4812 + - uid: 12861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-4.5 + parent: 4812 + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 4812 + - uid: 12882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 4812 + - uid: 12891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 + parent: 4812 + - uid: 12895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 4812 + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 4812 + - uid: 12899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 4812 + - uid: 12900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 4812 + - uid: 12931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 4812 + - uid: 13034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 4812 + - uid: 13058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 4812 + - uid: 13060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 4812 + - uid: 13061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 4812 + - uid: 13062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 4812 + - uid: 13077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 4812 + - uid: 13090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 4812 + - uid: 13103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 4812 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 4812 + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 4812 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 4812 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 4812 + - uid: 13114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 4812 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 4812 + - uid: 13118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,7.5 + parent: 4812 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 4812 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 4812 + - uid: 13128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 4812 + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 4812 + - uid: 13161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 4812 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 4812 + - uid: 13210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 4812 + - uid: 13218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,6.5 + parent: 4812 + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,9.5 + parent: 4812 + - uid: 13256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,17.5 + parent: 4812 + - uid: 13413 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 4812 + - uid: 13476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 4812 + - uid: 13501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 4812 + - uid: 13505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 4812 + - uid: 13532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 4812 + - uid: 13534 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 + - uid: 13544 + components: + - type: Transform + pos: -58.5,6.5 + parent: 4812 - proto: ResearchAndDevelopmentServer entities: - uid: 6252 @@ -63823,11 +69455,11 @@ entities: parent: 4812 - proto: SalvageMagnet entities: - - uid: 2923 + - uid: 12803 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,12.5 + pos: 28.5,16.5 parent: 4812 - proto: SalvageMaterialCrateSpawner entities: @@ -63857,6 +69489,11 @@ entities: parent: 4812 - proto: Screen entities: + - uid: 7465 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 4812 - uid: 12560 components: - type: Transform @@ -63937,10 +69574,15 @@ entities: - type: Transform pos: 26.5,1.5 parent: 4812 - - uid: 12576 + - uid: 12867 components: - type: Transform - pos: 26.5,-6.5 + pos: 32.5,-5.5 + parent: 4812 + - uid: 13258 + components: + - type: Transform + pos: 32.5,0.5 parent: 4812 - proto: SecurityTechFab entities: @@ -64185,10 +69827,11 @@ entities: parent: 4812 - proto: Shovel entities: - - uid: 3275 + - uid: 13238 components: - type: Transform - pos: 22.483086,13.479855 + rot: -1.5707963267948966 rad + pos: 26.447771,14.59655 parent: 4812 - proto: ShuttersNormalOpen entities: @@ -64389,6 +70032,36 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-6.5 parent: 4812 + - uid: 13473 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 4812 + - uid: 13663 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 4812 + - uid: 13665 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 4812 + - uid: 13666 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 4812 + - uid: 13667 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 4812 + - uid: 13668 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 4812 - proto: ShuttleConsoleCircuitboard entities: - uid: 10959 @@ -64515,27 +70188,6 @@ entities: - Pressed: Toggle 5796: - Pressed: Toggle - - uid: 6587 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 6574: - - Pressed: Toggle - 6576: - - Pressed: Toggle - 6575: - - Pressed: Toggle - 6577: - - Pressed: Toggle - 6578: - - Pressed: Toggle - 6570: - - Pressed: Toggle - 6586: - - Pressed: Toggle - uid: 6690 components: - type: Transform @@ -64562,20 +70214,6 @@ entities: - Pressed: Toggle 8161: - Pressed: Toggle - - uid: 9497 - components: - - type: Transform - pos: -45.5,18.5 - parent: 4812 - - uid: 9504 - components: - - type: Transform - pos: -41.5,13.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9496: - - Pressed: Toggle - uid: 10676 components: - type: Transform @@ -64589,6 +70227,111 @@ entities: - Pressed: Toggle 10673: - Pressed: Toggle + - uid: 13618 + components: + - type: Transform + pos: -62.5,2.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - Pressed: Toggle + - uid: 13619 + components: + - type: Transform + pos: -61.5,11.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 4413 + components: + - type: MetaData + name: EVA blast door + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 729: + - Pressed: Toggle + - uid: 4610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 12970: + - Pressed: Toggle + 13287: + - Pressed: Toggle + - uid: 13373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13668: + - Pressed: Toggle + 13667: + - Pressed: Toggle + 13666: + - Pressed: Toggle + 13665: + - Pressed: Toggle + - uid: 13606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: + - Pressed: Toggle + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - Pressed: Toggle + - uid: 13662 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 6574: + - Pressed: Toggle + 6576: + - Pressed: Toggle + 6575: + - Pressed: Toggle + 6577: + - Pressed: Toggle + 6578: + - Pressed: Toggle + 6570: + - Pressed: Toggle + 6586: + - Pressed: Toggle + 13473: + - Pressed: Toggle + 13663: + - Pressed: Toggle - proto: SignAnomaly2 entities: - uid: 6342 @@ -64610,10 +70353,10 @@ entities: - type: Transform pos: -34.5,0.5 parent: 4812 - - uid: 8721 + - uid: 9754 components: - type: Transform - pos: -35.5,4.5 + pos: -35.5,3.5 parent: 4812 - proto: SignBio entities: @@ -64667,13 +70410,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 4812 -- proto: SignCloning - entities: - - uid: 8382 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 4812 - proto: SignCryogenicsMed entities: - uid: 4928 @@ -64746,6 +70482,17 @@ entities: rot: 3.141592653589793 rad pos: 2.5034294,-33.300663 parent: 4812 + - uid: 13179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 4812 + - uid: 13180 + components: + - type: Transform + pos: 10.500242,18.291374 + parent: 4812 - proto: SignDirectionalHop entities: - uid: 12369 @@ -64846,6 +70593,12 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-4.5 parent: 4812 + - uid: 13181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.500242,18.699064 + parent: 4812 - proto: SignDirectionalSupply entities: - uid: 1465 @@ -64901,11 +70654,6 @@ entities: - type: Transform pos: 4.5,21.5 parent: 4812 - - uid: 4579 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - uid: 5073 components: - type: Transform @@ -64916,8 +70664,23 @@ entities: - type: Transform pos: -12.5,-41.5 parent: 4812 + - uid: 13261 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 4812 + - uid: 13262 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 4812 - proto: SignElectricalMed entities: + - uid: 2908 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 4812 - uid: 3978 components: - type: Transform @@ -64967,6 +70730,18 @@ entities: - type: Transform pos: -34.5,-4.5 parent: 4812 +- proto: SignEVA + entities: + - uid: 9932 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 4812 + - uid: 13460 + components: + - type: Transform + pos: -59.5,5.5 + parent: 4812 - proto: SignExamroom entities: - uid: 6659 @@ -64974,6 +70749,11 @@ entities: - type: Transform pos: -13.5,-24.5 parent: 4812 + - uid: 11904 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 4812 - proto: SignFire entities: - uid: 9043 @@ -64991,12 +70771,23 @@ entities: - type: Transform pos: -38.5,-4.5 parent: 4812 -- proto: SignFlammableMed - entities: - - uid: 10748 + - uid: 12873 components: - type: Transform - pos: -32.5,6.5 + pos: -58.5,3.5 + parent: 4812 +- proto: SignFlammableMed + entities: + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 4812 + - uid: 13514 + components: + - type: Transform + pos: -57.5,12.5 parent: 4812 - proto: SignGravity entities: @@ -65091,6 +70882,11 @@ entities: - type: Transform pos: -19.5,3.5 parent: 4812 + - uid: 11909 + components: + - type: Transform + pos: -46.5,1.5 + parent: 4812 - proto: SignPlaque entities: - uid: 7570 @@ -65141,6 +70937,14 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 4812 +- proto: SignSalvage + entities: + - uid: 12654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 4812 - proto: SignScience entities: - uid: 6175 @@ -65205,6 +71009,12 @@ entities: - type: Transform pos: 2.5,44.5 parent: 4812 + - uid: 9235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 4812 - uid: 9693 components: - type: Transform @@ -65215,6 +71025,33 @@ entities: - type: Transform pos: -42.5,-9.5 parent: 4812 + - uid: 12813 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 4812 + - uid: 12878 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 4812 + - uid: 13021 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 4812 + - uid: 13138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 4812 + - uid: 13281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -65243,10 +71080,27 @@ entities: parent: 4812 - proto: SignShipDock entities: - - uid: 3344 + - uid: 9930 components: - type: Transform - pos: 21.5,16.5 + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 4812 + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 4812 + - uid: 13259 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 4812 + - uid: 13260 + components: + - type: Transform + pos: 56.5,-4.5 parent: 4812 - proto: SignSmoking entities: @@ -65265,6 +71119,11 @@ entities: - type: Transform pos: -40.5,11.5 parent: 4812 + - uid: 13636 + components: + - type: Transform + pos: -47.5,7.5 + parent: 4812 - proto: SignSpace entities: - uid: 2939 @@ -65277,16 +71136,6 @@ entities: - type: Transform pos: 4.5,46.5 parent: 4812 - - uid: 4580 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4581 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - uid: 4602 components: - type: Transform @@ -65307,6 +71156,12 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 4812 + - uid: 9545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-2.5 + parent: 4812 - uid: 11694 components: - type: Transform @@ -65381,12 +71236,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,28.5 parent: 4812 - - uid: 3402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 4812 - uid: 4454 components: - type: Transform @@ -65411,6 +71260,12 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-1.5 parent: 4812 + - uid: 13536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 4812 - proto: SinkEmpty entities: - uid: 3580 @@ -65486,20 +71341,16 @@ entities: - type: Transform pos: 14.5,47.5 parent: 4812 - - uid: 8722 + - uid: 6560 components: - - type: MetaData - name: SMES Bank 2 - - type: Transform - pos: -44.5,-2.5 - parent: 4812 - - uid: 8723 - components: - - type: MetaData - name: SMES Bank 1 - type: Transform pos: -45.5,-2.5 parent: 4812 + - uid: 6594 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 4812 - uid: 10166 components: - type: MetaData @@ -66042,6 +71893,26 @@ entities: - type: Transform pos: 53.5,-36.5 parent: 4812 +- proto: SolidSecretDoor + entities: + - uid: 13337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 4812 +- proto: SpaceHeater + entities: + - uid: 6612 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 + - uid: 13655 + components: + - type: Transform + pos: -42.5,0.5 + parent: 4812 - proto: SpawnMechRipley entities: - uid: 8368 @@ -66084,13 +71955,6 @@ entities: - type: Transform pos: -6.5,-9.5 parent: 4812 -- proto: SpawnMobCrabAtmos - entities: - - uid: 6638 - components: - - type: Transform - pos: -43.5,6.5 - parent: 4812 - proto: SpawnMobFoxRenault entities: - uid: 2621 @@ -66168,15 +72032,15 @@ entities: parent: 4812 - proto: SpawnPointAtmos entities: - - uid: 3259 + - uid: 13155 components: - type: Transform - pos: -31.5,2.5 + pos: -28.5,4.5 parent: 4812 - - uid: 3468 + - uid: 13156 components: - type: Transform - pos: -30.5,3.5 + pos: -29.5,3.5 parent: 4812 - proto: SpawnPointBartender entities: @@ -66361,21 +72225,21 @@ entities: parent: 4812 - proto: SpawnPointMedicalDoctor entities: - - uid: 8358 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 4812 - - uid: 8373 - components: - - type: Transform - pos: -9.5,-26.5 - parent: 4812 - uid: 8374 components: - type: Transform pos: -19.5,-22.5 parent: 4812 + - uid: 13149 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 4812 + - uid: 13150 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 4812 - proto: SpawnPointMedicalIntern entities: - uid: 7860 @@ -66409,6 +72273,13 @@ entities: - type: Transform pos: -2.5,2.5 parent: 4812 +- proto: SpawnPointParamedic + entities: + - uid: 2891 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 4812 - proto: SpawnPointPassenger entities: - uid: 12382 @@ -66454,15 +72325,15 @@ entities: parent: 4812 - proto: SpawnPointSalvageSpecialist entities: - - uid: 3284 + - uid: 4472 components: - type: Transform - pos: 23.5,15.5 + pos: 25.5,16.5 parent: 4812 - - uid: 7465 + - uid: 13266 components: - type: Transform - pos: 23.5,14.5 + pos: 24.5,15.5 parent: 4812 - proto: SpawnPointScientist entities: @@ -66617,6 +72488,11 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 4812 + - uid: 13334 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 4812 - proto: Stool entities: - uid: 1752 @@ -66680,6 +72556,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,4.5 parent: 4812 + - uid: 13252 + components: + - type: Transform + pos: 31.5,17.5 + parent: 4812 - proto: StoolBar entities: - uid: 345 @@ -66750,6 +72631,16 @@ entities: parent: 4812 - proto: StorageCanister entities: + - uid: 5048 + components: + - type: Transform + pos: -36.5,4.5 + parent: 4812 + - uid: 6283 + components: + - type: Transform + pos: -35.5,4.5 + parent: 4812 - uid: 6325 components: - type: Transform @@ -66760,31 +72651,6 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 4812 - - uid: 9553 - components: - - type: Transform - pos: -41.5,6.5 - parent: 4812 - - uid: 9554 - components: - - type: Transform - pos: -41.5,7.5 - parent: 4812 - - uid: 9555 - components: - - type: Transform - pos: -41.5,8.5 - parent: 4812 - - uid: 9665 - components: - - type: Transform - pos: -34.5,4.5 - parent: 4812 - - uid: 9666 - components: - - type: Transform - pos: -34.5,5.5 - parent: 4812 - uid: 12462 components: - type: Transform @@ -66883,18 +72749,6 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 -- proto: SuitStorageAtmos - entities: - - uid: 742 - components: - - type: Transform - pos: -41.5,9.5 - parent: 4812 - - uid: 4846 - components: - - type: Transform - pos: -41.5,10.5 - parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -66974,13 +72828,6 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 -- proto: SuitStorageSec - entities: - - uid: 736 - components: - - type: Transform - pos: -35.5,21.5 - parent: 4812 - proto: SuitStorageWarden entities: - uid: 745 @@ -66988,6 +72835,11 @@ entities: - type: Transform pos: -36.5,21.5 parent: 4812 + - uid: 12663 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 - proto: SurveillanceCameraCommand entities: - uid: 2495 @@ -67272,16 +73124,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering Lobby - - uid: 12068 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - uid: 12587 components: - type: Transform @@ -67293,70 +73135,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Lobby - - uid: 12588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - - uid: 12589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks South - - uid: 12590 - components: - - type: Transform - pos: -50.5,13.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks North - - uid: 12591 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Airlock - - uid: 12592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Smes Room - - uid: 12593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Cleanroom - uid: 12594 components: - type: Transform @@ -67465,8 +73243,69 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering + - uid: 13632 + components: + - type: Transform + pos: -53.5,0.5 + parent: 4812 + - type: SurveillanceCamera + id: TEG + - uid: 13633 + components: + - type: Transform + pos: -52.5,8.5 + parent: 4812 + - type: SurveillanceCamera + id: Burn Chamber + - uid: 13634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,6.5 + parent: 4812 + - type: SurveillanceCamera + id: Atmos Core - proto: SurveillanceCameraGeneral entities: + - uid: 5535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-14.5 + parent: 4812 + - type: SurveillanceCamera + id: Library + - uid: 9462 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Hallway + - uid: 9479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Bar + - uid: 9483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + id: Docking Arm Middle + - uid: 9539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + id: Docking Arm End - uid: 12060 components: - type: Transform @@ -67606,16 +73445,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Entrance of evac - - uid: 12540 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 1 - uid: 12541 components: - type: Transform @@ -67744,6 +73573,14 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library + - uid: 12791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Lobby - proto: SurveillanceCameraMedical entities: - uid: 12072 @@ -67862,10 +73699,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterScience entities: - - uid: 4984 + - uid: 13451 components: - type: Transform - pos: 24.5,-18.5 + pos: 24.5,-17.5 parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: @@ -68292,17 +74129,21 @@ entities: - SurveillanceCameraSupply nameSet: True id: QM office - - uid: 12613 +- proto: SyndieFlag + entities: + - uid: 13383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 4812 +- proto: SyndieHandyFlag + entities: + - uid: 13384 + components: + - type: Transform + pos: -40.5,-18.5 parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay Airlock - proto: Syringe entities: - uid: 6248 @@ -68389,11 +74230,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 4812 - - uid: 3266 - components: - - type: Transform - pos: 22.5,12.5 - parent: 4812 - uid: 3447 components: - type: Transform @@ -68444,6 +74280,16 @@ entities: - type: Transform pos: 11.5,48.5 parent: 4812 + - uid: 4337 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 4812 + - uid: 4428 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 4812 - uid: 4455 components: - type: Transform @@ -68459,11 +74305,6 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 4812 - - uid: 4547 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 4812 - uid: 4548 components: - type: Transform @@ -68549,15 +74390,25 @@ entities: - type: Transform pos: -1.5,-27.5 parent: 4812 + - uid: 6606 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 4812 - uid: 7189 components: - type: Transform pos: -18.5,-14.5 parent: 4812 - - uid: 7406 + - uid: 7192 components: - type: Transform - pos: -10.5,-25.5 + pos: -46.5,-2.5 + parent: 4812 + - uid: 7571 + components: + - type: Transform + pos: -8.5,-28.5 parent: 4812 - uid: 8364 components: @@ -68604,6 +74455,11 @@ entities: - type: Transform pos: -37.5,10.5 parent: 4812 + - uid: 9459 + components: + - type: Transform + pos: 23.5,17.5 + parent: 4812 - uid: 9585 components: - type: Transform @@ -68649,6 +74505,12 @@ entities: - type: Transform pos: -43.5,-7.5 parent: 4812 + - uid: 10756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-28.5 + parent: 4812 - uid: 10857 components: - type: Transform @@ -68694,21 +74556,45 @@ entities: - type: Transform pos: -2.5,-34.5 parent: 4812 - - uid: 12114 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 4812 - - uid: 12115 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 4812 - uid: 12493 components: - type: Transform pos: 9.5,-18.5 parent: 4812 + - uid: 13241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,17.5 + parent: 4812 + - uid: 13336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 4812 + - uid: 13345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-19.5 + parent: 4812 + - uid: 13346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-19.5 + parent: 4812 + - uid: 13639 + components: + - type: Transform + pos: -45.5,3.5 + parent: 4812 + - uid: 13640 + components: + - type: Transform + pos: -44.5,3.5 + parent: 4812 - proto: TableCarpet entities: - uid: 257 @@ -68778,10 +74664,11 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 4812 - - uid: 6612 + - uid: 3468 components: - type: Transform - pos: -10.5,-18.5 + rot: 3.141592653589793 rad + pos: -14.5,-20.5 parent: 4812 - uid: 6613 components: @@ -68793,12 +74680,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 4812 - - uid: 6652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 4812 - uid: 7426 components: - type: Transform @@ -68844,11 +74725,29 @@ entities: - type: Transform pos: -40.5,-34.5 parent: 4812 + - uid: 9118 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 4812 - uid: 10659 components: - type: Transform pos: -12.5,-16.5 parent: 4812 + - uid: 13421 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 4812 +- proto: TablePlasmaGlass + entities: + - uid: 9443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-18.5 + parent: 4812 - proto: TableReinforced entities: - uid: 144 @@ -69051,11 +74950,6 @@ entities: - type: Transform pos: 28.5,1.5 parent: 4812 - - uid: 4431 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - uid: 4562 components: - type: Transform @@ -69071,11 +74965,6 @@ entities: - type: Transform pos: 28.5,4.5 parent: 4812 - - uid: 4578 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 4812 - uid: 5306 components: - type: Transform @@ -69201,6 +75090,11 @@ entities: - type: Transform pos: -27.5,22.5 parent: 4812 + - uid: 7328 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 - uid: 7419 components: - type: Transform @@ -69336,6 +75230,18 @@ entities: - type: Transform pos: -30.5,-4.5 parent: 4812 + - uid: 8686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 4812 + - uid: 8709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 4812 - uid: 9568 components: - type: Transform @@ -69346,11 +75252,6 @@ entities: - type: Transform pos: -30.5,5.5 parent: 4812 - - uid: 9573 - components: - - type: Transform - pos: -28.5,1.5 - parent: 4812 - uid: 9724 components: - type: Transform @@ -69441,6 +75342,12 @@ entities: - type: Transform pos: -33.5,20.5 parent: 4812 + - uid: 12673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 4812 - proto: TableReinforcedGlass entities: - uid: 6303 @@ -69690,11 +75597,6 @@ entities: - type: Transform pos: 19.5,-18.5 parent: 4812 - - uid: 6283 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 4812 - uid: 6284 components: - type: Transform @@ -69875,6 +75777,12 @@ entities: - type: Transform pos: -25.5,-18.5 parent: 4812 + - uid: 12665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 4812 - proto: TargetHuman entities: - uid: 12422 @@ -69882,6 +75790,32 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 4812 +- proto: TegCenter + entities: + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 4812 +- proto: TegCirculator + entities: + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,2.5 + parent: 4812 + - type: PointLight + color: '#FF3300FF' + - uid: 13546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 4812 + - type: PointLight + color: '#FF3300FF' - proto: TelecomServer entities: - uid: 330 @@ -69904,11 +75838,6 @@ entities: showEnts: False occludes: True ents: [] - - uid: 4373 - components: - - type: Transform - pos: -3.5,26.5 - parent: 4812 - uid: 4991 components: - type: Transform @@ -70042,16 +75971,17 @@ entities: - type: Transform pos: -25.5,-35.5 parent: 4812 - - uid: 7192 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 4812 - uid: 7193 components: - type: Transform pos: -13.5,-15.5 parent: 4812 + - uid: 10450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 4812 - proto: ToiletDirtyWater entities: - uid: 7027 @@ -70132,16 +76062,6 @@ entities: parent: 4812 - proto: ToolboxEmergencyFilled entities: - - uid: 3271 - components: - - type: Transform - pos: 22.451836,13.667355 - parent: 4812 - - uid: 3272 - components: - - type: Transform - pos: 22.62371,13.52673 - parent: 4812 - uid: 4541 components: - type: Transform @@ -70157,6 +76077,11 @@ entities: - type: Transform pos: -34.527054,-18.337584 parent: 4812 + - uid: 13239 + components: + - type: Transform + pos: 26.510271,14.534006 + parent: 4812 - proto: ToolboxGoldFilled entities: - uid: 2711 @@ -70186,6 +76111,11 @@ entities: - type: Transform pos: -19.484879,9.65999 parent: 4812 + - uid: 13245 + components: + - type: Transform + pos: 26.489439,14.7007885 + parent: 4812 - proto: TorsoHuman entities: - uid: 12423 @@ -70352,17 +76282,53 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 12630 + - uid: 12980 components: - type: Transform - pos: 27.5,11.5 + pos: 24.5,13.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 12628: - - Left: Forward - - Right: Reverse + 2886: + - Left: Reverse + - Right: Forward - Middle: Off + 2896: + - Left: Reverse + - Right: Forward + - Middle: Off + 2890: + - Left: Reverse + - Right: Forward + - Middle: Off + 3769: + - Left: Reverse + - Right: Forward + - Middle: Off + 3434: + - Left: Reverse + - Right: Forward + - Middle: Off + 13135: + - Left: Reverse + - Right: Forward + - Middle: Off + 13282: + - Left: Reverse + - Right: Forward + - Middle: Off + 13283: + - Left: Reverse + - Right: Forward + - Middle: Off + 13289: + - Left: Reverse + - Right: Forward + - Middle: Off + 13290: + - Middle: Off + - Right: Reverse + - Left: Forward - proto: UniformPrinter entities: - uid: 2513 @@ -70398,10 +76364,10 @@ entities: parent: 4812 - proto: VendingMachineAtmosDrobe entities: - - uid: 9572 + - uid: 13486 components: - type: Transform - pos: -28.5,2.5 + pos: -28.5,1.5 parent: 4812 - proto: VendingMachineBooze entities: @@ -70481,10 +76447,10 @@ entities: parent: 4812 - proto: VendingMachineChemicals entities: - - uid: 741 + - uid: 6617 components: - type: Transform - pos: -10.5,-14.5 + pos: -8.5,-15.5 parent: 4812 - proto: VendingMachineCigs entities: @@ -70502,6 +76468,11 @@ entities: - type: Transform pos: 0.5,28.5 parent: 4812 + - uid: 3277 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 4812 - uid: 4536 components: - type: MetaData @@ -70567,6 +76538,11 @@ entities: - type: Transform pos: -5.5,28.5 parent: 4812 + - uid: 4427 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 4812 - uid: 4537 components: - type: MetaData @@ -70644,6 +76620,13 @@ entities: - type: Transform pos: 0.5,11.5 parent: 4812 +- proto: VendingMachineDonut + entities: + - uid: 13481 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 4812 - proto: VendingMachineEngiDrobe entities: - uid: 12516 @@ -70665,13 +76648,6 @@ entities: - type: Transform pos: -30.5,-14.5 parent: 4812 -- proto: VendingMachineGeneDrobe - entities: - - uid: 2607 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 4812 - proto: VendingMachineHappyHonk entities: - uid: 1565 @@ -70702,17 +76678,17 @@ entities: parent: 4812 - proto: VendingMachineMedical entities: - - uid: 7188 + - uid: 9155 components: - type: Transform - pos: -8.5,-28.5 + pos: -14.5,-15.5 parent: 4812 - proto: VendingMachineMediDrobe entities: - - uid: 7399 + - uid: 12978 components: - type: Transform - pos: -8.5,-25.5 + pos: -16.5,-18.5 parent: 4812 - proto: VendingMachineNutri entities: @@ -70742,12 +76718,10 @@ entities: parent: 4812 - proto: VendingMachineSalvage entities: - - uid: 3434 + - uid: 12950 components: - - type: MetaData - name: Salvage Equipment - type: Transform - pos: 23.5,16.5 + pos: 24.5,17.5 parent: 4812 - proto: VendingMachineSciDrobe entities: @@ -70825,29 +76799,8 @@ entities: - type: Transform pos: -28.5,32.5 parent: 4812 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 739 - components: - - type: MetaData - name: tank dispenser - - type: Transform - pos: 7.5,15.5 - parent: 4812 - - uid: 9577 - components: - - type: MetaData - name: tank dispenser - - type: Transform - pos: -31.5,1.5 - parent: 4812 - proto: VendingMachineTankDispenserEVA entities: - - uid: 732 - components: - - type: Transform - pos: 9.5,14.5 - parent: 4812 - uid: 6312 components: - type: MetaData @@ -70862,13 +76815,26 @@ entities: - type: Transform pos: -35.5,-9.5 parent: 4812 - - uid: 12113 + - uid: 12759 + components: + - type: Transform + pos: 7.5,15.5 + parent: 4812 + - uid: 12785 components: - - type: MetaData - name: tank dispenser - type: Transform pos: -42.5,-3.5 parent: 4812 + - uid: 13249 + components: + - type: Transform + pos: 29.5,14.5 + parent: 4812 + - uid: 13652 + components: + - type: Transform + pos: -45.5,0.5 + parent: 4812 - proto: VendingMachineTheater entities: - uid: 1692 @@ -71711,10 +77677,11 @@ entities: - type: Transform pos: 20.5,35.5 parent: 4812 - - uid: 2896 + - uid: 2873 components: - type: Transform - pos: 25.5,12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 parent: 4812 - uid: 2897 components: @@ -71741,25 +77708,17 @@ entities: - type: Transform pos: 21.5,11.5 parent: 4812 - - uid: 2903 + - uid: 2913 components: - type: Transform - pos: 25.5,16.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 4812 - - uid: 2904 + - uid: 2923 components: - type: Transform - pos: 25.5,17.5 - parent: 4812 - - uid: 2905 - components: - - type: Transform - pos: 24.5,17.5 - parent: 4812 - - uid: 2906 - components: - - type: Transform - pos: 22.5,17.5 + rot: 3.141592653589793 rad + pos: -49.5,-3.5 parent: 4812 - uid: 2942 components: @@ -71786,6 +77745,17 @@ entities: - type: Transform pos: 14.5,33.5 parent: 4812 + - uid: 3178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 4812 + - uid: 3179 + components: + - type: Transform + pos: 21.5,19.5 + parent: 4812 - uid: 3189 components: - type: Transform @@ -71801,11 +77771,28 @@ entities: - type: Transform pos: 20.5,9.5 parent: 4812 + - uid: 3261 + components: + - type: Transform + pos: 28.5,11.5 + parent: 4812 - uid: 3263 components: - type: Transform pos: -19.5,31.5 parent: 4812 + - uid: 3273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 4812 + - uid: 3275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 4812 - uid: 3288 components: - type: Transform @@ -72451,6 +78438,17 @@ entities: - type: Transform pos: -13.5,-40.5 parent: 4812 + - uid: 3777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 4812 + - uid: 3779 + components: + - type: Transform + pos: 29.5,11.5 + parent: 4812 - uid: 3990 components: - type: Transform @@ -72511,6 +78509,17 @@ entities: - type: Transform pos: 27.5,5.5 parent: 4812 + - uid: 4052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,7.5 + parent: 4812 + - uid: 4065 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 4812 - uid: 4081 components: - type: Transform @@ -72541,41 +78550,6 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 4812 - - uid: 4087 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 4812 - - uid: 4088 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 4812 - - uid: 4089 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 4812 - - uid: 4090 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 4812 - - uid: 4091 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 4812 - - uid: 4092 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 4812 - - uid: 4093 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 4812 - uid: 4094 components: - type: Transform @@ -72646,6 +78620,88 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 4812 + - uid: 4178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 4812 + - uid: 4190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 4812 + - uid: 4191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 4812 + - uid: 4318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,20.5 + parent: 4812 + - uid: 4323 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 4812 + - uid: 4333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 4812 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 4812 + - uid: 4436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 4812 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-4.5 + parent: 4812 + - uid: 4554 + components: + - type: Transform + pos: 27.5,11.5 + parent: 4812 + - uid: 4561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 4812 + - uid: 4614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 4812 + - uid: 4621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 4812 + - uid: 4624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 4812 - uid: 4638 components: - type: Transform @@ -73449,6 +79505,18 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-32.5 parent: 4812 + - uid: 6290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,18.5 + parent: 4812 + - uid: 6362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 4812 - uid: 6546 components: - type: Transform @@ -73464,11 +79532,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 4812 - - uid: 6560 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - uid: 6561 components: - type: Transform @@ -73514,6 +79577,12 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 4812 + - uid: 6604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-3.5 + parent: 4812 - uid: 6696 components: - type: Transform @@ -73634,6 +79703,18 @@ entities: - type: Transform pos: -23.5,-24.5 parent: 4812 + - uid: 7405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 4812 + - uid: 7406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 4812 - uid: 7463 components: - type: Transform @@ -74214,11 +80295,6 @@ entities: - type: Transform pos: -31.5,6.5 parent: 4812 - - uid: 7942 - components: - - type: Transform - pos: -32.5,6.5 - parent: 4812 - uid: 7943 components: - type: Transform @@ -74269,12 +80345,28 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8267 + components: + - type: Transform + pos: -35.5,3.5 + parent: 4812 + - uid: 8358 + components: + - type: Transform + pos: -36.5,3.5 + parent: 4812 - uid: 8469 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-26.5 parent: 4812 + - uid: 8483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 4812 - uid: 8497 components: - type: Transform @@ -74310,11 +80402,6 @@ entities: - type: Transform pos: -35.5,0.5 parent: 4812 - - uid: 8639 - components: - - type: Transform - pos: -35.5,4.5 - parent: 4812 - uid: 8641 components: - type: Transform @@ -74540,31 +80627,6 @@ entities: - type: Transform pos: -46.5,-4.5 parent: 4812 - - uid: 8726 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 4812 - - uid: 8727 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 4812 - - uid: 8728 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 4812 - - uid: 8729 - components: - - type: Transform - pos: -45.5,-0.5 - parent: 4812 - - uid: 8730 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 4812 - uid: 8731 components: - type: Transform @@ -74580,10 +80642,23 @@ entities: - type: Transform pos: -45.5,-4.5 parent: 4812 - - uid: 8751 + - uid: 8736 components: - type: Transform - pos: -46.5,-3.5 + rot: 3.141592653589793 rad + pos: -44.5,19.5 + parent: 4812 + - uid: 8737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,19.5 + parent: 4812 + - uid: 8740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,19.5 parent: 4812 - uid: 8789 components: @@ -74760,6 +80835,12 @@ entities: - type: Transform pos: -40.5,-32.5 parent: 4812 + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 4812 - uid: 8873 components: - type: Transform @@ -74785,320 +80866,341 @@ entities: - type: Transform pos: -37.5,-15.5 parent: 4812 - - uid: 9022 + - uid: 9135 components: - type: Transform - pos: -53.5,2.5 + rot: 3.141592653589793 rad + pos: -43.5,16.5 parent: 4812 - - uid: 9091 + - uid: 9136 components: - type: Transform - pos: -55.5,12.5 + rot: 3.141592653589793 rad + pos: -43.5,15.5 parent: 4812 - - uid: 9092 + - uid: 9137 components: - type: Transform - pos: -55.5,11.5 + rot: 3.141592653589793 rad + pos: -41.5,15.5 parent: 4812 - - uid: 9093 + - uid: 9162 components: - type: Transform - pos: -55.5,10.5 + rot: 3.141592653589793 rad + pos: -41.5,19.5 parent: 4812 - - uid: 9094 + - uid: 9163 components: - type: Transform - pos: -55.5,9.5 + rot: 3.141592653589793 rad + pos: -45.5,18.5 parent: 4812 - - uid: 9095 + - uid: 9164 components: - type: Transform - pos: -55.5,8.5 + rot: 3.141592653589793 rad + pos: -43.5,17.5 parent: 4812 - - uid: 9096 + - uid: 9165 components: - type: Transform - pos: -55.5,7.5 + rot: 3.141592653589793 rad + pos: -43.5,18.5 parent: 4812 - - uid: 9097 + - uid: 9177 components: - type: Transform - pos: -55.5,6.5 + rot: 3.141592653589793 rad + pos: -52.5,19.5 parent: 4812 - - uid: 9098 + - uid: 9178 components: - type: Transform - pos: -55.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,15.5 parent: 4812 - - uid: 9100 + - uid: 9179 components: - type: Transform - pos: -55.5,3.5 + rot: 3.141592653589793 rad + pos: -51.5,18.5 parent: 4812 - - uid: 9101 + - uid: 9180 components: - type: Transform - pos: -55.5,2.5 + rot: 3.141592653589793 rad + pos: -53.5,17.5 parent: 4812 - - uid: 9102 + - uid: 9181 components: - type: Transform - pos: -55.5,1.5 + rot: 3.141592653589793 rad + pos: -51.5,16.5 parent: 4812 - - uid: 9103 + - uid: 9189 components: - type: Transform - pos: -54.5,12.5 + rot: -1.5707963267948966 rad + pos: -61.5,3.5 parent: 4812 - - uid: 9104 + - uid: 9217 components: - type: Transform - pos: -54.5,11.5 - parent: 4812 - - uid: 9105 - components: - - type: Transform - pos: -54.5,10.5 - parent: 4812 - - uid: 9106 - components: - - type: Transform - pos: -54.5,9.5 - parent: 4812 - - uid: 9107 - components: - - type: Transform - pos: -54.5,8.5 - parent: 4812 - - uid: 9108 - components: - - type: Transform - pos: -54.5,7.5 - parent: 4812 - - uid: 9109 - components: - - type: Transform - pos: -54.5,6.5 - parent: 4812 - - uid: 9110 - components: - - type: Transform - pos: -54.5,5.5 - parent: 4812 - - uid: 9111 - components: - - type: Transform - pos: -54.5,4.5 - parent: 4812 - - uid: 9112 - components: - - type: Transform - pos: -54.5,3.5 - parent: 4812 - - uid: 9113 - components: - - type: Transform - pos: -54.5,2.5 - parent: 4812 - - uid: 9114 - components: - - type: Transform - pos: -54.5,1.5 - parent: 4812 - - uid: 9139 - components: - - type: Transform - pos: -50.5,0.5 - parent: 4812 - - uid: 9140 - components: - - type: Transform - pos: -51.5,0.5 - parent: 4812 - - uid: 9141 - components: - - type: Transform - pos: -52.5,0.5 - parent: 4812 - - uid: 9142 - components: - - type: Transform - pos: -53.5,0.5 - parent: 4812 - - uid: 9143 - components: - - type: Transform - pos: -54.5,0.5 - parent: 4812 - - uid: 9144 - components: - - type: Transform - pos: -55.5,0.5 - parent: 4812 - - uid: 9239 - components: - - type: Transform - pos: -51.5,6.5 - parent: 4812 - - uid: 9240 - components: - - type: Transform - pos: -50.5,4.5 - parent: 4812 - - uid: 9242 - components: - - type: Transform - pos: -50.5,2.5 - parent: 4812 - - uid: 9243 - components: - - type: Transform - pos: -51.5,2.5 - parent: 4812 - - uid: 9244 - components: - - type: Transform - pos: -52.5,6.5 - parent: 4812 - - uid: 9245 - components: - - type: Transform - pos: -52.5,2.5 + pos: 22.5,18.5 parent: 4812 - uid: 9248 components: - type: Transform - pos: -53.5,6.5 - parent: 4812 - - uid: 9256 - components: - - type: Transform - pos: -52.5,4.5 + rot: -1.5707963267948966 rad + pos: -46.5,1.5 parent: 4812 - uid: 9258 components: - type: Transform - pos: -53.5,4.5 + rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 4812 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,19.5 parent: 4812 - uid: 9260 components: - type: Transform - pos: -51.5,4.5 - parent: 4812 - - uid: 9265 - components: - - type: Transform - pos: -50.5,6.5 - parent: 4812 - - uid: 9266 - components: - - type: Transform - pos: -50.5,8.5 - parent: 4812 - - uid: 9267 - components: - - type: Transform - pos: -51.5,8.5 - parent: 4812 - - uid: 9268 - components: - - type: Transform - pos: -52.5,8.5 - parent: 4812 - - uid: 9269 - components: - - type: Transform - pos: -53.5,8.5 + rot: 3.141592653589793 rad + pos: -48.5,19.5 parent: 4812 - uid: 9270 components: - type: Transform - pos: -53.5,10.5 - parent: 4812 - - uid: 9271 - components: - - type: Transform - pos: -52.5,10.5 + rot: 3.141592653589793 rad + pos: -45.5,16.5 parent: 4812 - uid: 9272 components: - type: Transform - pos: -51.5,10.5 + rot: 3.141592653589793 rad + pos: -49.5,19.5 parent: 4812 - uid: 9273 components: - type: Transform - pos: -50.5,10.5 + rot: 3.141592653589793 rad + pos: -45.5,17.5 parent: 4812 - uid: 9274 components: - type: Transform - pos: -50.5,12.5 - parent: 4812 - - uid: 9275 - components: - - type: Transform - pos: -51.5,12.5 - parent: 4812 - - uid: 9276 - components: - - type: Transform - pos: -52.5,12.5 - parent: 4812 - - uid: 9277 - components: - - type: Transform - pos: -53.5,12.5 + rot: 3.141592653589793 rad + pos: -47.5,18.5 parent: 4812 - uid: 9284 components: - type: Transform pos: -46.5,-5.5 parent: 4812 - - uid: 9285 + - uid: 9293 components: - type: Transform - pos: -48.5,-3.5 + rot: 3.141592653589793 rad + pos: -45.5,15.5 parent: 4812 - - uid: 9286 + - uid: 9305 components: - type: Transform - pos: -48.5,-2.5 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 parent: 4812 - - uid: 9469 + - uid: 9308 components: - type: Transform - pos: -46.5,18.5 + rot: -1.5707963267948966 rad + pos: -46.5,6.5 parent: 4812 - - uid: 9470 + - uid: 9355 components: - type: Transform - pos: -45.5,18.5 + rot: 3.141592653589793 rad + pos: -51.5,20.5 parent: 4812 - - uid: 9471 + - uid: 9356 components: - type: Transform - pos: -43.5,18.5 + rot: 3.141592653589793 rad + pos: -52.5,20.5 parent: 4812 - - uid: 9472 + - uid: 9357 components: - type: Transform - pos: -42.5,18.5 + rot: 3.141592653589793 rad + pos: -51.5,19.5 parent: 4812 - - uid: 9473 + - uid: 9358 components: - type: Transform - pos: -42.5,15.5 + rot: 3.141592653589793 rad + pos: -47.5,17.5 parent: 4812 - - uid: 9474 + - uid: 9359 components: - type: Transform - pos: -46.5,15.5 + rot: 3.141592653589793 rad + pos: -50.5,20.5 parent: 4812 - - uid: 9511 + - uid: 9360 components: - type: Transform - pos: -41.5,13.5 + rot: 3.141592653589793 rad + pos: -50.5,19.5 + parent: 4812 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,16.5 + parent: 4812 + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,16.5 + parent: 4812 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,19.5 + parent: 4812 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,18.5 + parent: 4812 + - uid: 9368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 4812 + - uid: 9369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 4812 + - uid: 9370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,20.5 + parent: 4812 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,15.5 + parent: 4812 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,15.5 + parent: 4812 + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,20.5 + parent: 4812 + - uid: 9380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,20.5 + parent: 4812 + - uid: 9382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,17.5 + parent: 4812 + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,6.5 + parent: 4812 + - uid: 9385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 4812 + - uid: 9386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,5.5 + parent: 4812 + - uid: 9388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 4812 + - uid: 9389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,3.5 + parent: 4812 + - uid: 9411 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 4812 + - uid: 9416 + components: + - type: Transform + pos: -61.5,9.5 + parent: 4812 + - uid: 9478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,18.5 + parent: 4812 + - uid: 9484 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 4812 + - uid: 9491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-16.5 + parent: 4812 + - uid: 9494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-16.5 + parent: 4812 + - uid: 9497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,17.5 + parent: 4812 + - uid: 9506 + components: + - type: Transform + pos: -47.5,-1.5 parent: 4812 - uid: 9517 components: @@ -75115,20 +81217,70 @@ entities: - type: Transform pos: -49.5,-5.5 parent: 4812 - - uid: 9520 - components: - - type: Transform - pos: -49.5,-3.5 - parent: 4812 - uid: 9521 components: - type: Transform pos: -50.5,-5.5 parent: 4812 - - uid: 9522 + - uid: 9527 components: - type: Transform - pos: -50.5,-3.5 + rot: -1.5707963267948966 rad + pos: -47.5,7.5 + parent: 4812 + - uid: 9531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 4812 + - uid: 9544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 4812 + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 4812 + - uid: 9550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,19.5 + parent: 4812 + - uid: 9551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,20.5 + parent: 4812 + - uid: 9552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,20.5 + parent: 4812 + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,19.5 + parent: 4812 + - uid: 9556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,20.5 + parent: 4812 + - uid: 9558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-16.5 parent: 4812 - uid: 9579 components: @@ -75205,30 +81357,33 @@ entities: - type: Transform pos: -9.5,-56.5 parent: 4812 + - uid: 9681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,13.5 + parent: 4812 + - uid: 9707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 4812 + - uid: 9712 + components: + - type: Transform + pos: 26.5,18.5 + parent: 4812 - uid: 9824 components: - type: Transform pos: -37.5,-16.5 parent: 4812 - - uid: 9825 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 4812 - - uid: 9826 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 4812 - uid: 9827 components: - type: Transform - pos: -37.5,-19.5 - parent: 4812 - - uid: 9828 - components: - - type: Transform - pos: -38.5,-19.5 + rot: -1.5707963267948966 rad + pos: -61.5,5.5 parent: 4812 - uid: 9829 components: @@ -75260,16 +81415,6 @@ entities: - type: Transform pos: -46.5,-15.5 parent: 4812 - - uid: 9842 - components: - - type: Transform - pos: -55.5,-5.5 - parent: 4812 - - uid: 9844 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 4812 - uid: 9845 components: - type: Transform @@ -75375,6 +81520,12 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 4812 + - uid: 9870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 4812 - uid: 9873 components: - type: Transform @@ -75410,46 +81561,17 @@ entities: - type: Transform pos: -42.5,-9.5 parent: 4812 - - uid: 9901 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 4812 - - uid: 9902 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 4812 - - uid: 9903 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 4812 - - uid: 9904 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 4812 - - uid: 9905 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 4812 - - uid: 9906 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 4812 - - uid: 9907 - components: - - type: Transform - pos: -43.5,-17.5 - parent: 4812 - uid: 9908 components: - type: Transform pos: -43.5,-16.5 parent: 4812 + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 4812 - uid: 9939 components: - type: Transform @@ -75540,6 +81662,12 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 4812 + - uid: 10414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 4812 - uid: 10439 components: - type: Transform @@ -75555,11 +81683,41 @@ entities: - type: Transform pos: -50.5,-18.5 parent: 4812 + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,3.5 + parent: 4812 - uid: 10635 components: - type: Transform pos: -47.5,-10.5 parent: 4812 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 4812 + - uid: 10754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 4812 + - uid: 10757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,3.5 + parent: 4812 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,3.5 + parent: 4812 - uid: 10964 components: - type: Transform @@ -75885,6 +82043,287 @@ entities: - type: Transform pos: 28.5,-37.5 parent: 4812 + - uid: 11717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 4812 + - uid: 11722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 4812 + - uid: 11889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 4812 + - uid: 11890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 4812 + - uid: 11905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 4812 + - uid: 12113 + components: + - type: Transform + pos: 29.5,13.5 + parent: 4812 + - uid: 12130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 4812 + - uid: 12582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,17.5 + parent: 4812 + - uid: 12590 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 4812 + - uid: 12628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 4812 + - uid: 12641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 4812 + - uid: 12649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 4812 + - uid: 12659 + components: + - type: Transform + pos: 26.5,11.5 + parent: 4812 + - uid: 12806 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 4812 + - uid: 12860 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 4812 + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 4812 + - uid: 12901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-0.5 + parent: 4812 + - uid: 12902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 4812 + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 4812 + - uid: 12927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 4812 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 4812 + - uid: 12967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 + - uid: 12968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 4812 + - uid: 12993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - uid: 13020 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 4812 + - uid: 13056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 4812 + - uid: 13057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 4812 + - uid: 13084 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 4812 + - uid: 13088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 4812 + - uid: 13110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 4812 + - uid: 13116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 4812 + - uid: 13137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 4812 + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-3.5 + parent: 4812 + - uid: 13217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,6.5 + parent: 4812 + - uid: 13280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 4812 + - uid: 13317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 4812 + - uid: 13355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,8.5 + parent: 4812 + - uid: 13356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 4812 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,7.5 + parent: 4812 + - uid: 13437 + components: + - type: Transform + pos: -54.5,7.5 + parent: 4812 + - uid: 13477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 4812 + - uid: 13484 + components: + - type: Transform + pos: -61.5,11.5 + parent: 4812 + - uid: 13503 + components: + - type: Transform + pos: -61.5,12.5 + parent: 4812 + - uid: 13540 + components: + - type: Transform + pos: -61.5,8.5 + parent: 4812 + - uid: 13545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,6.5 + parent: 4812 + - uid: 13547 + components: + - type: Transform + pos: -57.5,8.5 + parent: 4812 + - uid: 13552 + components: + - type: Transform + pos: -57.5,12.5 + parent: 4812 + - uid: 13556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 4812 + - uid: 13558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 4812 - proto: WallSolid entities: - uid: 1 @@ -77212,11 +83651,6 @@ entities: - type: Transform pos: 18.5,44.5 parent: 4812 - - uid: 3475 - components: - - type: Transform - pos: 16.5,41.5 - parent: 4812 - uid: 3476 components: - type: Transform @@ -77447,16 +83881,6 @@ entities: - type: Transform pos: 13.5,0.5 parent: 4812 - - uid: 4118 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 4812 - - uid: 4119 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 4812 - uid: 4120 components: - type: Transform @@ -78884,6 +85308,61 @@ entities: - type: Transform pos: -13.5,12.5 parent: 4812 + - uid: 11901 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 4812 + - uid: 12778 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 4812 + - uid: 13130 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 4812 + - uid: 13131 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 4812 + - uid: 13338 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 4812 + - uid: 13339 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 4812 + - uid: 13340 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 4812 + - uid: 13341 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 4812 + - uid: 13342 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 4812 + - uid: 13343 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 4812 + - uid: 13344 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 4812 - proto: WallSolidRust entities: - uid: 7302 @@ -79187,45 +85666,51 @@ entities: - 0 - proto: WarningCO2 entities: - - uid: 9280 + - uid: 9334 components: - type: Transform - pos: -50.5,6.5 + rot: -1.5707963267948966 rad + pos: -47.5,15.5 parent: 4812 - proto: WarningN2 entities: - - uid: 9278 + - uid: 9234 components: - type: Transform - pos: -50.5,2.5 + rot: -1.5707963267948966 rad + pos: -43.5,15.5 parent: 4812 - proto: WarningO2 entities: - - uid: 9279 + - uid: 9265 components: - type: Transform - pos: -50.5,4.5 + rot: -1.5707963267948966 rad + pos: -45.5,15.5 parent: 4812 - proto: WarningPlasma entities: - - uid: 9282 + - uid: 9233 components: - type: Transform - pos: -50.5,10.5 + rot: -1.5707963267948966 rad + pos: -51.5,15.5 parent: 4812 - proto: WarningTritium entities: - - uid: 9283 + - uid: 9246 components: - type: Transform - pos: -50.5,12.5 + rot: -1.5707963267948966 rad + pos: -53.5,15.5 parent: 4812 - proto: WarningWaste entities: - - uid: 9281 + - uid: 9349 components: - type: Transform - pos: -50.5,8.5 + rot: -1.5707963267948966 rad + pos: -49.5,15.5 parent: 4812 - proto: WarpPoint entities: @@ -79258,6 +85743,11 @@ entities: - type: Transform pos: -38.5,-5.5 parent: 4812 + - uid: 13496 + components: + - type: Transform + pos: -45.5,1.5 + parent: 4812 - proto: WaterTankFull entities: - uid: 1484 @@ -79324,10 +85814,15 @@ entities: parent: 4812 - proto: WaterVaporCanister entities: - - uid: 9455 + - uid: 9134 components: - type: Transform - pos: -53.5,7.5 + pos: -48.5,18.5 + parent: 4812 + - uid: 13613 + components: + - type: Transform + pos: -52.5,0.5 parent: 4812 - proto: WeaponCapacitorRecharger entities: @@ -79447,6 +85942,13 @@ entities: parent: 4812 - type: BallisticAmmoProvider unspawnedCount: 4 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 13165 + components: + - type: Transform + pos: -21.5,23.5 + parent: 4812 - proto: WeaponTurretSyndicateBroken entities: - uid: 12268 @@ -79490,6 +85992,11 @@ entities: - type: Transform pos: -35.5,-7.5 parent: 4812 + - uid: 13653 + components: + - type: Transform + pos: -45.43979,3.578762 + parent: 4812 - proto: WelderIndustrialAdvanced entities: - uid: 3453 @@ -79516,11 +86023,6 @@ entities: parent: 4812 - proto: WeldingFuelTankFull entities: - - uid: 3261 - components: - - type: Transform - pos: 26.5,13.5 - parent: 4812 - uid: 6214 components: - type: Transform @@ -79536,11 +86038,6 @@ entities: - type: Transform pos: -24.5,-32.5 parent: 4812 - - uid: 9682 - components: - - type: Transform - pos: -36.5,5.5 - parent: 4812 - uid: 10701 components: - type: Transform @@ -79556,6 +86053,11 @@ entities: - type: Transform pos: 8.5,12.5 parent: 4812 + - uid: 13370 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 - proto: WheatBushel entities: - uid: 11294 @@ -79696,10 +86198,11 @@ entities: rot: 3.141592653589793 rad pos: 15.5,16.5 parent: 4812 - - uid: 4433 + - uid: 9714 components: - type: Transform - pos: 28.5,-6.5 + rot: 3.141592653589793 rad + pos: 28.5,13.5 parent: 4812 - proto: WindoorSecureChemistryLocked entities: @@ -79774,21 +86277,25 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-24.5 parent: 4812 - - uid: 8810 + - uid: 9576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 + pos: -9.5,-24.5 parent: 4812 - - uid: 8832 + - uid: 12664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -10.5,-24.5 parent: 4812 - proto: WindoorSecureSalvageLocked entities: - - uid: 12248 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad @@ -80077,6 +86584,39 @@ entities: rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 4812 + - uid: 3272 + components: + - type: Transform + pos: 51.5,0.5 + parent: 4812 + - uid: 4324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-5.5 + parent: 4812 + - uid: 4329 + components: + - type: Transform + pos: 52.5,0.5 + parent: 4812 + - uid: 4393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 4812 + - uid: 4415 + components: + - type: Transform + pos: 53.5,0.5 + parent: 4812 + - uid: 4416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-5.5 + parent: 4812 - uid: 4675 components: - type: Transform @@ -80238,6 +86778,28 @@ entities: - type: Transform pos: -18.5,16.5 parent: 4812 + - uid: 9667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,0.5 + parent: 4812 + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,0.5 + parent: 4812 + - uid: 9671 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 4812 + - uid: 9672 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 4812 - uid: 9880 components: - type: Transform @@ -80296,6 +86858,17 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,4.5 parent: 4812 + - uid: 12576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 4812 + - uid: 12629 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 4812 - uid: 12638 components: - type: Transform @@ -80314,6 +86887,18 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,43.5 parent: 4812 + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 4812 + - uid: 13609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 4812 - proto: WoodDoor entities: - uid: 6795 diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index f07391bd4f..031c831f55 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -36,6 +36,7 @@ ChiefMedicalOfficer: [ 1, 1 ] Chemist: [ 2, 2 ] MedicalDoctor: [ 3, 3 ] + Paramedic: [ 1, 1 ] MedicalIntern: [ 2, 2 ] #science ResearchDirector: [ 1, 1 ] From b81c7a478e1e4bf46a696d6d0d322690135cd712 Mon Sep 17 00:00:00 2001 From: JIPDawg <51352440+JIPDawg@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:09:00 -0500 Subject: [PATCH 077/176] Make small clamp use 2% battery instead of recharging 2% battery. (#32320) Make small clamp user 2% battery instead of recharge 2% battery. Co-authored-by: JIPDawg --- .../Entities/Objects/Specific/Mech/mecha_equipment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml index c489dec1c5..a97ca0f017 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml @@ -39,7 +39,7 @@ - type: MechGrabber maxContents: 4 grabDelay: 3 - grabEnergyDelta: 20 + grabEnergyDelta: -20 - type: Tag tags: - SmallMech From 99101f2e2cb5b5d8db789f74156671fa7cba4923 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 04:10:08 +0000 Subject: [PATCH 078/176] 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 8dabef5af4..b0cdbe7137 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Dropping an item while in a container now places the item in the container. - type: Fix - id: 6908 - time: '2024-07-12T09:24:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29900 - author: coffeeware, slarticodefast changes: - message: Fixed items thrown very fast not being in the air. In particular this @@ -3922,3 +3915,11 @@ id: 7407 time: '2024-09-19T23:27:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32181 +- author: JIPDawg + changes: + - message: Small Hydraulic clamp now correctly consumes 2% battery instead of recharging + the battery by 2% + type: Fix + id: 7408 + time: '2024-09-20T04:09:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32320 From 00002fa07fb3a427e3cd54451846517bbbe54580 Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Fri, 20 Sep 2024 15:37:06 +0400 Subject: [PATCH 079/176] fix issues with proximity beeper (#32322) implement --- Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs | 2 +- .../Prototypes/Entities/Objects/Specific/Research/anomaly.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index 9830e165e5..bee75e948d 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -37,6 +37,6 @@ public sealed class ProximityBeeperSystem : EntitySystem private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) { - _beeper.SetMute(owner, args.Target != null); + _beeper.SetMute(owner, args.Target == null); } } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index ff53218e22..516bd0f6bd 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -52,6 +52,7 @@ components: - Anomaly - type: Beeper + isMuted: true minBeepInterval: 0.15 maxBeepInterval: 1.00 beepSound: From a9b5e39fb01dd474fc723ad38aa23302197802de Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Fri, 20 Sep 2024 12:47:29 +0100 Subject: [PATCH 080/176] Disable resizing of lobby character editor (#32313) No resizing character editor Co-authored-by: Eoin Mcloughlin --- Content.Client/Lobby/UI/LobbyGui.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index c3bd0da642..4a158fd811 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -14,7 +14,7 @@ Stretch="KeepAspectCovered" /> - + From 1567af6f07a682796f405f07511083578db63458 Mon Sep 17 00:00:00 2001 From: sativaleanne <49132913+sativaleanne@users.noreply.github.com> Date: Fri, 20 Sep 2024 04:49:31 -0700 Subject: [PATCH 081/176] Rolebanlist command UI (#30827) * rolebanlist command opens ui * removed commented out section --- .../Commands/RoleBanListCommand.cs | 77 +++++++------------ 1 file changed, 28 insertions(+), 49 deletions(-) diff --git a/Content.Server/Administration/Commands/RoleBanListCommand.cs b/Content.Server/Administration/Commands/RoleBanListCommand.cs index a590472339..30bb3073ad 100644 --- a/Content.Server/Administration/Commands/RoleBanListCommand.cs +++ b/Content.Server/Administration/Commands/RoleBanListCommand.cs @@ -1,5 +1,7 @@ using System.Linq; using System.Text; +using Content.Server.Administration.BanList; +using Content.Server.EUI; using Content.Server.Database; using Content.Shared.Administration; using Robust.Server.Player; @@ -10,6 +12,12 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Ban)] public sealed class RoleBanListCommand : IConsoleCommand { + [Dependency] private readonly IServerDbManager _dbManager = default!; + + [Dependency] private readonly EuiManager _eui = default!; + + [Dependency] private readonly IPlayerLocator _locator = default!; + public string Command => "rolebanlist"; public string Description => Loc.GetString("cmd-rolebanlist-desc"); public string Help => Loc.GetString("cmd-rolebanlist-help"); @@ -29,66 +37,37 @@ public sealed class RoleBanListCommand : IConsoleCommand return; } - var dbMan = IoCManager.Resolve(); + var data = await _locator.LookupIdByNameOrIdAsync(args[0]); - var target = args[0]; - - var locator = IoCManager.Resolve(); - var located = await locator.LookupIdByNameOrIdAsync(target); - if (located == null) + if (data == null) { shell.WriteError("Unable to find a player with that name or id."); return; } - var targetUid = located.UserId; - var targetHWid = located.LastHWId; - var targetAddress = located.LastAddress; - - var bans = await dbMan.GetServerRoleBansAsync(targetAddress, targetUid, targetHWid, includeUnbanned); - - if (bans.Count == 0) + if (shell.Player is not { } player) { - shell.WriteLine("That user has no bans in their record."); + + var bans = await _dbManager.GetServerRoleBansAsync(data.LastAddress, data.UserId, data.LastHWId, includeUnbanned); + + if (bans.Count == 0) + { + shell.WriteLine("That user has no bans in their record."); + return; + } + + foreach (var ban in bans) + { + var msg = $"ID: {ban.Id}: Role: {ban.Role} Reason: {ban.Reason}"; + shell.WriteLine(msg); + } return; } - var bansString = new StringBuilder("Bans in record:\n"); + var ui = new BanListEui(); + _eui.OpenEui(ui, player); + await ui.ChangeBanListPlayer(data.UserId); - var first = true; - foreach (var ban in bans) - { - if (!first) - bansString.Append("\n\n"); - else - first = false; - - bansString - .Append("Ban ID: ") - .Append(ban.Id) - .Append('\n') - .Append("Role: ") - .Append(ban.Role) - .Append('\n') - .Append("Banned on ") - .Append(ban.BanTime); - - if (ban.ExpirationTime != null) - { - bansString - .Append(" until ") - .Append(ban.ExpirationTime.Value); - } - - bansString - .Append('\n'); - - bansString - .Append("Reason: ") - .Append(ban.Reason); - } - - shell.WriteLine(bansString.ToString()); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) From 6d5ac1e9b67e8b6138e044df4f57a7cee84b269f Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Fri, 20 Sep 2024 12:58:26 +0100 Subject: [PATCH 082/176] Fix disposal units flushing too soon after power-on (#32314) * Don't flush disposals immediately on power-on * Update Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs --------- Co-authored-by: Eoin Mcloughlin Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Disposal/Unit/EntitySystems/DisposalUnitSystem.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index f1d182fc66..2cf88efc6e 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -320,9 +320,10 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem return; } - if (component.Engaged && !TryFlush(uid, component)) + if (component.Engaged) { - QueueAutomaticEngage(uid, component); + // Run ManualEngage to recalculate a new flush time + ManualEngage(uid, component); } } From e964e9c98eece37fb7bd8f9154ec4e57a2be7943 Mon Sep 17 00:00:00 2001 From: cohanna <160202097+cohanna@users.noreply.github.com> Date: Fri, 20 Sep 2024 08:42:57 -0600 Subject: [PATCH 083/176] Psychologist's Stamp (#31881) * added sprite and began implementation * fixed sprite name, fixed meta files * silly whitespace * added paper-stamp file * figured out where to add the componet, added 'credits' * spelling is hard * hmm * GAHHHHH * how did i do this again --- Resources/Locale/en-US/paper/stamp-component.ftl | 1 + .../Entities/Objects/Misc/rubber_stamp.yml | 14 ++++++++++++++ .../Roles/Jobs/Wildcards/psychologist.yml | 6 +++--- .../Objects/Misc/bureaucracy.rsi/meta.json | 5 ++++- .../bureaucracy.rsi/paper_stamp-psychologist.png | Bin 0 -> 188 bytes .../Textures/Objects/Misc/stamps.rsi/meta.json | 5 ++++- .../Misc/stamps.rsi/stamp-psychologist.png | Bin 0 -> 308 bytes 7 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png create mode 100644 Resources/Textures/Objects/Misc/stamps.rsi/stamp-psychologist.png diff --git a/Resources/Locale/en-US/paper/stamp-component.ftl b/Resources/Locale/en-US/paper/stamp-component.ftl index 36be70d61f..a5910ed086 100644 --- a/Resources/Locale/en-US/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/paper/stamp-component.ftl @@ -18,3 +18,4 @@ stamp-component-stamped-name-trader = Trader stamp-component-stamped-name-syndicate = Syndicate stamp-component-stamped-name-ce = Chief Engineer stamp-component-stamped-name-greytide = Greytide +stamp-component-stamped-name-psychologist = Psychologist \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml index 66ff215f30..8707e6fca8 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml @@ -284,3 +284,17 @@ stampState: "paper_stamp-greytide" - type: Sprite state: stamp-greytide + +- type: entity + name: psychologist's rubber stamp + parent: RubberStampBase + id: RubberStampPsychologist + suffix: DO NOT MAP + description: A rubber stamp for stamping important documents. Prescribe those treatments! + components: + - type: Stamp + stampedName: stamp-component-stamped-name-psychologist + stampedColor: "#5B97BC" + stampState: "paper_stamp-psychologist" + - type: Sprite + state: stamp-psychologist \ No newline at end of file diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index 57b8e39842..74e45a605b 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -18,6 +18,6 @@ shoes: ClothingShoesLeather id: PsychologistPDA ears: ClothingHeadsetMedical - #storage: - #back: - #- Stuff + storage: + back: + - RubberStampPsychologist diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 17ac88cefd..9005034d3f 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux", "size": { "x": 32, "y": 32 @@ -227,6 +227,9 @@ }, { "name": "paper_stamp-greytide" + }, + { + "name": "paper_stamp-psychologist" } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png new file mode 100644 index 0000000000000000000000000000000000000000..401e3e15c72a66f9bc5e1ba1c30a05288dfa10bb GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=CqbAk63)r1AkM80hKZ7!u*0EWx@sL8PZC(16R0(bVC~7u){} zeI_vqPf?R@&Vt&~OG%S3j3^P6!lvI6;>1s;*b3=CqbAk63)r1AkMc+%6wF(ktM?G$@HCqB?G*4)Wb#DJt=>@sG zetLI!RG!O3X2(Z196Dz8r&65xqPWSs>)vxuKAh%%?tsL-YL3@FWemq8UhP^pD?h16 z#7VFF{nwVL_lun`@!z;uw=3mS-wKVcPwWD=j5+N=!c4(j+kl>8@O1TaS?83{1OUZz BctZdH literal 0 HcmV?d00001 From c4d12df04c4ba5c0f92a1f415388e6d936462be4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 14:44:03 +0000 Subject: [PATCH 084/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b0cdbe7137..34d2964231 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: coffeeware, slarticodefast - changes: - - message: Fixed items thrown very fast not being in the air. In particular this - fixes the pneumatic cannon. - type: Fix - - message: Buffed base hand throwing speed by 10% to be more similar to before the - recent throwing changes. - type: Tweak - id: 6909 - time: '2024-07-12T10:32:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29935 - author: themias changes: - message: Timers can now be deconstructed @@ -3923,3 +3912,11 @@ id: 7408 time: '2024-09-20T04:09:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32320 +- author: clinux + changes: + - message: Added the psychologist's stamp. Prescribe treatments for your less mentally + sane crew! + type: Add + id: 7409 + time: '2024-09-20T14:42:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31881 From 2955dd50095f4564eab05fe640431775d31f5dca Mon Sep 17 00:00:00 2001 From: Golden Can Date: Fri, 20 Sep 2024 20:24:06 +0200 Subject: [PATCH 085/176] Security Clown Mask is now security restricted. (#32335) made security clown masks security contraband. --- Resources/Prototypes/Entities/Clothing/Masks/masks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 90af169572..0dd16dceb1 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -231,7 +231,7 @@ node: mask - type: entity - parent: ClothingMaskClown + parent: [ClothingMaskClown, BaseRestrictedContraband] id: ClothingMaskClownSecurity name: security clown wig and mask description: A debatably oxymoronic but protective mask and wig. From 3e92eb1910f9bbb2455e10e4a620601e0a4d1b91 Mon Sep 17 00:00:00 2001 From: saga3152 <133799418+saga3152@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:27:41 +0200 Subject: [PATCH 086/176] Soda water and Vodka recipes (#32252) * SodaWater and Vodka recipes * Changed crystals recipe in fun.yml * plasma is now a catalyst to create crystals * Revert "plasma is now a catalyst to create crystals" This reverts commit 1002d9927a3597f7a02611071ef3f706cd056a41. * Revert "Changed crystals recipe in fun.yml" This reverts commit 30b6b602228ec1b11a46e390c6a5868494e2b61f. * Stir to make Vodka * Shake to make soda water * fix --- .../Prototypes/Recipes/Reactions/drinks.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 67a5b54f81..9bbd07848a 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -941,6 +941,18 @@ products: SnowWhite: 3 +- type: reaction + id: SodaWater + requiredMixerCategories: + - Shake + reactants: + Water: + amount: 5 + CarbonDioxide: + amount: 1 + products: + SodaWater: 6 + - type: reaction id: SoyLatte reactants: @@ -1146,6 +1158,18 @@ products: TheMartinez: 6 +- type: reaction + id: Vodka + requiredMixerCategories: + - Stir + reactants: + Ethanol: + amount: 1 + Water: + amount: 1 + products: + Vodka: 2 + - type: reaction id: WaterBreakdown source: true From c5d62ce751070365a312b497679c1d93fca335a5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 22:28:49 +0000 Subject: [PATCH 087/176] 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 34d2964231..949ddb532c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Timers can now be deconstructed - type: Fix - id: 6910 - time: '2024-07-12T11:38:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29917 - author: jonathanargo changes: - message: Hard hat icon sprites are now centered correctly. @@ -3920,3 +3913,10 @@ id: 7409 time: '2024-09-20T14:42:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31881 +- author: saga3152 + changes: + - message: You can now make vodka and soda water. + type: Add + id: 7410 + time: '2024-09-20T22:27:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32252 From 24ed1f71f66e47c85c0c6721e1448813123bf0c8 Mon Sep 17 00:00:00 2001 From: goet <6637097+goet@users.noreply.github.com> Date: Sat, 21 Sep 2024 07:54:48 +0200 Subject: [PATCH 088/176] Fix medical PDA/health analyzer long range intel bug (#31879) * hide spriteview from health analyzer while inactive * add out of range indicator if analyzer becomes inactive * hide out of range icon if there is no patient data --- .../HealthAnalyzer/UI/HealthAnalyzerWindow.xaml | 1 + .../UI/HealthAnalyzerWindow.xaml.cs | 2 ++ .../Misc/health_analyzer_out_of_range.png | Bin 0 -> 224 bytes 3 files changed, 3 insertions(+) create mode 100644 Resources/Textures/Interface/Misc/health_analyzer_out_of_range.png diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml index 97968c4b99..19d00a0bbf 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml @@ -21,6 +21,7 @@ Orientation="Vertical"> + [DataField] - public float Range = SharedInteractionSystem.InteractionRange / 1.4f; + public float Range = SharedInteractionSystem.InteractionRange; /// /// True if the entity is buckled, false otherwise. @@ -31,7 +31,7 @@ public sealed partial class BuckleComponent : Component /// /// Whether or not collisions should be possible with the entity we are strapped to /// - [DataField] + [DataField, AutoNetworkedField] public bool DontCollide; /// @@ -50,13 +50,13 @@ public sealed partial class BuckleComponent : Component /// /// The time that this entity buckled at. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField, AutoNetworkedField] public TimeSpan? BuckleTime; /// /// The strap that this component is buckled to. /// - [DataField] + [DataField, AutoNetworkedField] public EntityUid? BuckledTo; /// @@ -72,14 +72,6 @@ public sealed partial class BuckleComponent : Component [ViewVariables] public int? OriginalDrawDepth; } -[Serializable, NetSerializable] -public sealed class BuckleState(NetEntity? buckledTo, bool dontCollide, TimeSpan? buckleTime) : ComponentState -{ - public readonly NetEntity? BuckledTo = buckledTo; - public readonly bool DontCollide = dontCollide; - public readonly TimeSpan? BuckleTime = buckleTime; -} - public sealed partial class UnbuckleAlertEvent : BaseAlertEvent; /// diff --git a/Content.Shared/Buckle/Components/StrapComponent.cs b/Content.Shared/Buckle/Components/StrapComponent.cs index 101c388a8b..ad5031356e 100644 --- a/Content.Shared/Buckle/Components/StrapComponent.cs +++ b/Content.Shared/Buckle/Components/StrapComponent.cs @@ -15,7 +15,7 @@ public sealed partial class StrapComponent : Component /// /// The entities that are currently buckled to this strap. /// - [ViewVariables] + [DataField, AutoNetworkedField] public HashSet BuckledEntities = new(); /// @@ -61,12 +61,6 @@ public sealed partial class StrapComponent : Component [DataField, AutoNetworkedField] public bool Enabled = true; - /// - /// You can specify the offset the entity will have after unbuckling. - /// - [DataField] - public Vector2 UnbuckleOffset = Vector2.Zero; - /// /// The sound to be played when a mob is buckled /// diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 8b35f677f1..1745730647 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -58,13 +58,6 @@ public abstract partial class SharedBuckleSystem { BuckleDoafterEarly((uid, comp), ev.Event, ev); }); - - SubscribeLocalEvent(OnGetState); - } - - private void OnGetState(Entity ent, ref ComponentGetState args) - { - args.State = new BuckleState(GetNetEntity(ent.Comp.BuckledTo), ent.Comp.DontCollide, ent.Comp.BuckleTime); } private void OnBuckleComponentShutdown(Entity ent, ref ComponentShutdown args) @@ -196,11 +189,15 @@ public abstract partial class SharedBuckleSystem protected void SetBuckledTo(Entity buckle, Entity? strap) { if (TryComp(buckle.Comp.BuckledTo, out StrapComponent? old)) + { old.BuckledEntities.Remove(buckle); + Dirty(buckle.Comp.BuckledTo.Value, old); + } if (strap is {} strapEnt && Resolve(strapEnt.Owner, ref strapEnt.Comp)) { strapEnt.Comp.BuckledEntities.Add(buckle); + Dirty(strapEnt); _alerts.ShowAlert(buckle, strapEnt.Comp.BuckledAlertType); } else @@ -463,13 +460,17 @@ public abstract partial class SharedBuckleSystem if (buckleXform.ParentUid == strap.Owner && !Terminating(buckleXform.ParentUid)) { - _container.AttachParentToContainerOrGrid((buckle, buckleXform)); + _transform.PlaceNextTo((buckle, buckleXform), (strap.Owner, oldBuckledXform)); + buckleXform.ActivelyLerping = false; var oldBuckledToWorldRot = _transform.GetWorldRotation(strap); - _transform.SetWorldRotation(buckleXform, oldBuckledToWorldRot); + _transform.SetWorldRotationNoLerp((buckle, buckleXform), oldBuckledToWorldRot); - if (strap.Comp.UnbuckleOffset != Vector2.Zero) - buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.UnbuckleOffset); + // TODO: This is doing 4 moveevents this is why I left the warning in, if you're going to remove it make it only do 1 moveevent. + if (strap.Comp.BuckleOffset != Vector2.Zero) + { + buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.BuckleOffset); + } } _rotationVisuals.ResetHorizontalAngle(buckle.Owner); diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index 965c8261cc..9f3fbd7c45 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -54,7 +54,6 @@ position: Down rotation: -90 buckleOffset: "0,0.15" - unbuckleOffset: "0,0.15" buckleOnInteractHand: False - type: Appearance - type: GenericVisualizer From 8ed779bc02f2e1cab94bfb0eaad8521661f765fa Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 08:22:48 +0000 Subject: [PATCH 102/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 33 ++++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 476bbb05c8..e4212eb9c2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Added diamonds ore! - type: Add - - message: Diamonds can now be sold at a bargain price. - type: Add - id: 6915 - time: '2024-07-13T12:15:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25750 -- author: coffeeware - changes: - - message: Lizards will no longer lose their snouts when equipping head bandanas - type: Fix - id: 6916 - time: '2024-07-14T02:59:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29979 - author: SlamBamActionman changes: - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. @@ -3922,3 +3906,20 @@ id: 7414 time: '2024-09-21T23:21:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32232 +- author: AsnDen + changes: + - message: Now AI is able to use news manager console that is far away from its + core. + type: Fix + id: 7415 + time: '2024-09-22T08:20:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32334 +- author: metalgearsloth + changes: + - message: Fix unbuckling mispredicting. + type: Fix + - message: Aligned buckle range with interaction range. + type: Tweak + id: 7416 + time: '2024-09-22T08:21:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32370 From 1aea1ae76fe67e08e0e2e37e253bccd5178d657f Mon Sep 17 00:00:00 2001 From: ravage <142820619+ravage123321@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:33:08 +0300 Subject: [PATCH 103/176] Adding a holy watermelon helmet (#32272) * lolkekhatholy alalalla * animationcreate blelebleblbeleb --- .../Entities/Clothing/Head/hats.yml | 15 +++++ .../Objects/Consumable/Food/produce.yml | 4 ++ .../Hats/holyhatmelon.rsi/equipped-HELMET.png | Bin 0 -> 593 bytes .../Head/Hats/holyhatmelon.rsi/icon.png | Bin 0 -> 334 bytes .../Hats/holyhatmelon.rsi/inhand-left.png | Bin 0 -> 491 bytes .../Hats/holyhatmelon.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Head/Hats/holyhatmelon.rsi/meta.json | 52 ++++++++++++++++++ 7 files changed, 71 insertions(+) create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 123896240d..97145a0f00 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -791,6 +791,21 @@ coefficients: Blunt: 0.95 +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHolyWatermelon + name: watermelon halo + description: Holy moly. + components: + - type: Sprite + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Clothing + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.95 + - type: entity parent: [ClothingHeadBase, BaseSyndicateContraband] id: ClothingHeadHatSyndie diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index fa88f30074..342f2723b8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -2088,6 +2088,10 @@ - type: SliceableFood count: 5 slice: FoodHolymelonSlice + - type: Butcherable + butcheringType: Knife + spawned: + - id: ClothingHeadHatHolyWatermelon - type: Tag tags: - Fruit diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd047d7cf604c487a4ef9231659042d2f84e4ba GIT binary patch literal 593 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSjKx9jP7LeL$-HD>VB+?4aSW-L z^Y-q>tl&Tywh#4P&8N>M>`oEX5pn6Mo;K-jdcm7Z3%f0Tu<%_{b)Me0uZdq^SBVCn zsVkSP$n=I4&hH;xxxFxRr9iv1U(ueE@6F{n;(uCPcv-Vul-F2>@A1vapI@C%m2_R+ zQ519RaG7BIKD*qnzyB^h@Bh~EuKW|dgyO$TetmqYQD;|mw=3Q}U0VG2)n{Rmt}fX( zKL>x0|IPG7@4@Zk{1@-u?EUs*$u3*%dHZ`VK0LT*@&E2WSN>k#$FP%o$1C2b<>`Xi z$E&aY-TZ=AY0>^KKUe-Ee^We-xJ9|9$nhYh^a?_C@{zx$B?fJEkK2DNoM%-~I3No8k19 ziI+`&vBRwgG9oH_@38OqZ>Fat_RCJMye`Z5E%Otdgj>%qD~o;S{Cx-P1;!$AgSVew z3U>c)seOm)-+KL&JM-N01qA;tg<2x`UqfNm&dHZm&@KALC^c>VtlEaQr?=TR@F&P0 luxqGon7Xtc**OhU%Xt^ncP)N#{K;;RxTmY1%Q~loCIDE46V?C# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6161c05f12086787d1e3c5c296aeceddae630eed GIT binary patch literal 334 zcmV-U0kQsxP)Px$2uVaiR9J=W(lJZJKor37e}Y4n%V1RyL1-r_RR>+VNcMb}F5;&UmkwPz3Vs5! zhb|q0gTx`h#RwvZWJs4zJqL~SK;#bGd_TD1j(6`J?;Qvsg!u0~m*6x_js5YU&;a)j z2S%PKimY?`E)M|k=Of+k7P{BTbbHq8WV+uiv_Bu|-|qfo!?ifTvRUwSd(CP%_S*C9 z)1&nm>&`lj;5on4L8y4UOL*TrH|}oLS9<3pX4x#*KfJKc>okJqarP%M>zqbVmlcq( zcNP=AX2!hLAm(M3e8t#v>cDC^_Uf`CpH2uuh1&gGL8!>56Y8@1{uj2KI?z4>ptv!A gylY`0gb^MGl&;-%-SoYfy{! zS0YA#KiMB(SRy@P+HZ!Q+~!D^|04C1H!`TmD|O$|XJk{j+hBs1*kWI(AT;&s6pPL~ z=NaHCw=Csx&}@C^?fl)kR94pi)Q!62PZ2d2&2GHE@^y#x&TfN=-`*VvI@b`lx^wMh ztvQpH&z-cqxjjE#R<(}X+mdPx$ut`KgRCt{2*)dB3VH^hV=c1wIgwiE~paUTy+gs#zKSxVLOY|8U!lfaEM!$j| z;Kilka1tVDNLz%%3UX=c-*6~my~^3Ef90Ovc;el25AXZl=?f4M5fKp)5fKq(if8-4 z7=xpOC;9puz~A*T=nb%y^YQp{=!IeUuZxOEa&gak`MDTlFqtjx)?`}dP20(Wd?azJ ziT=)|hqvTd;khb7aUhsdoTlMT8e>Ms;#L*YGFuDiH0mgwog>$aWO&R!uAqH?=P2%C zeDrIwT?jn@cx~UvtjtrV003+}T#O3%KE3q-{2FFyEpiF~i^=Sih>S|mwxJzB8w=15 zpe^$SSRaGyAk9K*d*V1NU{zN2w46PNSD}D;-YYV{2Cx9_0NPl9b^vWGKs$go7N8wK z8w=15pp6A+2hf)K=hM3W>a(89*_mdr73cb|@wApU1+;I}hHHR!fWM~3GDl11M*s^* z`-SnXXCT>ujk`6OJiadGo^0bcTzIcau2{x?>B`A_#Y(RM&Fd2ZlI`XoA4!mpWUpL7 sr%`vGZV6IX?RpPhdjt>>5fNq950ll8lzgB7&Hw-a07*qoM6N<$f`a4ZhyVZp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json new file mode 100644 index 0000000000..302f4371e8 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/b459ea3fdee965bdc3e93e7983ad7fa610d05c12 and https://github.com/tgstation/tgstation/commit/ead6d8d59753ef033efdfad17f337df268038ff3 and modified by ravage", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From b78156ac08bce9bbe966fdf9a0134be6d249cc7c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 10:34:14 +0000 Subject: [PATCH 104/176] 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 e4212eb9c2..3afff7a7d2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. - type: Fix - id: 6917 - time: '2024-07-14T10:26:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30023 - author: Winkarst-cpu changes: - message: Now grappling gun is clumsy proof. @@ -3923,3 +3916,10 @@ id: 7416 time: '2024-09-22T08:21:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32370 +- author: ravage123321 + changes: + - message: You can make a holy helmet from holymelons! + type: Add + id: 7417 + time: '2024-09-22T10:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32272 From 932af69c3116e75d766bbc931ce63b84f5329e61 Mon Sep 17 00:00:00 2001 From: Soydium Date: Sun, 22 Sep 2024 15:26:55 +0300 Subject: [PATCH 105/176] added the ability for pigs to feed themselves (#32358) * pigs can eat * disable carcinisation --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 2ab2534121..d4f2ecd30a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -3377,7 +3377,10 @@ - type: NpcFactionMember factions: - Passive - + - type: HTN + rootTask: + task: RuminantCompound + - type: entity name: diona nymph parent: [SimpleMobBase, StripableInventoryBase] From 1e466579fac4f75e23bd2e55884e350f3671038f Mon Sep 17 00:00:00 2001 From: saga3152 <133799418+saga3152@users.noreply.github.com> Date: Sun, 22 Sep 2024 17:15:12 +0200 Subject: [PATCH 106/176] Lemons, limes, and oranges can now be mutated into each other (#32306) --- Resources/Prototypes/Hydroponics/seeds.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 07e08ef75b..7349f3c3d7 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -210,6 +210,8 @@ - FoodLemon mutationPrototypes: - lemoon + - lime + - orange harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -262,6 +264,9 @@ packetPrototype: LimeSeeds productPrototypes: - FoodLime + mutationPrototypes: + - orange + - lemon harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -290,6 +295,8 @@ - FoodOrange mutationPrototypes: - extradimensionalOrange + - lemon + - lime harvestRepeat: Repeat lifespan: 55 maturation: 6 From f8514e781591006bf8109d576dfccad10a5cd6f0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 15:16:18 +0000 Subject: [PATCH 107/176] 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 3afff7a7d2..8b6bd1b2f8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now grappling gun is clumsy proof. - type: Tweak - id: 6918 - time: '2024-07-14T10:26:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29904 - author: HahayesSiH changes: - message: It is now possible to pet cyborgs. @@ -3923,3 +3916,10 @@ id: 7417 time: '2024-09-22T10:33:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32272 +- author: saga3152 + changes: + - message: Citrus plants can now be mutated into each other. + type: Add + id: 7418 + time: '2024-09-22T15:15:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32306 From d3ff4d54016d79b63512853b68c306a3a5fa240a Mon Sep 17 00:00:00 2001 From: PotentiallyTom <67602105+PotentiallyTom@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:59:56 +0100 Subject: [PATCH 108/176] Makes it possible to disable the vent pressure lockout temporarily with a screwdriver (#31050) * builds * doesn't crash * seems to work * distance cap was dumb * Requested changes * can't find any issues from making the changes * Check for anchor and minor optimisation * Removed unnecessary usings * Code less verbose and cleanup --- .../Unary/Components/GasVentPumpComponent.cs | 69 ++++++++++--------- .../Unary/EntitySystems/GasVentPumpSystem.cs | 46 ++++++++++--- .../Piping/Unary/VentScrewedDoAfterEvent.cs | 9 +++ 3 files changed, 85 insertions(+), 39 deletions(-) create mode 100644 Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 7d702904fb..fcf3ddf969 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -6,6 +6,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy namespace Content.Server.Atmos.Piping.Unary.Components { // The world if people documented their shit. + [AutoGenerateComponentPause] [RegisterComponent] public sealed partial class GasVentPumpComponent : Component { @@ -15,31 +16,25 @@ namespace Content.Server.Atmos.Piping.Unary.Components [ViewVariables] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inlet")] + [DataField] public string Inlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("outlet")] + [DataField] public string Outlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pumpDirection")] + [DataField] public VentPumpDirection PumpDirection { get; set; } = VentPumpDirection.Releasing; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressureChecks")] + [DataField] public VentPressureBound PressureChecks { get; set; } = VentPressureBound.ExternalBound; - [ViewVariables(VVAccess.ReadOnly)] - [DataField("underPressureLockout")] + [DataField] public bool UnderPressureLockout { get; set; } = false; /// /// In releasing mode, do not pump when environment pressure is below this limit. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutThreshold")] + [DataField] public float UnderPressureLockoutThreshold = 80; // this must be tuned in conjunction with atmos.mmos_spacing_speed /// @@ -55,12 +50,30 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// repressurizing of the development map take about 30 minutes using an oxygen tank (high pressure) /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutLeaking")] + [DataField] public float UnderPressureLockoutLeaking = 0.0001f; + /// + /// Is the vent pressure lockout currently manually disabled? + /// + [DataField] + public bool IsPressureLockoutManuallyDisabled = false; + /// + /// The time when the manual pressure lockout will be reenabled. + /// + [DataField] + [AutoPausedField] + public TimeSpan ManualLockoutReenabledAt; + /// + /// How long the lockout should remain manually disabled after being interacted with. + /// + [DataField] + public TimeSpan ManualLockoutDisabledDuration = TimeSpan.FromSeconds(30); // Enough time to fill a 5x5 room + /// + /// How long the doAfter should take when attempting to manually disable the pressure lockout. + /// + public float ManualLockoutDisableDoAfter = 2.0f; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("externalPressureBound")] + [DataField] public float ExternalPressureBound { get => _externalPressureBound; @@ -72,8 +85,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components private float _externalPressureBound = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("internalPressureBound")] + [DataField] public float InternalPressureBound { get => _internalPressureBound; @@ -88,8 +100,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// /// Max pressure of the target gas (NOT relative to source). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxPressure")] + [DataField] public float MaxPressure = Atmospherics.MaxOutputPressure; /// @@ -100,8 +111,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// is too high, and the vent is connected to a large pipe-net, then someone can nearly instantly flood a /// room with gas. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("targetPressureChange")] + [DataField] public float TargetPressureChange = Atmospherics.OneAtmosphere; /// @@ -111,29 +121,26 @@ namespace Content.Server.Atmos.Piping.Unary.Components /// Vents cannot suck a pipe completely empty, instead pressurizing a section to a max of /// pipe pressure * PumpPower (in kPa). So a 51 kPa pipe is required for 101 kPA sections at PumpPower 2.0 /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("PumpPower")] + [DataField] public float PumpPower = 2.0f; #region Machine Linking /// /// Whether or not machine linking is enabled for this component. /// - [DataField("canLink")] + [DataField] public bool CanLink = false; - [DataField("pressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string PressurizePort = "Pressurize"; - [DataField("depressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string DepressurizePort = "Depressurize"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressurizePressure")] + [DataField] public float PressurizePressure = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("depressurizePressure")] + [DataField] public float DepressurizePressure = 0; // When true, ignore under-pressure lockout. Used to re-fill rooms in air alarm "Fill" mode. diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index dbbbf2d008..9d9862ff1d 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -7,21 +7,22 @@ using Content.Server.DeviceLinking.Systems; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; -using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; -using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; +using Content.Shared.Atmos.Piping.Unary; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Atmos.Visuals; using Content.Shared.Audio; using Content.Shared.DeviceNetwork; +using Content.Shared.DoAfter; using Content.Shared.Examine; +using Content.Shared.Interaction; using Content.Shared.Power; using Content.Shared.Tools.Systems; using JetBrains.Annotations; -using Robust.Server.GameObjects; +using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { @@ -35,7 +36,9 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly WeldableSystem _weldable = default!; - + [Dependency] private readonly SharedToolSystem _toolSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { base.Initialize(); @@ -51,6 +54,8 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnAnalyzed); SubscribeLocalEvent(OnWeldChanged); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnVentScrewed); } private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref AtmosDeviceUpdateEvent args) @@ -80,11 +85,16 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems { return; } + // If the lockout has expired, disable it. + if (vent.IsPressureLockoutManuallyDisabled && _timing.CurTime >= vent.ManualLockoutReenabledAt) + { + vent.IsPressureLockoutManuallyDisabled = false; + } var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; - var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold); + var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold) && !vent.IsPressureLockoutManuallyDisabled; if (vent.UnderPressureLockout != lockout) // update visuals only if this changes { vent.UnderPressureLockout = lockout; @@ -115,7 +125,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems var transferMoles = pressureDelta * environment.Volume / (pipe.Air.Temperature * Atmospherics.R); // Only run if the device is under lockout and not being overriden - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) { // Leak only a small amount of gas as a proportion of supply pipe pressure. var pipeDelta = pipe.Air.Pressure - environment.Pressure; @@ -273,7 +283,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems } else if (vent.PumpDirection == VentPumpDirection.Releasing) { - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Lockout, appearance); else _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Out, appearance); @@ -290,7 +300,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems return; if (args.IsInDetailsRange) { - if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride) + if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride & !pumpComponent.IsPressureLockoutManuallyDisabled) { args.PushMarkup(Loc.GetString("gas-vent-pump-uvlo")); } @@ -325,5 +335,25 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems { UpdateState(uid, component); } + private void OnInteractUsing(EntityUid uid, GasVentPumpComponent component, InteractUsingEvent args) + { + if (args.Handled + || component.UnderPressureLockout == false + || !_toolSystem.HasQuality(args.Used, "Screwing") + || !Transform(uid).Anchored + ) + { + return; + } + + args.Handled = true; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ManualLockoutDisableDoAfter, new VentScrewedDoAfterEvent(), uid, uid, args.Used)); + } + private void OnVentScrewed(EntityUid uid, GasVentPumpComponent component, VentScrewedDoAfterEvent args) + { + component.ManualLockoutReenabledAt = _timing.CurTime + component.ManualLockoutDisabledDuration; + component.IsPressureLockoutManuallyDisabled = true; + } } } diff --git a/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs new file mode 100644 index 0000000000..1fdc69bcf6 --- /dev/null +++ b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs @@ -0,0 +1,9 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Atmos.Piping.Unary; + +[Serializable, NetSerializable] +public sealed partial class VentScrewedDoAfterEvent : SimpleDoAfterEvent +{ +} From ee393a1cd8e897e019a83af933329b462c5f6beb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 20:01:02 +0000 Subject: [PATCH 109/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8b6bd1b2f8..9c63140818 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: HahayesSiH - changes: - - message: It is now possible to pet cyborgs. - type: Add - - message: Clicking on cyborgs and opening the strip menu no longer unlocks them. - type: Tweak - id: 6919 - time: '2024-07-14T14:09:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30037 - author: deltanedas changes: - message: Fixed ninja shoes not working as magboots. @@ -3923,3 +3914,10 @@ id: 7418 time: '2024-09-22T15:15:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32306 +- author: PotentiallyTom + changes: + - message: Vent pressure lockout can be temporarily disabled with a screwdriver + type: Tweak + id: 7419 + time: '2024-09-22T19:59:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31050 From 8a2c69d18dbc371872edb7b6967db70144831126 Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Sun, 22 Sep 2024 22:08:56 +0200 Subject: [PATCH 110/176] reach update :3 (#32387) --- Resources/Maps/reach.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index c556d8367f..9e9070b68e 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -1899,7 +1899,7 @@ entities: - uid: 80 components: - type: Transform - pos: 1.5,9.5 + pos: -0.5,10.5 parent: 2 - proto: BarSignTheLightbulb entities: @@ -7544,8 +7544,8 @@ entities: pos: 7.5,-13.5 parent: 2 - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPassiveVent @@ -12187,11 +12187,6 @@ entities: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 1739 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 - uid: 1949 components: - type: Transform @@ -14361,12 +14356,6 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 2081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - uid: 2082 components: - type: Transform From 5e162e776d1fda433797e4e743f089a917287ea0 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:27:48 -0400 Subject: [PATCH 111/176] Add the Syndicate Instigator Shuttle (#32083) * Instigator * sustenance --- .../Maps/Shuttles/ShuttleEvent/instigator.yml | 4052 +++++++++++++++++ .../Prototypes/GameRules/unknown_shuttles.yml | 11 + .../Shuttles/shuttle_incoming_event.yml | 5 + 3 files changed, 4068 insertions(+) create mode 100644 Resources/Maps/Shuttles/ShuttleEvent/instigator.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml new file mode 100644 index 0000000000..9c7aec2fa1 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml @@ -0,0 +1,4052 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 86: FloorShuttleBlack + 91: FloorShuttleRed + 112: FloorTechMaint2 + 113: FloorTechMaint3 + 128: Lattice + 129: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: GX-Instigator + - type: Transform + pos: -0.5,-0.45833334 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WwAAAAADWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAWwAAAAADVgAAAAAAcAAAAAAAcQAAAAADcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADWwAAAAACVgAAAAADgQAAAAAAgQAAAAAAVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAWwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAAAgQAAAAAAVgAAAAAAVgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAACVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAVgAAAAAAVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAABVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABcQAAAAAAcAAAAAAAVgAAAAACWwAAAAACgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABgQAAAAAAWwAAAAAAVgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAABVgAAAAAAVgAAAAAAVgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAADVgAAAAABVgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAABVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAVgAAAAAAVgAAAAACVgAAAAAAVgAAAAACWwAAAAACWwAAAAAC + 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: '#571212FF' + id: BrickTileWhiteInnerNe + decals: + 152: -1,3 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerNw + decals: + 151: -1,3 + - node: + color: '#571212FF' + id: MiniTileBoxOverlay + decals: + 31: -7,2 + 32: 7,2 + - node: + color: '#571212FF' + id: MiniTileCheckerAOverlay + decals: + 22: -6,0 + 23: -6,1 + 24: -6,2 + 25: -6,3 + 26: -6,-1 + 27: -6,-2 + 28: -7,3 + 29: -8,3 + 30: -9,3 + 33: -9,2 + 34: -9,4 + 49: -10,2 + 50: -10,3 + 51: -10,4 + 109: -8,4 + 110: -7,4 + - node: + color: '#571212FF' + id: MiniTileCheckerBOverlay + decals: + 35: 6,-2 + 36: 6,-1 + 37: 6,0 + 38: 6,1 + 39: 6,2 + 40: 6,3 + 41: 7,3 + 42: 8,3 + 43: 9,3 + 44: 9,2 + 45: 9,4 + 46: 10,2 + 47: 10,3 + 48: 10,4 + 111: 8,4 + 112: 7,4 + - node: + color: '#571212FF' + id: MiniTileWhiteBox + decals: + 56: 0,3 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNe + decals: + 18: -1,-1 + 77: 1,1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNe + decals: + 10: 1,4 + 11: 2,3 + 53: 2,2 + 88: -3,-1 + 89: 5,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNw + decals: + 5: -1,1 + 19: 1,-1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNw + decals: + 8: -2,3 + 9: -1,4 + 52: -2,2 + 87: -5,-1 + 90: 3,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSe + decals: + 76: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSe + decals: + 80: 5,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSw + decals: + 6: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSw + decals: + 79: -5,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNe + decals: + 54: 1,3 + 58: -2,-1 + 72: 0,0 + 73: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNw + decals: + 55: 1,3 + 59: 2,-1 + 74: 0,0 + 75: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSe + decals: + 62: -2,-1 + 65: -2,2 + 69: -1,1 + 70: 0,1 + 71: 0,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSw + decals: + 63: 2,-1 + 64: 2,2 + 66: 0,1 + 67: 1,1 + 68: 0,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineE + decals: + 0: 0,-1 + 2: -2,0 + 21: -2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineE + decals: + 14: 2,1 + 15: 2,0 + 60: 2,-1 + 108: 5,-2 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineN + decals: + 78: 0,1 + 147: 8,11 + 148: 9,11 + - node: + color: '#571212FF' + id: MiniTileWhiteLineN + decals: + 12: 0,4 + 57: 0,2 + 91: 4,-1 + 92: -4,-1 + 114: 9,5 + 115: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineN + decals: + 149: -9,11 + 150: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineS + decals: + 4: 0,2 + 145: 8,11 + 146: 9,11 + 153: -1,2 + 154: 1,2 + - node: + color: '#571212FF' + id: MiniTileWhiteLineS + decals: + 16: 1,-1 + 17: -1,-1 + 113: 9,5 + 116: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineS + decals: + 143: -9,11 + 144: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineW + decals: + 1: 0,-1 + 3: 2,0 + 20: 2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineW + decals: + 7: -2,0 + 13: -2,1 + 61: -2,-1 + 107: -5,-2 + - node: + color: '#571212FF' + id: OffsetCheckerAOverlay + decals: + 117: 8,6 + 118: 9,6 + 119: 10,6 + 120: 10,7 + 121: 9,7 + 122: 8,7 + 123: 8,8 + 124: 9,8 + 125: 10,8 + 126: 9,9 + 127: 8,9 + 128: 8,10 + 129: 9,10 + - node: + color: '#571212FF' + id: OffsetCheckerBOverlay + decals: + 81: 5,-1 + 82: 4,-1 + 83: 3,-1 + 84: -3,-1 + 85: -4,-1 + 86: -5,-1 + 93: 2,-2 + 94: 1,-2 + 95: -1,-2 + 96: -2,-2 + 97: 0,-2 + 98: -1,-3 + 99: 1,-3 + 100: 0,-3 + 101: 5,-2 + 102: 4,-2 + 103: 3,-2 + 104: -3,-2 + 105: -4,-2 + 106: -5,-2 + 130: -8,6 + 131: -9,6 + 132: -10,6 + 133: -10,7 + 134: -9,7 + 135: -8,7 + 136: -8,8 + 137: -9,8 + 138: -10,8 + 139: -9,9 + 140: -8,9 + 141: -8,10 + 142: -9,10 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 30711 + 0,-1: + 0: 65340 + -1,0: + 0: 56828 + 0,1: + 0: 3 + -1,1: + 0: 8 + 1,0: + 0: 56670 + 1,-1: + 0: 30464 + 1: 129 + 1,1: + 1: 16386 + 0: 1032 + 2,0: + 0: 14867 + 1: 8 + 2,1: + 0: 30507 + 2,2: + 0: 13111 + 1: 128 + 1,2: + 1: 32768 + 1,3: + 1: 8 + 2,-1: + 0: 4096 + 1: 16896 + 2,3: + 1: 4612 + -1,-1: + 0: 65414 + 1: 1 + -3,0: + 1: 2 + 0: 35336 + -3,1: + 0: 52362 + -3,2: + 1: 32 + 0: 34956 + -3,-1: + 1: 18432 + -3,3: + 1: 2052 + -2,0: + 0: 30303 + -2,1: + 0: 5379 + 1: 16392 + -2,2: + 0: 4369 + 1: 8192 + -2,-1: + 0: 56320 + 1: 32 + -2,3: + 1: 4098 + 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 +- proto: ActionToggleInternals + entities: + - uid: 495 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: ActionToggleJetpack + entities: + - uid: 494 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: AirCanister + entities: + - uid: 441 + components: + - type: Transform + anchored: True + pos: -8.5,11.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalGlass + entities: + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 127: + - DoorStatus: DoorBolt + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 128: + - DoorStatus: DoorBolt + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 125: + - DoorStatus: DoorBolt + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 126: + - DoorStatus: DoorBolt +- proto: AirlockMaint + entities: + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 +- proto: AirlockShuttleSyndicate + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 519 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 244 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 446 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 531 + components: + - type: MetaData + desc: a box full of frag grenade cartridges + name: frag grenade box + - type: Transform + pos: -0.7699833,1.7199572 + parent: 1 + - type: Storage + storedItems: + 523: + position: 0,0 + _rotation: South + 522: + position: 1,0 + _rotation: South + 525: + position: 2,0 + _rotation: South + 524: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 523 + - 522 + - 525 + - 524 + - uid: 532 + components: + - type: MetaData + desc: a box full of EMP cartridges + name: EMP grenade box + - type: Transform + pos: -0.23873329,1.699124 + parent: 1 + - type: Storage + storedItems: + 159: + position: 0,0 + _rotation: South + 131: + position: 1,0 + _rotation: South + 130: + position: 2,0 + _rotation: South + 158: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 131 + - 130 + - 158 +- proto: BoxFolderBlack + entities: + - uid: 514 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderClipboard + entities: + - uid: 518 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderNuclearCodes + entities: + - uid: 526 + components: + - type: Transform + pos: 1.5254097,1.4605976 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 327 + components: + - type: Transform + pos: -0.46789998,1.480374 + parent: 1 + - uid: 513 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 516 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolCaselessRifle + entities: + - uid: 463 + components: + - type: Transform + pos: -7.332144,10.686393 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -7.311311,7.5718102 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 +- proto: C4 + entities: + - uid: 507 + components: + - type: Transform + pos: 8.755206,8.089237 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 8.755206,7.5892377 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 184 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 +- proto: CableHV + entities: + - uid: 214 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: ClosetLegalFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingBeltAssault + entities: + - uid: 475 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSyndie + entities: + - uid: 476 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetAltSyndicate + entities: + - uid: 133 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 134 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 521 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 479 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndie + entities: + - uid: 484 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndieCap + entities: + - uid: 487 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBlack + entities: + - uid: 474 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 477 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBrown + entities: + - uid: 472 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterSyndicate + entities: + - uid: 473 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 482 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesHighheelBoots + entities: + - uid: 485 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerRed + entities: + - uid: 515 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSyndieFormalDress + entities: + - uid: 488 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 512 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 517 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 481 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 478 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 483 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSyndieFormal + entities: + - uid: 480 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 486 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerIFFSyndicate + entities: + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 152 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 144 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: CrateSyndicateSurplusBundle + entities: + - uid: 459 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 328 + components: + - type: Transform + pos: -0.53040004,1.4282906 + parent: 1 +- proto: EnergyDaggerBox + entities: + - uid: 496 + components: + - type: Transform + pos: 8.55729,9.557987 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 155 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 359 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 391 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeBend + entities: + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 352 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 389 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 423 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 427 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 361 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 362 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 363 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 364 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 365 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 366 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 367 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 368 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 382 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 383 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 405 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 416 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 417 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 418 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 420 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 421 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 422 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 374 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 335 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPump + entities: + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 435 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 436 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW + entities: + - uid: 199 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 150 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: GrenadeEMP + entities: + - uid: 130 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 131 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 158 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 159 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False +- proto: GrenadeFrag + entities: + - uid: 522 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 523 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 524 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 525 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 185 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 493 + components: + - type: Transform + pos: 8.505206,10.057987 + parent: 1 + - type: GasTank + toggleActionEntity: 495 + - type: Jetpack + toggleActionEntity: 494 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 494 + - 495 +- proto: LockerSyndicate + entities: + - uid: 471 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + 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: + - 134 + - 133 + - 521 + - 487 + - 488 + - 486 + - 485 + - 484 + - 483 + - 482 + - 481 + - 480 + - 479 + - 478 + - 477 + - 476 + - 475 + - 474 + - 473 + - 472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: PhoneInstrumentSyndicate + entities: + - uid: 498 + components: + - type: Transform + pos: 8.52604,8.64132 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 +- proto: Rack + entities: + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 +- proto: ShuttleGunFriendship + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 329 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 208: + - Pressed: Toggle + 209: + - Pressed: Toggle + 210: + - Pressed: Toggle + - uid: 330 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 211: + - Pressed: Toggle + 212: + - Pressed: Toggle + 213: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 198 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: StairStageDark + entities: + - uid: 527 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 187 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: SuitStorageSyndie + entities: + - uid: 452 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 332 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 333 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Port + - uid: 334 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Starboard + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Port + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Starboard +- proto: SyndicateComputerComms + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: SyndieFlag + entities: + - uid: 468 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: SyndieHandyFlag + entities: + - uid: 466 + components: + - type: Transform + pos: 8.49851,10.585687 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 8.796873,10.651737 + parent: 1 +- proto: SyndieMiniBomb + entities: + - uid: 506 + components: + - type: Transform + pos: 8.421873,7.766321 + parent: 1 +- proto: SyndieSoldierSpawner + entities: + - uid: 528 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: SyndieSoldierTeamLeaderSpawner + entities: + - uid: 530 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: TableFancyBlack + entities: + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 497 + components: + - type: Transform + pos: 8.505206,9.099654 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 151 + components: + - type: MetaData + name: FIRE! + - type: Transform + pos: 0.48732924,3.7624094 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 129: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off + 132: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off +- proto: VendingMachineClothing + entities: + - uid: 465 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 535 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 534 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 456 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 +- proto: WeaponPistolCobra + entities: + - uid: 461 + components: + - type: Transform + pos: -7.4571443,7.4884768 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -7.4154773,10.488477 + parent: 1 +... diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index c721b56228..7e40e3a1f2 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -172,6 +172,17 @@ - type: LoadMapRule preloadedGrid: NTIncorporation +- type: entity + id: UnknownShuttleInstigator + parent: BaseUnknownShuttleRule + components: + - type: StationEvent + startAnnouncement: null #dont nark on antags + weight: 1 # lower because antags. + earliestStart: 50 # late to hopefully have enough ghosts to fill all roles quickly (3) and because antags + - type: LoadMapRule + preloadedGrid: Instigator + - type: entity id: UnknownShuttleJoe parent: BaseUnknownShuttleRule diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index 5e1f11eef9..a5269a73da 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -69,6 +69,11 @@ path: /Maps/Shuttles/ShuttleEvent/incorporation.yml copies: 1 +- type: preloadedGrid + id: Instigator + path: /Maps/Shuttles/ShuttleEvent/instigator.yml + copies: 1 + - type: preloadedGrid id: Joe path: /Maps/Shuttles/ShuttleEvent/joe.yml From dd7884ed40114fab1584852647dbb39c24f091e7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:10:22 +1000 Subject: [PATCH 112/176] Predict vending machine BUI (#32376) --- .../VendingMachineBoundUserInterface.cs | 20 +++---------- .../VendingMachines/VendingMachineSystem.cs | 10 +++++++ .../VendingMachines/VendingMachineSystem.cs | 30 +++---------------- .../SharedVendingMachineSystem.cs | 5 ++-- .../VendingMachineComponent.cs | 23 ++++---------- .../VendingMachineInterfaceState.cs | 11 ------- .../Structures/Machines/vending_machines.yml | 3 ++ 7 files changed, 30 insertions(+), 72 deletions(-) diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index f8313882a2..28b1b25ade 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -23,29 +23,17 @@ namespace Content.Client.VendingMachines { base.Open(); - var vendingMachineSys = EntMan.System(); - - _cachedInventory = vendingMachineSys.GetAllInventory(Owner); - _menu = this.CreateWindow(); _menu.OpenCenteredLeft(); _menu.Title = EntMan.GetComponent(Owner).EntityName; - _menu.OnItemSelected += OnItemSelected; - - _menu.Populate(_cachedInventory); - - _menu.OpenCenteredLeft(); + Refresh(); } - protected override void UpdateState(BoundUserInterfaceState state) + public void Refresh() { - base.UpdateState(state); - - if (state is not VendingMachineInterfaceState newState) - return; - - _cachedInventory = newState.Inventory; + var system = EntMan.System(); + _cachedInventory = system.GetAllInventory(Owner); _menu?.Populate(_cachedInventory); } diff --git a/Content.Client/VendingMachines/VendingMachineSystem.cs b/Content.Client/VendingMachines/VendingMachineSystem.cs index 922a75d24a..1b1dde2b67 100644 --- a/Content.Client/VendingMachines/VendingMachineSystem.cs +++ b/Content.Client/VendingMachines/VendingMachineSystem.cs @@ -8,6 +8,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem { [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; public override void Initialize() { @@ -15,6 +16,15 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnAnimationCompleted); + SubscribeLocalEvent(OnVendingAfterState); + } + + private void OnVendingAfterState(EntityUid uid, VendingMachineComponent component, ref AfterAutoHandleStateEvent args) + { + if (_uiSystem.TryGetOpenUi(uid, VendingMachineUiKey.Key, out var bui)) + { + bui.Refresh(); + } } private void OnAnimationCompleted(EntityUid uid, VendingMachineComponent component, AnimationCompletedEvent args) diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index a265ce2d43..38407a98c7 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -34,10 +34,8 @@ namespace Content.Server.VendingMachines [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedActionsSystem _action = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!; @@ -47,7 +45,6 @@ namespace Content.Server.VendingMachines { base.Initialize(); - SubscribeLocalEvent(OnComponentMapInit); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnEmagged); @@ -59,7 +56,6 @@ namespace Content.Server.VendingMachines Subs.BuiEvents(VendingMachineUiKey.Key, subs => { - subs.Event(OnBoundUIOpened); subs.Event(OnInventoryEjectMessage); }); @@ -70,12 +66,6 @@ namespace Content.Server.VendingMachines SubscribeLocalEvent(OnPriceCalculation); } - private void OnComponentMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) - { - _action.AddAction(uid, ref component.ActionEntity, component.Action, uid); - Dirty(uid, component); - } - private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, ref PriceCalculationEvent args) { var price = 0.0; @@ -94,9 +84,9 @@ namespace Content.Server.VendingMachines args.Price += price; } - protected override void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected override void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { - base.OnComponentInit(uid, component, args); + base.OnMapInit(uid, component, args); if (HasComp(uid)) { @@ -110,18 +100,6 @@ namespace Content.Server.VendingMachines args.Cancel(); } - private void OnBoundUIOpened(EntityUid uid, VendingMachineComponent component, BoundUIOpenedEvent args) - { - UpdateVendingMachineInterfaceState(uid, component); - } - - private void UpdateVendingMachineInterfaceState(EntityUid uid, VendingMachineComponent component) - { - var state = new VendingMachineInterfaceState(GetAllInventory(uid, component)); - - _userInterfaceSystem.SetUiState(uid, VendingMachineUiKey.Key, state); - } - private void OnInventoryEjectMessage(EntityUid uid, VendingMachineComponent component, VendingMachineEjectMessage args) { if (!this.IsPowered(uid, EntityManager)) @@ -297,7 +275,7 @@ namespace Content.Server.VendingMachines _speakOnUIClosed.TrySetFlag((uid, speakComponent)); entry.Amount--; - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); Audio.PlayPvs(vendComponent.SoundVend, uid); } @@ -493,7 +471,7 @@ namespace Content.Server.VendingMachines RestockInventoryFromPrototype(uid, vendComponent); - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); } diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs index 59f8489ac6..94562ce8d1 100644 --- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs +++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs @@ -23,11 +23,11 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnAfterInteract); } - protected virtual void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected virtual void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { RestockInventoryFromPrototype(uid, component, component.InitialStockQuality); } @@ -46,6 +46,7 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem AddInventoryFromPrototype(uid, packPrototype.StartingInventory, InventoryType.Regular, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.EmaggedInventory, InventoryType.Emagged, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.ContrabandInventory, InventoryType.Contraband, component, restockQuality); + Dirty(uid, component); } /// diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 23130bb8f3..a3c7949600 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -8,7 +8,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy namespace Content.Shared.VendingMachines { - [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class VendingMachineComponent : Component { /// @@ -21,7 +21,7 @@ namespace Content.Shared.VendingMachines /// Used by the server to determine how long the vending machine stays in the "Deny" state. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("denyDelay")] + [DataField] public float DenyDelay = 2.0f; /// @@ -29,16 +29,16 @@ namespace Content.Shared.VendingMachines /// The selected item is dispensed afer this delay. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("ejectDelay")] + [DataField] public float EjectDelay = 1.2f; - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary Inventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary EmaggedInventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); public bool Contraband; @@ -102,17 +102,6 @@ namespace Content.Shared.VendingMachines // Yoinked from: https://github.com/discordia-space/CEV-Eris/blob/35bbad6764b14e15c03a816e3e89aa1751660ba9/sound/machines/Custom_deny.ogg public SoundSpecifier SoundDeny = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); - /// - /// The action available to the player controlling the vending machine - /// - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - [AutoNetworkedField] - public string? Action = "ActionVendingThrow"; - - [DataField("actionEntity")] - [AutoNetworkedField] - public EntityUid? ActionEntity; - public float NonLimitedEjectForce = 7.5f; public float NonLimitedEjectRange = 5f; diff --git a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs index 82758b17f6..27651bb1cb 100644 --- a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs +++ b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs @@ -2,17 +2,6 @@ using Robust.Shared.Serialization; namespace Content.Shared.VendingMachines { - [NetSerializable, Serializable] - public sealed class VendingMachineInterfaceState : BoundUserInterfaceState - { - public List Inventory; - - public VendingMachineInterfaceState(List inventory) - { - Inventory = inventory; - } - } - [Serializable, NetSerializable] public sealed class VendingMachineEjectMessage : BoundUserInterfaceMessage { diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index a6cf9ef0e3..99879cfbc9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -5,6 +5,9 @@ description: Just add capitalism! abstract: true components: + - type: ActionGrant + actions: + - ActionVendingThrow - type: StationAiWhitelist - type: AmbientOnPowered - type: AmbientSound From b2cb813f54b04a10a12a862e5de6d053acb4c3a2 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:55:30 +1000 Subject: [PATCH 113/176] Include container ents in examine (#32267) Mainly for closets but if it's like a mouse in a bag they can see what's in the bag type deal. --- Content.Client/Verbs/VerbSystem.cs | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f990c83d7c..f84389195f 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -13,6 +13,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -28,6 +29,7 @@ namespace Content.Client.Verbs [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly SharedContainerSystem _containers = default!; /// /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? @@ -81,12 +83,11 @@ namespace Content.Client.Verbs // Get entities _entities.Clear(); var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); + bool Predicate(EntityUid e) => e == player; // Do we have to do FoV checks? if ((visibility & MenuVisibility.NoFov) == 0) { - bool Predicate(EntityUid e) => e == player; - TryComp(player.Value, out ExaminerComponent? examiner); foreach (var ent in entitiesUnderMouse) @@ -103,6 +104,21 @@ namespace Content.Client.Verbs } } + // If we're in a container list all other entities in it. + if (_containers.TryGetContainingContainer(player.Value, out var container)) + { + foreach (var ent in container.ContainedEntities) + { + if (ent == player.Value || _entities.Contains(ent)) + continue; + + if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) + { + _entities.Add(ent); + } + } + } + if (_entities.Count == 0) return false; From ad6c5a1ce9943407a73cdd17fb713445345a1166 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 04:56:38 +0000 Subject: [PATCH 114/176] 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 9c63140818..a6161f1248 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Fixed ninja shoes not working as magboots. - type: Fix - id: 6920 - time: '2024-07-14T15:11:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28586 - author: lzk228 changes: - message: Scarves are eatable again. @@ -3921,3 +3914,10 @@ id: 7419 time: '2024-09-22T19:59:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31050 +- author: metalgearsloth + changes: + - message: You can examine entities inside of your own container again. + type: Fix + id: 7420 + time: '2024-09-23T04:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32267 From 3d2aadde1f3b8b023463fd23c701041655ef90dd Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Mon, 23 Sep 2024 01:48:58 -0500 Subject: [PATCH 115/176] L6 Fits in the Suit Storage Slot (#30525) * L6 Fits in the Suit Storage Slot * 5x4 item --- .../Entities/Objects/Weapons/Guns/LMGs/lmgs.yml | 3 +++ .../Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 1165 bytes .../Objects/Weapons/Guns/LMGs/l6.rsi/meta.json | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 1a1514f48c..a415927cc5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -8,11 +8,14 @@ - type: Sprite - type: Item size: Huge + shape: + - 0,0,4,3 - type: Clothing sprite: Objects/Weapons/Guns/LMGs/l6.rsi quickEquip: false slots: - Back + - suitStorage - type: Wieldable unwieldOnUse: false - type: GunWieldBonus diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..66bba2db27b590f6d332b89ecafd7548cfc8e4bc GIT binary patch literal 1165 zcmV;81akX{P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1R_a9K~#8N?V3w# z)KC=1?qqcA2qL<4A?T*~32Ny;p-9^i zX%VKrHnk5yN~!$PoZ&WPl6x~rnvwg1kW6*X{Li`Po+S5N<#0G0ju^&k69@ifq0x1k zYChqgBiY*8?wTM}FOM9c70o8Z2B7~!#dF-$;BhiFbyZDHUTJ9+?NP)AVB=e})cCwy z;`;u*2ZhZ7Mt*($tN%$UG^5@B*cPKH02rK``>1Z;x>L9yT)#Hm(u77CFcXabBN1+A z_|o8DOTd@4HDjB$JX41${Zt(tSprZlm(|M3irU%PQoX%>#z8R30OnGZ!IM2b-jN5- z2TvUdI0K_Q50y&AX#PXTqa~yAqIz2G@9kxp0WdZ;)^hCUk6&tf`i7VGAfwOOWd4J3 z4G5!Fs~xA zI4mO%Y&89=LxQ8dy1K01y?<+^#X11hYSnZ8ZvDG=)a&&l zKS)vXFH?t6)<>SvrUrPF_N_)kOdMbF`cDNk$=#)}w8IMfLTSy=$;d_b?LGfIO!fgR$9cIH!lqi1yHV-^;8uj= z90LOv)y&LI|6lCkyVwx04LFbeH0n+20RV)G@Y&f9-Z=^KU2KW-6hfK%rqBCPbR5AT zx+n^l&8uk`dK~})01Nf`)U~Hd8lxlVwg?F6pO*bhrU0b*JP>9}zb!f(4u`|xa5%Dr zN6>EQ5Tns%4I;Bg;cmey0HdR$>hYr|h0OxAq0xre0Pxl&DYd!zTP-bp^8Q{#(1u1p zv&kD{Yyen$mnA7^HpAECih!;S&1jD!HUO-^1`QXL;6TahaTNbW5u{-wE2a%CkoQP0EsTvQgnU-wNB^?{#gdIxZbvjB?n#YUYhR|4RTwdla!#fTpAv)Z5cV zMKq#W8mdvm*8sY)enYaGFx4F!0QTod(d)F|pEde^0yLX!@i(sC`rPld<((DXpwZ!Q fI2;Z~QBdk1VrUzlwGgPK00000NkvXXu0mjf_T(eQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index 8cd2e3fe7b..4b0e50c2b3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -47,6 +47,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } From c4b8260f238c6db479e39d2834d23b236be7b938 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 06:50:05 +0000 Subject: [PATCH 116/176] 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 a6161f1248..b273b33e3f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Scarves are eatable again. - type: Fix - id: 6921 - time: '2024-07-14T15:12:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29959 - author: Winkarst-cpu changes: - message: Now addgamerule command processes only valid game rules. @@ -3921,3 +3914,12 @@ id: 7420 time: '2024-09-23T04:55:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32267 +- author: Cojoke-dot + changes: + - message: L6 Saw now fits in the suit slot + type: Tweak + - message: L6 Saw is now a 5x4 item + type: Tweak + id: 7421 + time: '2024-09-23T06:48:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30525 From caf34be616d153401a7fe40fbe932934b3c9daed Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:28:42 +1200 Subject: [PATCH 117/176] Entity menu lookup changes (#32395) --- Content.Client/Verbs/VerbSystem.cs | 175 ++++++++++++++--------------- Content.Shared/CCVar/CCVars.cs | 6 + 2 files changed, 93 insertions(+), 88 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f84389195f..f592303d28 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -1,9 +1,9 @@ using System.Diagnostics.CodeAnalysis; -using System.Linq; using System.Numerics; using Content.Client.Examine; using Content.Client.Gameplay; using Content.Client.Popups; +using Content.Shared.CCVar; using Content.Shared.Examine; using Content.Shared.Tag; using Content.Shared.Verbs; @@ -13,6 +13,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -30,11 +31,10 @@ namespace Content.Client.Verbs [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly SharedContainerSystem _containers = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; - /// - /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? - /// - public const float EntityMenuLookupSize = 0.25f; + private float _lookupSize; /// /// These flags determine what entities the user can see on the context menu. @@ -43,128 +43,127 @@ namespace Content.Client.Verbs public Action? OnVerbsResponse; - private List _entities = new(); - public override void Initialize() { base.Initialize(); SubscribeNetworkEvent(HandleVerbResponse); + Subs.CVar(_cfg, CCVars.GameEntityMenuLookup, OnLookupChanged, true); + } + + private void OnLookupChanged(float val) + { + _lookupSize = val; } /// - /// Get all of the entities in an area for displaying on the context menu. + /// Get all of the entities in an area for displaying on the context menu. /// - public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? result) + /// True if any entities were found. + public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? entities) { - result = null; + entities = null; - if (_stateManager.CurrentState is not GameplayStateBase gameScreenBase) + if (_stateManager.CurrentState is not GameplayStateBase) return false; - var player = _playerManager.LocalEntity; - if (player == null) + if (_playerManager.LocalEntity is not { } player) return false; // If FOV drawing is disabled, we will modify the visibility option to ignore visiblity checks. - var visibility = _eyeManager.CurrentEye.DrawFov - ? Visibility - : Visibility | MenuVisibility.NoFov; + var visibility = _eyeManager.CurrentEye.DrawFov ? Visibility : Visibility | MenuVisibility.NoFov; - var ev = new MenuVisibilityEvent() + var ev = new MenuVisibilityEvent { TargetPos = targetPos, Visibility = visibility, }; - RaiseLocalEvent(player.Value, ref ev); + RaiseLocalEvent(player, ref ev); visibility = ev.Visibility; - // Get entities - _entities.Clear(); - var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); - bool Predicate(EntityUid e) => e == player; + // Initially, we include all entities returned by a sprite area lookup + var box = Box2.CenteredAround(targetPos.Position, new Vector2(_lookupSize, _lookupSize)); + var queryResult = _tree.QueryAabb(targetPos.MapId, box); + entities = new List(queryResult.Count); + foreach (var ent in queryResult) + { + entities.Add(ent.Uid); + } + + // If we're in a container list all other entities in it. + // E.g., allow players in lockers to examine / interact with other entities in the same locker + if (_containers.TryGetContainingContainer((player, null), out var container)) + { + // Only include the container contents when clicking near it. + if (entities.Contains(container.Owner) + || _containers.TryGetOuterContainer(container.Owner, Transform(container.Owner), out var outer) + && entities.Contains(outer.Owner)) + { + // The container itself might be in some other container, so it might not have been added by the + // sprite tree lookup. + if (!entities.Contains(container.Owner)) + entities.Add(container.Owner); + + // TODO Context Menu + // This might miss entities in some situations. E.g., one of the contained entities entity in it, that + // itself has another entity attached to it, then we should be able to "see" that entity. + // E.g., if a security guard is on a segway and gets thrown in a locker, this wouldn't let you see the guard. + foreach (var ent in container.ContainedEntities) + { + if (!entities.Contains(ent)) + entities.Add(ent); + } + } + } + + if ((visibility & MenuVisibility.InContainer) != 0) + { + // This is inefficient, but I'm lazy and CBF implementing my own recursive container method. Note that + // this might actually fail to add the contained children of some entities in the menu. E.g., an entity + // with a large sprite aabb, but small broadphase might appear in the menu, but have its children added + // by this. + var flags = LookupFlags.All & ~LookupFlags.Sensors; + foreach (var e in _lookup.GetEntitiesInRange(targetPos, _lookupSize, flags: flags)) + { + if (!entities.Contains(e)) + entities.Add(e); + } + } // Do we have to do FoV checks? if ((visibility & MenuVisibility.NoFov) == 0) { - TryComp(player.Value, out ExaminerComponent? examiner); - - foreach (var ent in entitiesUnderMouse) + TryComp(player, out ExaminerComponent? examiner); + for (var i = entities.Count - 1; i >= 0; i--) { - if (_examine.CanExamine(player.Value, targetPos, Predicate, ent.Uid, examiner)) - _entities.Add(ent.Uid); - } - } - else - { - foreach (var ent in entitiesUnderMouse) - { - _entities.Add(ent.Uid); + if (!_examine.CanExamine(player, targetPos, e => e == player, entities[i], examiner)) + entities.RemoveSwap(i); } } - // If we're in a container list all other entities in it. - if (_containers.TryGetContainingContainer(player.Value, out var container)) - { - foreach (var ent in container.ContainedEntities) - { - if (ent == player.Value || _entities.Contains(ent)) - continue; + if ((visibility & MenuVisibility.Invisible) != 0) + return entities.Count != 0; - if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) - { - _entities.Add(ent); - } - } + for (var i = entities.Count - 1; i >= 0; i--) + { + if (_tagSystem.HasTag(entities[i], "HideContextMenu")) + entities.RemoveSwap(i); } - if (_entities.Count == 0) - return false; + // Unless we added entities in containers, every entity should already have a visible sprite due to + // the fact that we used the sprite tree query. + if (container == null && (visibility & MenuVisibility.InContainer) == 0) + return entities.Count != 0; - if (visibility == MenuVisibility.All) + var spriteQuery = GetEntityQuery(); + for (var i = entities.Count - 1; i >= 0; i--) { - result = new (_entities); - return true; + if (!spriteQuery.TryGetComponent(entities[i], out var spriteComponent) || !spriteComponent.Visible) + entities.RemoveSwap(i); } - // remove any entities in containers - if ((visibility & MenuVisibility.InContainer) == 0) - { - for (var i = _entities.Count - 1; i >= 0; i--) - { - var entity = _entities[i]; - - if (ContainerSystem.IsInSameOrTransparentContainer(player.Value, entity)) - continue; - - _entities.RemoveSwap(i); - } - } - - // remove any invisible entities - if ((visibility & MenuVisibility.Invisible) == 0) - { - var spriteQuery = GetEntityQuery(); - - for (var i = _entities.Count - 1; i >= 0; i--) - { - var entity = _entities[i]; - - if (!spriteQuery.TryGetComponent(entity, out var spriteComponent) || - !spriteComponent.Visible || - _tagSystem.HasTag(entity, "HideContextMenu")) - { - _entities.RemoveSwap(i); - } - } - } - - if (_entities.Count == 0) - return false; - - result = new(_entities); - return true; + return entities.Count != 0; } /// diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index d6d8bafa0e..26101c7537 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -430,6 +430,12 @@ namespace Content.Shared.CCVar public static readonly CVarDef ContrabandExamine = CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); + /// + /// Size of the lookup area for adding entities to the context menu + /// + public static readonly CVarDef GameEntityMenuLookup = + CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * Discord */ From b6845defa039e50d77e287a0c2937e97db8d982f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 07:29:48 +0000 Subject: [PATCH 118/176] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ Resources/Changelog/Changelog.yml | 15 ++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index c5b567f69e..537c6b09ff 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -544,5 +544,13 @@ Entries: id: 67 time: '2024-09-15T01:55:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31654 +- author: ElectroJr + changes: + - message: The `menuvis all` once again makes all entities show up in the right-click + context menu. + type: Fix + id: 68 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b273b33e3f..a3dd8da68a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now addgamerule command processes only valid game rules. - type: Fix - id: 6922 - time: '2024-07-15T19:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29912 - author: Jezithyr changes: - message: Removed the Geras ability from Slimes @@ -3923,3 +3916,11 @@ id: 7421 time: '2024-09-23T06:48:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30525 +- author: ElectroJr + changes: + - message: Entities within the same container as the player only appear in the context + menu when clicking near the container. + type: Fix + id: 7422 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 From a7e29f2878a63d62c9c23326e2b8f2dc64d40cc4 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:51:48 +0200 Subject: [PATCH 119/176] Computer wirepanel (#32273) * Computer wirehacking * Power wire now shocks * deconstruction fix * updated tests * Better parenting * maintenance panel sprite * new sprite for maintenance panel open --- .../Interaction/ComputerContruction.cs | 4 +- Resources/Locale/en-US/wires/wire-names.ftl | 1 + .../Computers/base_structurecomputers.yml | 29 +++ .../Machines/Computers/computers.yml | 184 +++++++++++++----- .../Construction/Graphs/machines/computer.yml | 6 +- Resources/Prototypes/Wires/layouts.yml | 35 ++-- .../computers.rsi/generic_panel_open.png | Bin 0 -> 405 bytes .../Machines/computers.rsi/meta.json | 6 +- 8 files changed, 203 insertions(+), 62 deletions(-) create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs index 8af5edaf31..9a819b257b 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs @@ -39,7 +39,7 @@ public sealed class ComputerConstruction : InteractionTest await StartDeconstruction(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform deconstruction steps @@ -69,7 +69,7 @@ public sealed class ComputerConstruction : InteractionTest await SpawnTarget(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform partial deconstruction steps diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl index 1ac2ae8912..16ae068eaa 100644 --- a/Resources/Locale/en-US/wires/wire-names.ftl +++ b/Resources/Locale/en-US/wires/wire-names.ftl @@ -40,6 +40,7 @@ wires-board-name-fatextractor = FatExtractor wires-board-name-flatpacker = Flatpacker wires-board-name-spaceheater = Space Heater wires-board-name-jukebox = Jukebox +wires-board-name-computer = Computer # names that get displayed in the wire hacking hud & admin logs. diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 204e06c860..9baca8b4b6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -30,6 +30,8 @@ state: generic - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -40,6 +42,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true, shader: shaded } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: LitOnPowered - type: PointLight radius: 1.5 @@ -61,3 +67,26 @@ - type: LightningTarget priority: 1 - type: RequireProjectileTarget + - type: Electrified + enabled: false + usesApcPower: true + - type: WiresPanel + - type: WiresVisuals + - type: Wires + boardName: wires-board-name-computer + layoutId: Computer +# +# This is overwritten by children, so needs to be defined there +# - type: UserInterface +# interfaces: +# enum.WiresUiKey.Key: +# type: WiresBoundUserInterface + +- type: entity + parent: BaseComputer + id: BaseComputerAiAccess + components: + - type: StationAiWhitelist + - type: Wires + boardName: wires-board-name-computer + layoutId: ComputerAi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index f9fd10152f..4cd596e9b4 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1,10 +1,9 @@ - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAlert name: atmospheric alerts computer description: Used to access the station's atmospheric automated alert system. components: - - type: StationAiWhitelist - type: Computer board: AlertsComputerCircuitboard - type: Sprite @@ -17,6 +16,8 @@ state: alert-0 - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: GenericVisualizer visuals: enum.ComputerVisuals.Powered: @@ -25,7 +26,7 @@ False: { visible: false } computerLayerKeys: True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } + False: { visible: true, shader: shaded } enum.AtmosAlertsComputerVisuals.ComputerLayerScreen: computerLayerScreen: 0: { state: alert-0 } @@ -33,6 +34,10 @@ 2: { state: alert-1 } 3: { state: alert-2 } 4: { state: alert-2 } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: AtmosAlertsComputer - type: ActivatableUI singleUser: true @@ -41,6 +46,8 @@ interfaces: enum.AtmosAlertsComputerUiKey.Key: type: AtmosAlertsComputerBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -58,6 +65,8 @@ interfaces: enum.EmergencyConsoleUiKey.Key: type: EmergencyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 @@ -79,6 +88,8 @@ interfaces: enum.ShuttleConsoleUiKey.Key: type: ShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: RadarConsole - type: WorldLoader radius: 256 @@ -121,6 +132,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ShuttleConsoleCircuitboard @@ -140,6 +153,8 @@ state: syndishuttle - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Tag tags: - Syndicate @@ -170,6 +185,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: DroneConsole components: - type: CargoShuttle @@ -185,12 +202,11 @@ stealGroup: CargoShuttleConsoleCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerIFF name: IFF computer description: Allows you to control the IFF characteristics of this vessel. components: - - type: StationAiWhitelist - type: IFFConsole - type: Sprite layers: @@ -203,12 +219,16 @@ state: helm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ActivatableUI key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFCircuitboard @@ -229,16 +249,17 @@ interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFSyndicateCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerPowerMonitoring name: power monitoring computer description: It monitors power levels across the station. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -249,6 +270,8 @@ state: power_monitor - map: ["computerLayerKeys"] state: power_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -270,14 +293,15 @@ interfaces: enum.PowerMonitoringConsoleUiKey.Key: type: PowerMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMedicalRecords name: medical records computer description: This can be used to check medical records. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -288,6 +312,8 @@ state: medcomp - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -296,17 +322,18 @@ board: MedicalRecordsComputerCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCriminalRecords name: criminal records computer description: This can be used to check criminal records. Only security can modify them. components: - - type: StationAiWhitelist - type: CriminalRecordsConsole - type: UserInterface interfaces: enum.CriminalRecordsConsoleKey.Key: type: CriminalRecordsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.CriminalRecordsConsoleKey.Key - type: Sprite @@ -319,6 +346,8 @@ state: explosive - map: ["computerLayerKeys"] state: security_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -332,17 +361,18 @@ - CriminalRecords - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerStationRecords name: station records computer description: This can be used to check station records. components: - - type: StationAiWhitelist - type: GeneralStationRecordConsole - type: UserInterface interfaces: enum.GeneralStationRecordConsoleKey.Key: type: GeneralStationRecordConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.GeneralStationRecordConsoleKey.Key - type: PointLight @@ -356,12 +386,11 @@ - Forensics - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCrewMonitoring name: crew monitoring console description: Used to monitor active health sensors built into most of the crew's uniforms. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -372,6 +401,8 @@ state: crew - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -384,6 +415,8 @@ interfaces: enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork deviceNetId: Wireless @@ -392,12 +425,11 @@ range: 1200 - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerResearchAndDevelopment name: R&D computer description: A computer used to interface with R&D tools. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -408,6 +440,8 @@ state: rdcomp - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: ResearchConsole - type: ActiveRadio @@ -422,6 +456,8 @@ type: ResearchConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -437,12 +473,11 @@ - Science - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAnalysisConsole name: analysis console description: A computer used to interface with the artifact analyzer. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -453,6 +488,8 @@ state: artifact - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: AnalysisConsole reportEntityId: PaperArtifactAnalyzer @@ -471,6 +508,8 @@ type: AnalysisConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -484,12 +523,11 @@ - Xenoarchaeology - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerId name: ID card computer description: Terminal for programming Nanotrasen employee ID cards to access parts of the station. components: - - type: StationAiWhitelist - type: IdCardConsole privilegedIdSlot: name: id-card-console-privileged-id @@ -515,6 +553,8 @@ interfaces: enum.IdCardConsoleUiKey.Key: type: IdCardConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key - type: Sprite @@ -527,6 +567,8 @@ state: id - map: ["computerLayerKeys"] state: id_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: IDComputerCircuitboard - type: PointLight @@ -544,12 +586,11 @@ IdCardConsole-targetId: !type:ContainerSlot - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: computerBodyScanner name: body scanner computer description: A body scanner. components: - - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 500 - type: Computer @@ -560,12 +601,11 @@ color: "#1f8c28" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerComms name: communications computer description: A computer used to make station wide announcements via keyboard, set the appropriate alert level, and call the emergency shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -576,6 +616,8 @@ state: comm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "Command" ]] - type: CommunicationsConsole @@ -588,6 +630,8 @@ interfaces: enum.CommunicationsConsoleUiKey.Key: type: CommunicationsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CommsComputerCircuitboard - type: PointLight @@ -614,6 +658,8 @@ state: comm_syndie - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "NuclearOperative" ]] - type: CommunicationsConsole @@ -630,12 +676,11 @@ color: "#f71713" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerSolarControl name: solar control computer description: A controller for solar panel arrays. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -646,6 +691,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: SolarControlConsole - type: ActivatableUI key: enum.SolarControlConsoleUiKey.Key @@ -653,6 +700,8 @@ interfaces: enum.SolarControlConsoleUiKey.Key: type: SolarControlConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SolarControlComputerCircuitboard - type: PointLight @@ -661,12 +710,11 @@ color: "#e6e227" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRadar name: mass scanner computer description: A computer for detecting nearby bodies, displaying them by position and mass. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -677,6 +725,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RadarConsole - type: ActivatableUI key: enum.RadarConsoleUiKey.Key @@ -684,6 +734,8 @@ interfaces: enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: RadarConsoleCircuitboard - type: PointLight @@ -693,11 +745,10 @@ - type: entity id: ComputerCargoShuttle - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo shuttle computer description: Used to order the shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -708,6 +759,8 @@ state: supply - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoShuttleConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Shuttle @@ -715,6 +768,8 @@ interfaces: enum.CargoConsoleUiKey.Shuttle: type: CargoShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoShuttleComputerCircuitboard - type: PointLight @@ -729,11 +784,10 @@ - type: entity id: ComputerCargoOrders - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo request computer description: Used to order supplies and approve requests. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -744,6 +798,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoOrderConsole - type: BankClient - type: ActiveRadio @@ -755,6 +811,8 @@ interfaces: enum.CargoConsoleUiKey.Orders: type: CargoOrderConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -778,11 +836,10 @@ - type: entity id: ComputerCargoBounty - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo bounty computer description: Used to manage currently active bounties. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -793,6 +850,8 @@ state: bounty - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoBountyConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Bounty @@ -800,6 +859,8 @@ interfaces: enum.CargoConsoleUiKey.Bounty: type: CargoBountyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoBountyComputerCircuitboard - type: PointLight @@ -814,12 +875,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCloningConsole name: cloning console computer description: The centerpiece of the cloning system, medicine's greatest accomplishment. It has lots of ports and wires. components: - - type: StationAiWhitelist - type: CloningConsole - type: DeviceList - type: DeviceNetwork @@ -834,6 +894,8 @@ state: dna - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 3100 #We want this to fail first so I transferred most of the scanner and pod's power here. (3500 in total) - type: Computer @@ -853,6 +915,8 @@ interfaces: enum.CloningConsoleUiKey.Key: type: CloningConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Speech speechVerb: Robotic speechSounds: Pai @@ -865,11 +929,10 @@ - type: entity id: ComputerSalvageExpedition - parent: BaseComputer + parent: BaseComputerAiAccess name: salvage expeditions computer description: Used to accept salvage missions, if you're tough enough. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -880,6 +943,8 @@ state: mining - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -890,6 +955,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: SalvageExpeditionConsole - type: ActivatableUI key: enum.SalvageConsoleUiKey.Expedition @@ -898,6 +967,8 @@ interfaces: enum.SalvageConsoleUiKey.Expedition: type: SalvageExpeditionConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SalvageExpeditionsComputerCircuitboard - type: PointLight @@ -925,6 +996,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceCameraMonitorCircuitboard - type: DeviceNetwork @@ -943,6 +1016,8 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -960,6 +1035,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceWirelessCameraMonitorCircuitboard - type: DeviceNetwork @@ -980,14 +1057,15 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity id: ComputerPalletConsole - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo sale computer description: Used to sell goods loaded onto cargo pallets. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -998,6 +1076,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Anchorable flags: - Anchorable @@ -1008,6 +1088,8 @@ interfaces: enum.CargoPalletConsoleUiKey.Sale: type: CargoPalletConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoSaleComputerCircuitboard - type: PointLight @@ -1019,12 +1101,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMassMedia name: news manager console description: Write your message to the world! components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1035,6 +1116,8 @@ state: service - map: ["computerLayerKeys"] state: service_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ComputerMassMediaCircuitboard - type: DeviceNetworkRequiresPower @@ -1050,6 +1133,8 @@ interfaces: enum.NewsWriterUiKey.Key: type: NewsWriterBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -1070,6 +1155,8 @@ state: sensors - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -1083,6 +1170,8 @@ interfaces: enum.SensorMonitoringConsoleUiKey.Key: type: SensorMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: DeviceNetwork deviceNetId: AtmosDevices receiveFrequencyId: AtmosMonitor @@ -1095,12 +1184,11 @@ - type: AtmosDevice - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRoboticsControl name: robotics control console description: Used to remotely monitor, disable and destroy the station's cyborgs. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1111,6 +1199,8 @@ state: robot - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RoboticsConsole - type: ActiveRadio channels: @@ -1121,6 +1211,8 @@ interfaces: enum.RoboticsConsoleUiKey.Key: type: RoboticsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: DeviceNetwork @@ -1150,6 +1242,8 @@ state: aiupload - map: [ "computerLayerKeys" ] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 1000 - type: Computer diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml index 4792bb216f..b3c9cac926 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml @@ -117,15 +117,15 @@ amount: 2 steps: - tool: Prying + doAfter: 1 - node: computer entity: !type:BoardNodeEntity { container: board } edges: - to: monitorUnsecured - conditions: - - !type:AllWiresCut {} steps: - - tool: Screwing + - tool: Prying + doAfter: 1 - node: monitorBroken entity: ComputerBroken diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index 7b42ef8b75..955bae0104 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -156,22 +156,35 @@ id: TrainingDefusable dummyWires: 0 wires: - - !type:ActivateWireAction - - !type:BoltWireAction - - !type:DelayWireAction - - !type:ProceedWireAction - - !type:BoomWireAction - + - !type:ActivateWireAction + - !type:BoltWireAction + - !type:DelayWireAction + - !type:ProceedWireAction + - !type:BoomWireAction + - type: wireLayout id: Jukebox dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction - + - !type:PowerWireAction + - !type:AiInteractWireAction + - type: wireLayout id: AnomalyGenerator dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction + - !type:PowerWireAction + - !type:AiInteractWireAction + +- type: wireLayout + id: Computer + dummyWires: 3 + wires: + - !type:PowerWireAction + +- type: wireLayout + id: ComputerAi + dummyWires: 2 + wires: + - !type:PowerWireAction + - !type:AiInteractWireAction diff --git a/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png b/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7f9f66414fd6796d958d8e76b2182ca3fcc238 GIT binary patch literal 405 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9GGLLkg|>2BR01_nlV zPZ!6KinzD84EdT2M2>wtl=o;sq4`%Gs|qn zIdGF`?m#}ZdL8&{1e0N|GBIsM%58kV%qJ?{HL#Ud;9JApKTYf{%rbkr1S3+S=FAmB{^%Y kXHCll=>ThEae2TylPRI>R|8u;Fq|1YUHx3vIVCg!0QoDTu>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index b6741b195d..5355f379ab 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273.", "size": { "x": 32, "y": 32 @@ -1013,6 +1013,10 @@ "name": "generic_keys", "directions": 4 }, + { + "name": "generic_panel_open", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 From 0a3273a4361294302852b4cd6876baafdd1fe613 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 10:52:54 +0000 Subject: [PATCH 120/176] 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 a3dd8da68a..00417a2a9d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Jezithyr - changes: - - message: Removed the Geras ability from Slimes - type: Remove - id: 6923 - time: '2024-07-16T22:50:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29731 - author: K-Dynamic changes: - message: nerfed paraylze timer of all slippable objects (including soaps, water @@ -3924,3 +3917,12 @@ id: 7422 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: Errant + changes: + - message: Computers now have a maintenance panel with a Power and AI wire (if AI-connected). + type: Tweak + - message: Computer deconstruction now begins with the crowbar, not the screwdriver. + type: Tweak + id: 7423 + time: '2024-09-23T10:51:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32273 From aab423667ef7bc2dd4a6c50fbe21c370634ce936 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:12:23 +0200 Subject: [PATCH 121/176] Fix guidebook books don't have damage (#32403) --- Resources/Prototypes/Entities/Objects/Misc/books.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 15ecd5d2a8..21269366d4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -60,6 +60,15 @@ openOnActivation: true guides: - SS14 + - type: MeleeWeapon # Should write it again since BaseGuidebook doesn't inherit BookBase + soundHit: + collection: Punch + damage: + types: + Blunt: 1 + - type: DamageOtherOnHit + damage: + types: - type: entity id: BookSpaceEncyclopedia From 16c46af6c5db1344fa648562cb0047d8deddfc15 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 11:13:29 +0000 Subject: [PATCH 122/176] 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 00417a2a9d..e31d122ed0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: K-Dynamic - changes: - - message: nerfed paraylze timer of all slippable objects (including soaps, water - puddles, and clown-related items) - type: Tweak - id: 6924 - time: '2024-07-16T23:26:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27879 - author: EmoGarbage404 changes: - message: Resprited wall signs. @@ -3926,3 +3918,10 @@ id: 7423 time: '2024-09-23T10:51:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32273 +- author: lzk228 + changes: + - message: Guidebook books now do damage like default writeable books. + type: Fix + id: 7424 + time: '2024-09-23T11:12:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32403 From 24140d8c8a23ed7222a48e1a2b0f2e2fa4cda2c4 Mon Sep 17 00:00:00 2001 From: Jophire <36978900+Jophire@users.noreply.github.com> Date: Mon, 23 Sep 2024 09:08:10 -0400 Subject: [PATCH 123/176] VIM have Passenger Access. (#32302) * Revert "Update mechs.yml" This reverts commit 4a44065b11c427581462a9bfa46fc66ff8878cf4. * Reapply "Update mechs.yml" This reverts commit fb5db29f4ae58106180ac836d01f953b816e7a61. * Revert "Reapply "Update mechs.yml"" This reverts commit c845b6bb3d3e6e80ce7a8aa290b10e2f71bca726. * Reapply "Reapply "Update mechs.yml"" This reverts commit 41b8934fd100337c31b26fc5e269f65e1f459970. * VIM Door Stuck Fix Vim No longer gets stuck in doors. * VIM has Passenger Access Debug Tested on the wrong map. Much easier solution. Just give the mech Access tags. * Moved tags to proper VIM. Moved access tag to the non-admin VIM. --- Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 99d39a8249..1fbde27e71 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -288,6 +288,9 @@ - type: MovementSpeedModifier baseWalkSpeed: 2.25 baseSprintSpeed: 3.6 + - type: Access + tags: + - Maintenance # TOOD: buzz / chime actions # TODO: builtin flashlight From 31db37e8264219c4cb7c7e1c51a0a602e3639a1d Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 13:09:17 +0000 Subject: [PATCH 124/176] 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 e31d122ed0..aac9136709 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Resprited wall signs. - type: Tweak - id: 6925 - time: '2024-07-17T04:35:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29806 - author: lzk228 changes: - message: Added health examine for caustic and cold damage. @@ -3925,3 +3918,10 @@ id: 7424 time: '2024-09-23T11:12:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32403 +- author: Jophire + changes: + - message: VIM mech now can open maintenance doors! + type: Add + id: 7425 + time: '2024-09-23T13:08:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32302 From 5e9a0c9d9d975a1041e2eeb64e692676360e1144 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Mon, 23 Sep 2024 12:17:45 -0400 Subject: [PATCH 125/176] Omega Minor Sec Update (#32410) * Updated Omega armory and Warden office. * Adjusted walls, a decal, and an air sensor. --- Resources/Maps/omega.yml | 1505 +++++++++++++++++++++++--------------- 1 file changed, 905 insertions(+), 600 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index b8cf3c6fc0..708edad454 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -81,7 +81,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -161,7 +161,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -193,11 +193,11 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAATQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -209,7 +209,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -294,7 +294,6 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1605: -35,19 1864: 47,-4 1865: 49,-4 1866: 55,-4 @@ -318,6 +317,7 @@ entities: 1871: 55,-2 1872: 49,-2 2080: 47,-2 + 2188: -35.0297,19.625114 - node: color: '#FFFFFFFF' id: Bot @@ -377,7 +377,6 @@ entities: 1234: -16,-26 1531: 2,-36 1532: -15,-14 - 1604: -37,20 1725: -37,4 1726: -37,5 1735: -32,4 @@ -397,6 +396,10 @@ entities: 2120: -40,-16 2122: -51,0 2128: -58,0 + 2152: -37,22 + 2153: -36,22 + 2182: -34,20 + 2183: -38,15 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -414,8 +417,6 @@ entities: 1599: -32,-10 1600: -33,-10 1601: -34,-10 - 1602: -36,21 - 1603: -37,21 1742: -35,4 1743: -34,5 1913: 24,15 @@ -1258,7 +1259,6 @@ entities: 297: 30,1 444: -5,-26 445: -3,-31 - 559: -33,17 560: -35,13 612: -27,28 613: -31,28 @@ -1454,7 +1454,6 @@ entities: 295: 29,4 296: 30,4 432: -3,-25 - 551: -35,17 600: -27,32 601: -28,32 602: -29,32 @@ -1557,7 +1556,6 @@ entities: 290: 29,2 291: 28,2 435: -3,-30 - 552: -35,14 606: -32,29 607: -31,29 608: -30,29 @@ -1670,8 +1668,6 @@ entities: 545: -32,18 546: -32,19 547: -32,20 - 555: -36,15 - 556: -36,16 592: -32,26 593: -32,27 594: -28,26 @@ -1755,12 +1751,11 @@ entities: 441: -2,-28 442: -2,-27 443: -2,-26 - 557: -34,15 - 558: -34,16 596: -26,26 597: -26,27 598: -30,26 599: -30,27 + 2163: -34,15 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -1984,6 +1979,9 @@ entities: 528: -27,17 544: -32,17 616: -26,10 + 2160: -35,16 + 2161: -36,16 + 2162: -37,16 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -2265,6 +2263,14 @@ entities: 542: -32,10 548: -32,15 615: -26,11 + 2164: -35,14 + 2165: -36,14 + 2166: -37,14 + 2172: -35,18 + 2176: -34,18 + 2177: -36,18 + 2180: -30,11 + 2184: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -2443,6 +2449,10 @@ entities: 540: -29,17 541: -29,20 617: -27,10 + 2173: -35,18 + 2175: -34,18 + 2178: -36,18 + 2185: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -2560,7 +2570,6 @@ entities: decals: 286: 27,4 430: -4,-25 - 550: -36,17 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -2605,7 +2614,7 @@ entities: decals: 288: 31,2 434: -2,-30 - 553: -34,14 + 2159: -34,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -2650,7 +2659,6 @@ entities: decals: 285: 27,2 433: -4,-30 - 554: -36,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -2696,7 +2704,7 @@ entities: decals: 287: 31,4 431: -2,-25 - 549: -34,17 + 2158: -34,16 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -2774,11 +2782,17 @@ entities: id: WarnCornerGreyscaleSW decals: 1174: -13,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2144: -35,21 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1235: -15,-29 + 2143: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -2798,12 +2812,14 @@ entities: decals: 935: 23,3 1901: 26,16 + 2149: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 2132: -56,1 + 2150: -35,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2815,6 +2831,11 @@ entities: id: WarnEnd decals: 42: 7,15 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 2142: -37,20 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -2836,6 +2857,7 @@ entities: 2097: -60,0 2098: -60,1 2099: -60,2 + 2146: -35,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2904,6 +2926,7 @@ entities: 2078: -45,-4 2129: -58,1 2130: -57,1 + 2148: -36,21 - node: color: '#FFFFFFFF' id: WarnLineS @@ -2913,6 +2936,11 @@ entities: 2131: -56,0 2133: -59,4 2140: -59,5 + 2147: -35,20 + 2167: -37,14 + 2168: -37,15 + 2169: -37,16 + 2179: -36,18 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2933,6 +2961,7 @@ entities: 2094: -49,5 2095: -48,5 2138: -56,5 + 2145: -36,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2945,10 +2974,6 @@ entities: 218: 14,44 219: 13,44 257: 10,50 - 584: -34,21 - 585: -35,21 - 586: -36,21 - 587: -37,21 871: -53,-12 872: -54,-12 873: -55,-12 @@ -3005,10 +3030,6 @@ entities: 427: 24,-23 428: 25,-23 429: 26,-23 - 498: -34,19 - 499: -35,19 - 500: -36,19 - 501: -37,19 590: -30,22 591: -31,22 724: -43,-4 @@ -3454,7 +3475,7 @@ entities: -8,3: 0: 65535 -9,4: - 0: 29431 + 0: 12071 -8,5: 0: 65391 -8,6: @@ -4188,14 +4209,11 @@ entities: 1: 784 -11,4: 6: 546 - 0: 8 -11,6: 0: 49152 -11,3: 0: 34823 1: 1792 - -10,5: - 0: 152 -11,7: 0: 2184 -10,7: @@ -4203,11 +4221,13 @@ entities: -10,6: 0: 3296 -10,4: - 0: 32904 + 0: 2060 + -10,5: + 0: 3276 -10,3: - 0: 35087 + 0: 52495 -9,5: - 0: 119 + 0: 1911 -9,6: 0: 4400 -13,0: @@ -4296,6 +4316,8 @@ entities: 0: 5392 -15,-2: 0: 2295 + -15,-1: + 0: 1 -15,-4: 0: 16384 -14,-2: @@ -4555,6 +4577,7 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: NavMap - proto: AcousticGuitarInstrument entities: - uid: 1755 @@ -4866,6 +4889,9 @@ entities: - 7873 - 7887 - 7886 + - 7743 + - 13696 + - 13697 - uid: 12213 components: - type: Transform @@ -4876,18 +4902,6 @@ entities: - 7905 - 7907 - 12214 - - uid: 12215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - 7906 - - 7908 - uid: 12219 components: - type: Transform @@ -5504,6 +5518,18 @@ entities: - 12688 - 12764 - 12766 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 13522 + - 7908 + - 5174 - uid: 13204 components: - type: Transform @@ -5535,17 +5561,30 @@ entities: - 9504 - 9421 - 13408 + - 13683 + - 13682 + - uid: 13677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 13676 + - 10972 + - 8372 - proto: AirAlarmElectronics entities: - uid: 10719 components: - type: Transform - pos: -30.29477,5.0635805 + pos: -31.969843,3.438716 parent: 4812 - uid: 10720 components: - type: Transform - pos: -30.216644,4.9385805 + pos: -31.876093,3.44914 parent: 4812 - proto: AirCanister entities: @@ -5608,21 +5647,22 @@ entities: parent: 4812 - proto: AirlockArmoryGlassLocked entities: - - uid: 7800 - components: - - type: Transform - pos: -34.5,18.5 - parent: 4812 - - uid: 7801 - components: - - type: Transform - pos: -32.5,17.5 - parent: 4812 - uid: 7802 components: - type: Transform pos: -34.5,13.5 parent: 4812 + - uid: 10941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,19.5 + parent: 4812 + - uid: 12471 + components: + - type: Transform + pos: -34.5,17.5 + parent: 4812 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 3321 @@ -5831,11 +5871,6 @@ entities: parent: 4812 - proto: AirlockCommandLocked entities: - - uid: 5174 - components: - - type: Transform - pos: -24.5,23.5 - parent: 4812 - uid: 11928 components: - type: Transform @@ -6637,23 +6672,28 @@ entities: parent: 4812 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 7935 + - uid: 2965 components: - type: Transform pos: -22.5,26.5 parent: 4812 - proto: AirlockHeadOfSecurityLocked entities: + - uid: 2918 + components: + - type: Transform + pos: -24.5,23.5 + parent: 4812 + - uid: 4138 + components: + - type: Transform + pos: -22.5,21.5 + parent: 4812 - uid: 7934 components: - type: Transform pos: -18.5,25.5 parent: 4812 - - uid: 7936 - components: - - type: Transform - pos: -22.5,21.5 - parent: 4812 - uid: 8242 components: - type: Transform @@ -7266,6 +7306,11 @@ entities: - type: Transform pos: -30.5,25.5 parent: 4812 + - uid: 12052 + components: + - type: Transform + pos: -32.5,18.5 + parent: 4812 - proto: AirlockServiceLocked entities: - uid: 6675 @@ -7315,6 +7360,15 @@ entities: - type: DeviceNetwork deviceLists: - 13204 + - uid: 5174 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - 13155 - uid: 8805 components: - type: Transform @@ -7333,6 +7387,7 @@ entities: - type: DeviceNetwork deviceLists: - 13607 + - 13681 - uid: 12170 components: - type: Transform @@ -7405,16 +7460,14 @@ entities: - type: Transform pos: -31.5,16.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 12214 components: - type: Transform pos: -38.5,11.5 parent: 4812 - - uid: 12216 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - uid: 12218 components: - type: Transform @@ -7700,6 +7753,15 @@ entities: deviceLists: - 12697 - 9224 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 - proto: AltarSpawner entities: - uid: 4008 @@ -9007,6 +9069,11 @@ entities: - type: Transform pos: 26.5,6.5 parent: 4812 + - uid: 7739 + components: + - type: Transform + pos: -39.5,18.5 + parent: 4812 - uid: 8460 components: - type: Transform @@ -9297,6 +9364,11 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 4812 + - uid: 9626 + components: + - type: Transform + pos: -39.5,17.5 + parent: 4812 - uid: 9638 components: - type: Transform @@ -9592,31 +9664,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 4812 - - uid: 10926 - components: - - type: Transform - pos: -38.5,14.5 - parent: 4812 - - uid: 10927 - components: - - type: Transform - pos: -38.5,15.5 - parent: 4812 - - uid: 10928 - components: - - type: Transform - pos: -38.5,16.5 - parent: 4812 - - uid: 10929 - components: - - type: Transform - pos: -38.5,17.5 - parent: 4812 - - uid: 10941 - components: - - type: Transform - pos: -33.5,24.5 - parent: 4812 - uid: 10942 components: - type: Transform @@ -9632,11 +9679,6 @@ entities: - type: Transform pos: -33.5,27.5 parent: 4812 - - uid: 10945 - components: - - type: Transform - pos: -34.5,24.5 - parent: 4812 - uid: 10947 components: - type: Transform @@ -9692,11 +9734,6 @@ entities: - type: Transform pos: -35.5,30.5 parent: 4812 - - uid: 10963 - components: - - type: Transform - pos: -35.5,24.5 - parent: 4812 - uid: 10965 components: - type: Transform @@ -9707,56 +9744,11 @@ entities: - type: Transform pos: -39.5,16.5 parent: 4812 - - uid: 10967 - components: - - type: Transform - pos: -39.5,17.5 - parent: 4812 - - uid: 10969 - components: - - type: Transform - pos: -39.5,19.5 - parent: 4812 - - uid: 10970 - components: - - type: Transform - pos: -39.5,20.5 - parent: 4812 - - uid: 10972 - components: - - type: Transform - pos: -39.5,22.5 - parent: 4812 - - uid: 10973 - components: - - type: Transform - pos: -39.5,23.5 - parent: 4812 - - uid: 10974 - components: - - type: Transform - pos: -39.5,24.5 - parent: 4812 - - uid: 10975 - components: - - type: Transform - pos: -38.5,24.5 - parent: 4812 - - uid: 10977 - components: - - type: Transform - pos: -36.5,24.5 - parent: 4812 - uid: 10982 components: - type: Transform pos: -40.5,23.5 parent: 4812 - - uid: 10983 - components: - - type: Transform - pos: -39.5,18.5 - parent: 4812 - uid: 10984 components: - type: Transform @@ -9867,11 +9859,6 @@ entities: - type: Transform pos: -40.5,21.5 parent: 4812 - - uid: 11014 - components: - - type: Transform - pos: -37.5,24.5 - parent: 4812 - uid: 11016 components: - type: Transform @@ -10312,6 +10299,11 @@ entities: - type: Transform pos: 27.5,8.5 parent: 4812 + - uid: 12470 + components: + - type: Transform + pos: -40.5,16.5 + parent: 4812 - uid: 12678 components: - type: Transform @@ -10694,11 +10686,6 @@ entities: - type: Transform pos: -56.5,-1.5 parent: 4812 - - uid: 13522 - components: - - type: Transform - pos: -59.5,-3.5 - parent: 4812 - uid: 13523 components: - type: Transform @@ -11935,13 +11922,6 @@ entities: - type: Transform pos: -40.434937,-35.118546 parent: 4812 -- proto: BoxShotgunIncendiary - entities: - - uid: 12055 - components: - - type: Transform - pos: -35.55101,19.647282 - parent: 4812 - proto: BoxSterileMask entities: - uid: 9028 @@ -17664,6 +17644,16 @@ entities: - type: Transform pos: -11.5,-15.5 parent: 4812 + - uid: 7800 + components: + - type: Transform + pos: -36.5,21.5 + parent: 4812 + - uid: 8057 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 - uid: 8061 components: - type: Transform @@ -17874,11 +17864,6 @@ entities: - type: Transform pos: -34.5,20.5 parent: 4812 - - uid: 8104 - components: - - type: Transform - pos: -35.5,20.5 - parent: 4812 - uid: 8105 components: - type: Transform @@ -20989,6 +20974,11 @@ entities: - type: Transform pos: -60.5,5.5 parent: 4812 + - uid: 13631 + components: + - type: Transform + pos: -34.5,21.5 + parent: 4812 - uid: 13660 components: - type: Transform @@ -24557,6 +24547,11 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 4812 + - uid: 732 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 - uid: 971 components: - type: Transform @@ -26332,6 +26327,21 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 4812 + - uid: 7801 + components: + - type: Transform + pos: -34.5,12.5 + parent: 4812 + - uid: 7906 + components: + - type: Transform + pos: -34.5,17.5 + parent: 4812 + - uid: 7936 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 - uid: 7986 components: - type: Transform @@ -26605,7 +26615,7 @@ entities: - uid: 8040 components: - type: Transform - pos: -33.5,14.5 + pos: -34.5,18.5 parent: 4812 - uid: 8041 components: @@ -26617,56 +26627,21 @@ entities: - type: Transform pos: -34.5,14.5 parent: 4812 - - uid: 8043 - components: - - type: Transform - pos: -35.5,14.5 - parent: 4812 - uid: 8044 components: - type: Transform pos: -35.5,13.5 parent: 4812 - - uid: 8045 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - uid: 8046 components: - type: Transform - pos: -35.5,16.5 + pos: -34.5,19.5 parent: 4812 - uid: 8047 components: - type: Transform pos: -35.5,17.5 parent: 4812 - - uid: 8048 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8049 - components: - - type: Transform - pos: -33.5,15.5 - parent: 4812 - - uid: 8050 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - - uid: 8051 - components: - - type: Transform - pos: -33.5,17.5 - parent: 4812 - - uid: 8052 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - uid: 8053 components: - type: Transform @@ -26677,11 +26652,6 @@ entities: - type: Transform pos: -33.5,20.5 parent: 4812 - - uid: 8055 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - uid: 8056 components: - type: Transform @@ -26692,6 +26662,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 8104 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 8177 components: - type: Transform @@ -27392,6 +27367,11 @@ entities: - type: Transform pos: -38.5,1.5 parent: 4812 + - uid: 12145 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 12381 components: - type: Transform @@ -27402,6 +27382,11 @@ entities: - type: Transform pos: -45.5,5.5 parent: 4812 + - uid: 12663 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 - uid: 12699 components: - type: Transform @@ -27642,6 +27627,21 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13693 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 13694 + components: + - type: Transform + pos: -32.5,16.5 + parent: 4812 + - uid: 13695 + components: + - type: Transform + pos: -32.5,15.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -30536,12 +30536,6 @@ entities: - type: Transform pos: -17.5,15.5 parent: 4812 - - uid: 8338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 4812 - uid: 8366 components: - type: Transform @@ -30553,6 +30547,12 @@ entities: - type: Transform pos: -30.5,1.5 parent: 4812 + - uid: 9658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 - uid: 9878 components: - type: Transform @@ -32367,7 +32367,7 @@ entities: - uid: 8443 components: - type: Transform - pos: -36.423813,15.378265 + pos: -35.493202,16.440695 parent: 4812 - proto: ClothingHandsGlovesColorGray entities: @@ -32440,13 +32440,6 @@ entities: - type: Transform pos: 13.532155,-11.236504 parent: 4812 -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 12145 - components: - - type: Transform - pos: -35.744057,17.561283 - parent: 4812 - proto: ClothingHeadHatCone entities: - uid: 11339 @@ -32622,6 +32615,18 @@ entities: - type: Transform pos: -10.496132,3.670351 parent: 4812 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8050 + components: + - type: Transform + pos: -33.264034,22.538214 + parent: 4812 + - uid: 8331 + components: + - type: Transform + pos: -33.534866,22.538214 + parent: 4812 - proto: ClothingHeadHelmetSyndicate entities: - uid: 11672 @@ -32816,58 +32821,36 @@ entities: - type: Transform pos: -43.53869,-26.441507 parent: 4812 -- proto: ClothingOuterArmorBasic - entities: - - uid: 9636 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9658 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9971 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - proto: ClothingOuterArmorBulletproof entities: - - uid: 9972 + - uid: 8049 components: - type: Transform - pos: -35.562195,19.41048 + pos: -33.441116,22.298464 parent: 4812 - - uid: 9990 + - uid: 8145 components: - type: Transform - pos: -35.562195,19.41048 - parent: 4812 - - uid: 9992 - components: - - type: Transform - pos: -35.562195,19.41048 + pos: -33.211952,22.277617 parent: 4812 - proto: ClothingOuterArmorReflective entities: - uid: 10685 components: - type: Transform - pos: -33.364815,20.521324 + pos: -33.774452,22.319311 parent: 4812 - proto: ClothingOuterArmorRiot entities: - uid: 10958 components: - type: Transform - pos: -33.39286,20.650888 + pos: -33.732784,22.652876 parent: 4812 - uid: 10976 components: - type: Transform - pos: -33.627235,20.729013 + pos: -33.336952,22.652876 parent: 4812 - proto: ClothingOuterCoatBomber entities: @@ -32920,18 +32903,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 10602 - components: - - type: Transform - pos: -36.600456,17.618195 - parent: 4812 - - uid: 12429 - components: - - type: Transform - pos: -36.45983,17.524445 - parent: 4812 - proto: ClothingOuterHardsuitSpatio entities: - uid: 12424 @@ -33522,6 +33493,12 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-26.5 parent: 4812 + - uid: 8143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 - uid: 8264 components: - type: Transform @@ -33558,17 +33535,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,23.5 parent: 4812 - - uid: 8331 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,10.5 parent: 4812 + - uid: 12631 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 - proto: ComputerFrame entities: - uid: 11147 @@ -33745,11 +33722,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 4812 - - uid: 8332 + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,14.5 + pos: -35.5,14.5 parent: 4812 - proto: ComputerTechnologyDiskTerminal entities: @@ -34245,6 +34222,13 @@ entities: - 0 - 0 - 0 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 13664 + components: + - type: Transform + pos: -36.5,20.5 + parent: 4812 - proto: CrateTrashCart entities: - uid: 6171 @@ -34457,10 +34441,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconArmory entities: - - uid: 9626 + - uid: 12216 components: - type: Transform - pos: -34.5,20.5 + pos: -36.5,21.5 parent: 4812 - proto: DefaultStationBeaconArrivals entities: @@ -34819,10 +34803,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconTEG entities: - - uid: 13631 + - uid: 10970 components: - type: Transform - pos: -54.5,3.5 + pos: -52.5,3.5 parent: 4812 - proto: DefaultStationBeaconTheater entities: @@ -37710,10 +37694,10 @@ entities: - type: Transform pos: -26.5,-25.5 parent: 4812 - - uid: 8339 + - uid: 8333 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: DonkpocketBoxSpawner entities: @@ -38011,7 +37995,7 @@ entities: - uid: 8436 components: - type: Transform - pos: -36.520676,15.807589 + pos: -36.014038,16.6179 parent: 4812 - proto: DrinkVodkaBottleFull entities: @@ -38464,6 +38448,13 @@ entities: parent: 4812 - type: FaxMachine name: Library + - uid: 13221 + components: + - type: Transform + pos: -29.5,10.5 + parent: 4812 + - type: FaxMachine + name: Security - proto: FaxMachineCaptain entities: - uid: 7298 @@ -38684,24 +38675,17 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,16.5 + pos: -32.5,17.5 parent: 4812 - type: DeviceList devices: - 12211 - - 12212 - 7782 - 7783 - - uid: 12217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - 12212 + - 7743 + - 13696 + - 13697 - uid: 12221 components: - type: Transform @@ -39076,6 +39060,27 @@ entities: - 5600 - 5599 - 12355 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 5174 + - uid: 13681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 13683 + - 13682 + - 9504 - proto: FireAxeCabinetFilled entities: - uid: 13381 @@ -39280,6 +39285,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 4812 + - uid: 7743 + components: + - type: Transform + pos: -31.5,10.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - uid: 8591 components: - type: Transform @@ -39366,6 +39380,45 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,6.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13683 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 + - uid: 13697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - proto: FirelockElectronics entities: - uid: 10718 @@ -39797,11 +39850,17 @@ entities: - type: Transform pos: -26.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7783 components: - type: Transform pos: -25.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7784 components: - type: Transform @@ -39927,6 +39986,11 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13155 + - 13156 + - 12210 - uid: 13228 components: - type: Transform @@ -40837,6 +40901,8 @@ entities: - type: Transform pos: -47.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasMixerFlipped entities: - uid: 9515 @@ -40856,6 +40922,8 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasOutletInjector entities: - uid: 4002 @@ -40908,6 +40976,8 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveGate entities: - uid: 5801 @@ -40999,6 +41069,8 @@ entities: - type: Transform pos: -57.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9901 components: - type: Transform @@ -41010,11 +41082,15 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12775 components: - type: Transform pos: -58.5,9.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeBend entities: - uid: 560 @@ -41513,6 +41589,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9220 components: - type: Transform @@ -41526,6 +41604,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9354 components: - type: Transform @@ -41547,6 +41627,8 @@ entities: rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9718 components: - type: Transform @@ -41584,6 +41666,8 @@ entities: rot: 3.141592653589793 rad pos: -57.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11972 components: - type: Transform @@ -41641,33 +41725,45 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13462 components: - type: Transform pos: -56.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13483 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13507 components: - type: Transform pos: -54.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13508 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13539 components: - type: Transform pos: -51.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeFourway entities: - uid: 402 @@ -49109,6 +49205,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 7761 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7797 components: - type: Transform @@ -49646,6 +49749,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 8058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8225 components: - type: Transform @@ -49850,6 +49969,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 8728 components: - type: Transform @@ -50514,6 +50635,8 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9226 components: - type: Transform @@ -50629,6 +50752,8 @@ entities: - type: Transform pos: -55.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9269 components: - type: Transform @@ -50691,6 +50816,8 @@ entities: - type: Transform pos: -57.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9350 components: - type: Transform @@ -50782,6 +50909,8 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 10777 components: - type: Transform @@ -50794,6 +50923,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10975 + components: + - type: Transform + pos: -35.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11707 components: - type: Transform @@ -50808,6 +50944,8 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11963 components: - type: Transform @@ -51275,6 +51413,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12793 components: - type: Transform @@ -51745,6 +51885,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13431 components: - type: Transform @@ -51757,63 +51899,85 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13442 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13444 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13450 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13504 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13525 components: - type: Transform pos: -50.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13527 components: - type: Transform pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13530 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13531 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,8.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13533 components: - type: Transform pos: -55.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13549 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeTJunction entities: - uid: 373 @@ -53311,6 +53475,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8757 components: - type: Transform @@ -53381,17 +53553,23 @@ entities: - type: Transform pos: -55.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9320 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9528 components: - type: Transform pos: -57.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9869 components: - type: Transform @@ -53422,6 +53600,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11982 components: - type: Transform @@ -53483,6 +53669,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12858 components: - type: Transform @@ -53527,18 +53715,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13502 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPort entities: - uid: 3467 @@ -53621,6 +53815,8 @@ entities: - type: Transform pos: -48.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13528 components: - type: Transform @@ -53638,6 +53834,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPressurePump entities: - uid: 3406 @@ -53712,6 +53910,8 @@ entities: - type: Transform pos: -58.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11900 components: - type: Transform @@ -53742,17 +53942,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13434 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13516 components: - type: Transform pos: -50.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasThermoMachineFreezer entities: - uid: 859 @@ -53777,6 +53983,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13674 components: - type: Transform @@ -53797,6 +54005,8 @@ entities: rot: 3.141592653589793 rad pos: -47.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13494 components: - type: Transform @@ -53833,6 +54043,8 @@ entities: parent: 4812 - type: GasValve open: False + - type: AtmosPipeColor + color: '#947507FF' - uid: 9924 components: - type: Transform @@ -54522,13 +54734,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7906 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7910 components: - type: Transform @@ -54592,6 +54797,17 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8562 components: - type: Transform @@ -54636,6 +54852,16 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10972 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11962 components: - type: Transform @@ -54776,6 +55002,17 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 711 @@ -55350,6 +55587,9 @@ entities: - type: Transform pos: -34.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 - type: AtmosPipeColor color: '#990000FF' - uid: 7909 @@ -55614,30 +55854,40 @@ entities: rot: 3.141592653589793 rad pos: -50.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13369 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13452 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13474 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GeneratorBasic15kW entities: - uid: 1729 @@ -55647,10 +55897,10 @@ entities: parent: 4812 - proto: GeneratorRTG entities: - - uid: 2918 + - uid: 7760 components: - type: Transform - pos: -39.5,21.5 + pos: -59.5,-3.5 parent: 4812 - proto: Girder entities: @@ -56125,6 +56375,11 @@ entities: - type: Transform pos: -13.5,26.5 parent: 4812 + - uid: 2595 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 2607 components: - type: Transform @@ -57633,20 +57888,10 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,33.5 parent: 4812 - - uid: 8057 + - uid: 8052 components: - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8058 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 8059 - components: - - type: Transform - pos: -32.5,19.5 + pos: -35.5,17.5 parent: 4812 - uid: 8060 components: @@ -58219,6 +58464,11 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 4812 + - uid: 9636 + components: + - type: Transform + pos: -33.5,19.5 + parent: 4812 - uid: 9649 components: - type: Transform @@ -58767,6 +59017,11 @@ entities: - type: Transform pos: -19.5,33.5 parent: 4812 + - uid: 12058 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 12108 components: - type: Transform @@ -59567,6 +59822,12 @@ entities: - type: Transform pos: -57.5,16.5 parent: 4812 + - uid: 13691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - proto: GrilleBroken entities: - uid: 1544 @@ -59848,19 +60109,33 @@ entities: - type: Transform pos: -0.5,-56.5 parent: 4812 -- proto: GunSafeRifleLecter +- proto: GunSafeLaserCarbine entities: - - uid: 4809 + - uid: 12053 components: - type: Transform - pos: -36.5,19.5 + pos: -37.5,22.5 + parent: 4812 +- proto: GunSafeRifleLecter + entities: + - uid: 12215 + components: + - type: Transform + pos: -37.5,20.5 + parent: 4812 +- proto: GunSafeShotgunKammerer + entities: + - uid: 12054 + components: + - type: Transform + pos: -34.5,22.5 parent: 4812 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10442 + - uid: 8377 components: - type: Transform - pos: -33.5,19.5 + pos: -37.5,21.5 parent: 4812 - proto: Handcuffs entities: @@ -59953,30 +60228,38 @@ entities: parent: 4812 - proto: HeatExchanger entities: - - uid: 2965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 4812 - uid: 4581 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9291 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-1.5 parent: 4812 - - uid: 13221 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9569 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: Hemostat entities: - uid: 6244 @@ -60224,24 +60507,24 @@ entities: - uid: 9679 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.44901,3.4804118 parent: 4812 - uid: 9680 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.407343,3.438716 parent: 4812 - proto: InflatableWallStack entities: - uid: 9677 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.66776,3.7514334 parent: 4812 - uid: 9678 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.60526,3.6784658 parent: 4812 - proto: IngotGold entities: @@ -60461,6 +60744,13 @@ entities: - type: Transform pos: 9.516455,14.564514 parent: 4812 +- proto: JetpackSecurityFilled + entities: + - uid: 13680 + components: + - type: Transform + pos: -33.539055,21.668404 + parent: 4812 - proto: KitchenKnife entities: - uid: 1642 @@ -60869,29 +61159,6 @@ entities: parent: 4812 - proto: LockerAtmosphericsFilled entities: - - uid: 9570 - components: - - type: Transform - pos: -29.5,5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9571 components: - type: Transform @@ -60915,6 +61182,11 @@ entities: - 0 - 0 - 0 + - uid: 10969 + components: + - type: Transform + pos: -28.5,4.5 + parent: 4812 - proto: LockerBoozeFilled entities: - uid: 1648 @@ -61236,29 +61508,11 @@ entities: - type: Transform pos: -28.5,24.5 parent: 4812 - - uid: 8359 + - uid: 10926 components: - type: Transform - pos: -31.5,18.5 + pos: -31.5,19.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 1538 @@ -61661,29 +61915,11 @@ entities: parent: 4812 - proto: LockerWardenFilled entities: - - uid: 8337 + - uid: 12520 components: - type: Transform - pos: -36.5,14.5 + pos: -37.5,14.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 11898 @@ -62716,12 +62952,12 @@ entities: - uid: 9675 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.292763,3.542955 parent: 4812 - uid: 9676 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.21984,3.4804118 parent: 4812 - uid: 11950 components: @@ -62969,10 +63205,10 @@ entities: parent: 4812 - proto: PortableFlasher entities: - - uid: 12520 + - uid: 11923 components: - type: Transform - pos: -36.5,20.5 + pos: -33.5,20.5 parent: 4812 - proto: PortableGeneratorJrPacman entities: @@ -63355,13 +63591,6 @@ entities: - type: Transform pos: -27.5,-5.5 parent: 4812 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 13664 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - proto: PosterLegitScience entities: - uid: 6367 @@ -63811,12 +64040,6 @@ entities: parent: 4812 - proto: Poweredlight entities: - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 4812 - uid: 742 components: - type: Transform @@ -64697,22 +64920,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8144 components: - type: Transform @@ -64721,14 +64928,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8247 components: - type: Transform @@ -64766,6 +64965,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8359 + components: + - type: Transform + pos: -35.5,22.5 + parent: 4812 - uid: 8603 components: - type: Transform @@ -64866,14 +65070,17 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9823 + - uid: 9972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 + rot: 1.5707963267948966 rad + pos: -54.5,12.5 + parent: 4812 + - uid: 10442 + components: + - type: Transform + pos: -32.5,5.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10660 components: - type: Transform @@ -65059,13 +65266,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11923 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11924 components: - type: Transform @@ -65168,6 +65368,24 @@ entities: - type: Transform pos: -52.5,6.5 parent: 4812 + - uid: 13678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 4812 + - uid: 13679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 4812 + - uid: 13698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -65827,6 +66045,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 4812 - uid: 10696 components: - type: Transform @@ -66026,11 +66250,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 4812 - - uid: 2595 - components: - - type: Transform - pos: -36.5,17.5 - parent: 4812 - uid: 2699 components: - type: Transform @@ -66126,11 +66345,6 @@ entities: - type: Transform pos: -16.5,16.5 parent: 4812 - - uid: 8377 - components: - - type: Transform - pos: -35.5,19.5 - parent: 4812 - uid: 8424 components: - type: Transform @@ -66253,7 +66467,7 @@ entities: - uid: 8453 components: - type: Transform - pos: -29.452932,10.599279 + pos: -30.22465,10.760374 parent: 4812 - proto: Railing entities: @@ -66286,6 +66500,18 @@ entities: rot: 3.141592653589793 rad pos: -32.5,3.5 parent: 4812 + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 4812 + - uid: 11014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 4812 - uid: 12877 components: - type: Transform @@ -66889,26 +67115,17 @@ entities: parent: 4812 - proto: ReinforcedPlasmaWindow entities: - - uid: 4138 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 4139 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 4140 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - uid: 4141 components: - type: Transform pos: -32.5,20.5 parent: 4812 + - uid: 8371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,19.5 + parent: 4812 - uid: 9119 components: - type: Transform @@ -67012,6 +67229,12 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - uid: 10973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,19.5 + parent: 4812 - uid: 11887 components: - type: Transform @@ -68673,6 +68896,17 @@ entities: rot: 3.141592653589793 rad pos: -44.5,13.5 parent: 4812 + - uid: 8051 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - uid: 8169 components: - type: Transform @@ -68988,6 +69222,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 + - uid: 10928 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 - uid: 11047 components: - type: Transform @@ -69432,6 +69671,20 @@ entities: - type: Transform pos: -14.491153,4.5839243 parent: 4812 +- proto: RiotBulletShield + entities: + - uid: 7803 + components: + - type: Transform + pos: -33.720795,21.923859 + parent: 4812 +- proto: RiotLaserShield + entities: + - uid: 7935 + components: + - type: Transform + pos: -33.356216,21.923859 + parent: 4812 - proto: RobocopCircuitBoard entities: - uid: 12651 @@ -69586,16 +69839,11 @@ entities: parent: 4812 - proto: SecurityTechFab entities: - - uid: 8371 + - uid: 10945 components: - type: Transform - pos: -34.5,21.5 + pos: -35.5,20.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 1086 @@ -69786,12 +70034,12 @@ entities: - uid: 9673 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.71984,3.6993136 parent: 4812 - uid: 9674 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.636513,3.6576178 parent: 4812 - uid: 9725 components: @@ -70341,10 +70589,10 @@ entities: parent: 4812 - proto: SignArmory entities: - - uid: 7803 + - uid: 745 components: - type: Transform - pos: -36.5,18.5 + pos: -36.5,19.5 parent: 4812 - proto: SignAtmos entities: @@ -70716,6 +70964,12 @@ entities: - type: Transform pos: -38.5,-9.5 parent: 4812 + - uid: 13690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,18.5 + parent: 4812 - proto: SignEngine entities: - uid: 10775 @@ -70887,6 +71141,12 @@ entities: - type: Transform pos: -46.5,1.5 parent: 4812 + - uid: 13692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 4812 - proto: SignPlaque entities: - uid: 7570 @@ -71052,6 +71312,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 4812 + - uid: 13685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,19.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -71114,6 +71380,12 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 4812 + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 4812 - uid: 10751 components: - type: Transform @@ -71964,10 +72236,10 @@ entities: parent: 4812 - proto: SpawnMobMcGriff entities: - - uid: 8340 + - uid: 12632 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: SpawnMobMonkeyPunpun entities: @@ -72032,15 +72304,15 @@ entities: parent: 4812 - proto: SpawnPointAtmos entities: - - uid: 13155 + - uid: 9570 components: - type: Transform - pos: -28.5,4.5 + pos: -29.5,5.5 parent: 4812 - - uid: 13156 + - uid: 13684 components: - type: Transform - pos: -29.5,3.5 + pos: -29.5,4.5 parent: 4812 - proto: SpawnPointBartender entities: @@ -72749,6 +73021,18 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 +- proto: SuitStorageAtmos + entities: + - uid: 13688 + components: + - type: Transform + pos: -30.5,4.5 + parent: 4812 + - uid: 13689 + components: + - type: Transform + pos: -30.5,5.5 + parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -72828,17 +73112,29 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 +- proto: SuitStorageSec + entities: + - uid: 8043 + components: + - type: Transform + pos: -36.5,18.5 + parent: 4812 + - uid: 8045 + components: + - type: Transform + pos: -35.5,22.5 + parent: 4812 + - uid: 12217 + components: + - type: Transform + pos: -36.5,22.5 + parent: 4812 - proto: SuitStorageWarden entities: - - uid: 745 + - uid: 10967 components: - type: Transform - pos: -36.5,21.5 - parent: 4812 - - uid: 12663 - components: - - type: Transform - pos: -35.5,21.5 + pos: -37.5,15.5 parent: 4812 - proto: SurveillanceCameraCommand entities: @@ -73706,10 +74002,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 8372 + - uid: 9990 components: - type: Transform - pos: -33.5,21.5 + pos: -37.5,16.5 parent: 4812 - proto: SurveillanceCameraRouterService entities: @@ -73804,16 +74100,13 @@ entities: id: Anomaly Generator - proto: SurveillanceCameraSecurity entities: - - uid: 12058 + - uid: 10974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 3.141592653589793 rad + pos: -35.5,22.5 parent: 4812 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True id: Armory - uid: 12059 components: @@ -75125,11 +75418,6 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 - - uid: 8333 - components: - - type: Transform - pos: -36.5,15.5 - parent: 4812 - uid: 8334 components: - type: Transform @@ -75242,16 +75530,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 - - uid: 9568 - components: - - type: Transform - pos: -30.5,4.5 - parent: 4812 - - uid: 9569 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - uid: 9724 components: - type: Transform @@ -75272,6 +75550,12 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 4812 + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 4812 - uid: 10633 components: - type: Transform @@ -75297,6 +75581,11 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 4812 + - uid: 10977 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 - uid: 11144 components: - type: Transform @@ -75337,10 +75626,10 @@ entities: - type: Transform pos: -10.5,17.5 parent: 4812 - - uid: 12054 + - uid: 12055 components: - type: Transform - pos: -33.5,20.5 + pos: -33.5,22.5 parent: 4812 - uid: 12673 components: @@ -75348,6 +75637,18 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 4812 + - uid: 13686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 4812 + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 4812 - proto: TableReinforcedGlass entities: - uid: 6303 @@ -78620,6 +78921,16 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 4812 + - uid: 4139 + components: + - type: Transform + pos: -38.5,16.5 + parent: 4812 + - uid: 4140 + components: + - type: Transform + pos: -38.5,15.5 + parent: 4812 - uid: 4178 components: - type: Transform @@ -78777,6 +79088,11 @@ entities: - type: Transform pos: -9.5,-31.5 parent: 4812 + - uid: 4809 + components: + - type: Transform + pos: -38.5,14.5 + parent: 4812 - uid: 4828 components: - type: Transform @@ -79380,7 +79696,7 @@ entities: - uid: 5595 components: - type: Transform - pos: -38.5,18.5 + pos: -38.5,17.5 parent: 4812 - uid: 5769 components: @@ -80088,52 +80404,42 @@ entities: - uid: 7732 components: - type: Transform - pos: -32.5,18.5 + pos: -39.5,24.5 parent: 4812 - uid: 7733 components: - type: Transform - pos: -33.5,22.5 + pos: -38.5,24.5 parent: 4812 - uid: 7734 components: - type: Transform - pos: -34.5,22.5 + pos: -37.5,24.5 parent: 4812 - uid: 7735 components: - type: Transform - pos: -35.5,22.5 + pos: -38.5,18.5 parent: 4812 - uid: 7736 components: - type: Transform - pos: -36.5,22.5 + pos: -39.5,22.5 parent: 4812 - uid: 7737 components: - type: Transform - pos: -37.5,18.5 + pos: -39.5,20.5 parent: 4812 - uid: 7738 components: - type: Transform - pos: -37.5,19.5 - parent: 4812 - - uid: 7739 - components: - - type: Transform - pos: -37.5,20.5 + pos: -39.5,19.5 parent: 4812 - uid: 7740 components: - type: Transform - pos: -36.5,18.5 - parent: 4812 - - uid: 7743 - components: - - type: Transform - pos: -32.5,16.5 + pos: -33.5,24.5 parent: 4812 - uid: 7744 components: @@ -80173,32 +80479,22 @@ entities: - uid: 7756 components: - type: Transform - pos: -37.5,21.5 + pos: -34.5,24.5 parent: 4812 - uid: 7757 components: - type: Transform - pos: -37.5,22.5 + pos: -36.5,24.5 parent: 4812 - uid: 7758 components: - type: Transform - pos: -37.5,17.5 + pos: -39.5,21.5 parent: 4812 - uid: 7759 components: - type: Transform - pos: -37.5,16.5 - parent: 4812 - - uid: 7760 - components: - - type: Transform - pos: -37.5,15.5 - parent: 4812 - - uid: 7761 - components: - - type: Transform - pos: -37.5,14.5 + pos: -35.5,24.5 parent: 4812 - uid: 7762 components: @@ -80345,11 +80641,32 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 4812 + - uid: 8055 + components: + - type: Transform + pos: -32.5,17.5 + parent: 4812 - uid: 8267 components: - type: Transform pos: -35.5,3.5 parent: 4812 + - uid: 8339 + components: + - type: Transform + pos: -39.5,23.5 + parent: 4812 + - uid: 8340 + components: + - type: Transform + pos: -36.5,17.5 + parent: 4812 - uid: 8358 components: - type: Transform @@ -81662,6 +81979,11 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 4812 + - uid: 9992 + components: + - type: Transform + pos: -37.5,19.5 + parent: 4812 - uid: 10414 components: - type: Transform @@ -81718,6 +82040,16 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,3.5 parent: 4812 + - uid: 10929 + components: + - type: Transform + pos: -36.5,19.5 + parent: 4812 + - uid: 10963 + components: + - type: Transform + pos: -37.5,17.5 + parent: 4812 - uid: 10964 components: - type: Transform @@ -82084,6 +82416,11 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,12.5 parent: 4812 + - uid: 12429 + components: + - type: Transform + pos: -37.5,18.5 + parent: 4812 - uid: 12582 components: - type: Transform @@ -85897,51 +86234,13 @@ entities: - uid: 3754 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.564545,16.749907 parent: 4812 - uid: 3759 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.46038,16.551853 parent: 4812 -- proto: WeaponLaserCarbine - entities: - - uid: 12470 - components: - - type: Transform - pos: -33.4461,20.270079 - parent: 4812 - - uid: 12471 - components: - - type: Transform - pos: -33.4461,20.218811 - parent: 4812 - - uid: 12631 - components: - - type: Transform - pos: -33.43493,20.166264 - parent: 4812 - - uid: 12632 - components: - - type: Transform - pos: -33.388054,20.103764 - parent: 4812 -- proto: WeaponShotgunKammerer - entities: - - uid: 12052 - components: - - type: Transform - pos: -35.535385,19.569157 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 12053 - components: - - type: Transform - pos: -35.410385,19.412907 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - proto: WeaponSubMachineGunWt550 entities: - uid: 13165 @@ -86362,6 +86661,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,19.5 parent: 4812 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 - proto: WindoorTheatreLocked entities: - uid: 896 From 20bb9ede110efcb6c8c2d804f0ec038d3dd0f831 Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:19:15 +0000 Subject: [PATCH 126/176] fix(contraband): Make contraband work with chameleon items (#30986) * formatting --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../EntitySystems/SharedChameleonClothingSystem.cs | 13 +++++++++++++ Content.Shared/Contraband/ContrabandSystem.cs | 12 +++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index f5df04037e..2b10b41fee 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Clothing.Components; +using Content.Shared.Contraband; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; @@ -13,6 +14,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; + [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -68,6 +70,17 @@ public abstract class SharedChameleonClothingSystem : EntitySystem { _clothingSystem.CopyVisuals(uid, otherClothing, clothing); } + + // properly mark contraband + if (proto.TryGetComponent("Contraband", out ContrabandComponent? contra)) + { + EnsureComp(uid, out var current); + _contraband.CopyDetails(uid, contra, current); + } + else + { + RemComp(uid); + } } protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 22181ce99a..e6931f2860 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -33,6 +33,16 @@ public sealed class ContrabandSystem : EntitySystem _contrabandExamineEnabled = val; } + public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComponent? contraband = null) + { + if (!Resolve(uid, ref contraband)) + return; + + contraband.Severity = other.Severity; + contraband.AllowedDepartments = other.AllowedDepartments; + Dirty(uid, contraband); + } + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!_contrabandExamineEnabled) @@ -45,7 +55,7 @@ public sealed class ContrabandSystem : EntitySystem using (args.PushGroup(nameof(ContrabandComponent))) { var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) + if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) { // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? var list = ContentLocalizationManager.FormatList(ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")).ToList()); From 95104de11772a6aba1b914b9b0b4743ef5f4641f Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:49:34 +0200 Subject: [PATCH 127/176] Fix cadet pda (#32399) --- .../Entities/Objects/Devices/pda.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 48e7a28deb..f8109ca3ee 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -115,11 +115,11 @@ speechVerb: Robotic - type: entity + parent: BasePDA id: BaseSecurityPDA abstract: true components: - type: CartridgeLoader - uiKey: enum.PdaUiKey.Key preinstalled: - CrewManifestCartridge - NotekeeperCartridge @@ -184,7 +184,7 @@ - Medical Doctor - type: entity - parent: BasePDA + parent: BaseSecurityPDA id: SecurityCadetPDA name: security cadet PDA description: Why isn't it red? @@ -445,7 +445,7 @@ state: pda-library - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -488,7 +488,7 @@ state: pda-janitor - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -663,7 +663,7 @@ state: pda-science - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -678,7 +678,7 @@ state: pda-hos - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -693,7 +693,7 @@ state: pda-warden - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -707,7 +707,7 @@ state: pda-security - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -847,7 +847,7 @@ - Cartridge - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -995,7 +995,7 @@ state: pda-boxer - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1095,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. From d0bb4086782558cce52bc58d7d940304ade81021 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 21:50:41 +0000 Subject: [PATCH 128/176] 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 aac9136709..7cc55f2a11 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Added health examine for caustic and cold damage. - type: Add - id: 6926 - time: '2024-07-17T06:19:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29989 - author: lzk228 changes: - message: Surgery saws now are normal-sized (no more pocket circular saw). @@ -3925,3 +3918,10 @@ id: 7425 time: '2024-09-23T13:08:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32302 +- author: lzk228 + changes: + - message: Cadet PDA now has wanted list cartridge preinstalled. + type: Fix + id: 7426 + time: '2024-09-23T21:49:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32399 From 594aad0fa978fb9a625f41f537a866348ee019ed Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Tue, 24 Sep 2024 00:36:05 +0100 Subject: [PATCH 129/176] Paper QOL improvements (#32418) * Don't add newlines (fixes #32357) * Improve UI around max paper length (Fixes #32344) * Display a "fill progress" indicator so users know how close they are to filling it * Don't allow users to save a paper which went over the limit, to avoid them losing data they want to keep. --------- Co-authored-by: Eoin Mcloughlin --- .../Paper/UI/PaperBoundUserInterface.cs | 5 ++ Content.Client/Paper/UI/PaperWindow.xaml | 11 +++-- Content.Client/Paper/UI/PaperWindow.xaml.cs | 49 ++++++++++++++++++- Content.Shared/Paper/PaperSystem.cs | 2 +- .../Locale/en-US/paper/paper-component.ftl | 3 ++ 5 files changed, 63 insertions(+), 7 deletions(-) diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 63645bc01e..ec417f749b 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -2,6 +2,7 @@ using JetBrains.Annotations; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; +using Content.Shared.Paper; using static Content.Shared.Paper.PaperComponent; namespace Content.Client.Paper.UI; @@ -23,6 +24,10 @@ public sealed class PaperBoundUserInterface : BoundUserInterface _window = this.CreateWindow(); _window.OnSaved += InputOnTextEntered; + if (EntMan.TryGetComponent(Owner, out var paper)) + { + _window.MaxInputLength = paper.ContentSize; + } if (EntMan.TryGetComponent(Owner, out var visuals)) { _window.InitVisuals(Owner, visuals); diff --git a/Content.Client/Paper/UI/PaperWindow.xaml b/Content.Client/Paper/UI/PaperWindow.xaml index 2344afd5ef..503ae928a3 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml +++ b/Content.Client/Paper/UI/PaperWindow.xaml @@ -15,10 +15,13 @@ - - - + + + + + diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 81b831068c..02c4ed64c3 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -48,6 +48,20 @@ namespace Content.Client.Paper.UI public event Action? OnSaved; + private int _MaxInputLength = -1; + public int MaxInputLength + { + get + { + return _MaxInputLength; + } + set + { + _MaxInputLength = value; + UpdateFillState(); + } + } + public PaperWindow() { IoCManager.InjectDependencies(this); @@ -63,11 +77,21 @@ namespace Content.Client.Paper.UI { if (args.Function == EngineKeyFunctions.MultilineTextSubmit) { - RunOnSaved(); - args.Handle(); + // SaveButton is disabled when we hit the max input limit. Just check + // that flag instead of trying to calculate the input length again + if (!SaveButton.Disabled) + { + RunOnSaved(); + args.Handle(); + } } }; + Input.OnTextChanged += args => + { + UpdateFillState(); + }; + SaveButton.OnPressed += _ => { RunOnSaved(); @@ -126,6 +150,7 @@ namespace Content.Client.Paper.UI PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; + FillStatus.ModulateSelfOverride = visuals.FontAccentColor; var contentImage = visuals.ContentImagePath != null ? _resCache.GetResource(visuals.ContentImagePath) : null; if (contentImage != null) @@ -296,5 +321,25 @@ namespace Content.Client.Paper.UI { OnSaved?.Invoke(Rope.Collapse(Input.TextRope)); } + + private void UpdateFillState() + { + if (MaxInputLength != -1) + { + var inputLength = Input.TextLength; + + FillStatus.Text = Loc.GetString("paper-ui-fill-level", + ("currentLength", inputLength), + ("maxLength", MaxInputLength)); + + // Disable the save button if we've gone over the limit + SaveButton.Disabled = inputLength > MaxInputLength; + } + else + { + FillStatus.Text = ""; + SaveButton.Disabled = false; + } + } } } diff --git a/Content.Shared/Paper/PaperSystem.cs b/Content.Shared/Paper/PaperSystem.cs index 0f4bfef983..211eb7eba8 100644 --- a/Content.Shared/Paper/PaperSystem.cs +++ b/Content.Shared/Paper/PaperSystem.cs @@ -201,7 +201,7 @@ public sealed class PaperSystem : EntitySystem public void SetContent(Entity entity, string content) { - entity.Comp.Content = content + '\n'; + entity.Comp.Content = content; Dirty(entity); UpdateUserInterface(entity); diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index c2d9d5712b..7425ea2da1 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -11,6 +11,9 @@ paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. +# Indicator to show how full a paper is +paper-ui-fill-level = {$currentLength}/{$maxLength} + paper-ui-save-button = Save ({$keybind}) paper-tamper-proof-modified-message = This page was written using tamper-proof ink. From 1450d76337597323f2cac761529024a332afb6a1 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 01:38:09 +0200 Subject: [PATCH 130/176] Fix OOC not re-enabling if restartroundnow is used (#32401) The ChatSystem code for re-enabling OOC only ran during PostRound, which gets skipped over when doing restartroundnow. Now it does this on PreRoundLobby too. --- Content.Server/Chat/Systems/ChatSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index bcbc6a6144..fb84c785d2 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -122,6 +122,7 @@ public sealed partial class ChatSystem : SharedChatSystem _configurationManager.SetCVar(CCVars.OocEnabled, false); break; case GameRunLevel.PostRound: + case GameRunLevel.PreRoundLobby: if (!_configurationManager.GetCVar(CCVars.OocEnableDuringRound)) _configurationManager.SetCVar(CCVars.OocEnabled, true); break; From f1bd0be7728a663e7b382a611c243313528516eb Mon Sep 17 00:00:00 2001 From: Myra Date: Tue, 24 Sep 2024 02:31:08 +0200 Subject: [PATCH 131/176] Remove all command age requirements (#32340) From what I can tell this was merged with this on accident. Maintainers see the maint review thread on this. The original pr also claimed this was as an example. In my opinion wizden should not have an age requirement for command. --- Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/captain.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml | 2 -- Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml | 2 -- .../Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml | 2 -- Resources/Prototypes/Roles/Jobs/Science/research_director.yml | 2 -- Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml | 2 -- 7 files changed, 14 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 1beef052f8..515e2f8425 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -15,8 +15,6 @@ time: 36000 #10 hours - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index e74c307204..79634aa5d9 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 54000 # 15 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: CaptainGear icon: "JobIconCaptain" diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7cac1456d4..d5521f767f 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 36000 # 10 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: HoPGear icon: "JobIconHeadOfPersonnel" diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index f9f94d21bb..0ee0b6736c 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -15,8 +15,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ChiefEngineerGear icon: "JobIconChiefEngineer" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 0d3b5bb805..2587113415 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -17,8 +17,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 48dffcb98c..b54ba54b1a 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -9,8 +9,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ResearchDirectorGear icon: "JobIconResearchDirector" diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 7a5f5b6dcd..044df7f69e 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -15,8 +15,6 @@ time: 108000 # 30 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: HoSGear icon: "JobIconHeadOfSecurity" From dc4d638ce97cc53a0e8e2d94d23ae7edd0027303 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 00:32:14 +0000 Subject: [PATCH 132/176] 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 7cc55f2a11..03d2ab1127 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Surgery saws now are normal-sized (no more pocket circular saw). - type: Tweak - id: 6927 - time: '2024-07-17T06:26:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29995 - author: Winkarst-cpu changes: - message: The super door remote is now able to control Syndicate doors. @@ -3925,3 +3918,10 @@ id: 7426 time: '2024-09-23T21:49:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32399 +- author: Vasilis + changes: + - message: Removed the age requirement for command jobs. + type: Tweak + id: 7427 + time: '2024-09-24T00:31:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32340 From 9d75a228c0ed599b104f3c28335d545289058573 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Tue, 24 Sep 2024 00:48:14 -0400 Subject: [PATCH 133/176] Add missing LV cables in Omega atmos (#32417) Adds missing LV wire in atmos burn chambers. --- Resources/Maps/omega.yml | 62 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 708edad454..7709234a6a 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -20994,6 +20994,56 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13699 + components: + - type: Transform + pos: -55.5,9.5 + parent: 4812 + - uid: 13700 + components: + - type: Transform + pos: -56.5,9.5 + parent: 4812 + - uid: 13701 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 13702 + components: + - type: Transform + pos: -58.5,9.5 + parent: 4812 + - uid: 13703 + components: + - type: Transform + pos: -59.5,9.5 + parent: 4812 + - uid: 13704 + components: + - type: Transform + pos: -60.5,9.5 + parent: 4812 + - uid: 13705 + components: + - type: Transform + pos: -58.5,0.5 + parent: 4812 + - uid: 13706 + components: + - type: Transform + pos: -59.5,0.5 + parent: 4812 + - uid: 13707 + components: + - type: Transform + pos: -60.5,0.5 + parent: 4812 + - uid: 13708 + components: + - type: Transform + pos: -61.5,0.5 + parent: 4812 - proto: CableApcStack entities: - uid: 6196 @@ -86503,6 +86553,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 4812 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 - proto: WindoorSecureChemistryLocked entities: - uid: 6582 @@ -86588,12 +86644,6 @@ entities: parent: 4812 - proto: WindoorSecureSalvageLocked entities: - - uid: 13169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - uid: 13253 components: - type: Transform From 50395e25cf35277150930ccfc1a73c8747846647 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:23:48 +0300 Subject: [PATCH 134/176] Allow AreaInsert pickups for one item (#32153) Update SharedStorageSystem.cs --- Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index d6fde292a1..ca4b788867 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -453,7 +453,7 @@ public abstract class SharedStorageSystem : EntitySystem } //If there's only one then let's be generous - if (_entList.Count > 1) + if (_entList.Count >= 1) { var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { From 49d4e4c465a9734f8de970c01b024fe595fc9dd7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 14:24:56 +0000 Subject: [PATCH 135/176] 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 03d2ab1127..667f365d50 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: The super door remote is now able to control Syndicate doors. - type: Fix - id: 6928 - time: '2024-07-17T13:50:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30033 - author: Errant changes: - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle @@ -3925,3 +3918,10 @@ id: 7427 time: '2024-09-24T00:31:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32340 +- author: whatston3 + changes: + - message: Area insert items can pick up single item sets when clicking on the floor. + type: Fix + id: 7428 + time: '2024-09-24T14:23:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32153 From efd989435e875a12e7044fb525ef7bd8aea9a4de Mon Sep 17 00:00:00 2001 From: LordEclipse <106132477+LordEclipse@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:06:58 -0400 Subject: [PATCH 136/176] Antimov in both Traitor & Nukie Uplinks (#31916) Adds Antimov AI Lawboard to Uplinks Automatic changelog update Co-authored-by: PJBot --- .../Locale/en-US/store/uplink-catalog.ftl | 3 ++ .../Prototypes/Catalog/uplink_catalog.yml | 38 ++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 90676fbfe3..45d7ad2816 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -166,6 +166,9 @@ uplink-syndicate-martyr-module-desc = Turn your emagged borg friend into a walki uplink-singularity-beacon-name = Singularity Beacon uplink-singularity-beacon-desc = A device that attracts singularities. Has to be anchored and powered. Causes singularities to grow when consumed. +uplink-antimov-law-name = Antimov Law Circuit +uplink-antimov-law-desc = A very dangerous Lawset to use when you want to cause the A.I. to go haywire, use with caution. + # Implants uplink-storage-implanter-name = Storage Implanter uplink-storage-implanter-desc = Hide goodies inside of yourself with new bluespace technology! diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index efa288a44b..c84e88d077 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -993,11 +993,47 @@ categories: - UplinkDisruption conditions: - - !type:BuyerWhitelistCondition + - !type:BuyerWhitelistCondition blacklist: components: - SurplusBundle +- type: listing + id: UplinkAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: usualDiscounts + discountDownTo: + Telecrystal: 10 + cost: + Telecrystal: 14 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkNukieAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: rareDiscounts + discountDownTo: + Telecrystal: 20 + cost: + Telecrystal: 24 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkSurplusBundle name: uplink-surplus-bundle-name From b883f796606c722cf429bf904e82c1becd309983 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:08:06 +0000 Subject: [PATCH 137/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 667f365d50..c5a3353f53 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Errant - changes: - - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle - ghostroles, until code supports giving them species-specific gear. - type: Tweak - id: 6929 - time: '2024-07-17T22:04:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30099 - author: Cojoke-dot changes: - message: You can no longer teleport objects that should not be in other objects @@ -3925,3 +3917,11 @@ id: 7428 time: '2024-09-24T14:23:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32153 +- author: LordEclipse + changes: + - message: The Antimov Law Board is now available in both the Traitor and Nuclear + Operative Uplinks, 14 and 24 TC respectively. + type: Add + id: 7429 + time: '2024-09-24T15:06:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31916 From 87932bce57cd9ef0a37db76c75eeeefe27b1b79d Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:19:40 +0200 Subject: [PATCH 138/176] craftable freezers (#32277) * Craftable freezers * oh i forgot that --- .../Objects/Devices/Electronics/misc.yml | 15 ++++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Storage/Closets/Lockers/lockers.yml | 5 ++ .../Structures/Storage/Crates/crates.yml | 5 ++ .../Crafting/Graphs/storage/cratefreezer.yml | 42 +++++++++++++++++ .../Crafting/Graphs/storage/tallbox.yml | 43 ++++++++++++++++++ .../Prototypes/Recipes/Crafting/crates.yml | 11 +++++ .../Prototypes/Recipes/Crafting/tallbox.yml | 13 +++++- .../Prototypes/Recipes/Lathes/electronics.yml | 5 ++ Resources/Prototypes/tags.yml | 3 ++ .../Storage/closet.rsi/freezer_icon.png | Bin 0 -> 444 bytes .../Structures/Storage/closet.rsi/meta.json | 3 ++ 12 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml create mode 100644 Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml new file mode 100644 index 0000000000..62a4ee7294 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml @@ -0,0 +1,15 @@ +- type: entity + parent: BaseElectronics + id: FreezerElectronics + name: freezer electronics + description: An electronics board used in kitchen freezers. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: door_electronics + - type: Tag + tags: + - FreezerElectronics + - type: DoorElectronics + - type: StaticPrice + price: 55 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 538da8d93e..666550cd8a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -198,6 +198,7 @@ - ClothingHeadHatWelding - WetFloorSign - ClothingHeadHatCone + - FreezerElectronics - Flare - type: EmagLatheRecipes emagStaticRecipes: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 89dc4d4755..244ccf2e30 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -170,6 +170,11 @@ - type: ExplosionResistance damageCoefficient: 0.50 - type: AntiRottingContainer + - type: Construction + graph: ClosetFreezer + node: done + containers: + - entity_storage - type: entity id: LockerFreezer diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 4c540d7b77..3ed0ee5348 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -42,6 +42,11 @@ - type: AntiRottingContainer - type: ExplosionResistance damageCoefficient: 0.50 + - type: Construction + graph: CrateFreezer + node: done + containers: + - entity_storage - type: entity parent: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml new file mode 100644 index 0000000000..a43d84e173 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml @@ -0,0 +1,42 @@ +- type: constructionGraph + id: CrateFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 5 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: CrateFreezer + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index e72c56ff44..17696eaaff 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -61,6 +61,49 @@ - !type:EmptyAllContainers - !type:DeleteEntity +- type: constructionGraph + id: ClosetFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 4 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: LockerFreezerBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 4 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity + - type: constructionGraph id: ClosetWall start: start diff --git a/Resources/Prototypes/Recipes/Crafting/crates.yml b/Resources/Prototypes/Recipes/Crafting/crates.yml index 72fabc2221..25450b7d98 100644 --- a/Resources/Prototypes/Recipes/Crafting/crates.yml +++ b/Resources/Prototypes/Recipes/Crafting/crates.yml @@ -31,6 +31,17 @@ icon: { sprite: Structures/Storage/Crates/secure.rsi, state: icon } objectType: Structure +- type: construction + name: freezer + id: CrateFreezer + graph: CrateFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A metal freezing crate for storing things. + icon: { sprite: Structures/Storage/Crates/freezer.rsi, state: icon } + objectType: Structure + - type: construction name: plastic crate id: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml index 21a7ec8225..c90142de44 100644 --- a/Resources/Prototypes/Recipes/Crafting/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml @@ -20,6 +20,17 @@ icon: { sprite: Structures/Storage/closet.rsi, state: secure_icon } objectType: Structure +- type: construction + id: ClosetFreezer + name: freezer + graph: ClosetFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A tall steel box with freezing abilities. + icon: { sprite: Structures/Storage/closet.rsi, state: freezer_icon } + objectType: Structure + - type: construction id: ClosetWall name: wall closet @@ -34,4 +45,4 @@ canRotate: true canBuildInImpassable: true conditions: - - !type:WallmountCondition \ No newline at end of file + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 818ba0fe37..99ff9f25ee 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -98,6 +98,11 @@ id: DoorElectronics result: DoorElectronics +- type: latheRecipe + parent: BaseCheapElectronicsRecipe + id: FreezerElectronics + result: FreezerElectronics + - type: latheRecipe parent: BaseElectronicsRecipe id: AirAlarmElectronics diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 1ddee10e63..2a07d061d3 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -647,6 +647,9 @@ - type: Tag id: ForceNoFixRotations # fixrotations command WON'T target this +- type: Tag + id: FreezerElectronics + - type: Tag id: Fruit diff --git a/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png b/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ab148aa7cb258bcb96b2aeb109071de1672bc528 GIT binary patch literal 444 zcmV;t0Ym-ipF4kPQZ7CV zzJe)=0^vNXkMl(qga>bJoa>v8k+uaT-3j7SmPe=Fr mJ!D!{6^Z`?*c&qax1v|Y`)ZW)1JP;#0000 Date: Tue, 24 Sep 2024 15:20:46 +0000 Subject: [PATCH 139/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c5a3353f53..aaeb4a9d90 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer teleport objects that should not be in other objects - into other objects with the Quantum Spin Inverter - type: Fix - id: 6930 - time: '2024-07-18T00:40:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29200 - author: Plykiya changes: - message: Stun batons no longer use up charges when hitting objects without stamina. @@ -3925,3 +3917,11 @@ id: 7429 time: '2024-09-24T15:06:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31916 +- author: lzk228 + changes: + - message: Freezer electronics added to autolathe, with which you can craft locker + freezer or crate freezer. + type: Add + id: 7430 + time: '2024-09-24T15:19:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32277 From 042f0d3f47036d7f9e61ca29643885c250992fb7 Mon Sep 17 00:00:00 2001 From: Milon Date: Tue, 24 Sep 2024 17:48:32 +0200 Subject: [PATCH 140/176] fix paper staying on fire forever (#32412) okay who did that --- Resources/Prototypes/Entities/Objects/Misc/paper.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index d26bdf25c7..0605ceb9f9 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -35,9 +35,7 @@ - type: PaperVisuals - type: Flammable fireSpread: true - canResistFire: false alwaysCombustible: true - canExtinguish: false # Mwahaha! Let the world burn because of one piece of paper! damage: types: Heat: 1 From f3e185c063cdcdeac57e94ffbceb49dd3d2534bf Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:49:38 +0000 Subject: [PATCH 141/176] 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 aaeb4a9d90..1c8bcd0bd3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Stun batons no longer use up charges when hitting objects without stamina. - type: Fix - id: 6931 - time: '2024-07-18T00:48:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30136 - author: Sh18RW changes: - message: Moth can't eat boots with an item more @@ -3925,3 +3918,10 @@ id: 7430 time: '2024-09-24T15:19:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32277 +- author: MilonPL + changes: + - message: Paper will no longer stay on fire indefinitely. + type: Fix + id: 7431 + time: '2024-09-24T15:48:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32412 From 241be37185b84ce6d3fd0c8b5672bb41c926a4e0 Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:02:51 +0100 Subject: [PATCH 142/176] AstroNav GPS Cartridge (#32194) * initial commit * adds astronav cartridge to QM locker * changes requested in review * fix merge conflicts * fixes the statuscontrol disappearing if you eject the cartridge but still have it installed * fix notificationsenabled on salv pda proto * fixes lingering statuscontrol on eject while held --------- Co-authored-by: archrbx --- .../GPS/Components/HandheldGPSComponent.cs | 9 ----- .../GPS/Systems/HandheldGpsSystem.cs | 2 +- .../GPS/UI/HandheldGpsStatusControl.cs | 15 +++++--- .../Cartridges/AstroNavCartridgeComponent.cs | 9 +++++ .../Cartridges/AstroNavCartridgeSystem.cs | 32 ++++++++++++++++++ Content.Server/Entry/IgnoredComponents.cs | 1 - .../GPS/Components/HandheldGPSComponent.cs | 10 ++++++ .../Components/SharedHandheldGPSComponent.cs | 9 ----- .../en-US/cartridge-loader/cartridges.ftl | 2 ++ .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 19 +++++++++++ .../Entities/Objects/Devices/pda.yml | 7 ++++ .../Devices/cartridge.rsi/cart-nav.png | Bin 0 -> 300 bytes .../Objects/Devices/cartridge.rsi/meta.json | 11 +++--- 14 files changed, 99 insertions(+), 28 deletions(-) delete mode 100644 Content.Client/GPS/Components/HandheldGPSComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs create mode 100644 Content.Shared/GPS/Components/HandheldGPSComponent.cs delete mode 100644 Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png diff --git a/Content.Client/GPS/Components/HandheldGPSComponent.cs b/Content.Client/GPS/Components/HandheldGPSComponent.cs deleted file mode 100644 index 0f5271fd80..0000000000 --- a/Content.Client/GPS/Components/HandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.GPS; - -namespace Content.Client.GPS.Components -{ - [RegisterComponent] - public sealed partial class HandheldGPSComponent : SharedHandheldGPSComponent - { - } -} diff --git a/Content.Client/GPS/Systems/HandheldGpsSystem.cs b/Content.Client/GPS/Systems/HandheldGpsSystem.cs index cc2b888da3..3f38a3b695 100644 --- a/Content.Client/GPS/Systems/HandheldGpsSystem.cs +++ b/Content.Client/GPS/Systems/HandheldGpsSystem.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.GPS.UI; using Content.Client.Items; diff --git a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs index 7dcf3f29c5..57645e386e 100644 --- a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs +++ b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.Message; using Content.Client.Stylesheets; using Robust.Client.GameObjects; @@ -30,6 +30,13 @@ public sealed class HandheldGpsStatusControl : Control { base.FrameUpdate(args); + // don't display the label if the gps component is being removed + if (_parent.Comp.LifeStage > ComponentLifeStage.Running) + { + _label.Visible = false; + return; + } + _updateDif += args.DeltaSeconds; if (_updateDif < _parent.Comp.UpdateRate) return; @@ -44,9 +51,9 @@ public sealed class HandheldGpsStatusControl : Control var posText = "Error"; if (_entMan.TryGetComponent(_parent, out TransformComponent? transComp)) { - var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); - var x = (int) pos.X; - var y = (int) pos.Y; + var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); + var x = (int)pos.X; + var y = (int)pos.Y; posText = $"({x}, {y})"; } _label.SetMarkup(Loc.GetString("handheld-gps-coordinates-title", ("coordinates", posText))); diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs new file mode 100644 index 0000000000..fd616a1c80 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class AstroNavCartridgeComponent : Component +{ +} diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs new file mode 100644 index 0000000000..60d14789fa --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS.Components; + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class AstroNavCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoaderSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCartridgeAdded); + SubscribeLocalEvent(OnCartridgeRemoved); + } + + private void OnCartridgeAdded(Entity ent, ref CartridgeAddedEvent args) + { + EnsureComp(args.Loader); + } + + private void OnCartridgeRemoved(Entity ent, ref CartridgeRemovedEvent args) + { + // only remove when the program itself is removed + if (!_cartridgeLoaderSystem.HasProgram(args.Loader)) + { + RemComp(args.Loader); + } + } +} diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index d9b81c8e5a..04c4566227 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -12,7 +12,6 @@ namespace Content.Server.Entry "GuideHelp", "Clickable", "Icon", - "HandheldGPS", "CableVisualizer", "SolutionItemStatus", "UIFragment", diff --git a/Content.Shared/GPS/Components/HandheldGPSComponent.cs b/Content.Shared/GPS/Components/HandheldGPSComponent.cs new file mode 100644 index 0000000000..a0af090986 --- /dev/null +++ b/Content.Shared/GPS/Components/HandheldGPSComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.GPS.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class HandheldGPSComponent : Component +{ + [DataField] + public float UpdateRate = 1.5f; +} diff --git a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs b/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs deleted file mode 100644 index 3c30738857..0000000000 --- a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ - -namespace Content.Shared.GPS -{ - public abstract partial class SharedHandheldGPSComponent : Component - { - [DataField("updateRate")] - public float UpdateRate = 1.5f; - } -} diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index 2db27f5be0..804da0992f 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -20,6 +20,8 @@ log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # +astro-nav-program-name = AstroNav + # Wanted list cartridge wanted-list-program-name = Wanted list wanted-list-label-no-records = It's all right, cowboy diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 31ebad6183..2ca2b0f740 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -17,6 +17,7 @@ - id: RubberStampApproved - id: RubberStampDenied - id: RubberStampQm + - id: AstroNavCartridge - type: entity id: LockerQuarterMasterFilled diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index 91493f48cd..aee26b0776 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -116,3 +116,22 @@ - type: WantedListCartridge - type: StealTarget stealGroup: WantedListCartridge + +- type: entity + parent: BaseItem + id: AstroNavCartridge + name: AstroNav cartridge + description: A program for navigation that provides GPS coordinates. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Cartridge + programName: astro-nav-program-name + icon: + sprite: Objects/Devices/gps.rsi + state: icon + - type: AstroNavCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index f8109ca3ee..c6952fdd6a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -400,6 +400,13 @@ accentVColor: "#8900c9" - type: Icon state: pda-miner + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - AstroNavCartridge - type: entity parent: BasePDA diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png new file mode 100644 index 0000000000000000000000000000000000000000..427129da0ed3c3745dda6f4c80f872b860497315 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilI0(?STIXOAi)zzh>qzsLm9GpV@0y3)i7{Z&C&V0|Ns=K|!GM zuz-^+K#H#<$S?RmGGK5$aOVV2hO@vUvKXk~FbFdq&tH)O6fE>~aSXBWe|zCBSAzmi zL*Re2vv+>)&kJtX)Lrs>-)sl|?2L@d{8jP|k&_N{O1xh7rdBWB=p4I42J3s11K&F~ zvT8B-oG=zL4skrfytwB=eW3XYVIdaL9~+rpc(48DEVFIlyJ`cUu)&Rm^Hj$ Ys#v327E!^u8E83!r>mdKI;Vst0BSF1{Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index d5fad56006..e7415fe1c2 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav made by ArchRBX (github)", "size": { "x": 32, "y": 32 @@ -58,6 +58,9 @@ { "name": "cart-mi" }, + { + "name": "cart-nav" + }, { "name": "cart-ord" }, @@ -70,6 +73,9 @@ { "name": "cart-s" }, + { + "name": "cart-sec" + }, { "name": "cart-tear" }, @@ -79,9 +85,6 @@ { "name": "cart-y" }, - { - "name": "cart-sec" - }, { "name": "insert_overlay" } From 4bca634ff6ba4836c683d394d20e7cf0c4a4916e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 17:03:58 +0000 Subject: [PATCH 143/176] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c8bcd0bd3..2035b48264 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Sh18RW - changes: - - message: Moth can't eat boots with an item more - type: Fix - id: 6932 - time: '2024-07-18T22:34:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30019 - author: portfiend changes: - message: Reptilians display correct mask sprites in character customization screen. @@ -3925,3 +3918,14 @@ id: 7431 time: '2024-09-24T15:48:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32412 +- author: ArchRBX + changes: + - message: The AstroNav PDA cartridge has now been added, which turns your PDA into + a handheld GPS + type: Add + - message: The AstroNav cartridge has been added to the QM locker, and comes preinstalled + on salvage PDA's + type: Add + id: 7432 + time: '2024-09-24T17:02:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32194 From e36d735064d2f66156877a9d72ee1063ebb76425 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 22:43:02 +0200 Subject: [PATCH 144/176] Fix cartesian explosion in pref loading (#32434) Lol .AsSingleQuery(). Some people's preferences wouldn't load on Lizard. Turns out the entire preferences set is loaded with a morbillion joins in a single query and one person had 240,000 (!!!) rows returned for their preferences query. Yeah. --- Content.Server/Database/ServerDbBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 3c59c36f77..b750c13e21 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -52,7 +52,7 @@ namespace Content.Server.Database .ThenInclude(h => h.Loadouts) .ThenInclude(l => l.Groups) .ThenInclude(group => group.Loadouts) - .AsSingleQuery() + .AsSplitQuery() .SingleOrDefaultAsync(p => p.UserId == userId.UserId, cancel); if (prefs is null) From 89dbef7461abe1de886075cc011bc2e0af2bd40a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 20:44:08 +0000 Subject: [PATCH 145/176] 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 2035b48264..b6243e2c17 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: portfiend - changes: - - message: Reptilians display correct mask sprites in character customization screen. - type: Fix - id: 6933 - time: '2024-07-18T22:36:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30095 - author: Plykiya changes: - message: You no longer deal double damage to your first target when throwing an @@ -3929,3 +3922,10 @@ id: 7432 time: '2024-09-24T17:02:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32194 +- author: PJB3005 + changes: + - message: Fixed some people's preferences taking ages to load, hopefully. + type: Fix + id: 7433 + time: '2024-09-24T20:43:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32434 From 95a159f9509aac615bcd7265a841dadeabaa453c Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:37:45 +0000 Subject: [PATCH 146/176] fix(BatterySelfRecharger): Fully charge BatterySelfRechargers (#30627) --- Content.Server/Power/EntitySystems/BatterySystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index 0a0f2068b5..ed2d54ffaa 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -84,7 +84,6 @@ namespace Content.Server.Power.EntitySystems while (query.MoveNext(out var uid, out var comp, out var batt)) { if (!comp.AutoRecharge) continue; - if (batt.IsFullyCharged) continue; SetCharge(uid, batt.CurrentCharge + comp.AutoRechargeRate * frameTime, batt); } } @@ -138,7 +137,8 @@ namespace Content.Server.Power.EntitySystems var old = battery.CurrentCharge; battery.CurrentCharge = MathHelper.Clamp(value, 0, battery.MaxCharge); - if (MathHelper.CloseTo(battery.CurrentCharge, old)) + if (MathHelper.CloseTo(battery.CurrentCharge, old) && + !(old != battery.CurrentCharge && battery.CurrentCharge == battery.MaxCharge)) return; var ev = new ChargeChangedEvent(battery.CurrentCharge, battery.MaxCharge); From 55366dc594ea124c890283212a5258ac76e2a081 Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:58:46 -0700 Subject: [PATCH 147/176] Most papers are no longer trash (#32343) most papers are not trash anymore --- .../Prototypes/Entities/Objects/Misc/paper.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 0605ceb9f9..5c3cd44496 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -28,7 +28,6 @@ - type: Tag tags: - Document - - Trash - Paper - type: Appearance - type: FaxableObject @@ -79,6 +78,11 @@ id: PaperScrap description: 'A crumpled up piece of white paper.' components: + - type: Tag + tags: + - Document + - Trash + - Paper - type: Sprite layers: - state: scrap @@ -176,6 +180,11 @@ visible: false - type: PaperLabelType paperType: Invoice + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" @@ -205,6 +214,11 @@ visible: false - type: PaperLabelType paperType: Bounty + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" From 52e85fe726a9c17184c1c31eea78a0d50d32a7b7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 21:59:53 +0000 Subject: [PATCH 148/176] 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 b6243e2c17..a31711b816 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You no longer deal double damage to your first target when throwing an - item. - type: Fix - id: 6934 - time: '2024-07-19T01:08:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30115 - author: deepdarkdepths changes: - message: Removed the description about geras in the Slime guidebook section. @@ -3929,3 +3921,10 @@ id: 7433 time: '2024-09-24T20:43:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32434 +- author: Moomoobeef + changes: + - message: Most papers are no longer considered trash. + type: Tweak + id: 7434 + time: '2024-09-24T21:58:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32343 From d1812c11fde58ffa23967c50524472c6324334a2 Mon Sep 17 00:00:00 2001 From: goet <6637097+goet@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:21:24 +0200 Subject: [PATCH 149/176] Fix contraband never getting added to vend inventory (#32431) * fix contraband never getting added to vend inventory * Revert "fix contraband never getting added to vend inventory" This reverts commit e7fb3a60c3cb6fcbf41d7f015f13dbc7b1c1901d. * readd setter method to system * fix again without reparenting --- .../VendingMachineContrabandWireAction.cs | 11 ++++++++++- .../VendingMachines/VendingMachineSystem.cs | 12 ++++++++++++ .../VendingMachines/VendingMachineComponent.cs | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs index 22a0341fcb..39231fbe83 100644 --- a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs +++ b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs @@ -7,11 +7,20 @@ namespace Content.Server.VendingMachines; [DataDefinition] public sealed partial class VendingMachineContrabandWireAction : BaseToggleWireAction { + private VendingMachineSystem _vendingMachineSystem = default!; + public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-vending-contraband"; public override object? StatusKey { get; } = ContrabandWireKey.StatusKey; public override object? TimeoutKey { get; } = ContrabandWireKey.TimeoutKey; + public override void Initialize() + { + base.Initialize(); + + _vendingMachineSystem = EntityManager.System(); + } + public override StatusLightState? GetLightState(Wire wire) { if (EntityManager.TryGetComponent(wire.Owner, out VendingMachineComponent? vending)) @@ -28,7 +37,7 @@ public sealed partial class VendingMachineContrabandWireAction : BaseToggleWireA { if (EntityManager.TryGetComponent(owner, out VendingMachineComponent? vending)) { - vending.Contraband = !setting; + _vendingMachineSystem.SetContraband(owner, !vending.Contraband, vending); } } diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 38407a98c7..90fe4cb7d8 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -192,6 +192,18 @@ namespace Content.Server.VendingMachines component.CanShoot = canShoot; } + /// + /// Sets the property of the vending machine. + /// + public void SetContraband(EntityUid uid, bool contraband, VendingMachineComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.Contraband = contraband; + Dirty(uid, component); + } + public void Deny(EntityUid uid, VendingMachineComponent? vendComponent = null) { if (!Resolve(uid, ref vendComponent)) diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index a3c7949600..50023a023a 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -41,6 +41,7 @@ namespace Content.Shared.VendingMachines [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); + [DataField, AutoNetworkedField] public bool Contraband; public bool Ejecting; From 31c45d6169c0ef336b54c7257b454d1db546b3f5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 05:22:30 +0000 Subject: [PATCH 150/176] 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 a31711b816..3905edbc13 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deepdarkdepths - changes: - - message: Removed the description about geras in the Slime guidebook section. - type: Remove - id: 6935 - time: '2024-07-19T09:04:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30140 - author: Blackern5000 changes: - message: Nuclear operatives are now able to purchase durable armor which is NOT @@ -3928,3 +3921,10 @@ id: 7434 time: '2024-09-24T21:58:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32343 +- author: goet + changes: + - message: Vending machines can be hacked again. + type: Fix + id: 7435 + time: '2024-09-25T05:21:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32431 From 0dedc9d91aa17848d9a829a2708765375cf18242 Mon Sep 17 00:00:00 2001 From: Zylofan <80375291+Zylofan@users.noreply.github.com> Date: Wed, 25 Sep 2024 06:50:15 -0400 Subject: [PATCH 151/176] Skull Helm Hand Sprite now turns (#32442) Fixed a typo for the bone helmet that made it not rotate when held in the right hand. --- .../Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json index bbb0aac664..a470e00944 100644 --- a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json @@ -20,7 +20,7 @@ }, { "name": "inhand-right", - "direction": 4 + "directions": 4 } ] } From 7168959929b87dd392c5cbc3d29bdb9bd315c060 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:27:28 -0400 Subject: [PATCH 152/176] Adds real-time charge & disabled action information to Actions (#31821) --- Content.Client/Actions/ActionsSystem.cs | 27 ++++++++ Content.Shared/Actions/BaseActionComponent.cs | 14 ++++ Content.Shared/Actions/SharedActionsSystem.cs | 64 +++++++++++++++++-- 3 files changed, 99 insertions(+), 6 deletions(-) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 26a22fa8b8..7b13233bab 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -51,6 +51,29 @@ namespace Content.Client.Actions SubscribeLocalEvent(OnEntityWorldTargetHandleState); } + public override void FrameUpdate(float frameTime) + { + base.FrameUpdate(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + } + private void OnInstantHandleState(EntityUid uid, InstantActionComponent component, ref ComponentHandleState args) { if (args.Current is not InstantActionComponentState state) @@ -95,6 +118,8 @@ namespace Content.Client.Actions component.Icon = state.Icon; component.IconOn = state.IconOn; component.IconColor = state.IconColor; + component.OriginalIconColor = state.OriginalIconColor; + component.DisabledIconColor = state.DisabledIconColor; component.Keywords.Clear(); component.Keywords.UnionWith(state.Keywords); component.Enabled = state.Enabled; @@ -125,6 +150,8 @@ namespace Content.Client.Actions if (!ResolveActionData(actionId, ref action)) return; + action.IconColor = action.Charges < 1 ? action.DisabledIconColor : action.OriginalIconColor; + base.UpdateAction(actionId, action); if (_playerManager.LocalEntity != action.AttachedEntity) return; diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 9156f747f5..01452bdc72 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -40,6 +40,16 @@ public abstract partial class BaseActionComponent : Component /// [DataField("iconColor")] public Color IconColor = Color.White; + /// + /// The original this action was. + /// + [DataField] public Color OriginalIconColor; + + /// + /// The color the action should turn to when disabled + /// + [DataField] public Color DisabledIconColor = Color.DimGray; + /// /// Keywords that can be used to search for this action in the action menu. /// @@ -179,6 +189,8 @@ public abstract class BaseActionComponentState : ComponentState public SpriteSpecifier? Icon; public SpriteSpecifier? IconOn; public Color IconColor; + public Color OriginalIconColor; + public Color DisabledIconColor; public HashSet Keywords; public bool Enabled; public bool Toggled; @@ -209,6 +221,8 @@ public abstract class BaseActionComponentState : ComponentState Icon = component.Icon; IconOn = component.IconOn; IconColor = component.IconColor; + OriginalIconColor = component.OriginalIconColor; + DisabledIconColor = component.DisabledIconColor; Keywords = component.Keywords; Enabled = component.Enabled; Toggled = component.Toggled; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 2756345428..76b8a1b081 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -69,8 +69,42 @@ public abstract class SharedActionsSystem : EntitySystem SubscribeAllEvent(OnActionRequest); } + public override void Update(float frameTime) + { + base.Update(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + } + private void OnActionMapInit(EntityUid uid, BaseActionComponent component, MapInitEvent args) { + component.OriginalIconColor = component.IconColor; + if (component.Charges == null) return; @@ -326,14 +360,18 @@ public abstract class SharedActionsSystem : EntitySystem Dirty(actionId.Value, action); } - public void ResetCharges(EntityUid? actionId) + public void ResetCharges(EntityUid? actionId, bool update = false, bool dirty = false) { if (!TryGetActionData(actionId, out var action)) return; action.Charges = action.MaxCharges; - UpdateAction(actionId, action); - Dirty(actionId.Value, action); + + if (update) + UpdateAction(actionId, action); + + if (dirty) + Dirty(actionId.Value, action); } private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) @@ -386,13 +424,12 @@ public abstract class SharedActionsSystem : EntitySystem return; var curTime = GameTiming.CurTime; - // TODO: Check for charge recovery timer - if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) + if (IsCooldownActive(action, curTime)) return; // TODO: Replace with individual charge recovery when we have the visuals to aid it if (action is { Charges: < 1, RenewCharges: true }) - ResetCharges(actionEnt); + ResetCharges(actionEnt, true, true); BaseActionEvent? performEvent = null; @@ -1072,4 +1109,19 @@ public abstract class SharedActionsSystem : EntitySystem action.EntityIcon = icon; Dirty(uid, action); } + + /// + /// Checks if the action has a cooldown and if it's still active + /// + protected bool IsCooldownActive(BaseActionComponent action, TimeSpan? curTime = null) + { + curTime ??= GameTiming.CurTime; + // TODO: Check for charge recovery timer + return action.Cooldown.HasValue && action.Cooldown.Value.End > curTime; + } + + protected bool ShouldResetCharges(BaseActionComponent action) + { + return action is { Charges: < 1, RenewCharges: true }; + } } From e0a3d3d91a5c2e07bef8f9fbfc214d3c4a2816e1 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:41:34 -0400 Subject: [PATCH 153/176] Fix agent ID card unlimited range (#32445) * Fix agent ID card unlimited range * update order to be more optimized --- Content.Server/Access/Systems/AgentIDCardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 8f1d0d4f82..4de908bc30 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -32,7 +32,7 @@ namespace Content.Server.Access.Systems private void OnAfterInteract(EntityUid uid, AgentIDCardComponent component, AfterInteractEvent args) { - if (!TryComp(args.Target, out var targetAccess) || !HasComp(args.Target) || args.Target == null) + if (args.Target == null || !args.CanReach || !TryComp(args.Target, out var targetAccess) || !HasComp(args.Target)) return; if (!TryComp(uid, out var access) || !HasComp(uid)) From d2ed93ed629c18de589e2a881db9294db47328cd Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 15:42:42 +0000 Subject: [PATCH 154/176] 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 3905edbc13..6aec9cc60d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Nuclear operatives are now able to purchase durable armor which is NOT - space-proof. - type: Add - id: 6936 - time: '2024-07-19T09:38:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29845 - author: Plykiya, slarticodefast changes: - message: Explosive pens now correctly embed into their target. @@ -3928,3 +3920,10 @@ id: 7435 time: '2024-09-25T05:21:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32431 +- author: themias + changes: + - message: Agent ID card can now only copy access within interaction range. + type: Fix + id: 7436 + time: '2024-09-25T15:41:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32445 From 6459f7156b30859e06d49640b9c6ed32214e42e4 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 25 Sep 2024 18:49:43 +0200 Subject: [PATCH 155/176] Remove binary channel access to silicons without laws. (#32385) Mostly feature proofing but these should not have binary access. ESPECIALLY pais Say we had malf ai and it was talking with other borgs about its plans. The owner of the pai (or any of these silicons) can just listen into this. Someone can just wake up a pai and ask it to monitor the binary channel. There's a reason the binary radio chip is a syndicate item. Some of these also have no reason to be able to talk on binary, are you gonna ask the ai to bother someone to refill your vend stock? Are you gonna clown with the AI and other borgs as a clown borg and annoy them? --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 5 ----- Resources/Prototypes/Entities/Objects/Fun/pai.yml | 4 ---- .../Entities/Structures/Machines/vending_machines.yml | 4 ---- 3 files changed, 13 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 857115e10f..d5b4366e2b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -32,12 +32,8 @@ factions: - SimpleNeutral - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: HealthExaminable examinableTypes: @@ -396,6 +392,5 @@ - Bot - type: ActiveRadio channels: - - Binary - Common - Supply diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 4695f1c125..ff662c2186 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -44,12 +44,8 @@ stopSearchVerbPopup: pai-system-stopped-searching - type: Examiner - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Actions diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 99879cfbc9..e047614ac2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -79,12 +79,8 @@ speechVerb: Robotic speechSounds: Vending - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Electrified From 92c5c873d4b62e34adb564649067b6b6d7bee6c3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 16:50:51 +0000 Subject: [PATCH 156/176] 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 6aec9cc60d..f93e445a36 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya, slarticodefast - changes: - - message: Explosive pens now correctly embed into their target. - type: Fix - id: 6937 - time: '2024-07-19T09:42:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30112 - author: ThatOneEnby1337 changes: - message: News Reporters are now able to use markup tags in their reports without @@ -3927,3 +3920,10 @@ id: 7436 time: '2024-09-25T15:41:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32445 +- author: Myra + changes: + - message: Silicon with no laws will not have binary channel access. + type: Remove + id: 7437 + time: '2024-09-25T16:49:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32385 From b2dad9ff90d515bf04e823e8991e0ef66cf5c967 Mon Sep 17 00:00:00 2001 From: august-sun <45527070+august-sun@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:27:30 -0600 Subject: [PATCH 157/176] Makes the rolling pin craftable (#32285) * Makes the rolling pin craftable * Update Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Prototypes/Entities/Objects/Tools/tools.yml | 3 +++ .../Crafting/Graphs/improvised/rolling_pin.yml | 15 +++++++++++++++ .../Prototypes/Recipes/Crafting/improvised.yml | 15 ++++++++++++++- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index d985560ac2..41d167352f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -514,3 +514,6 @@ - type: Tag tags: - RollingPin + - type: Construction + graph: WoodenRollingPin + node: rollingpin diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml new file mode 100644 index 0000000000..caa9ebbea9 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml @@ -0,0 +1,15 @@ +- type: constructionGraph + id: WoodenRollingPin + start: start + graph: + - node: start + edges: + - to: rollingpin + steps: + - material: WoodPlank + amount: 2 + - material: MetalRod + amount: 1 + doAfter: 2 + - node: rollingpin + entity: RollingPin diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 38d254c141..c87f4eb3d2 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -145,7 +145,7 @@ targetNode: shell category: construction-category-weapons objectType: Item - description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a Barn + description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a barn. icon: sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi state: improvised @@ -214,3 +214,16 @@ icon: sprite: Objects/Weapons/Bombs/pipebomb.rsi state: icon + +- type: construction + name: rolling pin + id: rollingpin + graph: WoodenRollingPin + startNode: start + targetNode: rollingpin + category: construction-category-tools + objectType: Item + description: A rolling pin, used for cooking and defending the kitchen. + icon: + sprite: Objects/Tools/rolling_pin.rsi + state: icon From 5a585f70e5a6ae80702c2b90f7613829dd946ba6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:28:36 +0000 Subject: [PATCH 158/176] 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 f93e445a36..50812ba2b6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ThatOneEnby1337 - changes: - - message: News Reporters are now able to use markup tags in their reports without - bricking the PDAs of readers - type: Fix - id: 6938 - time: '2024-07-19T14:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30169 - author: themias changes: - message: Mailing units are functional again @@ -3927,3 +3919,10 @@ id: 7437 time: '2024-09-25T16:49:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32385 +- author: august-sun + changes: + - message: Rolling pins are now craftable. + type: Tweak + id: 7438 + time: '2024-09-25T17:27:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32285 From 548973bc1fcdd78655918dda99ee0385d9da5556 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Wed, 25 Sep 2024 19:39:49 +0200 Subject: [PATCH 159/176] Fix Doctors Delight metabolism Rate (#32297) * Fix Doctors Delight metabolism Rate * Combine Drink and Medicine instead of halving their motabolism rate. * Removed unintentional newline. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Remove metabolismRate since it is setting it to the default. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 1aa03bf4c9..602d6296b3 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -875,8 +875,6 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.05 - Medicine: - effects: - !type:HealthChange damage: groups: From 9c2fe85d4765e03c5c4b931b76e8dbbb8fb2955b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:40:55 +0000 Subject: [PATCH 160/176] 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 50812ba2b6..f010f4808b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Mailing units are functional again - type: Fix - id: 6939 - time: '2024-07-20T02:31:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30174 - author: Ghagliiarghii changes: - message: Nuclear Operatives' Reinforcements now have a PDA! @@ -3926,3 +3919,11 @@ id: 7438 time: '2024-09-25T17:27:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32285 +- author: BramvanZijp + changes: + - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal + speed, which also halved its effectiveness. + type: Fix + id: 7439 + time: '2024-09-25T17:39:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32297 From 0f729bca0d9811dd92982efe78714548dc72d18c Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Thu, 26 Sep 2024 05:58:18 -0500 Subject: [PATCH 161/176] Makes `BaseAdvancedPen` abstract (#32454) Co-authored-by: Velcroboy --- Resources/Prototypes/Entities/Objects/Misc/pen.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/pen.yml b/Resources/Prototypes/Entities/Objects/Misc/pen.yml index b0a466f891..55117e6360 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pen.yml @@ -59,6 +59,7 @@ - type: entity id: BaseAdvancedPen parent: PenEmbeddable + abstract: true components: - type: Tag tags: From fd1f4a39295ba6836ca2776fb57f65f6fe80728c Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:46:17 +0400 Subject: [PATCH 162/176] lower frezon/n2o sale prices, make frezon take more trit (#32407) * lower gas prices * set trit ratio from 1:50 to 1:8 --- Content.Shared/Atmos/Atmospherics.cs | 2 +- Resources/Prototypes/Atmospherics/gases.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 1e40daf3dd..19766d92e6 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -233,7 +233,7 @@ namespace Content.Shared.Atmos /// /// 1 mol of Tritium is required per X mol of oxygen. /// - public const float FrezonProductionTritRatio = 50.0f; + public const float FrezonProductionTritRatio = 8.0f; /// /// 1 / X of the tritium is converted into Frezon each tick diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 5c54b5a015..b6c83091c5 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -86,7 +86,7 @@ molarMass: 44 color: 8F00FF reagent: NitrousOxide - pricePerMole: 1 + pricePerMole: 0.1 - type: gas id: 8 @@ -99,4 +99,4 @@ gasMolesVisible: 0.6 color: 3a758c reagent: Frezon - pricePerMole: 3 + pricePerMole: 0.3 From 4491550a5eb4aa65cefb500af8b975930e94c781 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 26 Sep 2024 12:47:24 +0000 Subject: [PATCH 163/176] 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 f010f4808b..2df1cb7dcd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ghagliiarghii - changes: - - message: Nuclear Operatives' Reinforcements now have a PDA! - type: Tweak - id: 6940 - time: '2024-07-20T02:59:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28088 - author: Plykiya changes: - message: Chameleon scarves now work again. @@ -3927,3 +3920,12 @@ id: 7439 time: '2024-09-25T17:39:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32297 +- author: Ilya246 + changes: + - message: Atmos gas sell prices significantly lowered. + type: Tweak + - message: Frezon now consumes significantly more tritium to produce. + type: Tweak + id: 7440 + time: '2024-09-26T12:46:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32407 From eeadc75b0a2a72fa1225610fee853eb0004456bf Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:32:13 +0200 Subject: [PATCH 164/176] Add Votekick functionality (#32005) --- Content.Client/Voting/UI/VoteCallMenu.xaml | 22 +- Content.Client/Voting/UI/VoteCallMenu.xaml.cs | 195 ++++++-- Content.Client/Voting/UI/VotePopup.xaml | 7 +- Content.Client/Voting/UI/VotePopup.xaml.cs | 33 +- Content.Client/Voting/VoteManager.cs | 7 +- Content.Client/Voting/VotingSystem.cs | 34 ++ Content.Server/Voting/IVoteHandle.cs | 7 +- .../Voting/Managers/IVoteManager.cs | 4 +- .../Managers/VoteManager.DefaultVotes.cs | 428 ++++++++++++++---- Content.Server/Voting/Managers/VoteManager.cs | 83 +++- Content.Server/Voting/VoteCommands.cs | 10 +- Content.Server/Voting/VoteOptions.cs | 17 +- Content.Server/Voting/VotingSystem.cs | 122 +++++ Content.Shared/CCVar/CCVars.cs | 82 +++- Content.Shared/Voting/MsgVoteData.cs | 8 +- Content.Shared/Voting/StandardVoteType.cs | 48 +- Content.Shared/Voting/VotingEvents.cs | 30 ++ .../en-US/voting/managers/vote-manager.ftl | 13 + .../Locale/en-US/voting/ui/vote-call-menu.ftl | 19 + .../Locale/en-US/voting/ui/vote-popup.ftl | 4 +- 20 files changed, 1009 insertions(+), 164 deletions(-) create mode 100644 Content.Client/Voting/VotingSystem.cs create mode 100644 Content.Server/Voting/VotingSystem.cs create mode 100644 Content.Shared/Voting/VotingEvents.cs diff --git a/Content.Client/Voting/UI/VoteCallMenu.xaml b/Content.Client/Voting/UI/VoteCallMenu.xaml index cb03dd6bb8..caca4fd553 100644 --- a/Content.Client/Voting/UI/VoteCallMenu.xaml +++ b/Content.Client/Voting/UI/VoteCallMenu.xaml @@ -1,7 +1,7 @@ - + MouseFilter="Stop" MinSize="350 200"> @@ -13,16 +13,18 @@ - - - - - + + + + + + +